@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./assets/fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("./assets/fonts/material-symbols-rounded.woff2") format("woff2");
}

:root {
  --blue: #2563eb;
  --blue-dark: #1749c6;
  --blue-deep: #0f2f80;
  --blue-soft: #edf4ff;
  --ink: #1f252f;
  --ink-soft: #4c5667;
  --muted: #697386;
  --line: #dfe5ee;
  --line-soft: #ebeff5;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --mint: #22c997;
  --mint-soft: #e8fbf5;
  --coral: #ff826b;
  --coral-soft: #fff0ec;
  --shadow-sm: 0 8px 24px rgba(31, 37, 47, 0.07);
  --shadow-lg: 0 32px 70px rgba(31, 64, 128, 0.14);
  --radius: 20px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "DM Sans", 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,
body.contact-open,
body.legal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 6.1vw, 5.75rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

p {
  color: var(--muted);
}

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

.section {
  padding: 112px 0;
}

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

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

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

.material-symbols-rounded {
  display: inline-block;
  width: 1em;
  height: 1em;
  overflow: hidden;
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25em;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
  vertical-align: -0.16em;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 8px 28px rgba(31, 64, 128, 0);
  backdrop-filter: blur(0);
  transition:
    background-color 340ms ease,
    border-color 340ms ease,
    box-shadow 340ms ease,
    backdrop-filter 340ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  border-bottom-color: rgba(223, 229, 238, 0.72);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(31, 64, 128, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  flex: 0 0 auto;
  touch-action: manipulation;
}

.brand img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: calc(0.92rem + 2px);
  font-weight: 600;
}

.mobile-nav-icon,
.mobile-nav-section-label {
  display: none;
}

.site-nav > a:not(.button) {
  position: relative;
  transition: color 200ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--blue);
}

.site-nav > a[data-section-link]::after,
.site-nav > a[data-contact-open]::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-nav > a[data-section-link].is-active,
body.contact-open .site-nav > a[data-contact-open] {
  color: var(--blue);
}

.site-nav > a[data-section-link].is-active::after,
body.contact-open .site-nav > a[data-contact-open]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: var(--line);
}

