/* ================================================
   THE HEALTHY LONGEVITY CLINIC
   Verdant Precision — Design System
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── Tokens ──────────────────────────────────────── */
:root {
  --forest:      #0d403b;
  --forest-mid:  #155048;
  --teal:        #3a9b93;
  --teal-light:  #5bbdb5;
  --slate:       #58827e;
  --mist:        #c8d1cf;
  --pearl:       #e5ecec;
  --cream:       #f5f5f5;
  --white:       #ffffff;
  --ink:         #1a2e2c;
  --ink-mid:     #3d5654;
  --ink-light:   #718f8d;

  --f-display:   'Cormorant Garamond', Georgia, serif;
  --f-body:      'DM Sans', system-ui, sans-serif;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --t:           0.4s;
  --t-slow:      0.75s;

  --max-w:       1160px;
  --nav-h:       80px;
  --section-v:   clamp(70px, 9vw, 130px);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: var(--f-body); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--pearl); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

/* ── Typography ──────────────────────────────────── */
h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h3 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h4 {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

p { font-size: clamp(0.95rem, 1.15vw, 1.05rem); line-height: 1.8; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 300;
  line-height: 1.55;
}

/* ── Layout ──────────────────────────────────────── */
.container {
  width: min(100%, var(--max-w));
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section            { padding: var(--section-v) 0; }
.section--forest    { background: var(--forest); color: var(--white); }
.section--cream     { background: var(--cream); }
.section--pearl     { background: var(--pearl); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
}

.grid-2--wide {
  grid-template-columns: 1.2fr 1fr;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}

/* ── Navigation ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.nav--transparent { background: transparent; }
.nav--white {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--pearl);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav__logo-icon {
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  color: var(--forest);
  transition: color var(--t) var(--ease);
}

.nav__logo-text {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--forest);
  transition: color var(--t) var(--ease);
}

.nav__logo-sub {
  display: block;
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.1rem;
}

.nav--transparent .nav__logo-icon { color: rgba(255, 255, 255, 0.92); }
.nav--transparent .nav__logo-text { color: var(--white); }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-logo__icon {
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
}
.footer-logo__text {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}
.footer-logo__sub {
  display: block;
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  transition: color var(--t) var(--ease);
}

.nav--transparent .nav__links a { color: rgba(255, 255, 255, 0.82); }
.nav--transparent .nav__links a:hover { color: var(--white); }
.nav__links a:hover { color: var(--teal); }

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width var(--t) var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta .btn { padding: 0.55rem 1.4rem; font-size: 0.8rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all var(--t) var(--ease);
}
.nav--transparent .nav__toggle span { background: var(--white); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem 2rem 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  flex-direction: column;
  gap: 0;
  z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1rem;
  color: var(--ink);
  padding: 1rem 0;
  border-bottom: 1px solid var(--pearl);
}
.nav__mobile .btn { margin-top: 1.25rem; align-self: flex-start; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,64,59,0.25);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--outline-dark:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

/* ── Photo Placeholder ───────────────────────────── */
.photo-placeholder {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(58,155,147,0.9) 0%, var(--forest) 55%);
  aspect-ratio: 3 / 4;
}

.photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(255,255,255,0.025) 12px,
      rgba(255,255,255,0.025) 13px
    );
}

.photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 1;
}

