:root {
  --navy-950: #07182b;
  --navy-900: #0c2742;
  --navy-800: #123a60;
  --navy-700: #174a79;
  --blue-600: #2268b0;
  --blue-500: #2c7ad0;
  --blue-400: #56a4ef;
  --blue-200: #cbe5ff;
  --blue-100: #e7f3ff;
  --ice: #f5f9fd;
  --white: #ffffff;
  --ink: #102033;
  --muted: #657487;
  --line: #dce7f1;
  --success: #16a765;
  --shadow-sm: 0 12px 35px rgba(17, 57, 94, .08);
  --shadow-lg: 0 28px 80px rgba(11, 42, 72, .16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: 'Avenir Next', Avenir, 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--blue-200); color: var(--navy-950); }

.skip-link {
  position: fixed;
  z-index: 200;
  left: 16px;
  top: 12px;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy-900);
  color: white;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-sm { padding: 76px 0; }
.section-ice { background: var(--ice); }
.section-soft {
  background:
    radial-gradient(circle at 15% 5%, rgba(86,164,239,.13), transparent 31%),
    radial-gradient(circle at 90% 78%, rgba(44,122,208,.09), transparent 30%),
    #fbfdff;
}
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; border-radius: 99px; }
h1, h2, h3, h4 { margin: 0; color: var(--navy-950); line-height: 1.08; }
h1, h2, h3 { font-family: 'Iowan Old Style', Baskerville, 'Palatino Linotype', Georgia, serif; font-weight: 400; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.35rem, 4.6vw, 4.5rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.55rem, 2.2vw, 2.15rem); letter-spacing: -.02em; }
h4 { font-size: 1.05rem; font-weight: 800; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.3rem); color: var(--muted); line-height: 1.75; }
.muted { color: var(--muted); }
.text-blue { color: var(--blue-600); }
.text-gradient {
  background: linear-gradient(115deg, var(--navy-900), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  border-bottom: 1px solid rgba(220,231,241,.75);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(7,24,43,.07); height: 72px; }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 214px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a:not(.button) {
  position: relative;
  color: #41536a;
  font-size: .92rem;
  font-weight: 700;
}
.main-nav > a:not(.button)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 999px;
  transition: right .2s ease;
}
.main-nav > a:hover::after, .main-nav > a[aria-current='page']::after { right: 0; }
.main-nav > a[aria-current='page'] { color: var(--navy-900); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--navy-900);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 26px 20px 34px;
  background: rgba(255,255,255,.98);
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.22,.8,.25,1);
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.mobile-nav-head img { width: 200px; }
.mobile-nav-close { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 12px; background: transparent; color: var(--navy-950); }
.mobile-nav-links { display: grid; gap: 7px; margin: 44px 0 auto; }
.mobile-nav-links a { padding: 15px 8px; border-bottom: 1px solid var(--line); font-size: 1.16rem; font-weight: 700; }
.mobile-nav-actions { display: grid; gap: 12px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(115deg, var(--navy-800), var(--blue-500)); box-shadow: 0 12px 30px rgba(34,104,176,.24); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(34,104,176,.30); }
.button-secondary { color: var(--navy-900); background: white; border-color: var(--line); box-shadow: var(--shadow-sm); }
.button-ghost { color: var(--navy-900); background: transparent; border-color: rgba(23,74,121,.2); }
.button-white { color: var(--navy-900); background: white; }
.button svg { width: 19px; height: 19px; flex: 0 0 auto; }

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 72px 0 88px;
  background:
    linear-gradient(rgba(16,32,51,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,32,51,.035) 1px, transparent 1px),
    radial-gradient(circle at 84% 18%, rgba(86,164,239,.24), transparent 32%),
    radial-gradient(circle at 12% 88%, rgba(34,104,176,.08), transparent 30%),
    #fbfdff;
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
}
.hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -250px;
  border: 1px solid rgba(44,122,208,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 78px rgba(44,122,208,.03), 0 0 0 156px rgba(44,122,208,.025);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(46px, 7vw, 100px); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 850px; }
