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

:root {
  --navy:        #0B1C3D;
  --navy-mid:    #122444;
  --navy-light:  #1a3260;
  --emerald:     #0D5C4A;
  --emerald-mid: #0f6e59;
  --emerald-glow:#14a882;
  --gold:        #C9A84C;
  --gold-light:  #E2C06A;
  --gold-pale:   #f5e9c8;
  --cream:       #F7F4EE;
  --white:       #FFFFFF;
  --text:        #0B1C3D;
  --text-mid:    #4a5568;
  --text-light:  #8a95a3;
  --border:      rgba(11,28,61,0.1);
  --border-gold: rgba(201,168,76,0.3);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'DM Sans', sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.7;
}

/* ── NAV ───────────────────────────────────────── */
nav {
  position:sticky; top:0; z-index:200;
  background:var(--navy);
  border-bottom:1px solid rgba(201,168,76,0.2);
  box-shadow:0 2px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width:1140px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 36px; height:140px;
}
.nav-logo img { height:120px; width:auto; display:block; }
.nav-links { display:flex; list-style:none; gap:4px; }
.nav-links a {
  font-size:13.5px; font-weight:500;
  color:rgba(255,255,255,0.65);
  text-decoration:none;
  padding:8px 16px; border-radius:8px;
  transition:background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active {
  color:#fff;
  background:rgba(255,255,255,0.08);
}
.nav-cta {
  background:var(--gold);
  color:var(--navy);
  font-size:13px; font-weight:600;
  padding:9px 22px; border-radius:8px;
  text-decoration:none;
  transition:background .2s, transform .15s;
}
.nav-cta:hover { background:var(--gold-light); transform:translateY(-1px); }

/* ── PAGE HERO ─────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #0f2a5a 100%);
  position:relative; overflow:hidden;
  padding:96px 36px 88px;
}
.hero::before {
  content:''; position:absolute;
  top:-100px; right:-80px;
  width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle, rgba(13,92,74,0.3) 0%, transparent 65%);
  pointer-events:none;
}
.hero::after {
  content:''; position:absolute;
  bottom:-60px; left:8%;
  width:360px; height:360px; border-radius:50%;
  background:radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events:none;
}
.hero-inner {
  max-width:1140px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:64px; align-items:center;
  position:relative; z-index:1;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(201,168,76,0.12);
  border:1px solid rgba(201,168,76,0.35);
  border-radius:30px; padding:5px 16px;
  font-size:11.5px; font-weight:500;
  letter-spacing:.07em; text-transform:uppercase;
  color:var(--gold-light); margin-bottom:20px;
}
.hero-badge .pulse {
  width:7px; height:7px; border-radius:50%;
  background:var(--emerald-glow); display:inline-block;
}
.hero h1 {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(38px,4.8vw,60px);
  font-weight:400; line-height:1.1;
  color:#fff; margin-bottom:22px;
  letter-spacing:-.02em;
}
.hero h1 em { font-style:italic; color:var(--gold-light); }
.hero-sub {
  font-size:15.5px; font-weight:300;
  color:rgba(255,255,255,0.65);
  max-width:500px; margin-bottom:36px; line-height:1.8;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.btn-gold {
  background:var(--gold); color:var(--navy);
  font-size:14px; font-weight:700;
  padding:13px 30px; border-radius:9px;
  text-decoration:none;
  transition:background .2s, transform .15s, box-shadow .15s;
}
.btn-gold:hover {
  background:var(--gold-light);
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(201,168,76,0.35);
}
.btn-ghost {
  border:1.5px solid rgba(255,255,255,0.3);
  color:#fff; font-size:14px; font-weight:400;
  padding:13px 30px; border-radius:9px;
  text-decoration:none;
  transition:background .2s, border-color .2s;
}
.btn-ghost:hover {
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.6);
}

/* hero stat card */
.hero-card {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px; padding:36px 32px;
  backdrop-filter:blur(6px);
}
.stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.stat-box {
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:22px 18px;
  text-align:center;
}
.stat-num {
  font-family:'Cormorant Garamond', serif;
  font-size:40px; font-weight:300; color:#fff;
  line-height:1; margin-bottom:6px;
}
.stat-num span { color:var(--gold-light); }
.stat-lbl { font-size:11.5px; color:rgba(255,255,255,0.45); line-height:1.45; }
.card-footnote {
  text-align:center; margin-top:20px;
  font-size:12px; color:rgba(255,255,255,0.3);
  font-style:italic;
}

/* ── SECTION BASE ──────────────────────────────── */
section { padding:88px 36px; }
.inner { max-width:1140px; margin:0 auto; }
.sec-eyebrow {
  font-size:11px; font-weight:600;
  letter-spacing:.15em; text-transform:uppercase;
  color:var(--emerald-mid); margin-bottom:10px;
}
h2.sec-title {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(30px,3.8vw,46px);
  font-weight:400; line-height:1.18;
  color:var(--navy); margin-bottom:16px;
}
.sec-sub {
  font-size:15px; color:var(--text-mid);
  max-width:580px; line-height:1.8;
  margin-bottom:52px;
}

/* ── SERVICE CARDS ─────────────────────────────── */
.card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.card-grid.two { grid-template-columns:1fr 1fr; }
.svc-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:16px; padding:32px 28px;
  position:relative; overflow:hidden;
  transition:box-shadow .25s, transform .25s;
}
.svc-card::after {
  content:''; position:absolute;
  top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--emerald), var(--emerald-glow));
  opacity:0; transition:opacity .25s;
}
.svc-card:hover { box-shadow:0 12px 48px rgba(11,28,61,0.12); transform:translateY(-3px); }
.svc-card:hover::after { opacity:1; }
.card-icon {
  width:48px; height:48px; border-radius:12px;
  background:linear-gradient(135deg, var(--emerald), var(--emerald-glow));
  display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:18px;
}
.svc-card h3 {
  font-family:'Cormorant Garamond', serif;
  font-size:21px; font-weight:600; color:var(--navy);
  margin-bottom:10px;
}
.svc-card p { font-size:13.5px; color:var(--text-mid); line-height:1.75; }
.card-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:600; color:var(--emerald-mid);
  text-decoration:none; margin-top:16px;
  transition:gap .2s;
}
.card-link:hover { gap:10px; }

