@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/geist-600.ttf") format("truetype");
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/geist-700.ttf") format("truetype");
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/geist-800.ttf") format("truetype");
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/geist-900.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --font-display: "Geist", "Aptos Display", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", Verdana, sans-serif;
  --ink: oklch(24% 0.035 214);
  --muted: oklch(45% 0.035 218);
  --soft: oklch(96% 0.014 190);
  --surface: oklch(99% 0.006 190);
  --surface-strong: oklch(100% 0.004 190);
  --line: oklch(86% 0.016 205);
  --blue: oklch(37% 0.125 230);
  --blue-deep: oklch(27% 0.095 228);
  --green: oklch(58% 0.15 158);
  --yellow: oklch(84% 0.18 86);
  --orange: oklch(68% 0.2 43);
  --coral: oklch(67% 0.19 28);
  --cyan: oklch(72% 0.13 205);
  --shadow: 0 24px 55px oklch(28% 0.04 224 / 14%);
  --shadow-soft: 0 14px 34px oklch(30% 0.035 220 / 10%);
  --radius: 8px;
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, oklch(98% 0.014 188) 0%, oklch(95% 0.03 198) 38%, oklch(99% 0.006 190) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 200;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  padding: var(--space-sm) var(--space-md);
  font-weight: 700;
  transition: transform 180ms var(--ease-quart);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: max(var(--space-xs), env(safe-area-inset-top)) var(--space-md) var(--space-xs);
  border-bottom: 1px solid oklch(90% 0.018 196);
  background: oklch(100% 0 0);
  box-shadow: 0 12px 30px oklch(23% 0.04 220 / 8%);
  transition: background 220ms var(--ease-quart), box-shadow 220ms var(--ease-quart), padding 220ms var(--ease-quart);
}

.site-header.is-scrolled {
  background: oklch(100% 0 0);
  box-shadow: 0 12px 30px oklch(23% 0.04 220 / 10%);
}

.header-shell {
  width: min(1280px, 100%);
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  color: var(--blue-deep);
}

.brand-logo {
  width: clamp(188px, 21vw, 250px);
  height: auto;
  max-height: 68px;
  object-fit: contain;
}

.brand-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid oklch(100% 0.004 190 / 62%);
  border-radius: 50%;
  background:
    linear-gradient(145deg, var(--yellow), var(--green) 46%, var(--cyan));
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 14px 30px oklch(28% 0.06 215 / 18%);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy em {
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-xs);
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 10px 12px;
  white-space: nowrap;
  transition: background 180ms var(--ease-quart), color 180ms var(--ease-quart);
}

.site-nav a:hover {
  background: oklch(93% 0.035 188);
  color: var(--blue);
}

.header-actions {
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

.phone-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--blue-deep);
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  z-index: 120;
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: 0 8px 24px oklch(22% 0.04 220 / 8%);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 200ms var(--ease-quart), opacity 200ms var(--ease-quart);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 170ms var(--ease-quart), box-shadow 170ms var(--ease-quart), background 170ms var(--ease-quart), color 170ms var(--ease-quart);
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% -120%;
  background: linear-gradient(110deg, transparent 34%, oklch(100% 0.004 190 / 38%) 48%, transparent 62%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity 180ms var(--ease-quart), transform 420ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  opacity: 1;
  transform: translateX(62%);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-small {
  min-height: 42px;
  padding: 11px 15px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.button-primary {
  background: var(--orange);
  color: oklch(99% 0.006 80);
  box-shadow: 0 12px 30px oklch(58% 0.17 48 / 30%);
}

.button-primary:hover {
  background: oklch(62% 0.18 45);
  box-shadow: 0 18px 38px oklch(54% 0.17 48 / 32%);
}

.button-secondary {
  border-color: oklch(79% 0.026 205);
  background: oklch(99% 0.006 190 / 78%);
  color: var(--blue-deep);
  box-shadow: 0 10px 28px oklch(30% 0.035 220 / 8%);
}

.button-secondary:hover {
  background: oklch(93% 0.03 188);
}

.hero {
  position: relative;
  min-height: auto;
  overflow: clip;
  padding: 108px var(--space-md) var(--space-2xl);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 58%, oklch(67% 0.19 28 / 16%) 58% 62%, transparent 62%),
    repeating-linear-gradient(115deg, oklch(100% 0.004 190 / 0%) 0 22px, oklch(100% 0.004 190 / 16%) 23px 24px);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(98% 0.014 188 / 96%) 0%, oklch(95% 0.03 198 / 82%) 47%, oklch(27% 0.095 228 / 42%) 100%),
    linear-gradient(180deg, oklch(97% 0.014 190 / 20%) 0%, oklch(95% 0.03 198 / 84%) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 12s var(--ease-out) both;
}

.hero-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12%;
  width: 16%;
  background: linear-gradient(90deg, transparent, oklch(84% 0.13 160 / 16%), transparent);
  opacity: 0.85;
  transform: translateX(-120%);
  animation: scan-pass 3.4s 900ms var(--ease-out) both;
}

