@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("./fonts/sora-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink-900: #1d2431;
  --ink-700: #394657;
  --ink-600: #47586c;
  --ink-500: #5c6e86;
  --control-border: #7f8fa1;
  --ink-200: #cfd6df;
  --ink-100: #e9ecf0;
  --ink-50: #f6f7f8;
  --brand-800: #0f4d48;
  --brand-700: #0f645c;
  --brand-600: #0f7e74;
  --brand-500: #149b90;
  --brand-100: #c6f7f0;
  --brand-50: #ecfdfb;
  --gold-600: #7d5c1b;
  --gold-100: #f7edcf;
  --white: #fff;
  --shadow: 0 22px 55px rgba(15, 37, 47, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--ink-50);
  color: var(--ink-900);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--brand-700);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--white);
  padding: 10px 14px;
  color: var(--ink-900);
  font-weight: 700;
  box-shadow: var(--shadow);
}

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

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(207, 214, 223, 0.72);
  background: rgba(255, 255, 255, 0.9);
}

.header-inner {
  display: grid;
  min-height: 72px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-900);
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-700);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-600);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--brand-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-picker,
.mobile-menu {
  position: relative;
}

.language-picker summary,
.mobile-menu summary {
  min-width: 48px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--control-border);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink-700);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.language-picker summary::-webkit-details-marker,
.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.language-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  max-height: 380px;
  margin: 0;
  padding: 8px;
  overflow: auto;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  list-style: none;
}

.language-list a {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 11px;
  padding: 8px 12px;
  color: var(--ink-700);
  text-decoration: none;
}

.language-list a:hover,
.language-list a[aria-current="page"] {
  background: var(--brand-50);
  color: var(--brand-700);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 12px 20px;
  background: var(--brand-600);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--brand-700);
  transform: translateY(-1px);
}

.button-small {
  min-width: 150px;
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 14px;
  font-size: 14px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 10% 18%, rgba(20, 155, 144, 0.12), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(47, 133, 123, 0.1), transparent 34%),
    linear-gradient(180deg, #fbfdfc 0%, #f4f7f6 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -260px;
  bottom: -250px;
  border: 1px solid rgba(15, 126, 116, 0.15);
  border-radius: 50%;
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 72px;
  padding-block: 84px 96px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--brand-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(52px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.048em;
  line-height: 1.06;
}

.hero-intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--ink-600);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 32px;
}

.hero-action-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button-primary {
  min-width: 180px;
}

.hero-restore-link {
  min-height: 48px;
  display: grid;
  align-content: center;
  color: var(--ink-500);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
}

.hero-restore-link strong {
  color: var(--brand-700);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-restore-link:hover strong {
  color: var(--brand-800);
}

.privacy-note {
  display: flex;
  max-width: 620px;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--ink-600);
  font-size: 14px;
}

.check-mark {
  flex: 0 0 auto;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 700;
}

.month-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 5px solid var(--brand-600);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  padding: 30px;
  box-shadow: var(--shadow);
}

.month-card-head,
.month-values > div,
.month-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.month-card-head {
  font-weight: 700;
}

.example-badge {
  border-radius: 999px;
  background: var(--brand-50);
  padding: 6px 11px;
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 700;
}

.household-example-switcher {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin: 16px 0 0;
  border: 0;
  border-radius: 13px;
  background: var(--ink-50);
  padding: 4px;
}

.household-example-switcher button {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-600);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.household-example-switcher button[aria-pressed="true"] {
  background: var(--white);
  color: var(--brand-700);
  box-shadow: 0 2px 9px rgba(15, 37, 47, 0.1);
}

.month-values {
  display: grid;
  gap: 15px;
  margin: 26px 0 0;
}

.month-values dt {
  color: var(--ink-500);
}

.month-values dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
}

.month-result {
  margin-top: 24px;
  border-radius: 18px;
  background: #e9f5f2;
  padding: 18px;
}

.month-result strong {
  font-family: "Sora", sans-serif;
  font-size: 29px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  white-space: nowrap;
}

.section {
  padding-block: 100px;
  scroll-margin-top: 24px;
}

.section:focus {
  outline: none;
}

.section-white {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.section-heading h2,
.privacy-copy h2,
.closing-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.13;
}

.section-heading > p:last-child,
.privacy-copy > p:not(.section-kicker),
.closing-card p:not(.section-kicker) {
  max-width: 68ch;
  margin: 20px 0 0;
  color: var(--ink-600);
  font-size: 17px;
  line-height: 1.65;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.step-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  background: #fbfcfc;
  padding: 26px;
}