.login-link {
  color: var(--ink) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle .material-symbols-rounded {
  font-size: 1.55rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 3px;
}

.site-nav a[data-contact-open]:focus,
.site-nav a[data-contact-open]:focus-visible {
  outline: none;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.site-nav .button {
  font-size: inherit;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.site-nav > a.nav-login {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding-inline: 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  transition:
    color 220ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease,
    padding 340ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-header:not(.is-past-hero) .site-nav > a.nav-login:hover,
.site-header:not(.is-past-hero) .site-nav > a.nav-login:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
  color: #fff;
  transform: translateY(-2px);
}

.site-header.is-past-hero .nav-login {
  padding-inline: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-weight: 600;
}

.site-header.is-past-hero .nav-login:hover,
.site-header.is-past-hero .nav-login:focus-visible {
  background: transparent;
  box-shadow: none;
  color: var(--blue);
  transform: none;
}

.nav-signup {
  overflow: hidden;
  max-width: 0;
  min-width: 0;
  margin-right: -26px;
  padding-inline: 0;
  border-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px) scale(0.97);
  white-space: nowrap;
  transition:
    max-width 380ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-right 380ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 380ms cubic-bezier(0.22, 1, 0.36, 1),
    border-width 200ms ease,
    opacity 220ms ease,
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.site-header.is-past-hero .nav-signup {
  max-width: 260px;
  margin-right: 0;
  padding-inline: 17px;
  border-width: 1px;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.button-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-ghost:hover {
  border-color: #b9c5d8;
  box-shadow: var(--shadow-sm);
}

.button-white {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: 0 14px 30px rgba(4, 25, 76, 0.18);
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-height));
  padding: calc(105px + var(--header-height)) 0 92px;
  background:
    radial-gradient(circle at 90% 14%, rgba(37, 99, 235, 0.09), transparent 25%),
    radial-gradient(circle at 44% 4%, rgba(34, 201, 151, 0.08), transparent 20%),
    linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: radial-gradient(#bdc8da 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, #000 0, transparent 48%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.9rem, 4.5vw, 4.45rem);
  line-height: 1.03;
}

.hero-line {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.hero-line-accent {
  color: var(--blue);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-fine-print {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-fine-print > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-fine-print .material-symbols-rounded {
  color: var(--blue);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.product-window {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(190, 203, 222, 0.85);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-window {
  z-index: 2;
  width: calc(100% + max(22px, calc((100vw - 1180px) / 2 - 65px)));
  max-width: none;
  flex-shrink: 0;
}

.hero-slides {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2576 / 1620;
  background: #f6f8fb;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  transition: opacity 1000ms ease-in-out;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide-controls {
  position: absolute;
  right: 13px;
  bottom: 13px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 3px 5px;
  border: 1px solid rgba(211, 220, 233, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(31, 64, 128, 0.12);
  backdrop-filter: blur(12px);
}

.hero-slide-controls button {
  display: grid;
  width: 24px;
  height: 24px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.hero-slide-controls button::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #a9b4c4;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-slide-controls button:hover::before {
  background: #7590ba;
  transform: scale(1.25);
}

.hero-slide-controls button[aria-current="true"]::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13);
  transform: scale(1.2);
}

.hero-slide-controls button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 2px;
}

.window-bar {
  display: grid;
  min-height: 39px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6dce5;
}

.window-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #8b95a5;
  font-size: 0.68rem;
  font-weight: 600;
}

.window-label .material-symbols-rounded {
  font-size: 0.85rem;
}

.product-window > img {
  width: 100%;
  height: auto;
  background: #f6f8fb;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(223, 229, 238, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 38px rgba(37, 99, 235, 0.3),
    0 0 24px rgba(37, 99, 235, 0.18),
    0 2px 8px rgba(31, 64, 128, 0.12);
  backdrop-filter: blur(10px);
  opacity: 1;
  transition:
    opacity 260ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, translate;
}

@media (prefers-reduced-motion: no-preference) {
  .floating-card-top {
    animation: hero-note-float-top 5.8s ease-in-out infinite;
  }

  .floating-card-bottom {
    animation: hero-note-float-bottom 6.4s ease-in-out -2.1s infinite;
  }
}

@keyframes hero-note-float-top {
  0%,
  100% {
    translate: -1px -2px;
  }

  30% {
    translate: 2px 0;
  }

  55% {
    translate: 1px 3px;
  }

  80% {
    translate: -2px 1px;
  }
}

@keyframes hero-note-float-bottom {
  0%,
  100% {
    translate: 1px 2px;
  }

  35% {
    translate: -2px 0;
  }

  60% {
    translate: -1px -3px;
  }

  82% {
    translate: 2px -1px;
  }
}

.floating-card.is-changing {
  opacity: 0;
  transform: translateY(7px) scale(0.97);
}

.floating-card.is-suppressed {
  opacity: 0;
  pointer-events: none;
}

.floating-card[data-position="top-right"] {
  top: 26px;
  right: -8px;
  bottom: auto;
  left: auto;
}

.floating-card[data-position="top-left"] {
  top: 70px;
  right: auto;
  bottom: auto;
  left: -20px;
}

.floating-card[data-position="middle-right"] {
  top: 45%;
  right: -12px;
  bottom: auto;
  left: auto;
}

.floating-card[data-position="middle-left"] {
  top: 43%;
  right: auto;
  bottom: auto;
  left: -20px;
}

.floating-card[data-position="bottom-left"] {
  top: auto;
  right: auto;
  left: -25px;
  bottom: 20px;
}

.floating-card[data-position="lower-right"] {
  top: auto;
  right: -10px;
  bottom: 76px;
  left: auto;
}

.floating-card > span:last-child {
  display: grid;
}

.floating-card strong {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.3;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.floating-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
}

.floating-icon.mint,
.icon-tile.mint {
  background: var(--blue-soft);
  color: var(--blue);
}

.floating-icon.blue,
.icon-tile.blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.workflow-strip {
  position: relative;
  z-index: 5;
  margin-top: -38px;
  padding: 0 0 78px;
  background: linear-gradient(180deg, transparent 0 38px, var(--surface-soft) 38px 100%);
}

.workflow-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: 48px;
  padding: 34px;
  border: 1px solid #d8e2f2;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 201, 151, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 24px 55px rgba(31, 64, 128, 0.12);
}

.workflow-intro .eyebrow {
  margin-bottom: 12px;
}

.workflow-intro h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: -0.035em;
}

.workflow-intro p {
  max-width: 38ch;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
}

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

.workflow-step {
  --step-color: var(--blue);
  --step-bg: var(--blue-soft);
  position: relative;
  min-height: 155px;
  padding: 17px 15px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(31, 64, 128, 0.055);
}

.workflow-step:not(:last-child)::after {
  content: "arrow_forward";
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -29px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #9aa8bd;
  box-shadow: 0 6px 14px rgba(31, 64, 128, 0.1);
  font-family: "Material Symbols Rounded";
  font-size: 1.1rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 20;
  line-height: 1;
  transform: translateY(-50%);
}

.workflow-step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.workflow-step-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--step-bg);
  color: var(--step-color);
}

.workflow-step-icon .material-symbols-rounded {
  font-size: 1.42rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.workflow-step-number {
  color: #a5afbe;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.workflow-step strong,
.workflow-step small {
  display: block;
}

.workflow-step strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.workflow-step small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.workflow-step-client {
  --step-color: var(--blue);
  --step-bg: var(--blue-soft);
}

.workflow-step-quote {
  --step-color: var(--blue);
  --step-bg: var(--blue-soft);
}

.workflow-step-booking {
  --step-color: var(--blue);
  --step-bg: var(--blue-soft);
}

.workflow-step-commission {
  --step-color: var(--blue);
  --step-bg: var(--blue-soft);
}

.problem-section {
  background: var(--surface-soft);
  padding-top: 90px;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 56px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered p {
  margin-inline: auto;
}

.section-heading p,
.pricing-copy > p,
.faq-heading > p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.value-card {
  padding: 31px 29px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(31, 37, 47, 0.02);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.value-card:hover {
  border-color: #c9d5e7;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.icon-tile {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 13px;
}

.icon-tile.coral {
  background: var(--blue-soft);
  color: var(--blue);
}

.icon-tile .material-symbols-rounded {
  font-size: 1.55rem;
}

.value-card p {
  min-height: 104px;
  margin-bottom: 20px;
  line-height: 1.67;
}

.plain-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.product-section {
  overflow: hidden;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 72px;
}

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

.split-heading > p {
  margin-bottom: 8px;
}

.showcase-row {
  display: grid;
  width: min(1300px, calc(100vw - 48px));
  margin-inline: calc((100% - min(1300px, calc(100vw - 48px))) / 2);
  grid-template-columns: minmax(330px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: 58px;
  padding: 75px 0;
  border-top: 1px solid var(--line-soft);
}

.showcase-row-reverse {
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, 0.62fr);
}

.showcase-row-reverse .showcase-copy {
  order: 2;
}

.showcase-row-reverse .showcase-window {
  order: 1;
}

.showcase-row-reverse .money-screens {
  order: 1;
}

.step-label {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.showcase-copy > p {
  font-size: 1.02rem;
  line-height: 1.72;
}

.feature-points {
  display: grid;
  gap: 12px;
  margin-top: 25px;
}

.feature-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-points .material-symbols-rounded {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1rem;
}

.feature-explorer {
  width: min(1300px, calc(100vw - 48px));
  margin-top: -18px;
  margin-right: calc((100% - min(1300px, calc(100vw - 48px))) / 2);
  margin-left: calc((100% - min(1300px, calc(100vw - 48px))) / 2);
  padding-bottom: 56px;
  text-align: center;
}

.feature-explorer-trigger {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 0 16px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 64, 128, 0.11);
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-explorer-trigger:hover {
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 15px 34px rgba(37, 99, 235, 0.16);
  transform: translateY(-1px);
}

.feature-explorer-trigger:focus-visible,
.feature-role-switcher button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.24);
  outline-offset: 3px;
}

.feature-explorer-trigger-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  font-size: 1rem;
}

.feature-explorer-chevron {
  font-size: 1.15rem;
  transition: transform 300ms ease;
}

.feature-explorer.is-open .feature-explorer-chevron {
  transform: rotate(180deg);
}

.feature-explorer-panel {
  margin-top: 25px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 0%, rgba(37, 99, 235, 0.1), transparent 32%),
    linear-gradient(145deg, #fff 0%, #f7faff 100%);
  box-shadow: 0 24px 60px rgba(31, 64, 128, 0.12);
  text-align: left;
}

.feature-explorer-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 27px;
}

.feature-explorer-header .step-label {
  margin-bottom: 10px;
}

.feature-explorer-header h3 {
  max-width: 680px;
  margin-bottom: 7px;
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
}

.feature-explorer-header p {
  margin: 0;
  font-size: 0.92rem;
}

.feature-role-switcher {
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 64, 128, 0.1);
}

.feature-role-switcher button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.feature-role-switcher button[aria-selected="true"] {
  background: var(--blue);
  box-shadow: 0 7px 17px rgba(37, 99, 235, 0.24);
  color: #fff;
}

.feature-role-switcher .material-symbols-rounded {
  font-size: 1.05rem;
}

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

.feature-role-panel[hidden] {
  display: none !important;
}

.feature-card {
  display: flex;
  min-height: 145px;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(221, 229, 242, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 9px 24px rgba(31, 64, 128, 0.055);
}

.feature-card > .material-symbols-rounded {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.15rem;
}

.feature-card h4 {
  margin: 2px 0 6px;
  font-size: 0.9rem;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.52;
}

.showcase-window {
  box-shadow: 0 30px 72px rgba(31, 64, 128, 0.17);
}

.showcase-window > img {
  min-height: 230px;
  object-fit: cover;
  object-position: top left;
}

.showcase-window-tall > img {
  max-height: 430px;
  object-fit: cover;
  object-position: top left;
}

.money-screens {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.money-screen-switcher {
  display: flex;
  width: max-content;
  gap: 4px;
  margin-top: 30px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(31, 64, 128, 0.14);
  backdrop-filter: blur(12px);
}

.money-screen-switcher button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.money-screen-switcher button[aria-pressed="true"] {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 7px 16px rgba(37, 99, 235, 0.24);
}

.money-screen-switcher button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 2px;
}

.money-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  margin: 0;
  transform-origin: center center;
  box-shadow: 0 22px 52px rgba(31, 64, 128, 0.14);
  transition:
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease,
    filter 520ms ease,
    box-shadow 520ms ease;
  will-change: transform;
}

.money-screen-commissions {
  z-index: 1;
  opacity: 0.76;
  filter: saturate(0.78);
  transform: translate3d(0, 0, 0) scale(0.95);
}

.money-screen-insights {
  z-index: 2;
  transform: translate3d(14%, 92px, 0) scale(1);
  box-shadow: 0 32px 70px rgba(31, 64, 128, 0.22);
}

.money-screens[data-active-screen="commissions"] .money-screen-commissions {
  z-index: 2;
  opacity: 1;
  filter: none;
  transform: translate3d(14%, 92px, 0) scale(1);
  box-shadow: 0 32px 70px rgba(31, 64, 128, 0.22);
}

.money-screens[data-active-screen="commissions"] .money-screen-insights {
  z-index: 1;
  opacity: 0.76;
  filter: saturate(0.78);
  transform: translate3d(0, 0, 0) scale(0.95);
  box-shadow: 0 22px 52px rgba(31, 64, 128, 0.14);
}

.money-screen .window-bar {
  min-height: 34px;
}

.money-screen > img {
  display: block;
  width: 100%;
  height: auto;
  background: #f6f8fb;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.capability-grid article {
  min-height: 260px;
  padding: 28px 24px;
  background: #fff;
}

.capability-grid article > .material-symbols-rounded {
  margin-bottom: 36px;
  color: var(--blue);
  font-size: 1.75rem;
}

.capability-grid h3 {
  font-size: 1.16rem;
}

.capability-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.audience-section {
  padding: 28px 0 84px;
}

.audience-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 44px;
  padding: 46px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(132deg, #1f5de0 0%, var(--blue) 48%, #3975f0 100%);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.22);
}

.audience-card::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.eyebrow-light {
  color: #d7e4ff;
}

.audience-copy h2,
.audience-columns h3,
.audience-copy p,
.audience-columns p {
  color: #fff;
}

.audience-copy h2 {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 1.04;
}

.audience-copy p,
.audience-columns p {
  color: #e0e9ff;
}

.audience-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.audience-columns article {
  position: relative;
  display: flex;
  min-height: 275px;
  flex-direction: column;
  overflow: hidden;
  padding: 23px 22px 21px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.065));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 38px rgba(4, 25, 76, 0.12);
  backdrop-filter: blur(12px);
}