.hero-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.hero-copy {
  max-width: 690px;
  animation: hero-copy-in 520ms var(--ease-out) both;
}

.eyebrow {
  margin: 0 0 var(--space-md);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-feature-settings: "kern" 1;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: 2.3rem;
  font-weight: 800;
  overflow-wrap: normal;
}

h2 {
  max-width: 760px;
  font-size: 1.82rem;
  font-weight: 800;
}

h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.22;
}

.hero-lead,
.section-copy p,
.section-heading p,
.report-copy p,
.quote-copy p {
  max-width: 65ch;
  margin: var(--space-lg) 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-lead {
  color: oklch(32% 0.045 218);
  font-size: 1.12rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid oklch(86% 0.04 186);
  border-radius: 999px;
  background: oklch(99% 0.006 190 / 74%);
  color: var(--blue-deep);
  padding: 7px 11px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 24px oklch(28% 0.04 224 / 7%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.inspection-panel {
  position: relative;
  transform: rotate(1deg);
  width: min(100%, 520px);
  border: 1px solid oklch(88% 0.025 196);
  border-radius: var(--radius);
  background: oklch(99% 0.006 190 / 78%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
  animation: panel-in 620ms 90ms var(--ease-out) both;
}

.inspection-card-badge {
  position: absolute;
  top: 72px;
  right: -14px;
  z-index: 6;
  transform: rotate(4deg);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--blue-deep);
  padding: 10px 13px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 16px 32px oklch(30% 0.06 80 / 22%);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
}

.panel-topline strong {
  color: var(--blue);
}

.inspection-visual {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.inspection-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inspection-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, oklch(22% 0.05 220 / 28%) 100%);
  pointer-events: none;
}

.scan-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(0deg, oklch(100% 0.004 190 / 0%) 0 27px, oklch(100% 0.004 190 / 20%) 28px 29px),
    repeating-linear-gradient(90deg, oklch(100% 0.004 190 / 0%) 0 27px, oklch(100% 0.004 190 / 14%) 28px 29px);
  mask-image: linear-gradient(90deg, transparent, black 22%, black 78%, transparent);
  animation: grid-pulse 2.6s var(--ease-out) infinite;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  border-radius: var(--radius);
  background: oklch(99% 0.006 190 / 88%);
  color: var(--blue-deep);
  padding: 8px 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 12px 28px oklch(20% 0.04 220 / 18%);
  animation: hotspot-in 700ms var(--ease-out) both, hotspot-float 3.4s var(--ease-out) infinite;
}

.hotspot b {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px oklch(54% 0.12 160 / 18%);
}

.hotspot-one {
  left: 7%;
  bottom: 16%;
  animation-delay: 600ms;
}

.hotspot-two {
  right: 9%;
  top: 18%;
  animation-delay: 820ms;
}

.hotspot-three {
  left: 42%;
  top: 48%;
  animation-delay: 1040ms;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.panel-metrics div {
  display: grid;
  align-content: start;
  gap: var(--space-2xs);
  min-height: 92px;
  padding: var(--space-md);
  border-top: 1px solid var(--line);
}

.panel-metrics div + div {
  border-left: 1px solid var(--line);
}

.panel-metrics dt {
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.panel-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.proof-band {
  position: relative;
  z-index: 4;
  padding: 0 var(--space-md);
  transform: translateY(-14px);
  margin-bottom: -14px;
}

.proof-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.proof-item {
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.proof-item + .proof-item {
  border-top: 1px solid var(--line);
}

.proof-item span {
  display: inline-flex;
  margin-bottom: var(--space-md);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
}

.proof-item strong {
  display: block;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
}

.proof-item p {
  margin: var(--space-xs) 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-item a {
  color: var(--blue);
  font-weight: 800;
}

.section {
  padding: var(--space-3xl) var(--space-md);
}

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
}

.section-heading {
  display: grid;
  justify-items: start;
  gap: 0;
  margin-bottom: var(--space-2xl);
}

.accordion {
  display: grid;
  gap: var(--space-sm);
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 8px 26px oklch(28% 0.035 220 / 7%);
  overflow: hidden;
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 62px;
  padding: var(--space-md) var(--space-lg);
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary b {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.accordion summary b::before,
.accordion summary b::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transition: transform 220ms var(--ease-quart);
}

.accordion summary b::after {
  transform: rotate(90deg);
}

.accordion details[open] summary b::after {
  transform: rotate(0deg);
}

.accordion p {
  margin: 0;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--muted);
}

.services {
  background: var(--surface);
}

.about-section {
  background: var(--surface-strong);
}

.about-title {
  max-width: 640px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.65vw, 1.68rem);
  font-weight: 700;
  line-height: 1.22;
}

.about-diagram {
  width: min(100%, 220px);
  margin: var(--space-lg) 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  padding: var(--space-sm);
  box-shadow: var(--shadow-soft);
}

.about-diagram img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 2px);
}

.service-detail-grid {
  display: grid;
  gap: var(--space-lg);
}

.service-detail-card {
  display: grid;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 12px 32px oklch(28% 0.035 220 / 8%);
  overflow: hidden;
}

.service-detail-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-detail-card div {
  display: grid;
  gap: var(--space-sm);
  padding: var(--space-lg);
}

.service-detail-card span,
.offer-card span {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.content-list {
  display: grid;
  gap: var(--space-xs);
  margin: var(--space-xs) 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 24px;
  color: var(--blue-deep);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.content-list li::before {
  content: "";
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px oklch(58% 0.15 158 / 14%);
}

.text-link {
  width: fit-content;
  margin-top: var(--space-xs);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 800;
}

.text-link:hover {
  color: var(--orange);
}

.service-grid {
  display: grid;
  gap: var(--space-md);
}

.service-card {
  display: grid;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 12px 32px oklch(28% 0.035 220 / 8%);
  overflow: hidden;
  transition: transform 220ms var(--ease-quart), box-shadow 220ms var(--ease-quart);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px oklch(28% 0.035 220 / 12%);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  display: grid;
  gap: var(--space-sm);
  padding: var(--space-lg);
}

.service-card span {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card p,
.method-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.method {
  background:
    linear-gradient(180deg, oklch(99% 0.006 190), oklch(95% 0.016 190));
}

.offers-section {
  background:
    linear-gradient(180deg, oklch(99% 0.006 190), oklch(96% 0.018 178));
}

.offer-grid {
  display: grid;
  gap: var(--space-md);
}

.offer-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 14px 34px oklch(28% 0.035 220 / 8%);
  overflow: hidden;
}

.offer-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.offer-card div {
  display: grid;
  gap: var(--space-sm);
  padding: var(--space-lg);
}

.offer-card strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.regulation-note {
  margin-top: var(--space-xl);
}

.regulation-note p {
  margin: 0;
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: oklch(98% 0.025 90);
  color: var(--blue-deep);
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
}

.regulation-note a {
  color: var(--blue);
  font-weight: 900;
}

.method-steps {
  counter-reset: method;
  display: grid;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  position: relative;
  display: grid;
  gap: var(--space-sm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  padding: var(--space-lg);
  box-shadow: 0 12px 32px oklch(28% 0.035 220 / 7%);
}

.method-steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-deep);
  color: oklch(98% 0.006 190);
  font-family: var(--font-display);
  font-weight: 800;
}

.report {
  background: var(--surface-strong);
}

.report-layout {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

.report-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.report-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-lg) 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: var(--space-sm);
  color: var(--blue-deep);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 52%, oklch(99% 0.006 190) 53% 62%, transparent 63%),
    var(--green);
  transform: translateY(2px) rotate(-8deg);
}

