:root {
  --primary-50: #eef2ff;
  --primary-100: #e0e7ff;
  --primary-200: #c7d2fe;
  --primary-300: #a5b4fc;
  --primary-500: #6366f1;
  --primary-600: #4f46e5;
  --primary-700: #4338ca;
  --primary-800: #3730a3;
  --primary-900: #312e81;
  --surface: #ffffff;
  --background: #f8fafc;
  --background-alt: #f1f5f9;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --text: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --success: #059669;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 16px 40px rgba(30, 41, 59, 0.1);
  --shadow-lg: 0 34px 90px rgba(49, 46, 129, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.3rem;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: white;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 184px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a,
.login-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a:hover,
.login-link:hover {
  color: var(--primary-700);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-menu-button {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 90;
  height: calc(100dvh - 76px);
  padding: 22px 20px 32px;
  border-top: 1px solid var(--border);
  background: white;
  overflow-y: auto;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 650;
  text-decoration: none;
}

.mobile-nav .button {
  margin-top: 20px;
  border-bottom: 0;
}

.mobile-nav .button-primary {
  color: white;
}

.button {
  min-height: 46px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button:focus-visible,
.tour-tabs button:focus-visible,
.mobile-menu-button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--primary-200);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 9px;
  font-size: 0.86rem;
}

.button-large {
  min-height: 54px;
  padding: 15px 24px;
}

.button-primary {
  background: var(--primary-600);
  color: white;
  box-shadow: 0 10px 26px rgba(79, 70, 229, 0.22);
}

.button-primary:hover {
  background: var(--primary-700);
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.28);
}

.button-secondary {
  border-color: var(--border-strong);
  background: white;
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--primary-300);
  background: var(--primary-50);
}

.button-light {
  background: white;
  color: var(--primary-800);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}

.button-light:hover {
  background: var(--primary-50);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
}

.button-ghost-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--primary-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--primary-200);
}

.hero {
  position: relative;
  padding: 98px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(199, 210, 254, 0.58), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 76%, #ffffff 100%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 72px;
  left: 50%;
  width: min(860px, 86vw);
  height: 430px;
  border: 1px solid rgba(99, 102, 241, 0.08);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  max-width: 1040px;
  margin: 0 auto 24px;
  font-size: clamp(3rem, 7.4vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 770px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.trial-note {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.83rem;
  font-weight: 500;
}

.hero-product {
  position: relative;
  margin-top: 68px;
}

.hero-product::before {
  position: absolute;
  z-index: -1;
  inset: 11% 7% -3%;
  border-radius: 38px;
  background: rgba(99, 102, 241, 0.16);
  filter: blur(36px);
  content: "";
}

.product-frame {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-md);
}

.product-frame-hero {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.product-frame img {
  width: 100%;
  height: auto;
}

.browser-bar {
  min-height: 38px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: #fbfdff;
}

.browser-bar span {
  display: none;
}

.browser-bar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.system-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: white;
}

.system-strip-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.system-strip-inner > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.system-strip ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}

