:root {
  --av-ink: #0f172a;
  --av-ink-soft: #1f2937;
  --av-surface: #ffffff;
  --av-panel: #f8fafc;
  --av-tint: #effcf8;
  --av-tint-alt: #fff7ed;
  --av-line: #dbe4ee;
  --av-primary: #0b5e58;
  --av-primary-dark: #084741;
  --av-secondary: #ea580c;
  --av-secondary-dark: #c2410c;
  --av-text: #0f172a;
  --av-text-muted: #475569;
  --av-text-on-dark: #f8fafc;
  --av-focus: #0f766e;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 6px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.12);

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--av-text);
  background: var(--av-surface);
  line-height: 1.65;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--av-focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--av-text-on-dark);
  background: var(--av-ink);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(12, 24, 41, 0.08);
  border-bottom-color: var(--av-line);
}

.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__inner > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--av-text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav__link {
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  border: 1px solid transparent;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--av-primary-dark);
  border-color: #b7dcd6;
  background: var(--av-tint);
}

.site-nav .btn-primary {
  min-width: 214px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(11, 94, 88, 0.26);
}

.site-nav .btn-primary:hover {
  box-shadow: 0 10px 28px rgba(8, 71, 65, 0.34);
}

.page-subnav {
  position: relative;
  border-bottom: 1px solid var(--av-line);
  background:
    radial-gradient(120% 180% at 50% -80%, rgba(11, 94, 88, 0.14) 0%, rgba(11, 94, 88, 0) 65%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-subnav::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #0b5e58 0%, #ea580c 100%);
  opacity: 0.66;
}

.site-nav--secondary {
  gap: 0.62rem;
  flex-wrap: wrap;
  padding: 0.66rem 0;
}

.site-nav--secondary .site-nav__link {
  min-height: 44px;
  font-size: 0.89rem;
  color: var(--av-ink-soft);
  padding: 0.22rem 0.72rem;
  border-color: #d4e4f2;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.site-nav--secondary .site-nav__link:hover,
.site-nav--secondary .site-nav__link:focus-visible {
  color: var(--av-primary-dark);
  border-color: #7ec7b9;
  background: #f0fbf8;
  box-shadow: 0 8px 22px rgba(11, 94, 88, 0.12);
}

.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 10020;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.48rem 0.86rem;
  border-radius: 999px;
  border: 1px solid #7ec7b9;
  background: rgba(9, 40, 56, 0.9);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(9, 40, 56, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.back-to-top::before {
  content: "↑";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.12rem;
  height: 1.12rem;
  border-radius: 999px;
  background: rgba(126, 199, 185, 0.26);
  color: #d8fff6;
  font-size: 0.86rem;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: #a1f0dd;
  background: rgba(6, 70, 64, 0.92);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-visible .back-to-top {
  bottom: 6.4rem;
}

.brand-lockup {
  height: 34px;
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--av-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--av-primary-dark);
}

.btn-secondary {
  background: var(--av-tint-alt);
  color: var(--av-secondary-dark);
  border-color: #fed7aa;
}

.section {
  padding: clamp(3.4rem, 4vw, 5.2rem) 0;
}

.section--dark {
  color: var(--av-text-on-dark);
  background: var(--av-ink);
}

.section--dark .muted {
  color: #dbe5f4;
}

.section--tint {
  background: var(--av-tint);
}

.section--tint-alt {
  background: var(--av-tint-alt);
}

.hero {
  padding-top: clamp(3rem, 5vw, 6rem);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--av-tint);
  color: var(--av-primary-dark);
  border: 1px solid #bce8dd;
  padding: 0.32rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.badge-dot {
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--av-primary);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.8rem, 3vw, 3rem);
  align-items: center;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  color: var(--av-text);
}

h1 {
  font-size: clamp(2.2rem, 6.2vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-top: 1rem;
}

h2 {
  font-size: clamp(1.65rem, 4.1vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 850;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  letter-spacing: -0.01em;
  font-weight: 750;
}

.lead {
  margin: 1.2rem 0 1.8rem;
  color: var(--av-text-muted);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  max-width: 66ch;
}

.hero-highlight {
  color: var(--av-primary);
}

.trust-line {
  margin-top: 0.85rem;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-proof {
  margin: 0.8rem 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hero-proof li {
  border: 1px solid var(--av-line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--av-text-muted);
  padding: 0.52rem 0.72rem;
  font-size: 0.9rem;
}

.hero-proof li::before {
  content: "✓ ";
  color: var(--av-primary);
  font-weight: 900;
}

.product-mockup {
  background: var(--av-ink);
  color: var(--av-text-on-dark);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 0.8rem;
}

.product-mockup p {
  margin: 0;
}

.product-mockup__header {
  border: 1px solid #2a3c5c;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.8rem;
  background: #12233d;
}

.product-mockup__title {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #86efac;
  font-weight: 700;
}

.product-mockup__subtitle {
  margin-top: 0.28rem;
  font-size: 0.92rem;
  font-weight: 650;
}

.product-mockup__status {
  display: inline-block;
  margin-top: 0.45rem;
  border: 1px solid #2f496f;
  border-radius: 999px;
  padding: 0.16rem 0.52rem;
  font-size: 0.73rem;
  color: #c8d7f0;
}

.product-mockup__badges {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.product-mockup__status {
  margin-top: 0;
}

.product-mockup__source {
  display: inline-block;
  border: 1px solid #345a88;
  border-radius: 999px;
  padding: 0.16rem 0.52rem;
  font-size: 0.72rem;
  color: #cfe0fb;
}

.product-mockup__queue {
  display: grid;
  gap: 0.6rem;
}

.queue-item {
  border: 1px solid #23324f;
  border-radius: var(--radius-sm);
  background: #111f36;
  padding: 0.75rem;
}

.queue-item--active {
  border-color: #2f4b73;
  box-shadow: inset 0 0 0 1px #325481;
}

.queue-item__topline {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
}

.queue-item__topline strong {
  font-size: 0.88rem;
}

.queue-item__rating {
  font-size: 0.78rem;
  color: #facc15;
  letter-spacing: 0.02em;
}

.queue-item__excerpt {
  margin-top: 0.34rem;
  font-size: 0.84rem;
  line-height: 1.42;
  color: #dbe5f4;
}

.queue-item__meta {
  margin-top: 0.55rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
}

.queue-pill {
  border: 1px solid #1f7f60;
  color: #b7f2de;
  background: #0d3c34;
  border-radius: 999px;
  padding: 0.14rem 0.44rem;
  font-size: 0.72rem;
  font-weight: 650;
}

.queue-pill--alert {
  border-color: #9a6700;
  color: #ffe6b3;
  background: #4d3304;
}

.queue-time {
  font-size: 0.73rem;
  color: #a7bbdd;
}

.product-mockup__composer {
  border: 1px solid #284467;
  border-radius: var(--radius-sm);
  background: #0f1f38;
  padding: 0.8rem;
}

.composer-title {
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9cc0ff;
  font-weight: 700;
}

.composer-text {
  margin-top: 0.4rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #e2eaf8;
}

.composer-meta {
  margin-top: 0.34rem;
  font-size: 0.74rem;
  color: #9fb8dd;
}

.composer-actions {
  margin-top: 0.65rem;
  display: flex;
  gap: 0.42rem;
}

.composer-action {
  border: 1px solid #35527a;
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
  font-size: 0.72rem;
  color: #d2def3;
}

.composer-action--primary {
  border-color: #0b7a63;
  background: #0f766e;
  color: #ffffff;
  font-weight: 700;
}

.metric-grid,
.card-grid,
.pill-grid {
  display: grid;
  gap: 1rem;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  padding: 1.15rem;
  border: 1px solid #22324a;
  border-radius: var(--radius-md);
  background: #0d1d34;
}

.metric strong {
  display: block;
  font-size: 1.6rem;
}

.metric span {
  color: #cbd5e1;
  font-size: 0.88rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  border: 1px solid var(--av-line);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 1rem;
}

.value-card p {
  margin: 0.7rem 0 0;
  color: var(--av-text-muted);
}

.card {
  border: 1px solid var(--av-line);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  background: var(--av-surface);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.card p {
  margin: 0.7rem 0 0;
  color: var(--av-text-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  border-radius: var(--radius-md);
  border: 1px solid var(--av-line);
  background: var(--av-surface);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  column-gap: 0.7rem;
  row-gap: 0.55rem;
  align-items: center;
}

.step-index {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.72rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--av-primary-dark);
  background: #d1fae5;
  border: 1px solid #99f6e4;
}

.step p,
.copy {
  color: var(--av-text-muted);
}

.step h3 {
  grid-column: 2;
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
  line-height: 1.2;
}

.step p {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1.55;
}

.pill-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pill {
  background: var(--av-surface);
  border: 1px solid #fdba74;
  color: var(--av-secondary-dark);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 16px rgba(194, 65, 12, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.pill:hover {
  transform: translateY(-1px);
  background: #fff1e7;
  box-shadow: 0 8px 20px rgba(194, 65, 12, 0.16);
}

.quote-band {
  border: 1px solid #22324a;
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 3.2vw, 2.2rem);
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(16, 185, 129, 0.14), transparent 46%),
    radial-gradient(circle at 88% 74%, rgba(249, 115, 22, 0.18), transparent 46%);
  pointer-events: none;
}

.quote-band p,
.quote-band strong {
  position: relative;
}

.quote-band p {
  margin: 0;
  max-width: 56ch;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  font-weight: 760;
}

.quote-band strong {
  display: block;
  margin-top: 0.8rem;
  color: #94a3b8;
  font-size: 0.92rem;
  font-weight: 600;
}

.sector-hero {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  border-bottom: 1px solid var(--av-line);
}

.sector-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.sector-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid #bce8dd;
  background: var(--av-tint);
  color: var(--av-primary-dark);
  padding: 0.35rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.sector-lead {
  margin: 1rem 0 1.3rem;
  color: var(--av-text-muted);
  max-width: 62ch;
}

.sector-points,
.sector-proof {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.sector-points li,
.sector-proof li {
  border: 1px solid var(--av-line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.75rem 0.85rem;
  color: var(--av-text-muted);
}

.sector-points li::before,
.sector-proof li::before {
  content: "• ";
  color: var(--av-primary);
  font-weight: 900;
}

.sector-proof {
  margin-top: 0.8rem;
}

.sector-cta {
  border: 1px solid #bce8dd;
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--av-line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1rem;
}

.contact-note {
  border: 1px solid #bce8dd;
  border-radius: var(--radius-md);
  background: var(--av-tint);
  color: var(--av-ink-soft);
  font-size: 0.92rem;
  padding: 0.9rem;
}

.contact-note a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.price-card {
  border: 2px solid #99f6e4;
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 1.45rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.price-card .badge {
  justify-content: center;
}

.price-card .btn {
  width: 100%;
  max-width: 260px;
  margin-top: 1rem;
  margin-inline: auto;
}

.price-card .muted {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  max-width: 34ch;
  margin-inline: auto;
}

.price-tag {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-meta,
.muted {
  color: #334155;
}

.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  display: flex;
  gap: 0.5rem;
}

.check-list li::before {
  content: "✓";
  color: var(--av-primary);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid #9fd8cc;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0;
  box-shadow: 0 4px 16px rgba(8, 71, 65, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.faq-item:hover {
  border-color: #74bfae;
  box-shadow: 0 10px 24px rgba(8, 71, 65, 0.1);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 750;
  color: var(--av-text);
  padding: 1rem 1rem 0.95rem;
}

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

.faq-item summary::after {
  content: "+";
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--av-primary-dark);
  background: #d9f2eb;
  border: 1px solid #b7dcd6;
  flex-shrink: 0;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.faq-item[open] {
  border-color: #5aa997;
  background: #fcfffe;
  box-shadow: 0 14px 30px rgba(8, 71, 65, 0.12);
}

.faq-item[open] summary {
  color: var(--av-primary-dark);
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  color: #ffffff;
  background: var(--av-primary);
  border-color: var(--av-primary);
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  border-top: 1px solid #d8ebe6;
  color: var(--av-text-muted);
}

.cta-panel {
  border-radius: var(--radius-lg);
  background: var(--av-ink);
  color: var(--av-text-on-dark);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.cta-panel h2 {
  color: var(--av-text-on-dark);
}

.cta-panel .lead {
  color: #dbe5f4;
}

.legal-wrap {
  width: min(100%, 900px);
  margin-inline: auto;
  border: 1px solid var(--av-line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: clamp(1rem, 2.5vw, 1.8rem);
}

.legal-head {
  margin-bottom: 1.7rem;
  padding: 1rem;
  border: 1px solid #bce8dd;
  border-radius: var(--radius-md);
  background:
    linear-gradient(140deg, #effcf8 0%, #fff7ed 100%);
}

.legal-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--av-text);
}

.legal-meta {
  margin: 0;
  color: #334155;
  font-size: 0.9rem;
}

.legal-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--av-line);
  color: #64748b;
  font-size: 0.75rem;
}

.legal-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.legal-badge-inline {
  display: inline-flex;
  margin-bottom: 0.75rem;
}

.legal-page .info-card {
  background: #ffffff;
  border: 1px solid var(--av-line);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-page .info-card h2 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0b5e58;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.875rem;
}

.legal-page .info-row {
  display: flex;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--av-line);
  font-size: 0.9rem;
}

.legal-page .info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-page .info-label {
  color: #0b5e58;
  font-weight: 600;
  min-width: 180px;
  flex-shrink: 0;
  font-size: 0.8125rem;
}

.legal-page .info-value {
  color: #0f172a;
}

.legal-page .info-value a,
.legal-page .prose a,
.legal-page .toc ol li a {
  color: var(--av-primary-dark);
}

.legal-page .info-value a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.legal-page .tap-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.legal-page .prose p {
  color: #475569;
  line-height: 1.75;
  margin-bottom: 0.85rem;
  font-size: 0.9375rem;
}

.legal-page .prose h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #bce8dd;
}

.legal-page .prose h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--av-primary-dark);
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

.legal-page .prose ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.85rem;
}

.legal-page .prose ul li {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.legal-page .prose ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--av-primary);
}

.legal-page .prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
}

.legal-page .prose ol li {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.legal-page .prose strong {
  color: #0f172a;
  font-weight: 600;
}

.legal-page .prose em {
  font-style: italic;
  color: #64748b;
}

.legal-page .prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  margin: 1rem 0 1.5rem;
}

.legal-page .prose th {
  background: #effcf8;
  color: #084741;
  font-weight: 700;
  padding: 0.55rem 0.75rem;
  text-align: left;
  border: 1px solid #bce8dd;
}

.legal-page .prose td {
  padding: 0.55rem 0.75rem;
  border: 1px solid #e2e8f0;
  color: #475569;
  vertical-align: top;
}

.legal-page .prose tr:nth-child(even) td {
  background: #f8fafc;
}

.legal-page .prose .table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.legal-page .callout {
  background: #effcf8;
  border: 1px solid #bce8dd;
  border-left: 4px solid var(--av-primary);
  border-radius: 0 8px 8px 0;
  padding: 0.875rem 1rem;
  color: #0f172a;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
}

.legal-page .callout-amber {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  color: #92400e;
}

.legal-page .callout-green {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid #16a34a;
  color: #15803d;
}

.legal-page .def-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.legal-page .def-grid dt {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  padding: 0.55rem 0.75rem;
  font-weight: 600;
  color: #0f172a;
}

.legal-page .def-grid dd {
  border-bottom: 1px solid #e2e8f0;
  padding: 0.55rem 0.75rem;
  color: #475569;
  margin: 0;
}

.legal-page .def-grid dt:last-of-type,
.legal-page .def-grid dd:last-of-type {
  border-bottom: none;
}

.legal-page .toc {
  background: #f8fafc;
  border: 1px solid #bce8dd;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.legal-page .toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0b5e58;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.legal-page .toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  margin: 0;
}

.legal-page .toc ol li {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.1rem;
}

.legal-page .toc ol li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-weight: 600;
}

.legal-page .toc ol li a:hover {
  text-decoration: underline;
}

.legal-page .badge-blue {
  background: #ccfbf1;
  color: #0c4a45; /* ratio ≈ 11.5:1 sur #ccfbf1 — AAA ✓ */
}

.legal-page .badge-green {
  background: #dcfce7;
  color: #14532d; /* ratio ≈ 9.6:1 sur #dcfce7 — AAA ✓ */
}

.legal-page .badge-purple {
  background: #fff7ed;
  color: #9a3412; /* ratio ≈ 7.2:1 sur #fff7ed — AAA ✓ */
}

.legal-page .badge-amber {
  background: #fef3c7;
  color: #92400e; /* ratio ≈ 10.6:1 sur #fef3c7 — AAA ✓ */
}

.legal-page {
  background: linear-gradient(180deg, #f7fbfa 0%, #ffffff 30%);
}

.waitlist-embed {
  min-height: 360px;
}

.waitlist-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

.site-footer {
  border-top: 1px solid var(--av-line);
  padding: 2rem 0 2.5rem;
  background: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.35rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--av-text-muted);
}

.footer-links a:hover {
  background: var(--av-panel);
}

.footer-links button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.35rem;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  color: var(--av-text-muted);
  font: inherit;
  font-size: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-links button:hover {
  background: var(--av-panel);
}

.sticky-cta {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 95;
  display: none;
  justify-content: center;
}

.sticky-cta .btn {
  width: 100%;
  padding: 0.9rem 1rem;
}

.sticky-cta[hidden] {
  display: none !important;
}

.cookie-banner {
  display: none;
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid var(--av-line);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

.cookie-banner__inner {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  padding: 1rem 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
}

.cookie-banner a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.cookie-banner__text {
  margin: 0;
  flex: 1;
  min-width: 260px;
}

.cookie-banner .btn {
  border-radius: var(--radius-sm);
  min-height: 44px;
  padding: 0.65rem 1rem;
}

.footer-logo {
  height: 30px;
}

.embed-frame {
  border: none;
}

.link-underline {
  text-decoration: underline;
}

.lead-tight {
  margin: 0.7rem 0 1rem;
}

.lead-on-dark {
  color: #cbd5e1;
}

.contact-title {
  margin-top: 0.8rem;
}

.contact-card-title {
  font-size: 1.15rem;
}

.btn-inline {
  width: auto;
}

.mt-1 {
  margin-top: 1rem;
}

@media (max-width: 1023px) {
  .hero-grid,
  .sector-shell,
  .contact-layout,
  .pricing-wrap,
  .card-grid,
  .value-grid,
  .metric-grid,
  .steps,
  .pill-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 1.35rem, var(--container));
  }

  .site-header__inner {
    min-height: 66px;
  }

  .site-nav--primary .site-nav__link {
    display: none;
  }

  .site-nav--secondary {
    flex-wrap: wrap;
    overflow: visible;
    padding: 0.5rem 0;
  }

  .site-nav--secondary .site-nav__link {
    display: inline-flex;
    white-space: normal;
  }

  .back-to-top {
    right: 0.72rem;
    bottom: 4.9rem;
    font-size: 0.8rem;
    padding: 0.42rem 0.74rem;
  }

  .cookie-banner-visible .back-to-top {
    bottom: 9.2rem;
  }

  .hero-grid,
  .sector-shell,
  .contact-layout,
  .pricing-wrap,
  .card-grid,
  .value-grid,
  .metric-grid,
  .steps,
  .pill-grid,
  .footer-grid,
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .sticky-cta {
    display: flex;
  }

  .btn {
    width: 100%;
  }

  .site-nav .btn {
    width: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: reveal-up 420ms ease both;
  }

  .reveal-delay {
    animation: reveal-up 560ms ease both;
  }

  @keyframes reveal-up {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
