/* =========================================================
   ClinicLaunch — cliniclaunch.ai
   Warm & light, elevated editorial agency system
   ========================================================= */

:root {
  /* Brand palette (continuity with cliniclaunchnow.com) */
  --cream:        #FAF7F4;
  --cream-mid:    #F5F1EC;
  --cream-dark:   #F2EDE7;
  --sage:         #3D8B7A;
  --sage-light:   #5BA99A;
  --sage-hover:   #347A6B;
  --forest:       #2C3E3A;
  --forest-deep:  #1E2E2B;
  --terracotta:   #C47A5A;
  --terracotta-soft:#D89878;
  --ink:          #20302C;
  --body:         #5A6B66;
  --muted:        #93A29D;
  --line:         rgba(44,62,58,0.10);
  --line-soft:    rgba(44,62,58,0.06);

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-ui:      'Montserrat', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Shape */
  --r-card: 16px;
  --r-lg:   24px;
  --r-pill: 999px;
  --shadow-sm:  0 2px 10px rgba(44,62,58,0.05);
  --shadow-md:  0 10px 30px rgba(44,62,58,0.08);
  --shadow-lg:  0 24px 60px rgba(44,62,58,0.12);
  --shadow-cta: 0 12px 30px rgba(61,139,122,0.28);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--sage); color: #fff; }

/* Warm grain / atmosphere overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; z-index: 2; }
.section { padding-block: clamp(72px, 10vw, 130px); }
.section-sm { padding-block: clamp(48px, 7vw, 88px); }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage);
  display: inline-flex; align-items: center; gap: 0.6em;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--sage); opacity: 0.6; }
.eyebrow.center::after { content: ""; width: 26px; height: 1.5px; background: var(--sage); opacity: 0.6; }
.eyebrow.center { justify-content: center; }

.h-display { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
.h-section { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--body); max-width: 60ch; }
.italic-accent { font-style: italic; color: var(--sage); }
.serif-num { font-family: var(--font-display); }

p { color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-ui); font-weight: 600; font-size: 0.93rem;
  display: inline-flex; align-items: center; gap: 0.55em;
  padding: 0.95em 1.7em; border-radius: var(--r-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--sage); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--sage-hover); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(61,139,122,.36); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--forest); }
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 1.1em 2.1em; font-size: 1rem; }

.textlink { font-family: var(--font-ui); font-weight: 600; font-size: 0.9rem; color: var(--sage); display: inline-flex; align-items: center; gap: 0.45em; }
.textlink .arr { transition: transform .3s var(--ease); }
.textlink:hover .arr { transform: translateX(4px); }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-ui); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage); background: rgba(61,139,122,0.09);
  border: 1px solid rgba(61,139,122,0.18);
  padding: 0.5em 1em; border-radius: var(--r-pill);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px rgba(61,139,122,0.18); }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding-block: 20px;
}
.nav.scrolled {
  background: rgba(250,247,244,0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 12px;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6em; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.02em; color: var(--ink); }
.brand .mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(140deg, var(--sage), var(--sage-light));
  display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(61,139,122,0.3);
}
.brand b { font-weight: 600; }
.brand .ai { color: var(--sage); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: var(--font-ui); font-weight: 500; font-size: 0.92rem; color: var(--ink); position: relative; opacity: 0.82; transition: opacity .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0; background: var(--sage); transition: width .3s var(--ease); }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { opacity: 1; color: var(--sage); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.3rem;
    position: absolute; top: 100%; left: var(--gutter); right: var(--gutter);
    background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 1.6rem; box-shadow: var(--shadow-lg); margin-top: 10px;
  }
  .nav-menu-open .nav-links .btn { display: inline-flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-top: clamp(130px, 18vh, 200px); padding-bottom: clamp(60px, 9vw, 110px); position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; z-index: 0; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.hero-glow.g1 { width: 540px; height: 540px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(91,169,154,0.35), transparent 65%); }
.hero-glow.g2 { width: 460px; height: 460px; bottom: -200px; left: -140px; background: radial-gradient(circle, rgba(196,122,90,0.20), transparent 65%); }
.hero-inner { position: relative; z-index: 2; max-width: 980px; }
.hero h1 { margin: 22px 0 26px; }
.hero .lead { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; align-items: center; }
.hero-note { font-family: var(--font-ui); font-size: 0.82rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.5em; }
.hero-note .check { color: var(--sage); }

/* Hero stat strip */
.hero-strip { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 60px); margin-top: clamp(46px, 7vw, 80px); padding-top: 36px; border-top: 1px solid var(--line); position: relative; z-index: 2; }
.hero-strip .hs { }
.hero-strip .hs .n { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--forest); line-height: 1; }
.hero-strip .hs .n .u { color: var(--terracotta); }
.hero-strip .hs .l { font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--muted); margin-top: 8px; text-transform: uppercase; }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust { padding-block: 38px; border-block: 1px solid var(--line-soft); background: var(--cream-mid); }
.trust-label { text-align: center; font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.trust-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 6vw, 64px); }
.trust-logos span { font-family: var(--font-display); font-weight: 500; font-size: clamp(1rem, 1.8vw, 1.35rem); color: var(--forest); opacity: 0.5; transition: opacity .3s; letter-spacing: -0.01em; }
.trust-logos span:hover { opacity: 0.85; }

