:root {
  --font-sans: "Raleway", "Avenir Next", "Segoe UI", "Noto Sans", sans-serif;
  --font-headings: "Raleway", "Avenir Next", "Segoe UI", "Noto Sans", sans-serif;
  --bg: #040e13;
  --bg-alt: #0a1f49;
  --surface: #0a1f49;
  --surface-soft: rgba(10, 31, 73, 0.7);
  --surface-warm: #eee8da;
  --text: #fbfeff;
  --muted: #c7d5e6;
  --accent: #0041d9;
  --accent-dark: #2a69ff;
  --accent-2: #738e75;
  --accent-2-dark: #5f7a62;
  --danger: #ff5d5d;
  --border: rgba(251, 254, 255, 0.14);
  --shadow-lg: 0 28px 60px rgba(4, 14, 19, 0.65);
  --shadow-md: 0 16px 30px rgba(4, 14, 19, 0.45);
  --radius-lg: clamp(18px, 2vw, 26px);
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1rem);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 65, 217, 0.3), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(115, 142, 117, 0.25), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(42, 105, 255, 0.2), transparent 60%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 80%, rgba(123, 156, 255, 0.18), transparent 60%),
    radial-gradient(circle at 90% 70%, rgba(115, 142, 117, 0.15), transparent 55%);
  z-index: -1;
  pointer-events: none;
}

h1,
h2,
h3,
.brand {
  font-family: var(--font-headings);
}

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

a:hover {
  color: var(--accent-dark);
}

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

button {
  font-family: inherit;
}

button:hover:not([disabled]),
.btn:hover {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 2000;
  transition: top 0.2s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(4, 14, 19, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  position: relative;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.6vw, 2rem);
}

.nav-links .btn + .btn {
  margin-left: -0.4rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7b9cff, var(--accent), #7b9cff, transparent);
  opacity: 0;
  transform: translateY(6px) scaleX(0.92);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:not(.btn):hover::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.nav-links .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.7rem;
  padding: 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1;
  box-sizing: border-box;
  vertical-align: middle;
}

.nav-links .nav-calculator-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(123, 156, 255, 0.26), rgba(0, 65, 217, 0.18)),
    rgba(10, 31, 73, 0.86);
  border-color: rgba(123, 156, 255, 0.52);
  color: #fbfeff;
  box-shadow:
    0 12px 24px rgba(0, 65, 217, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-links .nav-calculator-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 62%);
  pointer-events: none;
}