.hero-copy .lead { max-width: 690px; margin: 28px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 26px; color: var(--muted); font-size: .9rem; }
.hero-note .avatar-stack { display: flex; }
.hero-note .avatar-dot {
  width: 28px;
  height: 28px;
  margin-left: -7px;
  border: 2px solid white;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-200), var(--blue-500));
}
.hero-note .avatar-dot:first-child { margin-left: 0; }
.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.photo-shell {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: .86;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 52px 52px 150px 52px;
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.photo-shell::before {
  content: '';
  position: absolute;
  inset: 11% -9% -5% 19%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(86,164,239,.7), rgba(34,104,176,.18) 55%, transparent 70%);
  filter: blur(8px);
}
.photo-shell img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 34%; border-radius: 42px 42px 140px 42px; }
.floating-card {
  position: absolute;
  padding: 18px 22px;
  border: 1px solid rgba(220,231,241,.9);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 48px rgba(11,42,72,.14);
  backdrop-filter: blur(14px);
}
.floating-card strong { display: block; color: var(--navy-900); font-size: 1.22rem; }
.floating-card span { display: block; color: var(--muted); font-size: .78rem; }
.floating-card.one { left: -4%; bottom: 14%; }
.floating-card.two { right: -4%; top: 16%; }
.hero-scroll { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-scroll::after { content: ''; width: 1px; height: 34px; background: linear-gradient(var(--blue-500), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .4;} 50% { transform: scaleY(1); opacity: 1;} }

.trust-strip { position: relative; z-index: 3; margin-top: -34px; }
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.metric { padding: 30px; text-align: center; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric-value { display: block; color: var(--blue-600); font-family: 'Iowan Old Style', Baskerville, 'Palatino Linotype', Georgia, serif; font-size: 2.3rem; line-height: 1; }
.metric-label { display: block; margin-top: 8px; color: var(--muted); font-size: .84rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--blue-200); box-shadow: 0 22px 60px rgba(11,42,72,.13); }
.card h3 { margin: 22px 0 12px; }
.card p { margin: 0; color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--navy-800); font-weight: 800; }
.card-link svg { width: 17px; transition: transform .2s ease; }
.card-link:hover svg { transform: translateX(4px); }
.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border: 1px solid var(--blue-200);
}
.icon-box svg { width: 26px; height: 26px; stroke-width: 1.8; }
.card-number { position: absolute; right: 24px; top: 20px; color: rgba(34,104,176,.08); font-family: 'DM Serif Display', serif; font-size: 4.3rem; line-height: 1; }

.system-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 74px; align-items: center; }
.system-visual {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-700));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 40px;
}
.system-visual::before, .system-visual::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); }
.system-visual::before { width: 340px; height: 340px; right: -100px; top: -90px; box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018); }
.system-visual::after { width: 220px; height: 220px; left: -100px; bottom: -100px; }
.system-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  width: 148px;
  height: 148px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(12px);
}
.system-center strong { font-family: 'DM Serif Display', serif; font-size: 1.55rem; line-height: 1.1; }
.orbit-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: white;
  color: var(--navy-900);
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.orbit-item i { width: 10px; height: 10px; border-radius: 50%; background: var(--blue-400); box-shadow: 0 0 0 6px rgba(86,164,239,.15); }
.orbit-item.a { left: 8%; top: 17%; }
.orbit-item.b { right: 7%; top: 24%; }
.orbit-item.c { left: 7%; bottom: 21%; }
.orbit-item.d { right: 10%; bottom: 15%; }
.check-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 16px; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 13px; align-items: start; }
.check-list svg { width: 24px; height: 24px; color: var(--blue-500); }
.check-list strong { color: var(--navy-900); }