/* ── DARK SECTION ──────────────────────────────── */
.dark-sec {
  background:var(--navy);
  padding:88px 36px;
  position:relative; overflow:hidden;
}
.dark-sec::before {
  content:''; position:absolute;
  top:-120px; right:-80px;
  width:480px; height:480px; border-radius:50%;
  background:radial-gradient(circle, rgba(13,92,74,0.22), transparent 70%);
}
.dark-sec .sec-eyebrow { color:var(--gold); }
.dark-sec h2.sec-title { color:#fff; }
.dark-sec .sec-sub { color:rgba(255,255,255,0.55); }

/* ── STAT BAR ──────────────────────────────────── */
.stat-bar {
  display:grid; grid-template-columns:repeat(4,1fr);
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px; overflow:hidden;
  margin-bottom:52px;
}
.stat-bar-cell {
  padding:32px 24px; text-align:center;
  position:relative;
}
.stat-bar-cell + .stat-bar-cell::before {
  content:''; position:absolute;
  left:0; top:20%; height:60%;
  width:1px; background:rgba(255,255,255,0.1);
}
.stat-bar-cell .num {
  font-family:'Cormorant Garamond', serif;
  font-size:42px; font-weight:300;
  color:var(--gold-light); line-height:1; margin-bottom:6px;
}
.stat-bar-cell .lbl {
  font-size:12px; color:rgba(255,255,255,0.45);
  letter-spacing:.03em;
}

/* ── STEPS ─────────────────────────────────────── */
.steps { display:flex; flex-direction:column; gap:0; position:relative; }
.steps::before {
  content:''; position:absolute;
  left:27px; top:56px; bottom:56px; width:2px;
  background:linear-gradient(to bottom, var(--emerald), var(--gold));
}
.step {
  display:flex; gap:28px; align-items:flex-start;
  padding:28px 0;
}
.step-num {
  width:56px; height:56px; min-width:56px;
  border-radius:50%;
  background:var(--navy); border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond', serif;
  font-size:22px; font-weight:600; color:var(--gold);
  position:relative; z-index:1;
}
.step-body h3 {
  font-family:'Cormorant Garamond', serif;
  font-size:21px; font-weight:600; color:var(--navy);
  margin-bottom:8px; margin-top:10px;
}
.step-body p { font-size:14px; color:var(--text-mid); line-height:1.75; }

/* ── REASSURANCE STRIP ─────────────────────────── */
.reassure-strip {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1px; background:var(--border);
  border:1px solid var(--border); border-radius:14px;
  overflow:hidden; margin-top:56px;
}
.reassure-cell {
  background:var(--cream);
  padding:24px 22px;
  display:flex; align-items:flex-start; gap:12px;
}
.reassure-cell .icon { font-size:20px; margin-top:2px; }
.reassure-cell p { font-size:13px; color:var(--text-mid); line-height:1.6; }
.reassure-cell strong { color:var(--navy); font-weight:600; display:block; margin-bottom:3px; }

/* ── WHY GRID ──────────────────────────────────── */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.why-card {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:28px 26px;
  display:flex; gap:18px; align-items:flex-start;
  transition:background .25s, border-color .25s;
}
.why-card:hover {
  background:rgba(255,255,255,0.07);
  border-color:rgba(201,168,76,0.3);
}
.why-num {
  font-family:'Cormorant Garamond', serif;
  font-size:36px; font-weight:300;
  color:rgba(201,168,76,0.35);
  line-height:1; min-width:36px;
}
.why-card h3 {
  font-family:'Cormorant Garamond', serif;
  font-size:19px; font-weight:600; color:#fff;
  margin-bottom:8px;
}
.why-card p { font-size:13.5px; color:rgba(255,255,255,0.55); line-height:1.7; }

/* ── TAGS ──────────────────────────────────────── */
.tag-cloud { display:flex; flex-wrap:wrap; gap:10px; }
.tag {
  background:var(--white);
  border:1px solid var(--border);
  font-size:12.5px; color:var(--text);
  padding:6px 16px; border-radius:30px;
  transition:border-color .2s, color .2s;
}
.tag:hover { border-color:var(--emerald-mid); color:var(--emerald-mid); }
.tag-dark {
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  font-size:12.5px; color:rgba(255,255,255,0.65);
  padding:6px 16px; border-radius:30px;
}

/* ── ADDON CARDS ────────────────────────────────── */
.addon-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.addon-card {
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:12px; padding:20px 20px;
  display:flex; align-items:flex-start; gap:12px;
}
.addon-dot {
  width:8px; height:8px; min-width:8px;
  border-radius:50%; background:var(--gold);
  margin-top:8px;
}
.addon-card p { font-size:13px; color:var(--text-mid); line-height:1.6; }
.addon-card strong { color:var(--navy); font-weight:600; font-size:13.5px; display:block; margin-bottom:3px; }

/* ── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  background:linear-gradient(130deg, var(--navy) 0%, var(--navy-light) 100%);
  border-top:1px solid rgba(201,168,76,0.15);
  padding:80px 36px; text-align:center;
  position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute;
  top:50%; left:50%; transform:translate(-50%,-50%);
  width:600px; height:400px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(13,92,74,0.18), transparent 65%);
}
.cta-banner .inner { position:relative; z-index:1; }
.cta-banner h2.sec-title { color:#fff; margin-bottom:14px; }
.cta-banner .sec-sub { color:rgba(255,255,255,0.55); margin-left:auto; margin-right:auto; }
.cta-email {
  display:inline-block;
  font-family:'Cormorant Garamond', serif;
  font-size:22px; font-weight:400; font-style:italic;
  color:var(--gold-light);
  text-decoration:none; margin-bottom:28px;
  border-bottom:1px solid rgba(201,168,76,0.4);
  padding-bottom:4px;
  transition:color .2s, border-color .2s;
}
.cta-email:hover { color:var(--gold); border-color:var(--gold); }

/* ── CONTACT ROW ────────────────────────────────── */
.contact-row {
  display:flex; justify-content:center;
  flex-wrap:wrap; gap:14px; margin-bottom:28px;
}
.contact-pill {
  display:flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:40px; padding:10px 22px;
  font-size:13.5px; color:rgba(255,255,255,0.8);
  text-decoration:none;
  transition:background .2s, border-color .2s;
}
.contact-pill:hover {
  background:rgba(255,255,255,0.12);
  border-color:rgba(201,168,76,0.5);
  color:#fff;
}
.cta-note { font-size:12px; color:rgba(255,255,255,0.3); font-style:italic; }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background:#060f20;
  padding:52px 36px 28px;
}
.footer-grid {
  max-width:1140px; margin:0 auto;
  display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr;
  gap:48px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.footer-brand-name {
  font-family:'Cormorant Garamond', serif;
  font-size:22px; font-weight:400; color:#fff;
  margin-bottom:6px;
}
.footer-brand p { font-size:13px; color:rgba(255,255,255,0.35); line-height:1.7; max-width:220px; }
footer h4 {
  font-size:11px; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,0.35); margin-bottom:14px;
}
footer ul { list-style:none; }
footer ul li { margin-bottom:10px; }
footer ul a { font-size:13.5px; color:rgba(255,255,255,0.55); text-decoration:none; transition:color .2s; }
footer ul a:hover { color:#fff; }
.footer-contact p { font-size:13px; color:rgba(255,255,255,0.55); margin-bottom:8px; }
.footer-contact a { color:rgba(255,255,255,0.7); text-decoration:none; }
.footer-contact a:hover { color:var(--gold-light); }
.footer-bottom {
  max-width:1140px; margin:22px auto 0;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
  font-size:11.5px; color:rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media(max-width:900px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-card { display:none; }
  .card-grid, .card-grid.two { grid-template-columns:1fr; }
  .stat-bar { grid-template-columns:1fr 1fr; }
  .why-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .addon-grid { grid-template-columns:1fr 1fr; }
  .reassure-strip { grid-template-columns:1fr 1fr; }
  .nav-links { display:none; }
}
@media(max-width:600px) {
  .stat-bar { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .addon-grid { grid-template-columns:1fr; }
  .reassure-strip { grid-template-columns:1fr; }
  section { padding:64px 22px; }
  .hero { padding:72px 22px 64px; }
  .dark-sec { padding:64px 22px; }
}

/* fade-in */
.fade { opacity:0; transform:translateY(22px); animation:fu .65s ease forwards; }
@keyframes fu { to { opacity:1; transform:none; } }
.d1{animation-delay:.12s} .d2{animation-delay:.24s} .d3{animation-delay:.36s} .d4{animation-delay:.48s}
