:root{
  --bg: #FBFCFB;
  --surface: #FFFFFF;
  --surface-2: #F4F7F4;

  --text: #0F1C16;
  --muted: #496158;

  --green-900: #194630;
  --gold-600: #B29A1F;
  --yellow-500: #FFDB21;

  --border: rgba(25, 70, 48, 0.14);
  --shadow: 0 10px 30px rgba(15, 28, 22, 0.08);

  --radius: 18px;
  --container: 1120px;

  --font-body: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-head: "Libre Baskerville", Georgia, "Times New Roman", serif;

  --ease: cubic-bezier(.2,.8,.2,1);
}

/* =========================
   Base
========================= */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% -100px, rgba(255,219,33,0.14), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(209,229,210,0.45), transparent 55%),
    var(--bg);
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* =========================
   Type
========================= */
.h1,.h2,.h3{
  font-family: var(--font-head);
  letter-spacing: 0.2px;
  margin: 0 0 10px;
}
.h1{ font-size: clamp(1.45rem, 2.1vw, 2.1rem); line-height: 1.06; }
.h2{ font-size: clamp(1.25rem, 1.6vw, 1.65rem); line-height: 1.15; }
.h3{ font-size: 1.08rem; line-height: 1.25; }

.lead{
  margin: 0;
  font-size: clamp(0.88rem, 0.95vw, 0.98rem);
  line-height: 1.75;
  max-width: 68ch;
  color: rgba(15, 28, 22, 0.78);
}

/* =========================
   HERO
========================= */
.hero{
  position: relative;
  padding: 54px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 50% 0%, rgba(255,219,33,0.22), transparent 62%),
    radial-gradient(900px 520px at 90% 25%, rgba(209,229,210,0.16), transparent 60%),
    transparent;
  border: 0;
  box-shadow: none;
}

.hero::before{
  content:"";
  position:absolute;
  left: 0; right: 0;
  top: -120px;
  height: 420px;
  background: radial-gradient(620px 240px at 50% 55%, rgba(255,219,33,0.18), transparent 70%);
  pointer-events:none;
  z-index: 0;
}

.hero .container.hero__grid{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  place-items: start;
}

.hero__copy{
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding-top: 6px;
}
.hero__copy .h1{ margin: 0 0 12px; }
.hero__copy .lead{ margin: 0 auto; }

/* =========================
   GLOBAL (inside HERO)
   Left-aligned head + grid
========================= */

.global.global--inHero{
  width: 100%;
  margin-top: 22px;
  padding-top: 26px;
  border-top: 1px solid rgba(25,70,48,0.10);

  /* ✅ lock left alignment so head + cards share same edge */
  display: grid;
  gap: 16px;
  justify-items: start;
}

/* Head */
.global__head{
  width: 100%;
  text-align: left;
  max-width: 72ch;
  margin: 0; /* ✅ remove bottom margin that can misalign visually */
}

.global__kicker{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
  font-size: 0.66rem;
  text-transform: uppercase;
  color: rgba(178,154,31,0.95);
}

.global__title{
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  line-height: 1.18;
  color: rgba(15, 28, 22, 0.96);
}

.global__lead{
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 70ch;
  color: rgba(15, 28, 22, 0.72);
}

/* Grid */
.global__grid{
  margin-top: 18px;

  /* ✅ align with the left edge of the title (same container) */
  width: 100%;
  margin-left: 0;
  margin-right: 0;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* ✅ stretch equally */
  gap: 16px;
  align-items: stretch;
}

.globalCard{
  height: 100%;
  min-height: 150px;
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 18px;
  overflow: hidden;

  /* ✅ same “dark green glass” vibe as review cards */
  background:
    radial-gradient(900px 420px at 18% 15%, rgba(255,219,33,0.10), transparent 60%),
    radial-gradient(900px 520px at 92% 120%, rgba(209,229,210,0.10), transparent 55%),
    linear-gradient(180deg, rgba(20,46,30,0.96), rgba(7,19,14,0.94));

  border: 1px solid rgba(255,219,33,0.22);
  box-shadow: 0 20px 60px rgba(7, 19, 14, 0.22);
  backdrop-filter: blur(10px);

  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;

  transition: transform 180ms var(--ease),
              box-shadow 180ms var(--ease),
              border-color 180ms var(--ease);
  animation: cardRise 1200ms var(--ease) both; /* was 700ms */
  will-change: transform, opacity;
}