.audience-columns article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--audience-accent);
}

.audience-role-agent {
  --audience-accent: #8eb5ff;
}

.audience-role-owner {
  --audience-accent: #8eb5ff;
}

.audience-role-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.audience-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(4, 25, 76, 0.18);
}

.audience-icon .material-symbols-rounded {
  font-size: 1.7rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 32;
}

.audience-role-agent .audience-icon {
  background: var(--blue-soft);
  color: var(--blue);
}

.audience-role-owner .audience-icon {
  background: var(--blue-soft);
  color: var(--blue);
}

.audience-role-label {
  display: block;
  color: #d7e4ff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.audience-columns h3 {
  margin: 5px 0 0;
  font-size: 1.1rem;
}

.audience-columns p {
  margin-bottom: 18px;
  font-size: 0.87rem;
  line-height: 1.58;
}

.audience-benefits {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 15px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.audience-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e7edff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.audience-benefits .material-symbols-rounded {
  color: var(--audience-accent);
  font-size: 1.05rem;
  font-weight: 700;
}

.pricing-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 100px;
}

.pricing-copy h2 {
  max-width: 800px;
}

.pricing-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.pricing-assurance span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.pricing-assurance .material-symbols-rounded {
  color: var(--blue);
}

.price-card {
  padding: 30px;
  border: 1px solid #cad7ed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 65px rgba(31, 64, 128, 0.13);
}

