/* ============================================================
   BuyerGrid — main.css
   Vibe: Editorial Luxury · Layout: Asymmetric Editorial Split
   Fonts: Cormorant Garamond (display) · Plus Jakarta Sans (body)
   ============================================================ */

/* === 1. DESIGN TOKENS ===================================== */
:root {
  /* Palette */
  --forest:         #1B3A2D;
  --forest-mid:     #265440;
  --forest-light:   #3A7A58;
  --forest-tint:    #EAF3EE;
  --forest-pale:    #F2FAF5;

  --brass:          #8B6B14;
  --brass-warm:     #A07E20;
  --brass-pale:     #FAF3E2;
  --brass-subtle:   #FEF9F0;

  --ink:            #1A1A1A;   /* never pure black */
  --ink-2:          #3A3A3A;
  --ink-3:          #646464;
  --ink-4:          #9A9A9A;

  --border:         #E4E0D8;   /* warm grey */
  --border-soft:    #EDEAD4;

  --bg:             #FAF8F4;   /* warm cream */
  --bg-warm:        #F5F3EE;
  --white:          #FFFFFF;

  /* Typography */
  --f-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --f-body:    'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --max-w:    1120px;
  --sect-py:  5.5rem;
  --gutter:   1.5rem;

  /* Radii — Double-Bezel system */
  --outer-r:  20px;
  --inner-r:  14px;   /* outer-r − 6px */
  --r-sm:     6px;
  --r-md:     12px;

  /* Motion — premium cubic-bezier */
  --ease:     cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — tinted to palette, never harsh */
  --shadow-xs: 0 1px 2px rgba(27,58,45,0.05);
  --shadow-sm: 0 2px 8px rgba(27,58,45,0.06), 0 1px 2px rgba(27,58,45,0.04);
  --shadow-md: 0 6px 24px rgba(27,58,45,0.08), 0 2px 4px rgba(27,58,45,0.04);
  --shadow-card: 0 0 0 1px rgba(27,58,45,0.07), 0 4px 20px -4px rgba(27,58,45,0.10);
}

/* === 2. RESET & BASE ====================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 18px; }
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === 3. LAYOUT ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sect-py); }
.section--white      { background: var(--white); }
.section--bg         { background: var(--bg); }
.section--warm       { background: var(--bg-warm); }
.section--forest     { background: var(--forest); }
.section--forest-pale{ background: var(--forest-pale); }
.section--brass-pale { background: var(--brass-pale); }

/* === 4. TYPOGRAPHY ======================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(139,107,20,0.09);
  color: var(--brass);
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(139,107,20,0.18);
  margin-bottom: 1.1rem;
}

.eyebrow--light {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.18);
}

.display-heading {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.display-heading--light { color: var(--white); }

.section-heading {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.section-heading--light { color: var(--white); }

.section-sub {
  font-size: 1.02rem;
  color: var(--ink-3);
  line-height: 1.78;
  max-width: 56ch;
}

.section-sub--light { color: rgba(255,255,255,0.68); }

/* === 5. BUTTONS — Button-in-Button pattern ================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 0.75rem 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

/* Trailing icon wrap (button-in-button) */
.btn-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out), background 0.18s var(--ease);
}

.btn-icon svg { width: 16px; height: 16px; }

/* Brass CTA */
.btn-brass {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass);
}
.btn-brass .btn-icon { background: rgba(0,0,0,0.15); }
.btn-brass:hover {
  background: var(--brass-warm);
  border-color: var(--brass-warm);
  box-shadow: 0 4px 20px rgba(139,107,20,0.35);
}
.btn-brass:hover .btn-icon { transform: translate(2px,-1px) scale(1.05); }

/* Ghost (for dark backgrounds) */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  padding-inline: 1.4rem;
}
.btn-ghost .btn-icon { background: rgba(255,255,255,0.1); }
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* Forest CTA */
.btn-forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-forest .btn-icon { background: rgba(0,0,0,0.12); }
.btn-forest:hover {
  background: var(--forest-mid);
  box-shadow: 0 4px 20px rgba(27,58,45,0.28);
}
.btn-forest:hover .btn-icon { transform: translate(2px,-1px) scale(1.05); }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--border);
  padding-inline: 1.4rem;
}
.btn-outline:hover {
  background: var(--forest-tint);
  border-color: var(--forest);
}