.process { counter-reset: steps; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.process-step {
  position: relative;
  min-height: 260px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
}
.process-step::before { counter-increment: steps; content: '0' counter(steps); display: block; margin-bottom: 54px; color: var(--blue-500); font-family: 'DM Serif Display', serif; font-size: 2rem; }
.process-step h3 { font-size: 1.35rem; }
.process-step p { margin: 12px 0 0; color: var(--muted); font-size: .9rem; }
.process-step:not(:last-child)::after { content: ''; position: absolute; right: -17px; top: 44px; z-index: 2; width: 18px; height: 1px; background: var(--blue-200); }

.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.benefit-card { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.benefit-card h3 { font-size: 1.45rem; margin-bottom: 9px; }
.benefit-card p { margin: 0; color: var(--muted); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 82px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: min(100%, 560px); margin-inline: auto; filter: drop-shadow(0 28px 50px rgba(11,42,72,.17)); }
.about-photo::before { content: ''; position: absolute; inset: 12% 4% 4% 14%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(86,164,239,.33), transparent 65%); }
.about-copy p { color: var(--muted); }
.signature { margin-top: 28px; font-family: 'DM Serif Display', serif; color: var(--navy-800); font-size: 1.6rem; font-style: italic; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(38px, 6vw, 72px);
  color: white;
  background: linear-gradient(125deg, var(--navy-950), var(--navy-700) 57%, var(--blue-500));
  box-shadow: var(--shadow-lg);
}
.cta-band::after { content: ''; position: absolute; width: 460px; height: 460px; right: -220px; top: -250px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.04), 0 0 0 120px rgba(255,255,255,.025); }
.cta-band h2 { color: white; max-width: 760px; }
.cta-band p { max-width: 690px; color: rgba(255,255,255,.75); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 86px;
  text-align: center;
  background:
    linear-gradient(rgba(16,32,51,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,32,51,.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 5%, rgba(86,164,239,.18), transparent 42%),
    #fbfdff;
  background-size: 52px 52px, 52px 52px, auto, auto;
}
.page-hero h1 { font-size: clamp(3.1rem, 6vw, 5.6rem); max-width: 920px; margin-inline: auto; }
.page-hero .lead { max-width: 760px; margin: 24px auto 0; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; color: var(--muted); font-size: .86rem; margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--blue-600); }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.service-card-top { display: flex; gap: 18px; align-items: flex-start; }
.service-card h2 { font-size: 2rem; }
.service-card p { color: var(--muted); }
.service-points { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.service-points li { display: flex; gap: 10px; align-items: start; }
.service-points li::before { content: '✓'; color: var(--blue-600); font-weight: 800; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card { padding: 34px; border-radius: var(--radius-md); background: var(--ice); border: 1px solid var(--line); }
.audience-card h3 { margin: 18px 0 10px; }
.audience-card ul { margin: 18px 0 0; padding-left: 19px; color: var(--muted); }

.accordion { display: grid; gap: 12px; }
.accordion-item { border: 1px solid var(--line); border-radius: 18px; background: white; overflow: hidden; }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; border: 0; background: transparent; text-align: left; color: var(--navy-950); font-weight: 800; }
.accordion-trigger svg { width: 20px; transition: transform .25s ease; }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-panel-inner { padding: 0 24px 24px; color: var(--muted); }

.calculator-layout { display: grid; grid-template-columns: 1fr .88fr; gap: 28px; align-items: start; }
.calculator-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); padding: clamp(24px, 4vw, 42px); }
.calculator-card h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.controls { display: grid; gap: 24px; margin-top: 32px; }
.control-row label { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 10px; color: var(--navy-900); font-weight: 700; }
.control-row output { color: var(--blue-600); font-weight: 800; text-align: right; }
input[type='range'] { width: 100%; height: 6px; appearance: none; border-radius: 99px; background: linear-gradient(90deg, var(--blue-600) var(--range-progress, 50%), #dfe7ef var(--range-progress, 50%)); outline: none; }
input[type='range']::-webkit-slider-thumb { appearance: none; width: 22px; height: 22px; border: 4px solid white; border-radius: 50%; background: var(--blue-600); box-shadow: 0 2px 9px rgba(11,42,72,.25); }
input[type='range']::-moz-range-thumb { width: 16px; height: 16px; border: 4px solid white; border-radius: 50%; background: var(--blue-600); box-shadow: 0 2px 9px rgba(11,42,72,.25); }
.result-panel { position: sticky; top: 96px; padding: clamp(24px, 4vw, 38px); border-radius: var(--radius-lg); color: white; background: linear-gradient(145deg, var(--navy-950), var(--navy-700)); box-shadow: var(--shadow-lg); overflow: hidden; }
.result-panel::after { content:''; position:absolute; width:260px; height:260px; right:-130px; top:-130px; border:1px solid rgba(255,255,255,.13); border-radius:50%; box-shadow:0 0 0 42px rgba(255,255,255,.025),0 0 0 84px rgba(255,255,255,.018); }
.result-label { color: rgba(255,255,255,.65); font-size: .85rem; }
.result-main { display: block; margin: 8px 0 28px; font-family: 'DM Serif Display', serif; font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1; }
.result-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.result-stat { padding: 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.07); }
.result-stat span { display:block; color:rgba(255,255,255,.62); font-size:.74rem; }
.result-stat strong { display:block; margin-top:3px; font-size:.98rem; }
.chart-wrap { margin-top: 28px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.94); }
.chart-wrap svg { width: 100%; height: auto; overflow: visible; }
.chart-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; color: rgba(255,255,255,.72); font-size: .75rem; }
.legend-dot { display:inline-block; width:9px; height:9px; margin-right:6px; border-radius:50%; }
.legend-dot.navy { background: var(--blue-400); }
.legend-dot.light { background: #a9c9e6; }
.disclaimer { margin-top: 20px; color: var(--muted); font-size: .78rem; }
.calc-tabs { display: flex; gap: 8px; margin-bottom: 28px; padding: 6px; border-radius: 999px; background: var(--ice); border: 1px solid var(--line); }
.calc-tab { flex: 1; border: 0; border-radius: 999px; padding: 12px 18px; background: transparent; color: var(--muted); font-weight: 800; }
.calc-tab.active { color: white; background: var(--navy-800); box-shadow: 0 8px 20px rgba(11,42,72,.15); }
.calc-pane[hidden] { display: none; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: start; }
.contact-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.contact-list { display: grid; gap: 16px; margin-top: 28px; }
.contact-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; }
.contact-item .icon-box { width: 48px; height: 48px; }
.contact-item small { display:block; color:var(--muted); }
.contact-item strong { color: var(--navy-900); overflow-wrap:anywhere; }
.contact-item a:hover strong { color: var(--blue-600); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-900); font-size: .88rem; font-weight: 800; }
.field input:not([type='checkbox']):not([type='hidden']), .field select, .field textarea {
  width: 100%;
  border: 1px solid #cddae6;
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:not([type='checkbox']):not([type='hidden']):focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); background: white; box-shadow: 0 0 0 4px rgba(44,122,208,.12); }
.consent { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: .82rem; cursor: pointer; }
.consent input[type='checkbox'] { flex: 0 0 auto; width: 19px; height: 19px; margin: 3px 0 0; padding: 0; accent-color: var(--blue-600); }
.consent span { min-width: 0; }
.form-status { min-height: 26px; margin-top: 14px; font-size: .9rem; }
.form-status.success { color: var(--success); }
.form-status.error { color: #c13f3f; }
.map-card { margin-top: 22px; padding: 28px; min-height: 210px; display:flex; flex-direction:column; justify-content:flex-end; border-radius: var(--radius-md); color:white; background: radial-gradient(circle at 70% 20%, rgba(86,164,239,.4), transparent 32%), linear-gradient(145deg,var(--navy-950),var(--navy-700)); }

.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { margin-top: 48px; font-size: 2rem; }
.prose h3 { margin-top: 32px; font-size: 1.45rem; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 3px; }

.site-footer { padding: 68px 0 28px; background: var(--navy-950); color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .75fr 1fr; gap: 42px; }
.footer-logo { width: 220px; filter: brightness(0) invert(1); opacity: .96; }
.footer-title { margin-bottom: 16px; color: white; font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: white; }
.footer-contact { display: grid; gap: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.11); font-size: .78rem; }

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: #21c767;
  box-shadow: 0 14px 35px rgba(23,167,94,.35);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 29px; height: 29px; }