.contact-card-list {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.contact-card-list a {
  display: grid;
  gap: var(--space-2xs);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(97% 0.012 190);
  padding: var(--space-md);
  color: var(--blue-deep);
  box-shadow: 0 10px 24px oklch(28% 0.035 220 / 7%);
}

.contact-card-list a:hover {
  border-color: oklch(66% 0.08 162);
  background: oklch(95% 0.025 170);
}

.contact-card-list span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-card-list strong {
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
}

.quote-section {
  background:
    linear-gradient(135deg, oklch(28% 0.095 228), oklch(37% 0.125 230) 58%, oklch(45% 0.12 190));
  color: oklch(96% 0.008 190);
}

.quote-layout {
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
}

.quote-section h2,
.quote-section .eyebrow {
  color: oklch(98% 0.006 190);
}

.quote-section .quote-copy p {
  color: oklch(89% 0.02 196);
}

.contact-stack {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.contact-stack a,
.contact-stack span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 42px;
  border-radius: var(--radius);
  background: oklch(100% 0.004 190 / 10%);
  color: oklch(98% 0.006 190);
  padding: 10px 13px;
  font-weight: 700;
}

.quote-form {
  border: 1px solid oklch(100% 0.004 190 / 24%);
  border-radius: var(--radius);
  background: oklch(99% 0.006 190);
  color: var(--ink);
  padding: var(--space-lg);
  box-shadow: 0 28px 70px oklch(12% 0.045 225 / 26%);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.form-progress span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.form-progress span.active {
  border-color: transparent;
  background: var(--green);
  color: oklch(99% 0.006 190);
}

.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.active {
  display: grid;
  gap: var(--space-md);
  animation: step-in 320ms var(--ease-out) both;
}

.form-step legend {
  margin-bottom: var(--space-md);
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
}

.quote-form label {
  display: grid;
  gap: var(--space-xs);
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(97% 0.012 190);
  color: var(--ink);
  padding: 13px 14px;
  transition: border-color 160ms var(--ease-quart), box-shadow 160ms var(--ease-quart), background 160ms var(--ease-quart);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green);
  background: var(--surface-strong);
  box-shadow: 0 0 0 4px oklch(54% 0.12 160 / 14%);
  outline: none;
}

.choice-grid {
  display: grid;
  gap: var(--space-sm);
}

.choice-grid label,
.confirm-line {
  grid-template-columns: 20px 1fr;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(97% 0.012 190);
  padding: var(--space-sm);
}

.choice-grid input,
.confirm-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.submit-button {
  display: none;
}

.quote-form.is-final .submit-button {
  display: inline-flex;
}

.quote-form.is-final [data-next] {
  display: none;
}

.quote-form.is-first [data-prev] {
  display: none;
}

.site-footer {
  padding: var(--space-xl) var(--space-md);
  background: oklch(21% 0.05 228);
  color: oklch(90% 0.018 194);
}

.footer-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

.footer-shell strong {
  color: oklch(98% 0.006 190);
  font-family: var(--font-display);
}

.footer-shell p {
  margin: 0;
  color: oklch(82% 0.02 196);
}

.footer-credit {
  margin-top: var(--space-xs) !important;
  color: oklch(86% 0.04 92) !important;
}

.egide-footer-badge {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: var(--space-md);
  border: 1px solid oklch(84% 0.16 158 / 44%);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, oklch(100% 0.004 190 / 10%), oklch(58% 0.15 158 / 16%));
  padding: 10px 12px;
  color: oklch(96% 0.016 190) !important;
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 10%);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.egide-footer-badge:hover {
  border-color: var(--yellow);
  color: oklch(100% 0 0) !important;
  transform: translateY(-2px);
}