.btn-sm {
  font-size: 0.82rem;
  padding: 0.6rem 0.6rem 0.6rem 1.1rem;
}
.btn-sm .btn-icon { width: 1.7rem; height: 1.7rem; }

/* CTA no-icon variant */
.btn-plain { padding-inline: 1.5rem; }

/* === 6. NAVIGATION ======================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo { display: inline-flex; align-items: center; }

.logo-img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 155px;
  object-fit: contain;
}

/* Fallback text logo (footer / dark bg) */
.logo-text {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
}
.logo-text span { color: rgba(251,243,226,0.85); }

/* === 7. HERO ============================================= */
.hero {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  padding-block: 5rem 4.5rem;
}

/* Subtle grid texture — editorial luxury */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Warm radial glow — editorial depth */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(139,107,20,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

/* Editorial Split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
  }
}

.hero-content { max-width: 640px; }

.hero-stat-val {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 1;
  color: var(--brass-pale);
  letter-spacing: -0.04em;
  display: inline-block;
}

.hero-stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 0.15rem;
  margin-bottom: 0.75rem;
}

.hero-h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.hero-h1 em {
  font-style: normal;
  color: var(--brass-pale);
}

.hero-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 54ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
}

.hero-proof-dot {
  width: 5px;
  height: 5px;
  background: var(--brass);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero stats panel — Double-Bezel */
.hero-panel-shell {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--outer-r);
  padding: 6px;
}

.hero-panel-core {
  background: rgba(27,58,45,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--inner-r);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.08);
  overflow: hidden;
}

.hero-panel-head {
  padding: 1.1rem 1.4rem 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero-panel-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-panel-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
}

.hero-panel-stats { padding: 0.4rem 0; }

.panel-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 1rem;
}

.panel-stat:last-child { border-bottom: none; }

.panel-stat-num {
  font-family: var(--f-body);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.panel-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.48);
  text-align: right;
  line-height: 1.35;
}

/* === 8. STATS STRIP ====================================== */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: 2.75rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-cell {
  padding: 0.75rem 1.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-cell:last-child { border-right: none; }

@media (max-width: 639px) {
  .stat-cell:nth-child(2)  { border-right: none; }
  .stat-cell:nth-child(1),
  .stat-cell:nth-child(2)  { border-bottom: 1px solid var(--border); }
}

.stat-num {
  display: block;
  font-family: var(--f-body);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--forest);
  margin-bottom: 0.3rem;
  font-variant-numeric: tabular-nums;
}

.stat-num--brass { color: var(--brass); }

.stat-desc {
  font-size: 0.78rem;
  color: var(--ink-4);
  line-height: 1.4;
}

/* === 9. NRI ADVANTAGE ==================================== */
.nri-section {
  background: var(--brass-pale);
  border-top: 1px solid rgba(139,107,20,0.12);
  border-bottom: 1px solid rgba(139,107,20,0.12);
  padding-block: var(--sect-py);
}

.nri-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .nri-layout { grid-template-columns: 0.8fr 1.2fr; gap: 5rem; }
}

/* Double-Bezel NRI number card */
.nri-card-shell {
  background: rgba(139,107,20,0.06);
  border: 1px solid rgba(139,107,20,0.14);
  border-radius: var(--outer-r);
  padding: 6px;
}

.nri-card-core {
  background: var(--white);
  border-radius: var(--inner-r);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.9), var(--shadow-sm);
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
}

.nri-card-core::before {
  content: 'NRI BUYERS';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.7;
}

.nri-big-num {
  display: block;
  font-family: var(--f-body);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

.nri-big-tag {
  display: inline-block;
  font-size: 0.88rem;
  color: var(--ink-3);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.nri-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.nri-loc {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--forest-tint);
  color: var(--forest-mid);
  border: 1px solid rgba(27,58,45,0.12);
}

.nri-body {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 1.15rem;
}

/* === 10. NAMED GROUPS (Proof of Scale) =================== */
.proof-section {
  background: var(--white);
  padding-block: var(--sect-py);
}

.proof-intro {
  max-width: 600px;
  margin-bottom: 3rem;
}

/* Elegant data list — not cards */
.groups-list {
  border-top: 1px solid var(--border);
  margin-bottom: 3rem;
}

.group-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s var(--ease);
}

.group-row:hover { background: var(--forest-pale); margin-inline: -1.5rem; padding-inline: 1.5rem; }

.group-rank {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-4);
  width: 1.5rem;
  flex-shrink: 0;
}