/* =========================================================
   GENERIC SECTION HEADERS
   ========================================================= */
.sec-head { max-width: 720px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin: 18px 0 16px; }
.sec-head p { font-size: 1.08rem; }

/* =========================================================
   STORY / SPLIT
   ========================================================= */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.split.rev { grid-template-columns: 0.95fr 1.05fr; }
@media (max-width: 860px){ .split, .split.rev { grid-template-columns: 1fr; gap: 44px; } }
.story-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--forest), var(--forest-deep));
  padding: clamp(34px, 4vw, 52px); color: #EAF1EE; box-shadow: var(--shadow-lg);
}
.story-card .grid-tex { position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 38px 38px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 80%); }
.story-card .glow { position: absolute; width: 320px; height: 320px; right: -80px; top: -80px; border-radius: 50%; background: radial-gradient(circle, rgba(91,169,154,0.4), transparent 65%); filter: blur(40px); }
.story-card h3 { color: #fff; font-size: 1.7rem; margin-bottom: 14px; position: relative; }
.story-card p { color: rgba(234,241,238,0.78); position: relative; }
.story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; position: relative; }
.story-stats .n { font-family: var(--font-display); font-size: 2rem; color: #fff; }
.story-stats .n .u { color: var(--terracotta-soft); }
.story-stats .l { font-family: var(--font-ui); font-size: 0.74rem; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(234,241,238,0.6); margin-top: 4px; }

.story-text h2 { margin-bottom: 22px; }
.story-text p + p { margin-top: 16px; }
.story-text .textlink { margin-top: 26px; }

/* =========================================================
   STATS — dark band (premium contrast)
   ========================================================= */
.band-dark { background: linear-gradient(160deg, var(--forest), var(--forest-deep)); color: #EAF1EE; position: relative; overflow: hidden; }
.band-dark .grid-tex { position: absolute; inset: 0; opacity: 0.6; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 50% 0%, #000, transparent 75%); }
.band-dark .glow-c { position: absolute; width: 600px; height: 400px; left: 50%; top: -150px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(91,169,154,0.25), transparent 70%); filter: blur(60px); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); position: relative; z-index: 2; text-align: center; }
@media (max-width: 760px){ .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; } }
.stat .n { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: #fff; }
.stat .n .u { color: var(--terracotta-soft); }
.stat .l { font-family: var(--font-ui); font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(234,241,238,0.62); margin-top: 12px; }

/* =========================================================
   SERVICES GRID
   ========================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
@media (max-width: 920px){ .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-card);
  padding: clamp(26px, 3vw, 34px); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.svc::after { content:""; position:absolute; left:0; top:0; height: 3px; width: 0; background: linear-gradient(90deg, var(--sage), var(--sage-light)); transition: width .4s var(--ease); }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(61,139,122,0.25); }
.svc:hover::after { width: 100%; }
.svc .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px; color: #fff; box-shadow: 0 8px 18px rgba(44,62,58,0.12); }
.svc .ic svg { width: 24px; height: 24px; }
.svc h3 { font-size: 1.28rem; margin-bottom: 10px; }
.svc p { font-size: 0.97rem; }
.svc .more { margin-top: 18px; }
.ic-sage { background: linear-gradient(140deg, var(--sage), var(--sage-light)); }
.ic-terra { background: linear-gradient(140deg, var(--terracotta), var(--terracotta-soft)); }
.ic-forest { background: linear-gradient(140deg, var(--forest), #3a544e); }

/* =========================================================
   PROCESS / STEPS
   ========================================================= */
.steps { display: grid; gap: 16px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3vw, 34px); align-items: start;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.step .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--sage); opacity: 0.4; line-height: 1; min-width: 1.6em; }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { font-size: 0.98rem; }

/* =========================================================
   RESULTS / CASE CARDS
   ========================================================= */