.egide-footer-badge:focus-visible {
  outline: 3px solid oklch(84% 0.16 92);
  outline-offset: 4px;
}

.egide-footer-badge-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green), var(--cyan));
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 900;
}

.egide-footer-badge span:last-child {
  display: grid;
  gap: 1px;
}

.egide-footer-badge strong {
  color: inherit;
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1.1;
}

.egide-footer-badge em {
  color: oklch(88% 0.12 95);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.rgpd-badge-open {
  overflow: hidden;
}

.rgpd-badge-modal[hidden] {
  display: none;
}

.rgpd-badge-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
}

.rgpd-badge-backdrop {
  position: absolute;
  inset: 0;
  background: oklch(16% 0.035 220 / 68%);
  backdrop-filter: blur(14px);
  animation: badgeFadeIn 180ms ease-out both;
}

.rgpd-badge-sheet {
  position: relative;
  width: min(100%, 680px);
  max-height: min(86vh, 760px);
  overflow: auto;
  border: 1px solid oklch(87% 0.035 198);
  border-radius: 22px;
  background: linear-gradient(180deg, oklch(99% 0.006 190), oklch(96% 0.012 205));
  box-shadow: 0 30px 90px oklch(16% 0.035 220 / 35%);
  color: var(--blue-deep);
  animation: badgeSheetIn 240ms cubic-bezier(.2, .8, .2, 1) both;
}