.group-name {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.35;
}

.group-count {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.group-count span {
  display: block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ink-4);
  letter-spacing: 0;
}

/* Screenshot gallery */
.proof-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) { .proof-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .proof-gallery { grid-template-columns: repeat(3, 1fr); } }

.proof-card-shell {
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--border);
  border-radius: var(--outer-r);
  padding: 5px;
}

.proof-card-core {
  background: var(--white);
  border-radius: var(--inner-r);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8);
}

.proof-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--forest-pale);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.5rem;
  color: var(--ink-4);
  font-size: 0.78rem;
  text-align: center;
  background: var(--forest-pale);
}

.proof-placeholder svg {
  width: 28px;
  height: 28px;
  color: var(--forest-light);
  opacity: 0.4;
}

.proof-card-info {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border);
}

.proof-card-title { font-size: 0.82rem; font-weight: 600; color: var(--ink-2); }
.proof-card-meta  { font-size: 0.74rem; color: var(--ink-4); margin-top: 0.15rem; }

/* === 11. COVERAGE BREAKDOWN ============================== */
.coverage-section {
  background: var(--forest-tint);
  border-top: 1px solid rgba(27,58,45,0.08);
  border-bottom: 1px solid rgba(27,58,45,0.08);
  padding-block: var(--sect-py);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .coverage-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 5rem; }
}

.coverage-bars { display: flex; flex-direction: column; gap: 1.65rem; }

.coverage-bar-row {}

.coverage-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.coverage-region {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-mid);
}

.coverage-count {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.coverage-bar {
  height: 4px;
  background: rgba(27,58,45,0.12);
  border-radius: 4px;
  overflow: hidden;
}

.coverage-bar-fill {
  height: 100%;
  background: var(--forest);
  border-radius: 4px;
  width: 0;
  transition: width 1.4s var(--ease-out);
}

.coverage-bar-fill[data-width="63"] { --target: 63%; }
.coverage-bar-fill[data-width="20"] { --target: 20%; }
.coverage-bar-fill[data-width="19"] { --target: 19%; }
.coverage-bar-fill.animate { width: var(--target); }

.coverage-detail { font-size: 0.8rem; color: var(--ink-3); margin-top: 0.3rem; }

.coverage-content {}

.coverage-markets {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mkt-tag {
  font-size: 0.74rem;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(27,58,45,0.08);
  color: var(--forest-mid);
  border: 1px solid rgba(27,58,45,0.12);
}

/* === 12. PACKAGES ======================================== */
.packages-section {
  background: var(--bg);
  padding-block: var(--sect-py);
}

.packages-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .packages-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brass);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(139,107,20,0.28);
  flex-shrink: 0;
}

.launch-pill-pct {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Packages layout: 2-col top row + 1 full bottom */
.pkg-row-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .pkg-row-1 { grid-template-columns: repeat(2, 1fr); }
}

/* Double-Bezel cards */
.pkg-shell {
  background: rgba(0,0,0,0.025);
  border: 1px solid var(--border);
  border-radius: var(--outer-r);
  padding: 5px;
  transition: box-shadow 0.25s var(--ease), transform 0.2s var(--ease);
}

.pkg-shell:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pkg-shell--featured {
  background: rgba(139,107,20,0.05);
  border-color: rgba(139,107,20,0.2);
}

.pkg-shell--featured:hover {
  box-shadow: 0 8px 32px rgba(139,107,20,0.15);
}

.pkg-core {
  background: var(--white);
  border-radius: var(--inner-r);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.9);
  overflow: hidden;
}

.pkg-shell--featured .pkg-core { background: var(--brass-subtle); }

.pkg-header {
  padding: 1.25rem 1.4rem 1rem;
  border-bottom: 1px solid var(--border);
}

.pkg-shell--featured .pkg-header {
  border-bottom-color: rgba(139,107,20,0.12);
}

.pkg-badge {
  display: inline-block;
  background: var(--brass);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.pkg-cat {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.3rem;
}

.pkg-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.pkg-duration {
  font-size: 0.78rem;
  color: var(--ink-4);
  margin-top: 0.2rem;
}

.pkg-tiers { padding: 0.35rem 0; }

.pkg-tier {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0.75rem;
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s var(--ease);
}

.pkg-tier:last-child { border-bottom: none; }
.pkg-tier:hover { background: var(--forest-pale); }
.pkg-shell--featured .pkg-tier:hover { background: rgba(139,107,20,0.04); }

.pkg-tier-name {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.35;
}

.pkg-reach {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-4);
  margin-top: 0.15rem;
}

