:root {
  --bg: #f7faf9;
  --surface: #ffffff;
  --surface-2: #eef6f4;
  --text: #102032;
  --muted: #5f7082;
  --navy: #123b5d;
  --blue: #1769aa;
  --green: #1a936f;
  --line: #dce7eb;
  --shadow: 0 18px 45px rgba(18, 59, 93, 0.11);
  --radius: 8px;
  --container: 1180px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-muted { background: var(--surface-2); }
.section-head { max-width: 760px; text-align: center; margin-bottom: 34px; }
.section-head p { color: var(--muted); margin: 0; }
.eyebrow {
  color: var(--green);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 12px;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: 0; margin: 0; }
h1 { font-size: clamp(2.45rem, 5vw, 4.7rem); max-width: 830px; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 16px; }
h3 { font-size: 1.12rem; }
p { margin: 0 0 18px; }
.lead { font-size: 1.2rem; color: #32485d; max-width: 680px; }
.microcopy { color: var(--muted); font-size: 0.95rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 249, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 231, 235, 0.8);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; color: var(--navy); }
.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--green));
  box-shadow: 0 10px 25px rgba(26, 147, 111, 0.22);
}
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 700; color: #385064; }
.nav-links a:hover { color: var(--green); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--surface); border-radius: 8px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(26, 147, 111, 0.2); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-small { min-height: 42px; padding-inline: 16px; color: #fff !important; }

.hero { padding-top: 66px; }
.hero-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: center; }
.hero-grid > *, .contact-grid > *, .split > *, .map-grid > * { min-width: 0; }
.hero-actions, .map-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 14px; }
.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #fff;
  background: var(--surface);
}
.trust-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-row article, .card, .service-card, .pricing-card, .nap-card, .guides-grid article, .advisor-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18, 59, 93, 0.06);
}
.trust-row article { padding: 18px; display: grid; gap: 2px; }
.trust-row span, .card p, .service-card li, .pricing-card li, .pricing-card p, .guides-grid p { color: var(--muted); }

.card-grid, .services-grid, .pricing-grid, .guides-grid {
  display: grid;
  gap: 18px;
}
.audience-grid { grid-template-columns: repeat(3, 1fr); }
.card { padding: 24px; }
.card h3 { margin-bottom: 10px; color: var(--navy); }

.services-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.service-card { padding: 24px; }
.service-card.wide { grid-column: span 3; }
.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e8f6f1;
  color: var(--green);
  font-weight: 900;
  margin-bottom: 16px;
}
ul { padding-left: 20px; margin: 16px 0 0; }
li + li { margin-top: 8px; }
.center-cta { display: flex; justify-content: center; margin-top: 28px; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process article { padding: 24px 0 0; border-top: 2px solid var(--line); }
.process span { color: var(--green); font-weight: 900; }
.process h3 { margin: 12px 0 10px; }
.process p { color: var(--muted); }

.split { display: grid; grid-template-columns: 0.8fr 1fr; gap: 44px; align-items: start; }
.split p { color: var(--muted); }
.about-copy { max-width: 820px; }
.about-copy p { color: var(--muted); font-size: 1.08rem; }
.benefit-list { display: flex; flex-wrap: wrap; gap: 12px; }
.benefit-list span, .contact-cards span {
  display: inline-flex;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 11px 14px;
  font-weight: 750;
  color: #344b60;
}

.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-card { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.pricing-card .btn { margin-top: auto; }
.pricing-card.featured { border: 2px solid var(--green); box-shadow: var(--shadow); transform: translateY(-8px); }
.badge { display: inline-flex; width: fit-content; background: #e8f6f1; color: var(--green) !important; padding: 6px 10px; border-radius: 8px; font-weight: 850; }
.package-note { text-align: center; color: var(--muted); margin-top: 24px; max-width: 820px; }

.section-map { background: #102032; color: #fff; }
.section-map p { color: #d6e3eb; }
.map-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 28px; align-items: start; }
.nap-card { color: var(--text); padding: 24px; }
.nap-card p { color: #43566a; margin-bottom: 10px; }
.map-placeholder {
  min-height: 320px;
  margin-top: 24px;
  border: 1px dashed rgba(255,255,255,0.35);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #d6e3eb;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.map-placeholder iframe { width: 100%; height: 320px; border: 0; display: block; }

.faq-list { max-width: 880px; }
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 8px 20px rgba(18, 59, 93, 0.05);
}
details + details { margin-top: 12px; }
summary { cursor: pointer; font-weight: 850; color: var(--navy); }
details p { color: var(--muted); margin: 14px 0 0; }

.guides-grid { grid-template-columns: repeat(4, 1fr); }
.guides-grid article { padding: 20px; }
.guides-grid h3 { margin-bottom: 10px; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 34px; align-items: start; }
.contact-cards { display: grid; gap: 10px; margin-top: 24px; }
.advisor-card { overflow: hidden; }
.advisor-photo { position: relative; background: var(--surface-2); }
.advisor-photo img { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.advisor-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(16, 32, 50, 0.14);
}
.advisor-content { padding: 28px; }
.advisor-content h3 { font-size: clamp(1.65rem, 2.5vw, 2.25rem); color: var(--navy); margin-bottom: 8px; }
.advisor-title { color: var(--green); font-weight: 850; margin-bottom: 16px; }
.advisor-content p:not(.eyebrow):not(.advisor-title) { color: var(--muted); }
.advisor-cta {
  margin: 24px 0 18px;
  padding: 20px;
  border-radius: 8px;
  background: #eef6f4;
  border: 1px solid var(--line);
}
.advisor-cta h4 { margin: 0 0 8px; font-size: 1.2rem; color: var(--navy); }
.advisor-cta p { margin-bottom: 16px; }
.advisor-cta .btn { margin: 0 8px 8px 0; }
label { display: grid; gap: 7px; color: #31485c; font-weight: 750; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cddce3;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(26, 147, 111, 0.18); border-color: var(--green); }
.full { grid-column: 1 / -1; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.site-footer { background: #0d1c2b; color: #d9e4ea; padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.site-footer h2 { font-size: 1rem; margin: 0 0 12px; color: #fff; }
.site-footer p { color: #aebfc9; margin-top: 14px; }
.site-footer a:not(.brand) { display: block; color: #c7d7df; margin: 9px 0; }
.site-footer .brand { color: #fff; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); color: #aebfc9; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
@media (max-width: 980px) {
  .hero-grid, .split, .map-grid, .contact-grid { grid-template-columns: 1fr; }
  .trust-row, .process, .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid, .services-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .service-card.wide { grid-column: span 2; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 10px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px; }
  .hero { padding-top: 42px; }
  .trust-row, .process, .audience-grid, .services-grid, .pricing-grid, .guides-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: auto; }
  .advisor-photo img { height: 430px; }
  .advisor-content { padding: 22px; }
  .advisor-cta .btn { width: 100%; margin-right: 0; }
}