.price {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
}

.price strong {
  color: var(--ink);
  font-size: 4.8rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.price-rule {
  height: 1px;
  background: var(--line-soft);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.price-card li .material-symbols-rounded {
  color: var(--blue);
}

.price-card small {
  display: block;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 112px;
}

.faq-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.15rem);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 2px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  transition: color 200ms ease;
}

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

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

.faq-list summary .material-symbols-rounded {
  flex: 0 0 auto;
  color: var(--blue);
  transition: transform 180ms ease;
}

.faq-list details[open] summary .material-symbols-rounded {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -5px 44px 22px 2px;
  line-height: 1.72;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 280ms ease;
}

.faq-list details[open]:not([data-state="closing"]) p {
  opacity: 1;
  transform: translateY(0);
}

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

.final-cta-inner {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  min-height: 190px;
  padding: 40px 42px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(132deg, #1f5de0 0%, var(--blue) 48%, #4d83f2 100%);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.24);
}

.final-cta-inner::before {
  position: absolute;
  right: -115px;
  bottom: -230px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.final-cta-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.final-cta-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(4, 25, 76, 0.18);
}

.final-cta-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.final-cta h2 {
  margin: 2px 0 5px;
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
}

.final-cta-label {
  display: block;
  color: #d9e5ff;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.final-cta p {
  margin: 0;
  color: #e0e9ff;
}

.final-cta .button {
  position: relative;
  z-index: 1;
  min-height: 56px;
  padding-inline: 26px;
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 34px rgba(4, 25, 76, 0.2);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 86px 0 28px;
  border-top: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.17), transparent 31%),
    radial-gradient(circle at 88% 18%, rgba(126, 168, 255, 0.2), transparent 26%),
    linear-gradient(132deg, #1f5de0 0%, var(--blue) 52%, #3975f0 100%);
  color: #fff;
  isolation: isolate;
}