.mobile-call-bar { display: none; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,.8,.25,1); }
[data-reveal='left'] { transform: translateX(-28px); }
[data-reveal='right'] { transform: translateX(28px); }
[data-reveal].revealed { opacity: 1; transform: translate(0,0); }
.stagger > * { opacity: 0; transform: translateY(20px); }
.stagger.revealed > * { animation: revealStagger .58s both; }
.stagger.revealed > *:nth-child(2) { animation-delay: .08s; }
.stagger.revealed > *:nth-child(3) { animation-delay: .16s; }
.stagger.revealed > *:nth-child(4) { animation-delay: .24s; }
.stagger.revealed > *:nth-child(5) { animation-delay: .32s; }
@keyframes revealStagger { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .main-nav { gap: 17px; }
  .main-nav .button { padding-inline: 17px; }
  .hero-grid, .system-grid, .about-grid { gap: 46px; }
  .process { grid-template-columns: repeat(3, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-header { height: 72px; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand img { width: 190px; }
  .hero { min-height: auto; padding: 54px 0 88px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-visual { min-height: 510px; }
  .photo-shell { width: min(82vw, 500px); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .system-grid, .about-grid, .contact-grid, .calculator-layout { grid-template-columns: 1fr; }
  .system-copy { order: -1; }
  .result-panel { position: relative; top: auto; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .section-sm { padding: 58px 0; }
  .section-heading { margin-bottom: 34px; }
  h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .site-header, .site-header.scrolled { height: 68px; }
  .brand img { width: 168px; }
  .nav-toggle { width: 42px; height: 42px; }
  .hero { padding-top: 42px; background-size: 38px 38px, 38px 38px, auto, auto, auto; }
  .hero-copy h1 { letter-spacing: -.04em; }
  .hero-copy .lead { margin: 22px 0 28px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-note { align-items: flex-start; text-align: left; }
  .hero-visual { min-height: 420px; margin-top: 12px; }
  .photo-shell { width: 88vw; max-width: 390px; border-radius: 34px 34px 100px 34px; }
  .photo-shell img { border-radius: 26px 26px 90px 26px; }
  .floating-card { padding: 13px 15px; }
  .floating-card strong { font-size: 1rem; }
  .floating-card.one { left: 0; bottom: 8%; }
  .floating-card.two { right: 0; top: 12%; }
  .hero-scroll { display: none; }
  .trust-strip { margin-top: -28px; }
  .metric { padding: 22px 12px; }
  .metric-value { font-size: 1.85rem; }
  .card-grid, .audience-grid, .benefit-grid, .process, .footer-grid { grid-template-columns: 1fr; }
  .card { padding: 27px; }
  .system-visual { min-height: 410px; padding: 24px; }
  .orbit-item { padding: 10px 12px; font-size: .72rem; }
  .system-center { width: 120px; height: 120px; }
  .process-step { min-height: auto; }
  .process-step::before { margin-bottom: 30px; }
  .benefit-card { grid-template-columns: 1fr; }
  .cta-band { border-radius: 26px; }
  .cta-actions { display: grid; }
  .page-hero { padding: 74px 0 68px; background-size: 38px 38px, 38px 38px, auto, auto; }
  .service-card { padding: 27px; }
  .service-card-top { display: grid; }
  .calculator-card { border-radius: 24px; }
  .result-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .calc-tabs { display: grid; border-radius: 20px; }
  .calc-tab { border-radius: 14px; }
  .footer-bottom { display: grid; }
  .whatsapp-float { right: 16px; bottom: 78px; width: 54px; height: 54px; }
  .mobile-call-bar {
    position: fixed;
    z-index: 89;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(15px);
  }
  .mobile-call-bar .button { min-height: 48px; padding: 11px 16px; }
  .site-footer { padding-bottom: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal], .stagger > * { opacity: 1 !important; transform: none !important; }
}

/* Accessibility, legal information and protected form */
:focus-visible {
  outline: 3px solid rgba(44, 122, 208, .45);
  outline-offset: 3px;
}
button:disabled {
  cursor: wait;
  opacity: .66;
  transform: none !important;
}
.mobile-nav[aria-hidden='true'] {
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav[aria-hidden='false'] {
  visibility: visible;
}
.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.turnstile-field {
  min-height: 66px;
  align-content: center;
}
.cf-turnstile {
  max-width: 100%;
}
.footer-legal {
  margin: 14px 0 0;
  max-width: 410px;
  color: rgba(255,255,255,.52);
  font-size: .76rem;
  line-height: 1.65;
}
.regulatory-note {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.48);
  font-size: .72rem;
  line-height: 1.65;
}
.regulatory-note a,
.footer-bottom a {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.28);
  text-underline-offset: 3px;
}
.regulatory-note a:hover,
.footer-bottom a:hover {
  color: white;
}
.calc-tab:focus-visible {
  outline-offset: 2px;
}
@media (max-width: 640px) {
  .turnstile-field { overflow: hidden; }
  .regulatory-note { margin-top: 24px; }
}