.nav-links .nav-calculator-cta:hover,
.nav-links .nav-calculator-cta:focus-visible {
  background:
    linear-gradient(135deg, rgba(123, 156, 255, 0.34), rgba(42, 105, 255, 0.24)),
    rgba(10, 31, 73, 0.96);
  border-color: rgba(123, 156, 255, 0.68);
  color: #fff;
  box-shadow:
    0 16px 28px rgba(0, 65, 217, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(251, 254, 255, 0.25);
  border-radius: 10px;
  padding: 0.6rem;
  gap: 0.35rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 999px;
}

.hero {
  padding: clamp(1.4rem, 4.6vw, 3.6rem) 0 clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: clamp(1.1rem, 3vw, 2.2rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 1.5rem + 3vw, 3.8rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  background: linear-gradient(120deg, #fbfeff 30%, #7b9cff 70%);
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem);
  margin: 0 0 0.75rem;
  color: var(--text);
}

.line-break {
  display: block;
}


.fee {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(0, 65, 217, 0.2);
  color: #e2efff;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 65, 217, 0.2);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(226, 239, 255, 0.82);
  border-radius: 999px;
  border: 1px solid rgba(251, 254, 255, 0.1);
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(12px);
}

.chip-primary {
  background: linear-gradient(135deg, rgba(0, 65, 217, 0.38), rgba(123, 156, 255, 0.34));
  border-color: rgba(123, 156, 255, 0.62);
  color: #fbfeff;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.45rem 1rem;
  box-shadow:
    0 12px 26px rgba(0, 65, 217, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.chip-outline {
  background: linear-gradient(135deg, #27416f, #172a49);
  border-color: rgba(123, 156, 255, 0.38);
  color: rgba(238, 245, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-row .btn {
  flex: 0 0 auto;
}

.hero-copy .cta-row .btn {
  flex: 0 0 11.1rem;
  height: 3.15rem;
  padding: 0 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(0.92rem, 0.86rem + 0.2vw, 1rem);
  line-height: 1;
  border: 1px solid transparent;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border: 1px solid rgba(251, 254, 255, 0.2);
  box-shadow: 0 12px 20px rgba(0, 65, 217, 0.45), 0 0 0 0 rgba(0, 65, 217, 0.45);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #2a69ff, #7b9cff);
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 65, 217, 0.55);
}

.btn-secondary {
  background: rgba(10, 31, 73, 0.6);
  border-color: rgba(251, 254, 255, 0.18);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(10, 31, 73, 0.85);
  border-color: rgba(123, 156, 255, 0.5);
  color: #fbfeff;
  box-shadow: 0 12px 24px rgba(0, 65, 217, 0.25);
  transform: translateY(-1px);
}

.hero-media {
  display: flex;
  justify-content: center;
  --delay: 0.12s;
}

.device-frame {
  width: min(100%, 1160px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.device-lid {
  position: relative;
  padding: clamp(0.45rem, 0.9vw, 0.8rem);
  padding-top: clamp(0.7rem, 1.2vw, 1rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #0b234d, #0a1a36);
  border: 1px solid rgba(123, 156, 255, 0.35);
  box-shadow: 0 24px 50px rgba(4, 14, 19, 0.6);
}

.device-camera {
  position: absolute;
  top: clamp(0.45rem, 0.8vw, 0.7rem);
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #0f172a;
  border: 1px solid rgba(251, 254, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.6), 0 0 8px rgba(123, 156, 255, 0.35);
}

.device-base {
  width: 92%;
  margin: -0.15rem auto 0;
  height: clamp(0.75rem, 1.1vw, 1rem);
  background: linear-gradient(180deg, #0d1f3b, #060e1f);
  border-radius: 0 0 18px 18px;
  border: 1px solid rgba(123, 156, 255, 0.2);
  border-top: none;
  box-shadow: 0 18px 30px rgba(4, 14, 19, 0.55);
  position: relative;
}

.device-notch {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 14%;
  height: 2px;
  border-radius: 999px;
  background: rgba(251, 254, 255, 0.4);
}

.device-screen {
  border-radius: calc(var(--radius-lg) - 6px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a1f49;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-screen img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

@supports not (aspect-ratio: 1 / 1) {
  .device-screen {
    min-height: clamp(220px, 36vw, 520px);
  }
}

.section-header {
  text-align: left;
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header h2 {
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  margin: 0 0 0.75rem;
}

.faq .section-header h2 {
  margin-bottom: 0;
  white-space: nowrap;
}

.compare .section-header h2 {
  white-space: nowrap;
}

.screens .section-header h2 {
  white-space: nowrap;
}

.features .section-header p {
  white-space: nowrap;
}

#overview .section-header h2 {
  white-space: nowrap;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.eyebrow-bright {
  color: #fbfeff;
  text-shadow: 0 6px 18px rgba(0, 65, 217, 0.5);
}

.features {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.feature-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: translate 0.25s ease, rotate 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  translate: 0 0;
  rotate: 0deg;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(123, 156, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.feature-card:hover {
  translate: 0 -6px;
  rotate: -0.2deg;
  border-color: rgba(123, 156, 255, 0.55);
  box-shadow: 0 18px 35px rgba(0, 65, 217, 0.35);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.section-cta {
  margin-top: 2.5rem;
}

.error-page-shell {
  min-height: 100vh;
  min-height: 100dvh;
}

.error-main {
  width: 100%;
}

.error-page {
  min-height: clamp(32rem, calc(100vh - 13rem), 48rem);
  min-height: clamp(32rem, calc(100dvh - 13rem), 48rem);
  display: flex;
  align-items: center;
  padding: clamp(2.6rem, 7vw, 5rem) 0 clamp(3rem, 8vw, 5.6rem);
}

.error-layout {
  width: 100%;
}

.error-panel {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(123, 156, 255, 0.32);
  background:
    linear-gradient(160deg, rgba(10, 31, 73, 0.92), rgba(4, 14, 19, 0.96)),
    rgba(4, 14, 19, 0.95);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.error-panel::before,
.error-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.error-panel::before {
  top: -5rem;
  right: -4rem;
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(123, 156, 255, 0.34), transparent 68%);
}

.error-panel::after {
  left: -5rem;
  bottom: -6rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(115, 142, 117, 0.24), transparent 68%);
}

.error-content {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.error-chip-row {
  margin-bottom: 1.1rem;
}

.error-code {
  margin: 0 0 0.45rem;
  font-size: clamp(4.6rem, 14vw, 7.8rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.07em;
  background: linear-gradient(135deg, #fbfeff 15%, #7b9cff 55%, #2a69ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.error-panel h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.2rem, 1.5rem + 2.2vw, 3.3rem);
  line-height: 1.02;
}

.error-lead {
  margin-bottom: 0.9rem;
}

.error-copy {
  margin: 0 0 1.6rem;
  max-width: 31rem;
  color: var(--muted);
}

.error-actions {
  margin-top: 0.25rem;
}

.error-actions .btn {
  min-width: 12rem;
  min-height: 3.1rem;
}

@media (min-width: 721px) {
  .error-page-shell {
    display: flex;
    flex-direction: column;
  }

  .error-page-shell .error-main {
    flex: 1 0 auto;
    display: flex;
  }

  .error-page-shell .error-page {
    flex: 1 0 auto;
    min-height: 0;
  }
}

.testimonials {
  padding: clamp(1rem, 5vw, 3rem) 0 clamp(3rem, 7vw, 5rem);
  background: rgba(4, 14, 19, 0.52);
  overflow: hidden;
}

.testimonial-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0.35rem clamp(1rem, 4vw, 2.5rem) 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testimonial-mobile-shell {
  position: relative;
  --testimonial-mobile-card-half: min(40vw, 9rem);
}

.testimonial-mobile-nav {
  display: none;
}

.testimonial-progress {
  display: none;
}

.testimonial-track {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  gap: 1.5rem;
  animation: testimonialDrift 120s linear infinite;
  will-change: transform;
}

.testimonial-marquee.is-paused .testimonial-track {
  animation-play-state: paused;
}

.testimonial-set {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.5rem;
  flex: 0 0 auto;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  width: clamp(260px, 23vw, 320px);
  flex: 0 0 auto;
  height: auto;
  align-self: flex-start;
}

.testimonial-set .testimonial-card:nth-child(odd) {
  margin-top: 0.85rem;
}

.testimonial-set .testimonial-card:nth-child(even) {
  margin-bottom: 0.85rem;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(123, 156, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 156, 255, 0.55);
  box-shadow: 0 18px 35px rgba(0, 65, 217, 0.35);
}

.testimonial-card:hover::after {
  opacity: 1;
}

[data-desktop-url] {
  cursor: pointer;
}

.testimonial-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.testimonial-logo {
  --testimonial-logo-size: 4.25rem;
  width: var(--testimonial-logo-size);
  height: var(--testimonial-logo-size);
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid rgba(123, 156, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(123, 156, 255, 0.22), rgba(4, 14, 19, 0.2)),
    rgba(10, 31, 73, 0.85);
  display: grid;
  place-items: center;
  color: #fbfeff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0.35rem;
  box-sizing: border-box;
}

.testimonial-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.testimonial-business {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.testimonial-owner {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  quotes: "“" "”";
}

.testimonial-copy::before {
  content: open-quote;
}

.testimonial-copy::after {
  content: close-quote;
}

.testimonial-stars {
  display: block;
  margin: 1rem auto 0;
  width: max-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 208, 92, 0.28);
  background: linear-gradient(135deg, rgba(255, 208, 92, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 10px 22px rgba(255, 198, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #ffd86a;
  position: relative;
  z-index: 1;
}

.testimonial-stars span {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 208, 92, 0.45);
}

.compare {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: rgba(4, 14, 19, 0.7);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  min-width: 560px;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
}

.compare-table td {
  white-space: normal;
}

.compare-table thead th {
  background: rgba(0, 65, 217, 0.2);
  color: #e2efff;
  font-weight: 700;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-negative {
  display: inline-grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  align-items: start;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--muted);
}

.compare-negative::before {
  content: "X";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  padding: 0;
  margin-top: 0.08rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 93, 93, 0.65);
  color: var(--danger);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 6px 14px rgba(255, 93, 93, 0.25);
}

.compare-note,
.compare-fee {
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.screens {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.screens-layout {
  display: grid;
  gap: 2rem;
}

.screen-preview {
  background: #040e13;
  border-radius: var(--radius-lg);
  padding: clamp(0.8rem, 1.5vw, 1.2rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}

.screen-stage {
  border-radius: calc(var(--radius-lg) - 6px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a1f49;
  width: 100%;
  min-height: clamp(200px, 32vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-stage img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.screen-thumbs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.thumb {
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 140px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.thumb img {
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: contain;
  background: #0a1f49;
}

.thumb span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 65, 217, 0.35);
  transform: translateY(-2px);
}

.digital-menu {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: rgba(4, 14, 19, 0.7);
}

.digital-grid {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.digital-copy .eyebrow {
  color: var(--muted);
}

.digital-proof-inline {
  color: #e9f1ff;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(123, 156, 255, 0.14);
  text-decoration: underline;
  text-decoration-color: rgba(123, 156, 255, 0.55);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}

.phone-demo-label {
  margin: 0.7rem auto 0;
  width: max-content;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbfeff;
  border: 1px solid rgba(123, 156, 255, 0.32);
  background: linear-gradient(135deg, rgba(123, 156, 255, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: 0 12px 24px rgba(0, 65, 217, 0.12);
  text-shadow: 0 0 14px rgba(123, 156, 255, 0.28);
  transform: translateX(14px);
}

.mobile-inline-copy {
  display: none;
}

.phone-frame {
  background: #040e13;
  border-radius: 36px;
  padding: 0.9rem;
  max-width: 375px;
  margin: 0 auto;
  transform: translateX(14px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.phone-screen {
  border-radius: 26px;
  aspect-ratio: 25 / 54;
  overflow: hidden;
  background: #0a1f49;
  width: 100%;
}

.phone-screen img,
.phone-screen iframe,
.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

.phone-screen .phone-screen-demo {
  display: block;
}

.phone-screen .phone-screen-preview {
  display: none;
}

.phone-screen iframe {
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.faq {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 1000px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-md);
  align-self: start;
}

summary {
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

summary::marker {
  color: var(--accent-2);
}

details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.faq a {
  color: #7b9cff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.faq a:hover {
  color: #fbfeff;
  text-decoration-color: #7b9cff;
}

.inline-link {
  color: #7b9cff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: #fbfeff;
  text-decoration-color: #7b9cff;
}

.site-footer {
  position: relative;
  padding: 3.35rem 0 3rem;
  border-top: 1px solid rgba(123, 156, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(7, 18, 31, 0.98), rgba(4, 14, 19, 0.98)),
    rgba(4, 14, 19, 0.95);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 156, 255, 0.36), transparent);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
  color: var(--muted);
  align-items: start;
}

.footer-intro {
  max-width: 32rem;
}

.footer-brand {
  margin: 0 0 0.55rem;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-copy {
  margin: 0;
  line-height: 1.68;
  color: rgba(226, 239, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 0.9rem;
  justify-self: end;
  align-content: start;
  width: min(100%, 25rem);
}

.footer-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(123, 156, 255, 0.74);
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.6rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  color: rgba(251, 254, 255, 0.9);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateX(2px);
  color: #fff;
}

.footer-legal p {
  margin: 0;
  line-height: 1.6;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(123, 156, 255, 0.14);
  text-align: left;
  justify-self: stretch;
  align-self: start;
  color: rgba(226, 239, 255, 0.62);
  font-size: 0.92rem;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-social-label {
  color: rgba(226, 239, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-social-label-contact {
  margin-left: 0.3rem;
}

.footer-social {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(123, 156, 255, 0.22);
  background: rgba(10, 31, 73, 0.48);
  color: rgba(251, 254, 255, 0.84);
  line-height: 0;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social svg {
  width: 1.16rem;
  height: 1.16rem;
  display: block;
  flex: none;
  margin: 0;
}

.footer-social-mail svg {
  width: 1.22rem;
  height: 1.08rem;
}

.footer-social:hover,
.footer-social:focus-visible {
  color: #fff;
  border-color: rgba(123, 156, 255, 0.46);
  background: rgba(10, 31, 73, 0.82);
  transform: translateY(-1px);
}

[data-animate] {
  opacity: 0;
  transform: translateY(12px);
}

[data-animate].is-visible {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

.feature-card:nth-child(2) {
  --delay: 0.08s;
}

.feature-card:nth-child(3) {
  --delay: 0.16s;
}

.feature-card:nth-child(4) {
  --delay: 0.24s;
}

.feature-card:nth-child(5) {
  --delay: 0.32s;
}

.feature-card:nth-child(6) {
  --delay: 0.4s;
}

.feature-card:nth-child(7) {
  --delay: 0.48s;
}

.feature-card:nth-child(8) {
  --delay: 0.56s;
}

.feature-card:nth-child(9) {
  --delay: 0.64s;
}

.feature-card:nth-child(10) {
  --delay: 0.72s;
}

.feature-card:nth-child(11) {
  --delay: 0.8s;
}

.feature-card:nth-child(12) {
  --delay: 0.88s;
}

.feature-card:nth-child(13) {
  --delay: 0.96s;
}

.feature-card:nth-child(14) {
  --delay: 1.04s;
}

.feature-card:nth-child(15) {
  --delay: 1.12s;
}

.feature-card:nth-child(16) {
  --delay: 1.2s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes testimonialDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 12px 20px rgba(0, 65, 217, 0.45), 0 0 0 0 rgba(0, 65, 217, 0.4);
  }
  50% {
    box-shadow: 0 14px 24px rgba(0, 65, 217, 0.55), 0 0 0 8px rgba(0, 65, 217, 0.2);
  }
}

@keyframes demoPop {
  0% {
    opacity: 0;
    transform: translateY(38px) scale(0.9);
    filter: blur(10px);
    box-shadow: 0 0 0 rgba(4, 14, 19, 0);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
    filter: blur(0);
    box-shadow: 0 24px 50px rgba(4, 14, 19, 0.6);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    box-shadow: var(--shadow-lg);
  }
}

@keyframes demoBackdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body.modal-open {
  overflow: hidden;
}

.demo-modal {
  --demo-modal-pad: clamp(1rem, 2.5vw, 2rem);
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--demo-modal-pad);
  padding:
    calc(var(--demo-modal-pad) + env(safe-area-inset-top))
    calc(var(--demo-modal-pad) + env(safe-area-inset-right))
    calc(var(--demo-modal-pad) + env(safe-area-inset-bottom))
    calc(var(--demo-modal-pad) + env(safe-area-inset-left));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.demo-modal.is-open .demo-backdrop {
  opacity: 1;
  animation: demoBackdrop 0.35s ease-out both;
}

.demo-modal.is-open .demo-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  animation: demoPop 0.65s cubic-bezier(0.16, 0.84, 0.3, 1) both;
}

.demo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 19, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.demo-dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: 90vh;
  max-height: calc(100vh - (var(--demo-modal-pad) * 2) - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  max-height: calc(100dvh - (var(--demo-modal-pad) * 2) - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  background: linear-gradient(160deg, rgba(4, 14, 19, 0.98), rgba(10, 31, 73, 0.98));
  border: 1px solid rgba(123, 156, 255, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(32px) scale(0.94);
  filter: blur(8px);
  transition: opacity 0.25s ease, transform 0.3s ease, filter 0.3s ease;
  will-change: transform, opacity, filter;
}

.demo-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(123, 156, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.demo-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 2.2rem;
  height: 2.2rem;
  line-height: 1;
  border-radius: 50%;
  border: 1px solid rgba(251, 254, 255, 0.25);
  background: rgba(10, 31, 73, 0.7);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.demo-close span {
  display: block;
  line-height: 1;
}

.demo-close:hover {
  transform: scale(1.04);
  border-color: rgba(123, 156, 255, 0.6);
  background: rgba(10, 31, 73, 0.9);
}

.demo-content {
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  overflow-y: auto;
  max-height: 100%;
  min-height: 0;
  flex: 1 1 auto;
  z-index: 1;
}

.demo-modal.is-success .demo-content {
  display: none;
}

.demo-header {
  max-width: 560px;
}

.demo-header h2 {
  margin: 0.4rem 0 0.6rem;
  font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  white-space: nowrap;
}

.demo-header p {
  margin: 0;
  color: var(--muted);
}

.demo-form {
  display: grid;
  gap: 0.9rem;
}

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

.field {
  display: grid;
  gap: 0.3rem;
}

.field-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(10, 31, 73, 0.55);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(199, 213, 230, 0.7);
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7b9cff 50%),
    linear-gradient(135deg, #7b9cff 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) calc(1rem + 2px), calc(100% - 0.85rem) calc(1rem + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 1px;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: rgba(255, 93, 93, 0.8);
  box-shadow: 0 0 0 2px rgba(255, 93, 93, 0.2);
}

.field-error {
  min-height: 1rem;
  font-size: 0.85rem;
  color: var(--danger);
}

.form-note {
  margin: -0.5rem 0 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
}

.form-status {
  display: none;
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status[data-status="success"] {
  background: rgba(115, 142, 117, 0.2);
  border-color: rgba(115, 142, 117, 0.6);
  color: #e9f4ea;
}

.form-status[data-status="error"] {
  background: rgba(255, 93, 93, 0.12);
  border-color: rgba(255, 93, 93, 0.5);
  color: #ffecec;
}

.demo-success {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  background: linear-gradient(160deg, rgba(4, 14, 19, 0.98), rgba(10, 31, 73, 0.96));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 3;
  text-align: center;
}

.demo-modal.is-success .demo-dialog {
  width: min(100%, 560px);
  max-height: none;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.demo-modal.is-success .demo-dialog::before {
  display: none;
}

.demo-modal.is-success .demo-close {
  display: none;
}

.demo-modal.is-success .demo-success {
  position: static;
  inset: auto;
  padding: 0;
  background: transparent;
  opacity: 1;
  pointer-events: auto;
}

.demo-modal.is-success .demo-success-card {
  box-shadow: var(--shadow-lg);
}

.demo-modal.is-success .demo-success {
  opacity: 1;
  pointer-events: auto;
}

.demo-success-card {
  max-width: 520px;
  width: min(100%, 520px);
  background: rgba(4, 14, 19, 0.8);
  border: 1px solid rgba(123, 156, 255, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 3.2vw, 2.6rem);
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  text-align: center;
}

.demo-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 2px 0 6px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.16);
  color: #4ade80;
  border: 1.5px solid rgba(74, 222, 128, 0.42);
  box-shadow:
    0 0 0 6px rgba(74, 222, 128, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: demoSuccessPop 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.demo-success-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

@keyframes demoSuccessPop {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.demo-success-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
}

.demo-success-card p {
  margin: 0;
  color: var(--muted);
  max-width: 400px;
}

.demo-success-card .demo-success-lede {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.demo-success-card .demo-success-lede strong {
  font-weight: 700;
  color: #a3e9b8;
}

.demo-success-card .demo-success-note {
  font-size: 0.8125rem;
  color: rgba(199, 213, 230, 0.65);
}

.demo-success-card .btn-primary {
  margin-top: 0.5rem;
  min-width: 160px;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  animation: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    display: none;
    min-width: 200px;
  }

  .nav-links .btn {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .nav-links .btn + .btn {
    margin-left: 0;
  }

  .phone-screen .phone-screen-demo {
    display: none;
  }

  .phone-screen .phone-screen-preview {
    display: block;
  }

  .phone-demo-label {
    display: none;
  }

  .desktop-inline-copy {
    display: none;
  }

  .mobile-inline-copy {
    display: inline;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .screen-thumbs {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: center;
    padding-bottom: 0;
  }

  .thumb {
    min-width: 0;
    flex: 1 1 calc(50% - 1rem);
  }

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

  .faq .section-header h2 {
    white-space: normal;
  }

  .screens .section-header h2 {
    white-space: normal;
  }

  .compare .section-header h2 {
    white-space: normal;
  }

  .footer-legal {
    text-align: left;
    justify-self: start;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-links {
    justify-self: start;
    width: 100%;
  }

  .footer-link-grid {
    gap: 0.6rem 1.2rem;
  }

  .footer-socials {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
    align-items: center;
    column-gap: 0.55rem;
    row-gap: 0.55rem;
    width: 100%;
  }

  .footer-social-label {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(123, 156, 255, 0.18);
    background: rgba(10, 31, 73, 0.34);
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    line-height: 1;
  }

  .footer-socials > .footer-social-label:first-child,
  .footer-socials > .footer-social-label-contact {
    grid-column: 1 / -1;
  }

  .footer-social-label-contact {
    margin-left: 0;
    margin-top: 0.15rem;
  }

  .demo-dialog {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 0.98rem;
  }

  .error-page {
    min-height: auto;
    padding: 2rem 0 3.2rem;
  }

  .error-panel {
    padding: 1.4rem;
  }

  .error-code {
    font-size: clamp(4rem, 24vw, 5.8rem);
  }

  .error-actions .btn {
    width: 100%;
  }

  .hero {
    padding: 2rem 0 2.6rem;
  }

  .hero-grid {
    gap: 1.6rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .lead {
    font-size: 1.05rem;
  }

  .chip-row {
    gap: 0.4rem;
    margin-bottom: 0.8rem;
  }

  .chip {
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
  }

  .chip-primary {
    padding: 0.35rem 0.85rem;
  }

  .hero-bullets {
    gap: 0.45rem;
    margin-bottom: 1.2rem;
  }

  .hero-bullets li {
    padding-left: 1.2rem;
    font-size: 0.95rem;
  }

  .hero-bullets li::before {
    width: 0.55rem;
    height: 0.55rem;
    top: 0.35rem;
    box-shadow: 0 0 0 3px rgba(0, 65, 217, 0.2);
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
  }

  .hero-copy .cta-row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
  }

  .hero-copy .cta-row .btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: 10.4rem;
    height: 2.95rem;
    padding: 0 0.85rem;
    font-size: 0.88rem;
  }

  .section-header {
    margin-bottom: 1.6rem;
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  .section-header p {
    font-size: 0.98rem;
  }

  .features,
  .testimonials,
  .compare,
  .screens,
  .digital-menu,
  .faq {
    padding: 3.2rem 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .feature-card {
    padding: 1.2rem;
  }

  .feature-card h3 {
    font-size: 1.05rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }

  .testimonial-track {
    gap: 1rem;
  }

  .testimonial-set {
    gap: 1rem;
  }

  .testimonial-card {
    width: clamp(240px, 82vw, 360px);
    padding: 1.2rem;
  }

  .testimonial-set .testimonial-card:nth-child(odd),
  .testimonial-set .testimonial-card:nth-child(even) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .testimonial-brand {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .testimonial-logo {
    --testimonial-logo-size: 3.7rem;
    border-radius: 10px;
    font-size: 0.68rem;
  }

  .testimonial-business {
    font-size: 1rem;
  }

  .testimonial-owner {
    font-size: 0.95rem;
  }

  .testimonial-copy {
    font-size: 0.91rem;
    line-height: 1.58;
  }

  .testimonial-stars {
    margin: 0.9rem auto 0;
    padding: 0.36rem 0.64rem;
  }

  .testimonial-stars span {
    font-size: 0.92rem;
  }

  .table-wrap {
    overflow: visible;
    border-radius: 14px;
  }

  .compare-table {
    min-width: 0;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tbody {
    display: grid;
    gap: 0.9rem;
  }

  .compare-table tbody tr {
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(10, 31, 73, 0.65);
  }

  .compare-table tbody th {
    padding: 0;
    font-size: 0.95rem;
    border-bottom: none;
  }

  .compare-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.35rem 0;
    border-bottom: none;
    white-space: normal;
  }

  .compare-table tbody td::before {
    content: attr(data-label);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
  }

  .compare-negative {
    font-size: 0.9rem;
  }

  .compare-negative::before {
    width: 1rem;
    height: 1rem;
    font-size: 0.65rem;
  }

  .screens-layout {
    gap: 1.4rem;
  }

  .screen-preview {
    padding: 0.75rem;
  }

  .screen-stage {
    min-height: clamp(180px, 56vw, 320px);
  }

  .screen-thumbs {
    gap: 0.75rem;
  }

  .thumb {
    flex: 1 1 calc(50% - 0.75rem);
    padding: 0.45rem;
  }

  .thumb span {
    font-size: 0.85rem;
  }

  .thumb img {
    border-radius: 6px;
  }

  .digital-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .digital-copy h2 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  .digital-copy p {
    font-size: 0.98rem;
  }

  .phone-frame {
    max-width: 280px;
    padding: 0.75rem;
    border-radius: 30px;
    transform: none;
  }

  .phone-demo-label {
    transform: none;
    display: none;
  }

  .phone-screen .phone-screen-demo {
    display: none;
  }

  .phone-screen .phone-screen-preview {
    display: block;
  }

  .phone-screen {
    border-radius: 22px;
  }

  .faq-grid {
    gap: 0.85rem;
  }

  details {
    padding: 0.9rem 1rem;
  }

  summary {
    font-size: 1rem;
    white-space: normal;
  }

  details p {
    font-size: 0.95rem;
  }

  .site-footer {
    padding: 2.5rem 0;
  }

  .footer-grid {
    gap: 1.4rem;
  }

  .footer-link-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .demo-content {
    padding: 1.4rem;
  }

  .demo-header h2 {
    white-space: normal;
  }

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

  .form-actions {
    flex-direction: column;
    align-items: center;
  }

  .form-actions .btn {
    width: min(100%, 280px);
  }

  .demo-close {
    top: 0.85rem;
    right: 0.85rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 0.9rem;
  }

  .error-panel {
    padding: 1.2rem;
  }

  .error-panel h1 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .error-copy {
    font-size: 0.95rem;
  }

  .nav {
    min-height: 3.75rem;
  }

  .brand {
    font-size: 1rem;
  }

  .nav-links {
    left: 0.9rem;
    right: 0.9rem;
    min-width: 0;
  }

  .hero {
    padding: 1.6rem 0 2.2rem;
  }

  .hero-grid {
    gap: 1.3rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 7vw, 2.35rem);
  }

  .lead {
    font-size: 1rem;
  }

  .line-break {
    display: inline;
  }

  .hero-bullets {
    margin-bottom: 1rem;
  }

  .hero-bullets li {
    font-size: 0.92rem;
  }

  .cta-row {
    gap: 0.6rem;
  }

  .hero-copy .cta-row {
    gap: 0.5rem;
  }

  .hero-copy .cta-row .btn {
    max-width: none;
    padding: 0 0.75rem;
    font-size: 0.84rem;
  }

  .btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.92rem;
  }

  .section-header {
    margin-bottom: 1.4rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-header p {
    font-size: 0.95rem;
  }

  #testimonials .section-header p:last-of-type {
    max-width: 18rem;
  }

  .features,
  .compare,
  .screens,
  .digital-menu,
  .faq {
    padding: 2.8rem 0;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-card p {
    font-size: 0.93rem;
  }

  .compare-table tbody tr {
    padding: 0.85rem;
    gap: 0.5rem;
  }

  .compare-table tbody td {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.25rem;
  }

  .screen-preview {
    padding: 0.65rem;
  }

  .screen-stage {
    min-height: clamp(170px, 50vw, 280px);
  }

  .screen-thumbs {
    gap: 0.6rem;
  }

  .thumb {
    min-width: 0;
    flex: 1 1 calc(50% - 0.6rem);
    padding: 0.4rem;
  }

  .thumb span {
    font-size: 0.82rem;
  }

  .digital-copy p {
    margin: 0 0 0.7rem;
  }

  .digital-copy p:last-child {
    margin-bottom: 0;
  }

  .phone-frame {
    max-width: 260px;
    padding: 0.65rem;
    border-radius: 28px;
    transform: none;
  }

  .phone-demo-label {
    transform: none;
    display: none;
  }

  .phone-screen .phone-screen-demo {
    display: none;
  }

  .phone-screen .phone-screen-preview {
    display: block;
  }

  details {
    padding: 0.85rem 0.95rem;
  }

  details p {
    font-size: 0.93rem;
  }

  .footer-grid {
    gap: 1.2rem;
  }

  .footer-socials {
    column-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .footer-social-label {
    min-height: 1.8rem;
    padding: 0 0.62rem;
    font-size: 0.64rem;
    letter-spacing: 0.09em;
  }
}

@media (max-width: 480px) {
  .thumb {
    flex-basis: 100%;
  }
}

@media (max-width: 720px), (hover: none) and (pointer: coarse) {
  html,
  body {
    overflow-x: hidden;
  }

  .testimonial-mobile-shell {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .testimonial-mobile-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    border: 1px solid rgba(123, 156, 255, 0.42);
    border-radius: 999px;
    background: rgba(9, 19, 40, 0.92);
    color: #f8fbff;
    box-shadow: 0 10px 24px rgba(5, 13, 28, 0.4);
    transform: translateY(-50%);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
  }

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

  .testimonial-mobile-nav span {
    font-size: 1.12rem;
    line-height: 1;
  }

  .testimonial-mobile-nav-prev {
    left: 0.3rem;
  }

  .testimonial-mobile-nav-next {
    right: 0.3rem;
  }

  .testimonial-marquee {
    width: auto;
    margin-left: 0;
    padding: 0.7rem clamp(1rem, 4vw, 2.5rem) 0.05rem;
    overflow-x: hidden;
    overflow-y: hidden;
    mask-image: none;
    touch-action: pan-y pinch-zoom;
  }

  .testimonial-track {
    gap: 0;
    animation: none;
    will-change: auto;
  }

  .testimonial-set {
    gap: 0.85rem;
  }

  .testimonial-set[aria-hidden="true"] {
    display: none;
  }

  .testimonial-card {
    width: min(80vw, 18rem);
    padding: 1rem 1rem 1.05rem;
    border-radius: 14px;
    -webkit-tap-highlight-color: transparent;
  }

  .testimonial-set .testimonial-card:nth-child(odd),
  .testimonial-set .testimonial-card:nth-child(even) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .testimonial-card:hover,
  .testimonial-card:active {
    transform: none;
    border-color: var(--border);
    box-shadow: var(--shadow-md);
  }

  .testimonial-card:hover::after,
  .testimonial-card:active::after {
    opacity: 0;
  }

  .testimonial-brand {
    gap: 0.7rem;
    margin-bottom: 0.85rem;
  }

  .testimonial-copy {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .testimonial-stars {
    margin: 0.8rem auto 0;
    padding: 0.32rem 0.58rem;
  }

  .testimonial-stars span {
    font-size: 0.88rem;
  }

  .testimonial-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.2rem;
    padding: 0 1rem;
  }

  .testimonial-progress-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: width 0.3s ease, background 0.3s ease;
  }

  .testimonial-progress-dot.is-active {
    width: 1.8rem;
    background: rgba(255, 255, 255, 0.15);
  }

  .testimonial-progress-fill {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: inherit;
    transform-origin: left;
    transform: scaleX(0);
  }

  .testimonial-progress-dot.is-active .testimonial-progress-fill {
    animation: testimonialProgressFill 5s linear forwards;
  }

  .demo-modal.is-open .demo-backdrop,
  .demo-modal.is-open .demo-dialog {
    animation: none;
  }

  .demo-backdrop {
    transition: none;
  }

  .demo-dialog {
    transition: none;
    filter: none;
    will-change: auto;
  }
}

@keyframes testimonialProgressFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

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

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .testimonial-track {
    animation: testimonialDrift 120s linear infinite !important;
    animation-duration: 120s !important;
    animation-iteration-count: infinite !important;
    will-change: transform;
  }

}

@media (prefers-reduced-motion: reduce) and (max-width: 720px), (prefers-reduced-motion: reduce) and (hover: none) and (pointer: coarse) {
  .testimonial-track {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }
}

.testimonials,
.compare,
.digital-menu,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.testimonial-marquee.is-offscreen .testimonial-track {
  animation-play-state: paused;
}