.site-footer::before {
  position: absolute;
  top: -310px;
  right: -145px;
  z-index: -1;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.site-footer::after {
  position: absolute;
  bottom: -125px;
  left: 4%;
  z-index: -1;
  width: 360px;
  height: 360px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 19px 19px;
  content: "";
  mask-image: radial-gradient(circle, #000 0%, transparent 70%);
  opacity: 0.34;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: 96px;
  padding-bottom: 68px;
}

.footer-brand img {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  max-width: 460px;
  margin: 28px 0 15px;
  color: #fff;
  font-size: clamp(2.15rem, 3.1vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.footer-tagline span {
  color: #c9dcff;
}

.footer-description {
  max-width: 430px;
  margin: 0;
  color: #e1eaff;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 58px;
  padding-top: 60px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: #bed3ff;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  position: relative;
  width: max-content;
  color: #dce7ff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: #cbdcff;
  font-size: 0.76rem;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-bottom a:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.footer-bottom .material-symbols-rounded {
  font-size: 1.05rem;
}

@media (max-width: 820px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    width: 100%;
    gap: 34px;
    padding-top: 0;
  }
}

.contact-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(16, 47, 128, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

body.contact-open .contact-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.contact-drawer {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: grid;
  width: min(520px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.04),
    0 20px 60px rgba(31, 64, 128, 0.22),
    0 42px 100px rgba(18, 43, 99, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(100% + 48px), 0, 0);
  visibility: hidden;
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    visibility 0s linear 380ms;
}

body.contact-open .contact-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  transition-delay: 0s;
}

.contact-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px 23px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 95% -25%, rgba(37, 99, 235, 0.13), transparent 42%),
    #fff;
}

.contact-drawer-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
}

.contact-drawer-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.contact-drawer-head h2 {
  margin: 0 0 4px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}

.contact-drawer-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-close:hover {
  border-color: rgba(37, 99, 235, 0.25);
  background: var(--blue-soft);
  color: var(--blue);
  transform: rotate(4deg);
}

.contact-close:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 2px;
}