.system-strip li {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.system-strip li + li::before {
  position: absolute;
  left: 0;
  color: var(--primary-300);
  content: "/";
}

.section {
  padding: 112px 0;
}

.section-intro {
  background: white;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading.narrow {
  max-width: 880px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contrast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contrast-card {
  min-height: 390px;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contrast-card h3 {
  max-width: 430px;
  margin-bottom: 28px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.contrast-card-muted {
  background: var(--background);
}

.contrast-card-primary {
  border-color: var(--primary-200);
  background: var(--primary-50);
}

.card-kicker {
  margin-bottom: 12px;
  color: var(--primary-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 12px 0 12px 25px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  color: var(--text-secondary);
}

.plain-list li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--primary-500);
  border-radius: 50%;
  content: "";
}

.plain-list.compact li {
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 0.92rem;
}

.plain-list.compact li::before {
  top: 15px;
}

.product-tour {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.tour-tabs {
  width: fit-content;
  margin-bottom: 30px;
  padding: 5px;
  display: flex;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.tour-tabs button {
  min-height: 40px;
  padding: 8px 17px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
}

.tour-tabs button[aria-selected="true"] {
  background: var(--primary-600);
  color: white;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.2);
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.tour-copy {
  padding: 18px 0;
}

.tour-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.tour-copy > p:not(.card-kicker) {
  margin-bottom: 24px;
  color: var(--text-muted);
}

.workflow-section {
  background: white;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.64fr);
  align-items: end;
  gap: 70px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0;
  padding-bottom: 6px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.workflow-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  list-style: none;
}

.workflow-list li {
  min-height: 235px;
  padding: 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.workflow-list span {
  display: block;
  margin-bottom: 44px;
  color: var(--primary-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.workflow-list h3 {
  margin-bottom: 10px;
}

.workflow-list p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.intelligence-section {
  background: var(--primary-900);
  color: white;
}

.intelligence-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 58px;
}

.intelligence-copy h2 {
  margin-bottom: 22px;
}

.intelligence-copy > p:not(.eyebrow) {
  color: var(--primary-100);
  font-size: 1.04rem;
}

.intelligence-points {
  margin: 34px 0 36px;
}

.intelligence-points div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.intelligence-points dt {
  color: white;
  font-weight: 750;
}

.intelligence-points dd {
  margin: 0;
  color: var(--primary-100);
}

.product-frame-dark {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.4);
}

.audience-section {
  background: white;
}

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

.audience-grid article {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
}

.audience-grid article:nth-child(2) {
  border-color: var(--primary-200);
  background: var(--primary-50);
}

.audience-grid h3 {
  margin: 28px 0 16px;
  font-size: 1.55rem;
}

.audience-grid article > p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
}

.pricing-section {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.pricing-section .section-heading {
  max-width: 830px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
}

.pricing-card {
  position: relative;
  min-height: 575px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
}

.pricing-card-featured {
  border: 2px solid var(--primary-500);
  box-shadow: 0 22px 60px rgba(79, 70, 229, 0.16);
}

.pricing-card h3 {
  min-height: 52px;
  margin-bottom: 22px;
  font-size: 1.55rem;
}

.price {
  min-height: 58px;
  margin-bottom: 26px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price strong {
  font-size: 2.4rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price span {
  padding-bottom: 4px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.pricing-card .plain-list {
  margin-bottom: 30px;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.popular-label {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--primary-600);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pricing-note {
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
}

.faq-section {
  background: white;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  align-items: start;
  gap: 78px;
}

.faq-layout .section-heading {
  position: sticky;
  top: 118px;
  margin-bottom: 0;
}

.faq-layout .section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.45rem);
}

.faq-layout .section-heading a {
  color: var(--primary-700);
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 750;
  list-style-position: outside;
}

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

.faq-list details p {
  max-width: 690px;
  margin: -4px 0 24px;
  color: var(--text-muted);
}

.final-cta {
  padding: 106px 0;
  background: var(--primary-800);
  color: white;
}

.final-cta-inner {
  max-width: 900px;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5.8vw, 4.7rem);
}

.final-cta-inner > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: var(--primary-100);
  font-size: 1.08rem;
}

.site-footer {
  padding: 72px 0 28px;
  background: #0f172a;
  color: white;
}

.footer-grid {
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}

.footer-brand img {
  margin-bottom: 20px;
  padding: 8px;
  border-radius: 10px;
  background: white;
}

.footer-brand p {
  max-width: 410px;
  margin-bottom: 0;
  color: #94a3b8;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a {
  width: fit-content;
  margin: 10px 0;
  display: block;
  color: #cbd5e1;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-bottom p {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: 18px;
  width: min(440px, calc(100% - 36px));
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.2);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

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

  .tour-layout,
  .intelligence-layout {
    grid-template-columns: 1fr;
  }

  .tour-copy {
    max-width: 680px;
  }

  .intelligence-copy {
    max-width: 700px;
  }

  .pricing-card {
    padding: 26px;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .nav-actions .login-link,
  .nav-actions > .button {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
  }

  .hero {
    padding-top: 78px;
  }

  .hero h1 {
    font-size: clamp(3rem, 9.2vw, 4.25rem);
  }

  .system-strip-inner {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .system-strip ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 0;
  }

  .system-strip li:nth-child(4)::before {
    display: none;
  }

  .contrast-grid,
  .audience-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contrast-card {
    min-height: 0;
  }

  .split-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-layout .section-heading {
    position: static;
  }

  .workflow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    max-width: 590px;
    margin: 0 auto;
  }

  .pricing-card {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 34px;
  }
}

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

  .nav-shell {
    min-height: 68px;
  }

  .brand img {
    width: 158px;
  }

  .mobile-nav {
    height: calc(100dvh - 68px);
  }

  .hero {
    padding: 58px 0 50px;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 9.5vw, 2.8rem);
    letter-spacing: -0.05em;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-product {
    margin-top: 46px;
  }

  .product-frame-hero {
    width: 110%;
    margin-left: -5%;
    border-radius: 13px;
  }

  .browser-bar {
    min-height: 32px;
    padding: 0 10px;
  }

  .browser-bar p {
    font-size: 0.6rem;
  }

  .system-strip li {
    font-size: 0.75rem;
  }

  .system-strip li + li::before {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

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

  .section-heading > p:last-child {
    font-size: 0.98rem;
  }

  .contrast-card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .tour-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .tour-tabs button {
    min-width: max-content;
    flex: 1 0 auto;
  }

  .tour-layout {
    gap: 26px;
  }

  .tour-copy {
    padding: 0;
  }

  .tour-layout .product-frame,
  .intelligence-layout .product-frame {
    width: 108%;
    margin-left: -4%;
  }

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

  .workflow-list li {
    min-height: 0;
    padding: 24px;
  }

  .workflow-list span {
    margin-bottom: 28px;
  }

  .intelligence-layout {
    gap: 38px;
  }

  .intelligence-points div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .audience-grid article {
    min-height: 0;
    padding: 26px 22px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .faq-list summary {
    padding: 20px 0;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 12px;
    gap: 10px;
  }

  .cookie-banner strong {
    margin-bottom: 2px;
    font-size: 0.9rem;
  }

  .cookie-banner p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .button {
    min-height: 38px;
    padding: 8px 9px;
    font-size: 0.76rem;
  }
}

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

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