.photo-placeholder__label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 2;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 75% 50%, rgba(58,155,147,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(58,155,147,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
}

.hero__eyebrow  { color: var(--teal); margin-bottom: 1.5rem; }

.hero__headline {
  color: var(--white);
  margin-bottom: 1.75rem;
}
.hero__headline em { color: var(--teal); font-style: italic; }

.hero__rule {
  width: 48px; height: 1px;
  background: var(--teal);
  margin-bottom: 1.75rem;
}

.hero__body {
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.52);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ─────────────────────── */
.page-hero {
  background: var(--forest);
  padding: calc(var(--nav-h) + clamp(70px, 9vw, 110px)) 0 clamp(70px, 9vw, 110px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 60%, rgba(58,155,147,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__eyebrow { color: var(--teal); margin-bottom: 1.25rem; }
.page-hero h1       { color: var(--white); max-width: 680px; margin: 0 auto 1.5rem; }
.page-hero .lead    { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }

/* ── Pillars ──────────────────────────────────────── */
.pillar {
  padding: 2.5rem 2rem 2.5rem;
  border-top: 2px solid var(--teal);
  background: var(--white);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.pillar:hover {
  box-shadow: 0 10px 50px rgba(13,64,59,0.08);
  transform: translateY(-4px);
}

.pillar__icon {
  width: 36px; height: 36px;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.pillar h3 { margin-bottom: 0.75rem; }
.pillar p  { color: var(--ink-mid); font-size: 0.925rem; line-height: 1.75; }

/* ── Focus Grid ──────────────────────────────────── */
.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--pearl);
  border-top: 1px solid var(--pearl);
}

.focus-item {
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--pearl);
  border-bottom: 1px solid var(--pearl);
  transition: background var(--t) var(--ease);
}
.focus-item:hover { background: rgba(58,155,147,0.04); }

.focus-item__arrow {
  color: var(--teal);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.6rem;
}

.focus-item h4 { margin-bottom: 0.4rem; }
.focus-item p  { font-size: 0.875rem; color: var(--ink-mid); line-height: 1.65; }

/* ── Trust Bar ───────────────────────────────────── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--pearl);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink-mid);
  white-space: nowrap;
}
.trust-badge::before {
  content: '✦';
  color: var(--teal);
  font-size: 0.55rem;
}

/* ── Credentials ─────────────────────────────────── */
.credential-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}

/* ── Package Cards ───────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.package-card {
  border: 1px solid var(--pearl);
  padding: 2.25rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.package-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 30px rgba(58,155,147,0.1);
}

.package-card--featured {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.package-card--featured:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 30px rgba(58,155,147,0.2);
}

.package-card__eyebrow { color: var(--teal); margin-bottom: 1rem; }
.package-card--featured .package-card__eyebrow { color: var(--teal-light); }

.package-card h3 { margin-bottom: 0.5rem; }
.package-card--featured h3 { color: var(--white); }

.package-card__tagline {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.package-card--featured .package-card__tagline { color: rgba(255,255,255,0.55); }

.package-card__desc {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 2rem;
}
.package-card--featured .package-card__desc { color: rgba(255,255,255,0.7); }

.package-card .btn { align-self: flex-start; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  cursor: pointer;
  user-select: none;
  gap: 2rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question h4 {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.3;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--ease);
  color: var(--teal);
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer__inner {
  padding-bottom: 1.75rem;
  color: var(--ink-mid);
  font-size: 0.925rem;
  line-height: 1.82;
}

/* ── Forms ───────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--pearl);
  background: var(--white);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color var(--t) var(--ease);
  outline: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

/* ── Notice ──────────────────────────────────────── */
.notice {
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--teal);
  background: rgba(58,155,147,0.05);
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.75;
}
.notice--emergency {
  border-left-color: #b03030;
  background: #fdf4f4;
  color: #7a2525;
}

/* ── Stat Row ─────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin: clamp(40px, 5vw, 70px) 0;
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }

.stat-item__num {
  display: block;
  font-family: var(--f-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--forest);
  padding: clamp(60px, 7vw, 100px) 0 clamp(30px, 4vw, 48px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  padding-bottom: clamp(30px, 4vw, 50px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}


.footer__legal {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}

.footer__heading {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t) var(--ease);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* ── Divider ──────────────────────────────────────── */
.divider {
  width: 48px; height: 2px;
  background: var(--teal);
  margin: 1.5rem 0;
}
.divider--center { margin: 1.5rem auto; }

/* ── Utilities ───────────────────────────────────── */
.text-center  { text-align: center; }
.text-teal    { color: var(--teal); }
.text-forest  { color: var(--forest); }
.text-muted   { color: var(--ink-mid); }
.text-white   { color: var(--white); }

.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }
.mt-8  { margin-top: 4rem; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-6  { margin-bottom: 3rem; }

.actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── Animations ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out);
}
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.55s; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1000px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2--wide { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.12);
  }
}

@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: flex; }
  .packages-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .stat-item:first-child { border-top: none; }
  .trust-badge { font-size: 0.72rem; }
}