.rgpd-badge-close {
  appearance: none;
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid oklch(87% 0.035 198);
  border-radius: 50%;
  background: oklch(100% 0 0);
  color: var(--blue-deep);
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
}

.rgpd-badge-close:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.rgpd-badge-head {
  padding: clamp(28px, 5vw, 46px) clamp(22px, 5vw, 48px) var(--space-md);
  border-bottom: 1px solid oklch(89% 0.03 198);
}

.rgpd-badge-kicker {
  display: inline-flex;
  margin-bottom: var(--space-xs);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rgpd-badge-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
}

.rgpd-badge-head p {
  max-width: 48rem;
  margin: var(--space-sm) 0 0;
  color: oklch(34% 0.045 220);
}

.rgpd-badge-score {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: clamp(20px, 4vw, 34px) clamp(22px, 5vw, 48px);
  padding: var(--space-md);
  border: 1px solid oklch(84% 0.12 158 / 45%);
  border-radius: 18px;
  background: oklch(98% 0.02 158);
}

.rgpd-badge-grade {
  display: grid;
  width: clamp(72px, 18vw, 104px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green), var(--cyan));
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 900;
}

.rgpd-badge-score strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
}

.rgpd-badge-score span {
  color: oklch(36% 0.05 220);
  font-weight: 800;
}

.rgpd-badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(22px, 5vw, 48px);
}

.rgpd-badge-grid div {
  min-width: 0;
  border: 1px solid oklch(87% 0.035 198);
  border-radius: 14px;
  background: oklch(100% 0 0 / 82%);
  padding: 14px;
}

.rgpd-badge-grid span,
.rgpd-badge-grid strong {
  display: block;
}

.rgpd-badge-grid span {
  color: oklch(46% 0.035 220);
  font-size: 0.78rem;
  font-weight: 800;
}

.rgpd-badge-grid strong {
  margin-top: 4px;
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

.rgpd-badge-checks {
  display: grid;
  gap: 10px;
  margin: var(--space-lg) clamp(22px, 5vw, 48px) 0;
  padding: 0;
  list-style: none;
}

.rgpd-badge-checks li {
  position: relative;
  padding-left: 28px;
  color: oklch(31% 0.04 220);
  font-weight: 700;
}

.rgpd-badge-checks li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px oklch(96% 0.03 158);
}

.rgpd-badge-note {
  margin: var(--space-lg) clamp(22px, 5vw, 48px) 0;
  border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  background: oklch(98% 0.025 90);
  padding: 14px 16px;
  color: oklch(34% 0.04 220);
  font-size: 0.92rem;
}

.rgpd-badge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: var(--space-lg) clamp(22px, 5vw, 48px) clamp(24px, 5vw, 42px);
}