.cases { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2vw,26px); }
@media (max-width: 920px){ .cases { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .cases { grid-template-columns: 1fr; } }
.case {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case .top { padding: 28px 28px 0; }
.case .cat { font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; }
.case h3 { font-size: 1.35rem; margin: 12px 0 14px; }
.case p { font-size: 0.96rem; padding: 0 28px; }
.case .metrics { display: flex; gap: 26px; padding: 22px 28px 28px; margin-top: auto; }
.case .metrics .n { font-family: var(--font-display); font-size: 1.7rem; color: var(--sage); }
.case .metrics .l { font-family: var(--font-ui); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-top: 2px; }
.case .bar { height: 6px; background: linear-gradient(90deg, var(--sage), var(--terracotta)); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2vw,26px); }
@media (max-width: 920px){ .quotes { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; } }
.quote {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 36px); box-shadow: var(--shadow-sm); position: relative;
}
.quote .mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--sage); opacity: 0.18; line-height: 0.5; position: absolute; top: 26px; left: 26px; }
.quote p { font-size: 1.04rem; color: var(--ink); position: relative; margin-top: 26px; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.quote .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg,var(--sage),var(--sage-light)); color:#fff; display:grid; place-items:center; font-family: var(--font-ui); font-weight: 600; font-size: 0.9rem; }
.quote .who .nm { font-family: var(--font-ui); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.quote .who .rl { font-size: 0.8rem; color: var(--muted); }
.stars { color: var(--terracotta); letter-spacing: 2px; font-size: 0.9rem; margin-top: 4px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 26px 4px; font-family: var(--font-ui); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.faq-q .ic { width: 30px; height: 30px; min-width: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: .35s var(--ease); color: var(--sage); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--sage); color: #fff; border-color: var(--sage); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding: 0 4px 26px; font-size: 1rem; }

/* =========================================================
   CTA BAND (forest)
   ========================================================= */
.cta-band { background: linear-gradient(155deg, var(--forest), var(--forest-deep)); color: #fff; position: relative; overflow: hidden; }
.cta-band .glow { position: absolute; width: 700px; height: 500px; left: 50%; top: 50%; transform: translate(-50%,-50%); background: radial-gradient(ellipse, rgba(91,169,154,0.28), transparent 70%); filter: blur(70px); }
.cta-band .grid-tex { position: absolute; inset: 0; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 50% 50%, #000, transparent 70%); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin-inline: auto; }
.cta-inner h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.cta-inner p { color: rgba(234,241,238,0.8); font-size: 1.1rem; margin-bottom: 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--forest-deep); color: rgba(234,241,238,0.7); padding-block: clamp(56px, 7vw, 84px) 36px; position: relative; z-index: 2; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px){ .footer-top { grid-template-columns: 1fr; } }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer-about { max-width: 30ch; font-size: 0.92rem; color: rgba(234,241,238,0.6); }
.footer h4 { font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(234,241,238,0.5); font-weight: 600; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a { font-size: 0.92rem; color: rgba(234,241,238,0.72); transition: color .25s, padding-left .25s; }
.footer ul a:hover { color: #fff; padding-left: 4px; }
.footer-bot { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.84rem; color: rgba(234,241,238,0.5); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }
.reveal[data-d="5"]{ transition-delay: .40s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero { padding-top: clamp(150px, 20vh, 220px); padding-bottom: clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.page-hero .hero-glow.g1 { top: -180px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 18px 0 20px; max-width: 16ch; }
.page-hero .lead { font-size: clamp(1.05rem,1.6vw,1.25rem); }

/* Misc */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,24px); }
@media (max-width: 820px){ .value-grid { grid-template-columns: 1fr; } }
.value { background:#fff; border:1px solid var(--line-soft); border-radius: var(--r-card); padding: clamp(26px,3vw,34px); box-shadow: var(--shadow-sm); }
.value .vn { font-family: var(--font-display); font-size: 1.6rem; color: var(--sage); margin-bottom: 10px; }
.value h3 { font-size: 1.2rem; margin-bottom: 8px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,72px); align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; gap: 44px; } }
.form { background:#fff; border:1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display:block; font-family: var(--font-ui); font-weight:600; font-size:0.84rem; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width:100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream); border:1px solid var(--line); border-radius: 12px; padding: 0.85em 1em; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(61,139,122,0.12); }
.field textarea { min-height: 120px; resize: vertical; }
.contact-aside .ci { display:flex; gap:16px; align-items:flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-aside .ci .ic { width:46px; height:46px; min-width:46px; border-radius:12px; background: rgba(61,139,122,0.1); color: var(--sage); display:grid; place-items:center; }
.contact-aside .ci h4 { font-family: var(--font-ui); font-size:0.78rem; letter-spacing:0.1em; text-transform:uppercase; color: var(--muted); margin-bottom:4px; font-weight:600; }
.contact-aside .ci p { color: var(--ink); font-weight: 500; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 8px; text-align:center; }