/* small accent line (same as reviews) */
.globalCard::before{
  content:"";
  position: absolute;
  top: 14px;
  left: 16px;
  height: 2px;
  width: 44px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(255,219,33,0.90),
    rgba(92,107,40,0.40)
  );
  z-index: 3;
}

/* subtle sheen layer */
.globalCard::after{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(520px 240px at 20% 0%,
      rgba(255,219,33,0.10),
      transparent 62%
    ),
    radial-gradient(520px 260px at 90% 110%,
      rgba(209,229,210,0.10),
      transparent 60%
    );
  opacity: 0.95;
  z-index: 1;
}

.globalCard > *{
  position: relative;
  z-index: 2;
}

/* Title */
.globalCard__country{
  margin: 10px 0 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.2;
  color: rgba(255,255,255,0.92);
}

/* List */
.globalCard__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;

  font-size: 0.94rem;
  color: rgba(255,255,255,0.78);
}

.globalCard__list li{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* yellow bullet like brand */
.globalCard__list li::before{
  content:"";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,219,33,0.92);
  box-shadow: 0 0 0 3px rgba(255,219,33,0.16);
}

@media (max-width: 980px){
  .global__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px){
  .global__grid{
    grid-template-columns: 1fr;
  }
}
.globalCard:nth-child(1){ animation-delay: 0ms; }
.globalCard:nth-child(2){ animation-delay: 160ms; }
.globalCard:nth-child(3){ animation-delay: 320ms; }
.globalCard:nth-child(4){ animation-delay: 480ms; }

@keyframes cardRise{
  from{
    opacity: 0;
    transform: translateY(18px);  /* slightly more lift */
    filter: blur(2px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .globalCard{ animation: none !important; }
}
/* =========================
   Contact Band (kept – used in your page)
========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
  cursor: pointer;
  user-select: none;
}
.btn--small{ padding: 10px 14px; font-size: 0.92rem; }

.btn--primary{
  background: linear-gradient(180deg, var(--yellow-500), rgba(255,219,33,0.88));
  color: #1D2B22;
  border-color: rgba(178,154,31,0.45);
  box-shadow: 0 10px 22px rgba(255,219,33,0.12);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(255,219,33,0.18);
}

.btn--ghost{
  background: rgba(255,255,255,0.68);
  border-color: var(--border);
}
.btn--ghost:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}


.contactBand{
  padding: 110px 0;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(255,219,33,0.22), transparent 60%),
    radial-gradient(900px 520px at 85% 70%, rgba(124,149,138,0.22), transparent 60%),
    linear-gradient(180deg, #F4FAF4, #EAF4EA);
  color: var(--text);
  border-top: 1px solid rgba(25,70,48,0.12);
}

.contactBand__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.contactBand__title{
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.0rem, 3vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: 0.2px;
  color: var(--text);
  max-width: 26ch;
}

.contactBand__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(25,70,48,0.95), rgba(25,70,48,0.85));
  border: 1px solid rgba(25,70,48,0.25);
  color: rgba(255,255,255,0.95);
  box-shadow: 0 14px 30px rgba(15,28,22,0.10);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}
.contactBand__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15,28,22,0.14);
}

.contactBand__right{
  display: grid;
  gap: 18px;
  justify-content: end;
  text-align: left;
}

.contactBand__block{
  max-width: 340px;
  padding-left: 18px;
  border-left: 1px solid rgba(25,70,48,0.14);
}

.contactBand__label{
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: rgba(178,154,31,0.95);
  text-transform: uppercase;
}

.contactBand__value{
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 700;
  color: rgba(15,28,22,0.78);
}

@media (max-width: 980px){
  .hero{ padding: 44px 0 56px; }

  .global__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }

  .contactBand{ padding: 90px 0; }
  .contactBand__grid{ grid-template-columns: 1fr; gap: 28px; }
  .contactBand__right{ justify-content: start; }
  .contactBand__block{
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(25,70,48,0.12);
    padding-top: 14px;
  }
  .contactBand__title{ max-width: none; }
}

@media (max-width: 520px){
  .container{ width: min(var(--container), calc(100% - 28px)); }
  .global__grid{ grid-template-columns: 1fr; }
}