.step-number,
.privacy-number {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.step-card h3,
.area-card h3,
.privacy-item h3 {
  margin: 0;
  color: var(--ink-900);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.step-card p,
.area-card p,
.privacy-item p {
  margin: 10px 0 0;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.6;
}

.areas-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(20, 155, 144, 0.09), transparent 26%),
    #eef4f2;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.area-card {
  display: grid;
  min-height: 168px;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  border: 1px solid rgba(207, 214, 223, 0.72);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
}

.area-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(15, 126, 116, 0.22);
  border-radius: 13px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.area-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.area-card-savings .area-mark {
  border-color: rgba(139, 103, 31, 0.25);
  background: var(--gold-100);
  color: var(--gold-600);
}

.areas-mobile-summary,
.privacy-mobile-compact,
.footer-language-mobile,
.faq-more-button,
.mobile-sticky-cta {
  display: none;
}

.sticky-cta-start {
  display: block;
  height: 0;
}

.audience-note {
  margin: 26px 0 0;
  border-left: 3px solid var(--brand-500);
  padding: 4px 0 4px 16px;
  color: var(--ink-600);
  font-size: 14px;
}

.privacy-section {
  background: var(--white);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: start;
  gap: 76px;
}

.privacy-copy {
  padding-top: 18px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: var(--brand-700);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.privacy-panel {
  display: grid;
  gap: 4px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  background: var(--ink-50);
  padding: 12px;
  box-shadow: 0 16px 42px rgba(15, 37, 47, 0.08);
}

.privacy-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  border-radius: 17px;
  background: var(--white);
  padding: 20px;
}

.privacy-warning {
  border: 1px solid rgba(139, 103, 31, 0.18);
  background: #fffdf8;
}

.privacy-warning .privacy-number {
  background: var(--gold-100);
  color: var(--gold-600);
}

.backup-note {
  margin: 7px 4px 2px;
  border-radius: 13px;
  padding: 11px 14px;
  color: var(--ink-600);
  font-size: 12px;
  line-height: 1.55;
}

.faq-section {
  background: #f2f5f4;
}

.faq-wrap {
  max-width: 800px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.faq-list details {
  border: 1px solid var(--control-border);
  border-radius: 16px;
  background: var(--white);
  overflow: clip;
}

.faq-list summary {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 15px 58px 15px 20px;
  color: var(--ink-900);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-700);
}

.faq-list summary::before {
  transform: translateY(-50%);
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-list details[open] summary {
  color: var(--brand-700);
}

.faq-list details p {
  margin: 0;
  padding: 0 58px 20px 20px;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.65;
}

.closing-section {
  background: var(--white);
  padding-block: 64px;
}

.closing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  border: 1px solid rgba(15, 126, 116, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 12%, rgba(20, 155, 144, 0.11), transparent 30%),
    #eef7f5;
  padding: 38px 44px;
  color: var(--ink-900);
  box-shadow: 0 18px 46px rgba(15, 37, 47, 0.07);
}

.closing-card h2 {
  max-width: 860px;
  font-size: clamp(30px, 2.5vw, 36px);
}

.closing-card .section-kicker {
  color: var(--brand-700);
}

.closing-card p:not(.section-kicker) {
  margin-top: 14px;
  color: var(--ink-600);
}

.closing-button {
  min-width: 184px;
  background: var(--brand-600);
}

.closing-actions {
  display: grid;
  justify-items: stretch;
  gap: 10px;
}

.closing-restore-link {
  min-height: 44px;
  display: grid;
  place-content: center;
  color: var(--ink-500);
  font-size: 12px;
  text-align: center;
  text-decoration: none;
}

.closing-restore-link strong {
  color: var(--brand-700);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  border-top: 1px solid var(--ink-100);
  background: #fbfcfc;
  padding-block: 54px 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
}

.footer-brand {
  width: fit-content;
}

.footer-main p {
  margin: 15px 0 0;
  color: var(--ink-500);
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.footer-links a,
.footer-languages a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-600);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover,
.footer-languages a:hover {
  color: var(--brand-700);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-top: 36px;
  border-top: 1px solid var(--ink-100);
  padding-top: 20px;
}

.footer-languages a[aria-current="page"] {
  color: var(--brand-700);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  border-top: 1px solid var(--ink-100);
  padding-top: 22px;
  color: var(--ink-500);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 18px;
  }

  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.84fr);
    gap: 44px;
  }

  .privacy-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(460px, 1.25fr);
    gap: 46px;
  }

  .footer-links {
    gap: 14px;
  }
}