.contact-form {
  display: grid;
  overflow-y: auto;
  align-content: start;
  gap: 17px;
  padding: 24px 28px 28px;
  overscroll-behavior: contain;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #ccd7e7;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #aebed5;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form textarea::placeholder {
  color: #96a2b4;
}

.contact-submit {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form-status {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid #f1c7c2;
  border-radius: 12px;
  background: #fff3f2;
  color: #92372f;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-form-status[hidden] {
  display: none;
}

.legal-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(16, 47, 128, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

body.legal-open .legal-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.legal-drawer {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: grid;
  width: min(720px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.04),
    0 20px 60px rgba(31, 64, 128, 0.22),
    0 42px 100px rgba(18, 43, 99, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(100% + 48px), 0, 0);
  visibility: hidden;
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    visibility 0s linear 380ms;
}

body.legal-open .legal-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  transition-delay: 0s;
}

.legal-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 94% -35%, rgba(37, 99, 235, 0.16), transparent 45%),
    linear-gradient(135deg, #fff 0%, #f8fbff 100%);
}

.legal-drawer-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
}

.legal-drawer-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.legal-drawer-head h2 {
  margin: 0 0 3px;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.legal-drawer-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.legal-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.legal-close:hover {
  border-color: rgba(37, 99, 235, 0.25);
  background: var(--blue-soft);
  color: var(--blue);
  transform: rotate(4deg);
}

.legal-close:focus-visible,
.legal-switcher button:focus-visible,
.legal-panel:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 2px;
}

.legal-drawer-body {
  display: grid;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr);
}

.legal-switcher {
  display: flex;
  gap: 5px;
  margin: 20px 28px 0;
  padding: 5px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--surface-soft);
}

.legal-switcher button {
  flex: 1;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 750;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.legal-switcher button[aria-selected="true"] {
  background: #fff;
  box-shadow: 0 4px 14px rgba(31, 64, 128, 0.09);
  color: var(--blue);
}

.legal-drawer-content {
  min-height: 0;
  overflow-y: auto;
  padding: 25px 30px 34px;
  overscroll-behavior: contain;
  scrollbar-color: rgba(37, 99, 235, 0.28) transparent;
  scrollbar-width: thin;
}

.legal-panel[hidden] {
  display: none;
}

.legal-panel {
  outline: none;
}

.legal-effective {
  display: inline-flex;
  margin: 0 0 17px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-intro {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-panel h3 {
  margin: 27px 0 7px;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.legal-panel h3:first-of-type {
  margin-top: 0;
}

.legal-panel p:not(.legal-effective):not(.legal-intro) {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.72;
}

.legal-panel a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.32);
  text-underline-offset: 3px;
}

.contact-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: flex;
  width: max-content;
  max-width: min(430px, calc(100vw - 48px));
  align-items: center;
  gap: 13px;
  padding: 14px 17px 14px 14px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 0 36px rgba(37, 99, 235, 0.14),
    0 18px 46px rgba(31, 64, 128, 0.2);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 34px, 0) scale(0.97);
  visibility: hidden;
  will-change: opacity, transform;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease,
    visibility 0s linear 360ms;
}

