@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #17191f;
  --muted: #70747c;
  --surface: #ffffff;
  --page: #f8f8f6;
  --line: rgba(23, 25, 31, 0.1);
  --blue: #3f82f7;
  --green: #5caa35;
  --green-dark: #337b1b;
  --navy: #111923;
  --lilac: #efebff;
  --mint: #e8f8f1;
  --sky: #e8f3ff;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --shadow-soft: 0 22px 65px rgba(21, 35, 52, 0.11);
  --shadow-card: 0 12px 34px rgba(26, 42, 61, 0.1);
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.language-open {
  overflow-x: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(63, 130, 247, 0.62);
  outline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  inset: 18px 0 auto;
  z-index: 50;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 40px rgba(27, 44, 63, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
  color: #4e5259;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}

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

.language-menu {
  position: relative;
}

.language-menu summary {
  min-width: 72px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #3e4249;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

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

.language-menu summary .ph {
  font-size: 14px;
  transition: transform 160ms ease;
}

.language-menu[open] summary .ph {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 126px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.language-options a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 12px;
  color: #565b63;
  font-size: 13px;
  font-weight: 700;
}

.language-options a:hover,
.language-options a[aria-current="page"] {
  background: var(--sky);
  color: #2364ca;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(17, 20, 25, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #282c34;
  box-shadow: 0 12px 26px rgba(17, 20, 25, 0.2);
}

.button--small {
  min-height: 48px;
  padding-inline: 22px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 1240px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  background: #e9f3ff;
}

.hero-background,
.panel-background,
.final-background {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-background img,
.panel-background img,
.final-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background img {
  object-position: center bottom;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: rgba(237, 246, 255, 0.54);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 124px;
  padding-bottom: 54px;
}

.hero-copy {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero-copy > p {
  max-width: 590px;
  margin: 22px auto 0;
  color: #69717c;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
  font-weight: 600;
}

.store-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.store-option {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

.store-logo {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: invert(1);
}

.store-smart-label {
  display: none;
  white-space: nowrap;
}

.hero-copy .store-actions[data-platform="ios"] .store-option.is-fallback,
.hero-copy .store-actions[data-platform="android"] .store-option.is-fallback {
  display: none;
}

.hero-copy .store-actions[data-platform="ios"] .store-option.is-primary,
.hero-copy .store-actions[data-platform="android"] .store-option.is-primary {
  flex: 0 0 auto;
  box-shadow: 0 9px 22px rgba(16, 18, 22, 0.18);
}

.store-actions[data-platform="ios"] .store-option.is-primary .store-default-label,
.store-actions[data-platform="android"] .store-option.is-primary .store-default-label {
  display: none;
}

.store-actions[data-platform="ios"] .store-option.is-primary .store-smart-label,
.store-actions[data-platform="android"] .store-option.is-primary .store-smart-label {
  display: inline;
}

.final-copy .store-actions[data-platform="ios"] .store-option.is-fallback,
.final-copy .store-actions[data-platform="android"] .store-option.is-fallback {
  opacity: 0.68;
  transform: scale(0.9);
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 13px;
  color: #69717c;
  font-size: 13px;
  font-weight: 600;
}

.hero-rating-stars {
  width: 78px;
  height: 16px;
  display: block;
  object-fit: contain;
  clip-path: inset(0 5.4% 0 0);
}

.hero-rating strong {
  color: #555d68;
}

.hero-product {
  display: flex;
  justify-content: center;
  margin: 36px auto 0;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  border: 8px solid #15171a;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(21, 33, 45, 0.26);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  pointer-events: none;
}

.phone-frame picture,
.phone-frame img {
  width: 100%;
  height: 100%;
}

.phone-frame img {
  object-fit: cover;
  object-position: top;
}

.hero-phone {
  width: 390px;
  height: auto;
  aspect-ratio: 9 / 20;
  justify-self: center;
}

.decision-section {
  padding: 108px 0 56px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.faq-heading h2,
.more-section > .container > h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.section-heading p,
.faq-heading p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

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

.decision-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 36px 34px 0;
  border-radius: var(--radius-lg);
}

.decision-card:nth-child(1) {
  background: linear-gradient(180deg, #f0efff 0%, #ddd8ff 100%);
}

.decision-card:nth-child(2) {
  background: linear-gradient(180deg, #edf9f6 0%, #c9ecdf 100%);
}

.decision-card:nth-child(3) {
  background: linear-gradient(180deg, #edf4ff 0%, #c8edc1 100%);
}

.decision-card h3 {
  margin: 0;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.decision-card > p {
  max-width: 310px;
  min-height: 52px;
  margin: 13px 0 0;
  color: #696e76;
  font-weight: 600;
}

.decision-screen {
  position: absolute;
  top: 180px;
  left: 34px;
  right: 34px;
  height: 470px;
  overflow: hidden;
  border: 7px solid #17191d;
  border-radius: 30px 30px 0 0;
  background: #fff;
  box-shadow: 0 24px 42px rgba(33, 44, 58, 0.18);
}

.decision-screen picture,
.decision-screen img {
  display: block;
  width: 100%;
}

.decision-screen img {
  height: auto;
  object-position: top;
}

.decision-card--where .decision-screen img {
  transform: translateY(-12%);
}

.decision-card--target .decision-screen img {
  transform: translateY(-8%);
}

.decision-card--when .decision-screen img {
  transform: translateY(-38%);
}

.feature-panels {
  padding: 16px 0 58px;
}

.panel-stack {
  display: grid;
  gap: 22px;
}

.feature-panel {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(238, 247, 255, 0.94) 0%, rgba(238, 247, 255, 0.76) 44%, rgba(238, 247, 255, 0.16) 100%);
}

.feature-panel--journal::before {
  background: linear-gradient(90deg, rgba(8, 15, 24, 0.76) 0%, rgba(8, 15, 24, 0.52) 44%, rgba(8, 15, 24, 0.16) 100%);
}

.feature-panel--week .panel-background img {
  object-position: center 60%;
}

.feature-panel--journal .panel-background img {
  object-position: center;
}

.panel-copy {
  position: relative;
  z-index: 3;
  width: min(46%, 510px);
  padding: 72px 0 68px 56px;
}

.section-kicker {
  margin: 0 0 10px;
  color: #5d6671;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-copy h2,
.final-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.3vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.panel-copy > p:last-child,
.final-copy > p {
  max-width: 470px;
  margin: 16px 0 0;
  color: #59626e;
  font-size: 17px;
  font-weight: 600;
}

.feature-panel--journal .panel-copy,
.feature-panel--journal .section-kicker,
.feature-panel--journal .panel-copy > p:last-child {
  color: #fff;
}

.feature-panel--journal .panel-copy > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.panel-phone {
  position: absolute;
  z-index: 2;
  top: 40px;
  right: 13%;
  width: 290px;
  height: 620px;
  overflow: hidden;
  border: 7px solid #16181c;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 52px rgba(14, 25, 36, 0.22);
}

.panel-phone picture,
.panel-phone img {
  display: block;
  width: 100%;
}

.panel-phone img {
  height: auto;
}

.feature-panel--week .panel-phone img {
  transform: translateY(-43%);
}

.more-section {
  padding: 58px 0 96px;
}

.more-section > .container > h2 {
  margin-bottom: 38px;
  font-size: clamp(32px, 3.2vw, 48px);
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.more-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 14px;
}

.more-item > .ph {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: #222a34;
  font-size: 27px;
}

.more-item h3 {
  margin: 2px 0 6px;
  font-size: 15px;
  line-height: 1.25;
}

.more-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.faq {
  padding: 0 0 24px;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  gap: 60px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  background: #f1f3f6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.faq-heading h2 {
  font-size: clamp(34px, 3.7vw, 54px);
}

.faq-heading p {
  margin-left: 0;
  font-size: 16px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 12px;
}

.faq-list details {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.faq-list details:first-child {
  grid-column: 1;
}

.faq-list details:nth-child(2) {
  grid-column: 1;
}

.faq-list details:nth-child(n + 3) {
  grid-column: 2;
}

.faq-list details:nth-child(3) {
  grid-row: 1;
}

.faq-list details:nth-child(4) {
  grid-row: 2;
}

.faq-list details:nth-child(5) {
  grid-row: 3;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary .ph {
  flex: 0 0 auto;
  color: #346ecd;
  font-size: 18px;
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 20px;
  color: #666c75;
  font-size: 13px;
  line-height: 1.55;
}

.final-cta {
  padding: 0 0 72px;
}

.final-shell {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #fff;
  isolation: isolate;
}

.final-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(7, 12, 18, 0.18);
}

.final-background img {
  object-position: center;
}

.final-copy {
  position: relative;
  z-index: 3;
  width: min(52%, 590px);
  padding: 62px 0 62px 52px;
}

.final-copy .section-kicker {
  color: rgba(255, 255, 255, 0.6);
}

.final-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.final-copy .store-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.final-copy .store-option {
  border-color: transparent;
}

.final-phone {
  position: absolute;
  z-index: 2;
  bottom: -250px;
  left: 60%;
  width: 265px;
  height: 590px;
  overflow: hidden;
  border: 7px solid #15171a;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.32);
}

.final-phone picture,
.final-phone img {
  display: block;
  width: 100%;
}

.final-phone img {
  height: auto;
}

.site-footer {
  padding: 0 0 46px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-inner .brand {
  font-size: 17px;
}

.footer-inner .brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: #575c64;
  font-size: 12px;
  font-weight: 600;
}

.mobile-store-cta {
  position: fixed;
  z-index: 60;
  left: 16px;
  right: 16px;
  bottom: 14px;
  min-height: 54px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #171a20;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(8, 12, 18, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 20px;
  }

  .hero-phone {
    width: 340px;
  }

  .decision-card {
    min-height: 520px;
    padding-inline: 26px;
  }

  .decision-screen {
    left: 26px;
    right: 26px;
  }

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

  .faq-shell {
    gap: 34px;
    padding: 44px;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 14px;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 126px;
  }

  .hero-phone {
    width: 320px;
  }

  .decision-grid {
    gap: 14px;
  }

  .decision-card {
    min-height: 470px;
    padding: 28px 22px 0;
  }

  .decision-card > p {
    font-size: 14px;
  }

  .decision-screen {
    top: 170px;
    left: 22px;
    right: 22px;
  }

  .panel-copy {
    width: 52%;
    padding-left: 40px;
  }

  .panel-phone {
    right: 8%;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }
}

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

  .site-header {
    inset: 10px 0 auto;
  }

  .header-inner {
    min-height: 64px;
    gap: 8px;
    padding: 8px 9px 8px 12px;
  }

  .brand {
    gap: 8px;
    font-size: 17px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .language-menu summary {
    min-width: 60px;
    height: 42px;
    padding-inline: 12px;
  }

  .button--small {
    min-height: 44px;
    padding-inline: 15px;
    font-size: 12px;
  }

  .hero {
    border-radius: 0 0 26px 26px;
  }

  .hero-inner {
    padding-top: 104px;
    padding-bottom: 44px;
  }

  .hero-copy h1 {
    max-width: 600px;
    font-size: clamp(39px, 11vw, 58px);
  }

  .hero-copy > p {
    margin-top: 17px;
    font-size: 17px;
  }

  .store-actions {
    gap: 9px;
    margin-top: 22px;
  }

  .store-option {
    min-width: 0;
    flex: 1 1 0;
    max-width: 174px;
  }

  .store-actions[data-platform="ios"] [data-store-option="app-store"],
  .store-actions[data-platform="android"] [data-store-option="google-play"] {
    flex: 1.12 1 0;
    opacity: 1;
  }

  .store-actions[data-platform="ios"] [data-store-option="google-play"],
  .store-actions[data-platform="android"] [data-store-option="app-store"] {
    flex: 0.88 1 0;
    opacity: 0.68;
    transform: scale(0.9);
  }

  .hero-phone {
    width: min(78vw, 340px);
    height: auto;
  }

  .decision-section {
    padding: 78px 0 34px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .decision-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .decision-card {
    min-height: 570px;
    padding: 32px 28px 0;
  }

  .decision-screen {
    top: 170px;
    left: 28px;
    right: 28px;
  }

  .feature-panel {
    min-height: 630px;
  }

  .panel-copy {
    width: auto;
    padding: 40px 28px 0;
  }

  .panel-copy h2 {
    max-width: 430px;
  }

  .panel-phone {
    top: auto;
    right: 50%;
    bottom: -260px;
    width: min(72vw, 300px);
    height: 570px;
    transform: translateX(50%);
  }

  .feature-panel--journal .panel-background img {
    object-position: 68% center;
  }

  .more-section {
    padding: 44px 0 72px;
  }

  .more-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-shell {
    gap: 28px;
    padding: 32px 20px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-list details,
  .faq-list details:first-child,
  .faq-list details:nth-child(2),
  .faq-list details:nth-child(n + 3),
  .faq-list details:nth-child(3),
  .faq-list details:nth-child(4),
  .faq-list details:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }

  .final-cta {
    padding-bottom: 58px;
  }

  .final-shell {
    min-height: 610px;
  }

  .final-background img {
    object-position: 68% center;
  }

  .final-copy {
    width: auto;
    padding: 38px 26px 0;
  }

  .final-copy .store-actions {
    justify-content: flex-start;
  }

  .final-phone {
    bottom: -330px;
    left: 50%;
    width: 220px;
    height: 520px;
    transform: translateX(-50%);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .mobile-store-cta {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header-inner .brand span {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .language-options {
    right: -12px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .decision-card {
    min-height: 520px;
  }

  .decision-screen {
    top: 175px;
  }

  .panel-copy,
  .final-copy {
    padding-inline: 22px;
  }

  .faq-list summary {
    padding-inline: 15px;
  }

  .faq-list details p {
    padding-inline: 15px;
  }
}

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

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

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

html.reduce-motion {
  scroll-behavior: auto;
}

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

html.reduce-motion .reveal {
  opacity: 1 !important;
  transform: none !important;
}

@media print {
  .site-header,
  .mobile-store-cta,
  .store-actions {
    display: none !important;
  }

  .hero {
    min-height: auto;
  }

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