.rgpd-badge-verification {
  width: min(100%, 720px);
  max-height: min(90vh, 860px);
  overflow: auto;
  border: 0;
  border-radius: 18px;
  background: #f3f4f6;
  padding: 30px;
  color: #1f2937;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

.rgpd-badge-verification .rgpd-badge-close {
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-color: #DCDCD4;
  background: #fff;
  color: #0A1F44;
  font-size: 1.35rem;
}

.rgpd-badge-card {
  overflow: hidden;
  width: min(100%, 640px);
  margin: 0 auto;
  border: 1px solid #DCDCD4;
  border-radius: 14px;
  background: #fff;
}

.rgpd-badge-verification .rgpd-badge-head {
  border: 0;
  background: linear-gradient(135deg, #0A1F44 0%, #1e3a8a 100%);
  color: #fff;
  padding: 24px 32px;
}

.rgpd-badge-eyebrow {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.rgpd-badge-verification .rgpd-badge-head h2 {
  margin: 6px 0 0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.rgpd-badge-body {
  padding: 28px 32px;
}

.rgpd-badge-score-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
  border: 1px solid #DCDCD4;
  border-radius: 12px;
  background: #fafaf7;
  padding: 20px;
}

.rgpd-badge-score-circle {
  display: flex;
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #15803d;
  color: #fff;
  flex-direction: column;
}

.rgpd-badge-score-num {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.rgpd-badge-score-note {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.9;
}

.rgpd-badge-status-pill {
  display: inline-block;
  border-radius: 6px;
  background: #dcfce7;
  color: #15803d;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rgpd-badge-score-text {
  margin: 10px 0 0;
  color: #3a3a30;
  font-size: 13px;
}

.rgpd-badge-kvp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 14px 0;
}

.rgpd-badge-k {
  color: #929284;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rgpd-badge-v {
  margin-top: 2px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
}

.rgpd-badge-token-cell {
  grid-column: 1 / -1;
}

.rgpd-badge-token {
  color: #636357;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.rgpd-badge-disclaimer {
  margin-top: 22px;
  border-left: 4px solid #f59e0b;
  border-radius: 0 8px 8px 0;
  background: #fffbeb;
  padding: 14px 18px;
  color: #1f2937;
  font-size: 12px;
  line-height: 1.55;
}

.rgpd-badge-disclaimer strong {
  color: #92400e;
}

.rgpd-badge-section {
  margin-top: 24px;
  border-top: 1px solid #DCDCD4;
  padding-top: 24px;
}

.rgpd-badge-section h3 {
  margin: 0 0 12px;
  color: #0A1F44;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
}

.rgpd-badge-section p,
.rgpd-badge-section li {
  color: #3a3a30;
  font-size: 14px;
  line-height: 1.6;
}

.rgpd-badge-section p {
  margin: 0 0 12px;
}

.rgpd-badge-section ul {
  margin: 0 0 12px 18px;
  padding: 0;
}

.rgpd-badge-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.rgpd-badge-table tr:nth-child(odd) {
  background: #fafaf7;
}

.rgpd-badge-table td {
  border: 1px solid #DCDCD4;
  padding: 8px 12px;
  vertical-align: top;
}

.rgpd-badge-verification .rgpd-badge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0A1F44 0%, #1e3a8a 100%);
  padding: 18px;
}

.rgpd-badge-link,
.rgpd-badge-action {
  display: inline-block;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #0A1F44 !important;
  cursor: pointer;
  padding: 10px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.rgpd-badge-action {
  background: rgba(255, 255, 255, 0.14);
  color: #fff !important;
}

@keyframes badgeFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes badgeSheetIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.footer-shell a,
.footer-links a {
  width: fit-content;
  color: var(--yellow);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}

.footer-links a {
  color: oklch(94% 0.025 190);
}

.footer-links a:hover,
.footer-shell a:hover {
  color: var(--yellow);
}

.legal-main {
  background:
    linear-gradient(135deg, oklch(98% 0.014 188), oklch(95% 0.028 198));
}

.legal-hero {
  position: relative;
  overflow: clip;
  padding: 138px var(--space-md) var(--space-2xl);
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 56%, oklch(67% 0.19 28 / 12%) 56% 61%, transparent 61%),
    repeating-linear-gradient(115deg, transparent 0 22px, oklch(100% 0.004 190 / 38%) 23px 24px);
  pointer-events: none;
}

.legal-hero .section-shell {
  position: relative;
}

.legal-hero h1 {
  font-size: 2.55rem;
}

.legal-hero p:last-child {
  margin: var(--space-md) 0 0;
  color: var(--muted);
  font-weight: 700;
}

.legal-section {
  padding: 0 var(--space-md) var(--space-4xl);
}

.legal-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: var(--space-xl);
}

.legal-summary {
  position: sticky;
  top: 92px;
  display: grid;
  gap: var(--space-xs);
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.006 190 / 86%);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.legal-summary a {
  border-radius: var(--radius);
  color: var(--blue-deep);
  padding: 9px 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
}

.legal-summary a:hover {
  background: oklch(93% 0.035 188);
}

.legal-content {
  display: grid;
  gap: var(--space-md);
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  padding: var(--space-lg);
  box-shadow: 0 14px 36px oklch(28% 0.035 220 / 8%);
}

.legal-card-highlight {
  background:
    linear-gradient(135deg, oklch(99% 0.006 190), oklch(95% 0.03 175));
}

.legal-card h2 {
  font-size: 1.55rem;
  margin-bottom: var(--space-md);
}

.legal-card p {
  max-width: 76ch;
  margin: 0;
  color: var(--muted);
}

.legal-card p + p {
  margin-top: var(--space-sm);
}

.legal-card a {
  color: var(--blue);
  font-weight: 800;
}

.legal-card ul {
  display: grid;
  gap: var(--space-sm);
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.legal-card li::marker {
  color: var(--green);
}

.legal-card dl {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-md) 0 0;
}

.legal-card dl div {
  display: grid;
  gap: var(--space-2xs);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(97% 0.012 190);
  padding: var(--space-sm);
}

.legal-card dt {
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
}

.legal-card dd {
  margin: 0;
  color: var(--muted);
}

.legal-cookie-button {
  margin-top: var(--space-sm);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms var(--ease-out) var(--reveal-delay, 0ms), transform 620ms var(--ease-out) var(--reveal-delay, 0ms);
}

.reveal-delay-0 {
  --reveal-delay: 0ms;
}

.reveal-delay-1 {
  --reveal-delay: 70ms;
}

.reveal-delay-2 {
  --reveal-delay: 140ms;
}

.reveal-delay-3 {
  --reveal-delay: 210ms;
}

@keyframes hero-drift {
  from {
    transform: scale(1.1) translateX(1.5%);
  }
  to {
    transform: scale(1.04) translateX(0);
  }
}

@keyframes scan-pass {
  0% {
    transform: translateX(-140%);
    opacity: 0;
  }
  20%,
  74% {
    opacity: 0.85;
  }
  100% {
    transform: translateX(640%);
    opacity: 0;
  }
}

@keyframes hotspot-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hotspot-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

@keyframes grid-pulse {
  0%,
  100% {
    opacity: 0.52;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateY(8px);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0.25;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-in {
  from {
    opacity: 0.2;
    transform: translateY(18px) rotate(1deg) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(1deg) scale(1);
  }
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding-bottom: var(--space-2xl);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: var(--space-sm);
    background: oklch(99% 0.006 190 / 96%);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms var(--ease-quart), transform 220ms var(--ease-quart);
  }

  .site-nav a {
    font-size: 1.2rem;
    padding: var(--space-md) var(--space-lg);
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-actions .button {
    width: 100%;
  }

  .inspection-panel {
    display: none;
  }

  .proof-band {
    margin-bottom: -18px;
    transform: translateY(-18px);
  }

  .panel-metrics {
    grid-template-columns: 1fr;
  }

  .panel-metrics div + div {
    border-left: 0;
  }

  .hotspot {
    font-size: 0.7rem;
  }

  .form-actions .button {
    flex: 1 1 150px;
  }

  .legal-summary {
    position: static;
  }
}

@media (max-width: 1099px) {
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: var(--space-sm);
    background: oklch(99% 0.006 190 / 96%);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms var(--ease-quart), transform 220ms var(--ease-quart);
  }

  .site-nav a {
    font-size: 1.2rem;
    padding: var(--space-md) var(--space-lg);
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.08rem;
  }

  .brand-logo {
    width: 174px;
  }

  .hero-tags span {
    font-size: 0.72rem;
  }
}

@media (min-width: 640px) {
  h1 {
    font-size: 2.92rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .hero {
    padding-top: 122px;
  }

  .proof-shell {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-item + .proof-item {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .service-grid,
  .method-steps,
  .choice-grid,
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  }

  .inspection-panel {
    justify-self: end;
  }

  .two-column,
  .report-layout,
  .quote-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  }

  .quote-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
  }

  .report-layout {
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-links {
    justify-content: flex-end;
  }

  .legal-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .legal-hero h1 {
    font-size: 2.85rem;
  }
}

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }

  .site-nav,
  .header-actions {
    display: flex;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.52rem;
  }

  h2 {
    font-size: 2.48rem;
  }

  .section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }

  .service-grid,
  .method-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-detail-grid,
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (hover: hover) and (pointer: fine) {
  .choice-grid label:hover {
    border-color: oklch(66% 0.08 162);
    background: oklch(95% 0.025 170);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