.contact-toast-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
  color: #fff;
}

.contact-toast-icon .material-symbols-rounded {
  font-size: 1.15rem;
  font-variation-settings: "FILL" 0, "wght" 650, "GRAD" 0, "opsz" 20;
}

.contact-toast-copy {
  display: grid;
  gap: 2px;
}

.contact-toast-copy strong {
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.35;
}

.contact-toast-copy small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.4;
}

.contact-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  visibility: visible;
  transition-delay: 0s;
}

/* Legal and fallback pages */
.simple-page {
  min-height: 72vh;
  padding: 92px 0 110px;
  background: linear-gradient(180deg, #f8faff 0%, #fff 380px);
}

.simple-page-header {
  max-width: 770px;
  margin-bottom: 50px;
}

.simple-page-header h1 {
  font-size: clamp(2.7rem, 5vw, 4.3rem);
}

.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  margin: 44px 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.redirect-card {
  max-width: 620px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.redirect-card img {
  width: 52px;
  margin: 0 auto 22px;
}

.redirect-card h1 {
  margin-bottom: 12px;
  font-size: 2.35rem;
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero {
    padding-top: calc(82px + var(--header-height));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 38px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .floating-card-bottom {
    left: -5px;
  }

  .showcase-row,
  .showcase-row-reverse {
    gap: 45px;
  }

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

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

  .capability-grid article {
    min-height: 220px;
  }

  .pricing-grid,
  .faq-grid {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .site-header {
    transition:
      background-color 230ms ease,
      border-color 230ms ease,
      box-shadow 230ms ease;
  }

  .brand img {
    transition: filter 210ms ease;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 2;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
  }

  .menu-toggle .material-symbols-rounded {
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.menu-open .site-header {
    border-bottom-color: transparent;
    background: #3267e3;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.menu-open .brand img {
    filter: brightness(0) invert(1);
  }

  body.menu-open .menu-toggle {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  body.menu-open .menu-toggle .material-symbols-rounded {
    transform: rotate(90deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px max(20px, calc((100vw - 600px) / 2)) calc(20px + env(safe-area-inset-bottom, 0px));
    border: 0;
    background: #3267e3;
    box-shadow: none;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -5px, 0);
    visibility: hidden;
    overscroll-behavior: contain;
    will-change: opacity, transform;
    transition:
      opacity 230ms ease,
      transform 290ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 290ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav > a:not(.button) {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 15px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.96);
    font-size: calc(1.08rem + 2px);
    font-weight: 600;
    line-height: 1.2;
  }

  .site-nav > a:not(.button):hover,
  .site-nav > a:not(.button):focus-visible {
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
  }

  .site-nav > a[data-section-link].is-active,
  body.contact-open .site-nav > a[data-contact-open] {
    padding-right: 18px;
    padding-left: 18px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
  }

  .site-nav > a[data-section-link]::after,
  .site-nav > a[data-contact-open]::after {
    display: none;
  }

  .mobile-nav-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    color: #fff;
    font-size: 1.75rem;
    opacity: 0.96;
  }

  .mobile-nav-section-label {
    display: block;
    padding: 16px 18px 7px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .site-nav .nav-login,
  .site-header.is-past-hero .site-nav .nav-login {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.96);
    transform: none;
  }

  .site-nav .nav-login:hover,
  .site-nav .nav-login:focus-visible,
  .site-header.is-past-hero .site-nav .nav-login:hover,
  .site-header.is-past-hero .site-nav .nav-login:focus-visible {
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
  }

  .site-nav .nav-signup,
  .site-header.is-past-hero .site-nav .nav-signup {
    width: 100%;
    max-width: 100%;
    max-height: 54px;
    min-height: 52px;
    margin-top: auto;
    margin-right: 0;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: #fff;
    box-shadow: 0 16px 32px rgba(13, 38, 99, 0.2);
    color: var(--blue);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 13px 0 1px;
    background: rgba(255, 255, 255, 0.2);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .hero-visual {
    width: min(720px, 100%);
    min-height: 490px;
    margin-inline: auto;
  }

  .hero-window {
    width: 100%;
    transform: none;
  }

  .workflow-panel {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 30px;
  }

  .workflow-intro p {
    max-width: 68ch;
  }

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

  .value-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 22px;
  }

  .value-card .icon-tile {
    grid-row: span 3;
  }

  .value-card p {
    min-height: 0;
  }

  .plain-list {
    grid-column: 2;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .showcase-row,
  .showcase-row-reverse {
    width: 100%;
    margin-inline: 0;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 65px 0;
  }

  .showcase-row-reverse .showcase-copy,
  .showcase-row-reverse .showcase-window,
  .showcase-row-reverse .money-screens {
    order: initial;
  }

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

  .feature-explorer {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .feature-explorer-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .audience-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px;
  }

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

  .price-card {
    width: min(480px, 100%);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-heading {
    position: static;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .final-cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

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

  .section {
    padding: 72px 0;
  }

  .brand img {
    width: 132px;
  }

  .nav-wrap {
    min-height: var(--header-height);
  }

  .site-nav {
    top: var(--header-height);
  }

  .hero {
    padding: calc(64px + var(--header-height)) 0 67px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.25rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-fine-print {
    gap: 9px 14px;
    font-size: 0.76rem;
  }

  .hero-visual {
    min-height: 325px;
  }

  .hero-window {
    border-radius: 12px;
  }

  .hero-slide-controls {
    right: 8px;
    bottom: 8px;
  }

  .window-bar {
    min-height: 31px;
    padding-inline: 10px;
  }

  .window-label {
    font-size: 0.58rem;
  }

  .floating-card {
    display: none;
  }

  .workflow-strip {
    margin-top: -24px;
    padding-bottom: 62px;
    background: linear-gradient(180deg, transparent 0 24px, var(--surface-soft) 24px 100%);
  }

  .workflow-panel {
    gap: 24px;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .workflow-step {
    min-height: 150px;
  }

  .workflow-step:not(:last-child)::after {
    display: none;
  }

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

  .value-card {
    display: block;
    padding: 26px 23px;
  }

  .value-card .icon-tile {
    margin-bottom: 22px;
  }

  .plain-list {
    grid-column: auto;
  }

  .showcase-row,
  .showcase-row-reverse {
    padding: 52px 0;
  }

  .feature-explorer {
    margin-top: -5px;
    padding-bottom: 42px;
  }

  .feature-explorer-trigger {
    width: 100%;
  }

  .feature-explorer-panel {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .feature-role-switcher {
    width: 100%;
  }

  .feature-role-switcher button {
    flex: 1;
    justify-content: center;
  }

  .feature-card-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-drawer {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 20px;
  }

  .legal-drawer {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 20px;
  }

  .legal-drawer-head {
    padding: 22px 20px 18px;
  }

  .legal-drawer-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }

  .legal-drawer-head p {
    display: none;
  }

  .legal-switcher {
    margin: 16px 20px 0;
  }

  .legal-drawer-content {
    padding: 21px 20px 28px;
  }

  .contact-drawer-head {
    padding: 23px 20px 19px;
  }

  .contact-drawer-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .contact-toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }

  .showcase-window > img {
    min-height: 170px;
  }

  .showcase-window-tall > img {
    max-height: 310px;
  }

  .money-screens {
    display: grid;
    min-height: 0;
    gap: 18px;
  }

  .money-screen-switcher {
    display: none;
  }

  .money-screens[data-active-screen] .money-screen {
    position: relative;
    inset: auto;
    width: 100%;
    opacity: 1;
    filter: none;
    transform: none;
  }

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

  .capability-grid article {
    min-height: 0;
  }

  .capability-grid article > .material-symbols-rounded {
    margin-bottom: 23px;
  }

  .audience-section {
    padding: 15px 0 72px;
  }

  .audience-card {
    gap: 24px;
    padding: 28px 22px;
    border-radius: 20px;
  }

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

  .audience-columns article {
    min-height: 0;
  }

  .pricing-assurance {
    display: grid;
    gap: 12px;
  }

  .price-card {
    padding: 25px 22px;
  }

  .price strong {
    font-size: 4.2rem;
  }

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

  .faq-list details p {
    margin-right: 5px;
  }

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

  .final-cta-inner {
    grid-template-columns: 1fr;
    padding: 22px;
    text-align: center;
  }

  .final-cta-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
  }

  .final-cta-mark {
    margin-inline: auto;
  }

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

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

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

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-slide {
    transition: none;
  }
}
