:root {
  --navy: #07265f;
  --navy2: #0a347d;
  --teal: #17b8ad;
  --teal2: #46cfb5;
  --cyan: #2b93d1;
  --ink: #17335f;
  --muted: #6a7f9f;
  --line: #dce6ef;
  --soft: #f7fbfe;
  --bg: #ebf1f6;
  --shadow: 0 8px 24px rgba(7, 38, 95, .08);
  --radius: 16px;
  --teal-ink: #087b75;
  --nav-shadow: 0 2px 16px rgba(7, 38, 95, .08);
  --focus: 0 0 0 4px rgba(43, 147, 209, .28);
  --muted-aa: #4f6889;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy2); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
::selection { background: var(--teal2); color: var(--navy); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  padding: 10px 14px;
  font-weight: 800;
}
.skip-link:focus { transform: none; }
.container { width: min(100% - 32px, 1180px); margin-inline: auto; }
.container.narrow { max-width: 820px; }
.section { padding: 72px 0; }
.section-white { background: #fff; }
.section-soft { background: var(--soft); }
.section-navy { background: linear-gradient(145deg, var(--navy), var(--navy2)); color: #fff; }
.section-header { max-width: 760px; margin-bottom: 34px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header p:last-child { margin-bottom: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--teal-ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 2px; background: currentColor; content: ""; }
.section-navy .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .prefooter .eyebrow { color: var(--teal2); }
h1, h2, .display-title {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.45rem, 8vw, 4.8rem); }
h2 { font-size: clamp(2rem, 5.5vw, 3.45rem); }
h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.1rem; line-height: 1.32; }
p { margin: 0 0 18px; }
.lead { color: #49698f; font-size: clamp(1.08rem, 2.4vw, 1.28rem); line-height: 1.6; }
.section-navy h2, .section-navy h3, .section-navy .lead, .section-navy p { color: #fff; }
.muted { color: var(--muted-aa); }
.small { font-size: .9rem; }
.accent-rule { width: 64px; height: 3px; margin: 20px 0; border: 0; background: linear-gradient(90deg, var(--cyan), var(--teal2)); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 72px;
  border-bottom: 1px solid rgba(220, 230, 239, .85);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--nav-shadow);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); text-decoration: none; }
.brand img { width: 42px; height: 42px; }
.brand-name { display: block; font-size: 1.12rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.brand-name span { color: var(--teal-ink); }
.brand-tagline { display: none; color: var(--muted); font-size: .57rem; letter-spacing: 1.2px; line-height: 1.5; text-transform: uppercase; }
.menu-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}
.menu-button span, .menu-button::before, .menu-button::after {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button { gap: 5px; }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
.site-menu {
  position: fixed;
  z-index: 99;
  inset: 72px 0 auto;
  display: none;
  min-height: calc(100dvh - 72px);
  padding: 24px 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.site-menu.open { display: block; }
.site-menu ul { max-width: 1180px; display: grid; gap: 4px; margin: 0 auto; padding: 0; list-style: none; }
.site-menu a { display: block; border-radius: 10px; padding: 12px 14px; color: var(--ink); font-weight: 700; text-decoration: none; }
.site-menu a:hover, .site-menu a[aria-current="page"] { background: var(--soft); color: var(--navy); }
.site-menu .nav-cta { margin-top: 8px; background: var(--teal); color: var(--navy); text-align: center; }
.site-menu .nav-cta:hover { background: var(--teal2); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: var(--navy); box-shadow: 0 8px 22px rgba(23, 184, 173, .2); }
.btn-primary:hover { background: var(--teal2); color: var(--navy); }
.btn-secondary { border-color: rgba(255, 255, 255, .42); background: rgba(255, 255, 255, .07); color: #fff; }
.btn-secondary:hover { border-color: #fff; background: rgba(255, 255, 255, .13); color: #fff; }
.btn-outline { border-color: var(--line); background: #fff; color: var(--navy); }
.btn-outline:hover { border-color: var(--teal); color: var(--navy); }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 66px 0 74px;
  background: linear-gradient(145deg, var(--navy), var(--navy2));
  color: #fff;
}
.hero::before {
  position: absolute;
  inset: auto -20% -60% 20%;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 147, 209, .18), transparent 68%);
  content: "";
}
.hero::after, .page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px),
    radial-gradient(circle at 78% 24%, rgba(70, 207, 181, .13), transparent 24%),
    radial-gradient(circle at 12% 88%, rgba(43, 147, 209, .12), transparent 25%);
  background-size: 34px 34px, 34px 34px, auto, auto;
  content: "";
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: 44px; align-items: center; }
.hero-copy { max-width: 700px; }
.hero h1 { color: #fff; }
.hero h1 em { color: var(--teal2); font-style: normal; }
.hero .lead { max-width: 650px; margin: 22px 0 28px; color: #d6e4f2; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 25px; color: #c3d5e8; font-size: .86rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof span::before { width: 7px; height: 7px; border-radius: 50%; background: var(--teal2); content: ""; }
.report-mock { position: relative; max-width: 540px; margin-inline: auto; padding: 12px; }
.report-sheet {
  position: relative;
  z-index: 2;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 32px 70px rgba(0, 0, 0, .3);
  color: var(--ink);
  padding: 24px;
}
.report-sheet::after { position: absolute; width: 240px; height: 240px; right: -90px; top: 100px; border-radius: 50%; border: 38px solid rgba(23, 184, 173, .08); content: ""; }
.sheet-head { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.sheet-brand { display: flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 800; }
.sheet-brand img { width: 31px; height: 31px; }
.cefr-chip {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--navy), var(--navy2));
  color: #fff;
  text-align: center;
}
.cefr-chip b { display: block; font-family: Georgia, serif; font-size: 2.25rem; line-height: 1; }
.cefr-chip small { display: block; color: var(--teal2); font-size: .58rem; letter-spacing: 1.2px; }
.sheet-title { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: end; margin: 24px 0; }
.sheet-title .eyebrow { margin-bottom: 7px; }
.sheet-title .sheet-mini-title { max-width: 280px; margin: 0; color: var(--navy); font-family: Georgia, serif; font-size: 1.55rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.32; }
.profile { position: relative; z-index: 2; display: grid; gap: 16px; }
.profile-row { display: grid; gap: 8px; }
.profile-label { display: flex; justify-content: space-between; gap: 12px; color: var(--navy); font-size: .72rem; font-weight: 800; }
.segments { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; }
.segments span { position: relative; height: 9px; border-radius: 999px; background: #e4edf4; }
.segments span.on { background: linear-gradient(90deg, var(--cyan), var(--teal)); }
.segments span.mark::after { position: absolute; right: -1px; top: -4px; width: 3px; height: 17px; border-radius: 2px; background: var(--navy); content: ""; }
.sheet-note { position: relative; z-index: 2; margin-top: 24px; border: 1px solid #d3ece8; border-radius: 12px; background: #f1fbfa; padding: 14px; color: #45698a; font-size: .75rem; }
.float-badge {
  position: absolute;
  z-index: 3;
  right: -2px;
  bottom: 48px;
  max-width: 190px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 14px;
  background: rgba(6, 31, 75, .95);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .25);
  padding: 14px 16px;
  color: #fff;
  font-size: .78rem;
}
.float-badge strong { display: block; margin-bottom: 3px; color: var(--teal2); }

.card-grid { display: grid; gap: 18px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px;
}
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.section-navy .card h3 { color: var(--navy); }
.section-navy .card p { color: var(--ink); }
.icon-circle { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 17px; border-radius: 50%; background: #eef9f8; }
.icon-circle img { width: 52px; height: 52px; }
.problem-card { border-top: 3px solid var(--teal); }
.module-card { position: relative; overflow: hidden; }
.module-card.featured { border: 2px solid var(--teal); background: linear-gradient(180deg, #fff, #f2fbfa); }
.module-card .tag { position: absolute; top: 18px; right: 18px; }
.tag, .pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #bce4df;
  border-radius: 999px;
  background: #f1fbfa;
  padding: 4px 9px;
  color: var(--teal-ink);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.module-meta { margin-top: 16px; color: var(--muted-aa); font-size: .87rem; }
.steps { display: grid; gap: 28px; counter-reset: step; }
.step { position: relative; text-align: center; counter-increment: step; }
.step-circle { position: relative; width: 88px; height: 88px; display: grid; place-items: center; margin: 0 auto 18px; border: 1px solid var(--line); border-radius: 50%; background: #fff; box-shadow: var(--shadow); }
.step-circle::before { position: absolute; top: -5px; left: -5px; width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: var(--navy); content: counter(step, decimal-leading-zero); font-size: .72rem; font-weight: 900; }
.step-circle img { width: 50px; height: 50px; }
.step p { color: var(--muted-aa); font-size: .93rem; }

.report-showcase { display: grid; gap: 32px; align-items: center; }
.report-stack { position: relative; min-height: 430px; display: grid; place-items: center; overflow: hidden; }
.preview-page {
  position: absolute;
  width: min(80%, 340px);
  aspect-ratio: 210 / 297;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(7, 38, 95, .17);
  padding: 24px;
}
.preview-page.back { transform: translate(38px, -16px) rotate(6deg); opacity: .78; }
.preview-page.mid { transform: translate(18px, -7px) rotate(2.5deg); opacity: .93; }
.preview-page.front { transform: translate(-8px, 8px) rotate(-2deg); }
.preview-page .mini-head { height: 28px; border-bottom: 1px solid var(--line); }
.preview-page .mini-title { width: 72%; height: 13px; margin: 25px 0 12px; border-radius: 6px; background: var(--navy); }
.preview-page .mini-rule { width: 42px; height: 3px; background: var(--teal); }
.preview-page .mini-chip { width: 62px; height: 62px; display: grid; place-items: center; margin: 24px 0; border-radius: 13px; background: var(--navy); color: #fff; font-family: Georgia, serif; font-size: 1.8rem; }
.preview-page .mini-card { height: 120px; border: 1px solid var(--line); border-radius: 10px; background: var(--soft); }
.check-list { margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 0 0 13px; padding-left: 29px; }
.check-list li::before { position: absolute; left: 0; top: .15em; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: #e5f8f5; color: var(--teal-ink); content: "✓"; font-size: .78rem; font-weight: 900; }
.trust-grid { display: grid; gap: 18px; }
.trust-item { border-left: 3px solid var(--teal); padding: 7px 0 7px 18px; }
.trust-item h3 { color: #fff; }
.trust-item p { margin: 0; color: #c9daea; }
.legal-callout { border: 1px solid #bfd5e8; border-radius: 14px; background: #eef6fb; padding: 18px; color: #35587e; }
.legal-callout strong { color: var(--navy); }

.pricing-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.pricing-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.pricing-table th, .pricing-table td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; }
.pricing-table th { background: var(--navy); color: #fff; font-size: .8rem; letter-spacing: .7px; text-transform: uppercase; }
.pricing-table th:first-child { border-radius: 15px 0 0; }
.pricing-table th:last-child { border-radius: 0 15px 0 0; }
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table strong { color: var(--navy); }
.price-cards { display: grid; gap: 18px; }
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--teal); }
.price-card .popular { align-self: flex-start; margin-bottom: 15px; }
.price { margin: 10px 0 4px; color: var(--navy); font-family: Georgia, serif; font-size: 2.35rem; line-height: 1; }
.price small { font-family: Inter, sans-serif; font-size: .82rem; }
.price-card .btn { margin-top: auto; }
.price-meta { margin-bottom: 22px; color: var(--muted-aa); }
.clp-note { margin-top: 18px; color: var(--muted-aa); font-size: .83rem; }
.clp-approx { font-weight: 800; color: var(--ink); }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 5px 18px rgba(7, 38, 95, .05); }
.faq-item summary { position: relative; padding: 20px 50px 20px 20px; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); content: "+"; color: var(--teal-ink); font-size: 1.4rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 20px 20px; color: #49698f; }
.faq-answer p:last-child { margin-bottom: 0; }

.prefooter { padding: 64px 0; background: linear-gradient(145deg, var(--navy), var(--navy2)); color: #fff; }
.prefooter-grid { display: grid; gap: 28px; align-items: center; }
.prefooter h2 { color: #fff; }
.prefooter p { color: #d4e2f0; }
.prefooter-features { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.prefooter-features li { display: flex; gap: 10px; align-items: flex-start; }
.prefooter-features li::before { color: var(--teal2); content: "✓"; font-weight: 900; }
.site-footer { padding: 50px 0 24px; background: #061c43; color: #c4d5e7; }
.footer-grid { display: grid; gap: 32px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-name span { color: var(--teal2); }
.footer-brand p { max-width: 440px; margin-top: 16px; color: #aebfd2; font-size: .91rem; }
.footer-links h2 { margin: 0 0 10px; color: #fff; font-family: Inter, sans-serif; font-size: .78rem; letter-spacing: 1.2px; text-transform: uppercase; }
.footer-links ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #c4d5e7; text-decoration: none; }
.footer-links a:hover { color: var(--teal2); }
.footer-legal { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(220, 230, 239, .16); color: #91a7c1; font-size: .78rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 18px; color: #8299b5; font-size: .78rem; }

.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: 58px 0 64px; background: linear-gradient(145deg, var(--navy), var(--navy2)); color: #fff; }
.page-hero::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(43, 147, 209, .035), 0 0 0 144px rgba(70, 207, 181, .025);
  content: "";
  pointer-events: none;
}
.page-hero-grid { position: relative; z-index: 1; display: grid; gap: 28px; align-items: center; }
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 7vw, 4.45rem); }
.page-hero .lead { max-width: 760px; margin-top: 20px; color: #d1e0ee; }
.page-hero-aside { border: 1px solid rgba(255, 255, 255, .24); border-radius: var(--radius); background: rgba(255, 255, 255, .07); padding: 22px; }
.page-hero-aside strong { display: block; color: var(--teal2); font-family: Georgia, serif; font-size: 2rem; }
.split { display: grid; gap: 34px; align-items: center; }
.media-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--navy); box-shadow: var(--shadow); }
.media-card img { width: 100%; height: auto; }
.dimension-grid { display: grid; gap: 16px; }
.dimension-card { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.dimension-card img { width: 44px; height: 44px; }
.dimension-card p { margin: 0; color: var(--muted-aa); font-size: .92rem; }
.ladder { display: grid; gap: 10px; margin-top: 22px; }
.ladder-step { display: grid; grid-template-columns: 58px 1fr; gap: 14px; align-items: center; border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 13px; }
.ladder-level { height: 42px; display: grid; place-items: center; border-radius: 9px; background: var(--navy); color: #fff; font-family: Georgia, serif; font-weight: 700; }
.glossary { display: grid; gap: 18px; }
.definition { border-left: 3px solid var(--teal); padding-left: 18px; }
.definition dt { color: var(--navy); font-weight: 800; }
.definition dd { margin: 4px 0 0; color: #49698f; }

.report-gallery { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 78vw); gap: 18px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; padding: 8px 2px 22px; }
.report-thumb { scroll-snap-align: center; }
.report-thumb figure { margin: 0; }
.report-thumb img { width: 100%; height: auto; aspect-ratio: 210 / 297; object-fit: contain; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
.report-thumb figcaption { margin-top: 10px; color: var(--muted-aa); font-size: .84rem; text-align: center; }
.scroll-hint { color: var(--muted-aa); font-size: .84rem; }
.report-viewer-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.include-grid { display: grid; gap: 14px; }
.include-item { display: flex; gap: 13px; align-items: flex-start; }
.include-item::before { width: 23px; height: 23px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: #e4f7f5; color: var(--teal-ink); content: "✓"; font-size: .78rem; font-weight: 900; }

.contact-grid { display: grid; gap: 28px; align-items: start; }
.form-card { padding: 24px; }
.field-grid { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--navy); font-size: .9rem; font-weight: 800; }
.field .optional { color: var(--muted-aa); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 49px;
  border: 1px solid #b9c9d9;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 11px 13px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--cyan); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); outline: none; box-shadow: var(--focus); }
.field [aria-invalid="true"] { border-color: #8b3f4d; }
.field-error { min-height: 1.1em; color: #7d3341; font-size: .8rem; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { display: none; margin: 17px 0 0; border-radius: 10px; padding: 13px 14px; font-size: .9rem; }
.form-status.visible { display: block; }
.form-status.success { border: 1px solid #b8ddd8; background: #eaf8f6; color: #145f5a; }
.form-status.error { border: 1px solid #deb8c0; background: #fbf0f2; color: #74313e; }
.form-note { margin-top: 14px; color: var(--muted-aa); font-size: .78rem; }
.contact-card { position: sticky; top: 100px; }
.contact-list { display: grid; gap: 18px; margin: 20px 0 0; padding: 0; list-style: none; }
.contact-list strong { display: block; color: var(--navy); }

.legal-layout { display: grid; gap: 30px; align-items: start; }
.legal-nav { border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 18px; }
.legal-nav strong { display: block; margin-bottom: 8px; color: var(--navy); }
.legal-nav a { display: block; padding: 5px 0; }
.prose { max-width: 800px; }
.prose h2 { margin: 44px 0 15px; font-family: Inter, sans-serif; font-size: 1.45rem; letter-spacing: -.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: #3f6085; }
.prose li { margin-bottom: 8px; }
.updated { display: inline-block; margin-bottom: 24px; color: var(--muted-aa); font-size: .85rem; }
.empty-state { min-height: calc(100vh - 72px); display: grid; place-items: center; padding: 60px 0; text-align: center; }
.empty-code { color: var(--teal-ink); font-family: Georgia, serif; font-size: clamp(5rem, 24vw, 10rem); font-weight: 700; line-height: .9; }

@media (min-width: 600px) {
  .brand-tagline { display: block; }
  .card-grid.two, .dimension-grid, .price-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-gallery { grid-auto-columns: minmax(290px, 42vw); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 768px) {
  .section { padding: 92px 0; }
  .hero { padding: 90px 0 96px; }
  .card-grid.three, .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
  .step:not(:last-child)::after { position: absolute; top: 43px; left: calc(50% + 55px); width: calc(100% - 110px); height: 1px; background: var(--line); content: ""; }
  .report-showcase, .split, .prefooter-grid, .contact-grid, .page-hero-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .report-gallery { grid-auto-columns: minmax(300px, 31vw); }
  .legal-layout { grid-template-columns: 220px 1fr; }
  .legal-nav { position: sticky; top: 100px; }
}

@media (min-width: 1024px) {
  .menu-button { display: none; }
  .site-menu { position: static; display: block; min-height: 0; padding: 0; border: 0; background: transparent; }
  .site-menu ul { display: flex; align-items: center; gap: 2px; }
  .site-menu a { padding: 9px 10px; font-size: .88rem; }
  .site-menu .nav-cta { margin: 0 0 0 8px; padding: 10px 15px; }
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: 48px; }
  .card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .dimension-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .report-gallery { grid-auto-columns: 310px; }
}

@media (min-width: 1440px) {
  .container { max-width: 1260px; }
  .site-menu ul { max-width: 1260px; }
  .hero-grid { gap: 80px; }
  .report-sheet { min-height: 510px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .prefooter, .site-footer, .btn-row, .scroll-hint { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .page-hero { padding: 28px 0; }
  .card { break-inside: avoid; box-shadow: none; }
}