@media (max-width: 1023px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .header-inner {
    min-height: 64px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    min-width: 98px;
    gap: 10px;
    padding-inline: 13px;
  }

  .menu-close-label {
    display: none;
  }

  .mobile-menu[open] .menu-open-label {
    display: none;
  }

  .mobile-menu[open] .menu-close-label {
    display: inline;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before,
  .menu-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-lines::before {
    top: -5px;
  }

  .menu-lines::after {
    top: 5px;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(340px, calc(100vw - 48px));
    display: grid;
    gap: 4px;
    border: 1px solid var(--ink-100);
    border-radius: 20px;
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .mobile-menu-panel > a:not(.button) {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 9px 12px;
    color: var(--ink-700);
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-menu-panel > a:not(.button):hover {
    background: var(--brand-50);
  }

  .mobile-menu-panel .button {
    margin-top: 4px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 60px;
    padding-block: 72px 80px;
  }

  .hero-copy {
    max-width: 720px;
  }

  h1 {
    font-size: clamp(44px, 7.5vw, 52px);
  }

  .month-card {
    width: min(100%, 620px);
  }

  .section {
    padding-block: 76px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-card {
    min-height: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 22px;
  }

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

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .privacy-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .privacy-panel {
    max-width: 720px;
  }

  .closing-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .closing-button {
    width: fit-content;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 899px) {
  html {
    scroll-behavior: auto;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .brand {
    gap: 9px;
    font-size: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-picker summary {
    min-width: 46px;
  }

  .language-list {
    position: fixed;
    top: 65px;
    right: 20px;
    left: 20px;
    width: auto;
  }

  .mobile-menu summary {
    min-width: 48px;
    width: 48px;
    padding: 0;
  }

  .mobile-menu summary span:not(.menu-lines) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .mobile-menu-panel {
    position: fixed;
    top: 65px;
    right: 20px;
    left: 20px;
    width: auto;
  }

  .hero-grid {
    gap: 34px;
    padding-block: 42px 50px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.065em;
  }

  h1 {
    font-size: clamp(36px, 10.5vw, 40px);
    letter-spacing: -0.042em;
    line-height: 1.08;
  }

  .hero-intro {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-action-row {
    display: grid;
    gap: 8px;
  }

  .button-primary {
    width: 100%;
  }

  .hero-restore-link {
    justify-content: center;
    text-align: center;
  }

  .privacy-note {
    margin-top: 14px;
    font-size: 13px;
  }

  .month-card {
    border-radius: 22px;
    padding: 19px 18px;
  }

  .month-values {
    gap: 12px;
    margin-top: 17px;
  }

  .month-result {
    padding: 16px;
  }

  .month-result strong {
    font-size: 24px;
  }

  .section {
    padding-block: 48px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .closing-card h2 {
    font-size: 30px;
  }

  .section-heading > p:last-child,
  .privacy-copy > p:not(.section-kicker),
  .closing-card p:not(.section-kicker) {
    margin-top: 16px;
    font-size: 15px;
  }

  .steps-grid,
  .faq-list {
    margin-top: 28px;
  }

  .steps-grid {
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--ink-100);
    border-radius: 20px;
    background: var(--white);
  }

  .step-card {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    border: 0;
    border-bottom: 1px solid var(--ink-100);
    border-radius: 0;
    background: transparent;
    padding: 15px;
  }

  .step-card:last-child {
    border-bottom: 0;
  }

  .step-card h3 {
    font-size: 15px;
  }

  .step-card p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.45;
  }

  .step-number,
  .privacy-number {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 12px;
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .areas-desktop-intro {
    display: none;
  }

  .areas-mobile-summary {
    display: block;
  }

  .area-card {
    min-height: 70px;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 11px;
    padding: 13px;
  }

  .area-card h3 {
    font-size: 14px;
  }

  .area-card p {
    display: none;
  }

  .area-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .area-mark svg {
    width: 18px;
    height: 18px;
  }

  .audience-note {
    margin-top: 18px;
    font-size: 13px;
  }

  .privacy-layout {
    display: block;
  }

  .privacy-section {
    background: #e8f6f3;
  }

  .privacy-desktop-intro,
  .privacy-copy > .text-link:not(.privacy-mobile-link),
  .privacy-panel {
    display: none;
  }

  .privacy-mobile-compact {
    display: block;
    margin-top: 22px;
  }

  .privacy-mobile-compact ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .privacy-mobile-compact li {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(15, 126, 116, 0.16);
    border-radius: 999px;
    background: var(--brand-50);
    padding: 7px 11px;
    color: var(--brand-800);
    font-size: 12px;
    font-weight: 700;
  }

  .privacy-mobile-compact li span {
    color: var(--brand-600);
  }

  .privacy-mobile-compact > p {
    margin: 14px 0 0;
    color: var(--ink-600);
    font-size: 13px;
  }

  .privacy-mobile-compact details {
    margin-top: 10px;
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
  }

  .privacy-mobile-compact summary {
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding-right: 34px;
    color: var(--brand-700);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    list-style: none;
  }

  .privacy-mobile-compact summary::-webkit-details-marker {
    display: none;
  }

  .privacy-mobile-compact summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    font-size: 20px;
    font-weight: 500;
  }

  .privacy-mobile-compact details[open] summary::after {
    content: "−";
  }

  .privacy-mobile-compact details div {
    padding: 0 0 14px;
  }

  .privacy-mobile-compact details p {
    margin: 0 0 9px;
    color: var(--ink-600);
    font-size: 12px;
    line-height: 1.5;
  }

  .privacy-mobile-compact details p:last-child {
    margin-bottom: 0;
  }

  .privacy-mobile-link {
    display: inline-flex;
    margin-top: 8px;
  }

  .text-link {
    margin-top: 20px;
  }

  .faq-list summary {
    min-height: 58px;
    padding: 14px 54px 14px 16px;
    font-size: 14px;
  }

  .faq-list summary::before,
  .faq-list summary::after {
    right: 19px;
  }

  .faq-list details p {
    padding: 0 46px 18px 16px;
    font-size: 13px;
  }

  .js .faq-list:not(.show-all) details:nth-child(n + 5) {
    display: none;
  }

  .faq-more-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    padding: 8px 4px;
    color: var(--brand-700);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
  }

  .closing-section {
    padding-block: 48px;
  }

  .closing-card {
    gap: 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    color: var(--ink-900);
    box-shadow: none;
    text-align: left;
  }

  .closing-card h2 {
    font-size: 27px;
  }

  .closing-card p {
    display: block;
    margin-top: 10px !important;
    color: var(--ink-600) !important;
    font-size: 13px !important;
  }

  .closing-button {
    width: 100%;
  }

  .closing-actions {
    width: 100%;
  }

  .closing-restore-link {
    color: var(--ink-500);
  }

  .closing-restore-link strong {
    color: var(--brand-700);
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 80;
    right: 20px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--brand-600);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(15, 37, 47, 0.24);
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
    transform: translateY(12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-footer {
    padding-block: 32px 20px;
  }

  .footer-main {
    gap: 20px;
  }

  .footer-main p {
    display: none;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
  }

  .footer-languages {
    display: none;
  }

  .footer-language-mobile {
    display: block;
    margin-top: 18px;
  }

  .footer-language-mobile details {
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
  }

  .footer-language-mobile summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink-700);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    list-style: none;
  }

  .footer-language-mobile summary::-webkit-details-marker {
    display: none;
  }

  .footer-language-mobile summary span {
    color: var(--brand-700);
    font-weight: 600;
  }

  .footer-language-mobile-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-bottom: 10px;
  }

  .footer-language-mobile-list a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: var(--ink-600);
    font-size: 12px;
    text-decoration: none;
  }

  .footer-bottom {
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .brand {
    gap: 11px;
    font-size: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .mobile-menu summary {
    width: auto;
    min-width: 98px;
    padding-inline: 13px;
  }

  .mobile-menu summary span:not(.menu-lines) {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip-path: none;
    white-space: normal;
  }

  .language-list,
  .mobile-menu-panel {
    right: 24px;
    left: auto;
    width: min(340px, calc(100vw - 48px));
  }

  .hero-grid {
    gap: 48px;
    padding-block: 60px 70px;
  }

  h1 {
    font-size: 48px;
  }

  .button-primary {
    width: fit-content;
  }

  .month-card {
    width: min(100%, 460px);
    justify-self: center;
    padding: 26px;
  }

  .section {
    padding-block: 62px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .closing-card h2 {
    font-size: 36px;
  }

  .steps-grid,
  .privacy-copy,
  .faq-wrap {
    max-width: 720px;
  }

  .closing-card {
    max-width: 720px;
  }
}

@media (max-width: 599px) {
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--control-border);
    border-radius: 18px;
    background: var(--white);
  }

  .area-card {
    min-height: 56px;
    border: 0;
    border-bottom: 1px solid var(--ink-200);
    border-radius: 0;
    background: transparent;
    padding: 11px 13px;
  }

  .area-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 479px) {
  .area-card h3 {
    font-size: 13px;
  }
}

@media (max-width: 359px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: 34px;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .month-result {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .month-result strong {
    font-size: 23px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .closing-card h2 {
    font-size: 29px;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .button,
  .brand-mark,
  .month-result,
  .example-badge,
  .check-mark {
    border: 1px solid ButtonText;
  }
}
