:root {
  --navy: #10243f;
  --blue: #1e5b8f;
  --teal: #1d7a78;
  --gold: #c8a456;
  --cream: #f7f3ea;
  --soft: #eef4f6;
  --text: #263547;
  --muted: #657384;
  --white: #ffffff;
  --line: #dce4ea;
  --shadow: 0 20px 60px rgba(16, 36, 63, 0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 780px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,228,234,0.7);
}
.nav-wrap { height: 78px; display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 750; color: var(--navy); }
.logo-mark {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  color: var(--white); background: linear-gradient(135deg, var(--navy), var(--teal)); font-weight: 800;
}
.logo-text { letter-spacing: -0.02em; }
.main-nav { margin-left: auto; display: flex; gap: 26px; align-items: center; color: var(--muted); font-weight: 600; }
.main-nav a.active, .main-nav a:hover { color: var(--navy); }
.nav-cta { padding: 11px 18px; border-radius: 999px; background: var(--navy); color: var(--white); font-weight: 700; }
.menu-btn { display: none; border: 0; background: transparent; font-size: 26px; color: var(--navy); margin-left: auto; }

.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(29,122,120,0.16), transparent 34%),
    linear-gradient(135deg, #f8fbfc 0%, #f7f3ea 100%);
  padding: 92px 0 90px;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--teal); font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px; margin: 0 0 16px; }
h1, h2, h3 { color: var(--navy); line-height: 1.12; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 70px); letter-spacing: -0.055em; }
h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.045em; }
h3 { font-size: 21px; letter-spacing: -0.025em; }
.hero-text { font-size: 19px; color: var(--muted); max-width: 660px; margin: 24px 0 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; cursor: pointer; }
.btn.primary { background: var(--teal); color: var(--white); box-shadow: 0 12px 28px rgba(29,122,120,0.22); }
.btn.secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
.btn.light { background: var(--white); color: var(--navy); }
.hero-card {
  background: var(--white); border: 1px solid rgba(220,228,234,0.9); border-radius: 30px; padding: 30px; box-shadow: var(--shadow);
}
.card-label { color: var(--gold); font-weight: 800; margin-bottom: 18px; }
.hero-list { display: grid; gap: 16px; }
.hero-list div { padding: 22px; background: var(--soft); border-radius: 22px; }
.hero-list span { color: var(--teal); font-weight: 900; margin-right: 10px; }
.hero-list strong { color: var(--navy); font-size: 18px; }
.hero-list p { margin: 8px 0 0; color: var(--muted); }

.section { padding: 84px 0; }
.section-heading { max-width: 820px; margin-bottom: 36px; }
.section-heading.narrow { margin-left: auto; margin-right: auto; text-align: center; }
.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card, .service-card, .quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: 28px; box-shadow: 0 10px 35px rgba(16,36,63,0.05);
}
.info-card p, .service-card p, .quote-card p { color: var(--muted); margin: 12px 0 0; }
.pain-section { background: var(--white); }
.services-preview { background: var(--navy); color: var(--white); }
.services-preview h2, .services-preview h3 { color: var(--white); }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.text-link { color: #d8c58b; font-weight: 800; white-space: nowrap; }
.service-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.service-card p { color: rgba(255,255,255,0.72); }
.service-card.featured { background: rgba(29,122,120,0.36); }
.service-icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: rgba(255,255,255,0.12); color: #d8c58b; font-weight: 900; margin-bottom: 22px; }

.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; }
.large-text { font-size: 19px; color: var(--muted); margin-top: 22px; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-list div { background: var(--white); border-radius: 24px; padding: 24px; border: 1px solid rgba(220,228,234,0.8); }
.why-list p { color: var(--muted); margin: 10px 0 0; }

.audience-section { background: var(--white); }
.pill-grid { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.pill-grid span { padding: 12px 18px; border-radius: 999px; background: var(--soft); color: var(--navy); font-weight: 700; }
.lead-section { background: var(--white); padding-top: 30px; }
.lead-box { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 42px; border-radius: 32px; background: linear-gradient(135deg, var(--navy), #164d64); color: var(--white); }
.lead-box h2 { color: var(--white); }
.lead-box p { color: rgba(255,255,255,0.75); max-width: 720px; }
.faq-section { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 48px; }
details { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; margin-bottom: 14px; }
summary { cursor: pointer; font-weight: 800; color: var(--navy); }
details p { color: var(--muted); margin-bottom: 0; }
.final-cta { padding: 70px 0; background: var(--navy); }
.final-cta-box { text-align: center; color: var(--white); }
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.72); font-size: 18px; }

.page-hero { padding: 86px 0 64px; background: linear-gradient(135deg, #f8fbfc, #f7f3ea); text-align: center; }
.page-hero h1 { font-size: clamp(40px, 5vw, 62px); }
.page-hero p:not(.eyebrow) { color: var(--muted); font-size: 19px; margin: 22px auto 0; max-width: 720px; }
.service-list { display: grid; gap: 18px; }
.service-row { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 34px; padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: var(--white); }
.row-number { display: inline-block; color: var(--teal); font-weight: 900; margin-bottom: 10px; }
.service-row p { color: var(--muted); margin: 0; font-size: 17px; }
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: start; }
.about-card { background: var(--navy); color: var(--white); border-radius: 30px; padding: 36px; }
.about-card h2 { color: var(--white); }
.about-card p { color: rgba(255,255,255,0.75); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.values-grid div { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 24px; }
.values-grid p { color: var(--muted); margin-bottom: 0; }
.quote-card span { display: block; margin-top: 16px; color: var(--teal); font-weight: 800; }
.contact-section { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 34px; align-items: start; }
.contact-info, .contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 30px; padding: 32px; box-shadow: 0 10px 35px rgba(16,36,63,0.05); }
.contact-info p { color: var(--muted); }
.contact-box { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 18px; }
.contact-box p { margin: 6px 0 0; }
.contact-form { display: grid; gap: 16px; }
label { font-weight: 800; color: var(--navy); display: grid; gap: 8px; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--text); background: var(--white); }
textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: 13px; margin: 0; }

.site-footer { background: #0b1b30; color: rgba(255,255,255,0.72); padding: 48px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.8fr; gap: 30px; }
.footer-logo .logo-text { color: var(--white); }
.site-footer h4 { color: var(--white); margin: 0 0 12px; }
.site-footer a { display: block; margin: 8px 0; color: rgba(255,255,255,0.72); }
.copyright { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 30px; padding-top: 20px; font-size: 14px; }

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .menu-btn { display: block; }
  .main-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; background: var(--white); padding: 18px 20px; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .hero-grid, .why-grid, .faq-grid, .service-row, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .three-grid, .why-list, .values-grid, .footer-grid { grid-template-columns: 1fr; }
  .split-heading, .lead-box { align-items: flex-start; flex-direction: column; }
  .hero { padding: 64px 0; }
  .section { padding: 62px 0; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .logo-text { font-size: 14px; }
  .lead-box { padding: 28px; }
}