.pkg-price {
  text-align: right;
  flex-shrink: 0;
}

.pkg-orig {
  font-size: 0.72rem;
  color: var(--ink-4);
  text-decoration: line-through;
  display: block;
  line-height: 1.3;
}

.pkg-now {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.pkg-now--brass { color: var(--brass); }

.pkg-footer {
  padding: 1rem 1.4rem 1.25rem;
  border-top: 1px solid var(--border);
}

.pkg-shell--featured .pkg-footer { border-top-color: rgba(139,107,20,0.12); }

.pkg-cta {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 0.85rem;
}

.pkg-addon {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--ink-3);
  max-width: 480px;
}

.pkg-addon svg { width: 18px; height: 18px; color: var(--brass); flex-shrink: 0; margin-top: 1px; }

/* === 13. HOW IT WORKS ==================================== */
.how-section { padding-block: var(--sect-py); }

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .how-steps::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, var(--forest) 0%, var(--border) 50%, var(--forest) 100%);
    opacity: 0.15;
    z-index: 0;
  }
}

.how-step { position: relative; z-index: 1; }

.how-n {
  width: 48px;
  height: 48px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 12px rgba(27,58,45,0.2);
}

.how-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.how-body {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.75;
}

/* === 14. WHY BUYERGRID =================================== */
.why-section {
  background: var(--forest);
  padding-block: var(--sect-py);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.75rem;
}

@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

.why-item {
  padding: 1.5rem;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  transition: background 0.2s var(--ease);
}

.why-item:hover { background: rgba(255,255,255,0.075); }

.why-icon {
  width: 38px;
  height: 38px;
  background: var(--brass);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.95rem;
}

.why-icon svg { width: 19px; height: 19px; color: var(--white); }

.why-title { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.why-body  { font-size: 0.84rem; color: rgba(255,255,255,0.58); line-height: 1.72; }

/* === 15. FAQ ============================================= */
.faq-section { padding-block: var(--sect-py); }
.faq-intro { max-width: 560px; margin-bottom: 2.5rem; }

/* Minimalist-UI: border-bottom only, no card boxes */
.faq-list {
  max-width: 760px;
  border-top: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.2rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  user-select: none;
  transition: color 0.15s var(--ease);
}

.faq-item summary:hover { color: var(--forest); }
.faq-item summary::-webkit-details-marker { display: none; }

/* + / − toggle per minimalist-ui */
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-4);
  flex-shrink: 0;
  transition: color 0.15s var(--ease);
  line-height: 1;
}

.faq-item[open] summary { color: var(--forest); }
.faq-item[open] .faq-toggle { color: var(--brass); }

.faq-body {
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.8;
  max-width: 68ch;
}

/* === 16. CONTACT CTA ===================================== */
.contact-cta {
  background: var(--forest);
  padding-block: 4.5rem;
}

.contact-inner {
  max-width: 620px;
  text-align: center;
  margin-inline: auto;
}

.contact-h {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.contact-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 2.25rem;
}

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.contact-note a { color: rgba(255,255,255,0.65); text-decoration: underline; text-underline-offset: 3px; }
.contact-note a:hover { color: var(--white); }

/* === 17. FOOTER ========================================== */
.site-footer {
  background: #0F1F18;
  padding-block: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-copy a { color: rgba(255,255,255,0.45); }
.footer-copy a:hover { color: rgba(255,255,255,0.7); }

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.65); }

/* === 18. STICKY WHATSAPP (mobile) ======================== */
.wa-sticky {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.wa-sticky svg { width: 26px; height: 26px; }
.wa-sticky:hover { transform: scale(1.07); box-shadow: 0 6px 28px rgba(37,211,102,0.52); }
@media (max-width: 767px) { .wa-sticky { display: flex; } }

/* === 19. SCROLL REVEAL SYSTEM ============================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease-out),
              transform 0.75s var(--ease-out);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }
.reveal-d5 { transition-delay: 400ms; }

/* === 20. UTILITIES ======================================= */
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
[data-count] { display: inline-block; }

/* === 21. PRINT =========================================== */
@media print {
  .site-nav, .wa-sticky, .hero-actions, .contact-btns { display: none; }
  .hero { background: none; color: var(--ink); }
  .reveal { opacity: 1; transform: none; }
}
