:root {
  --bg-dark: #0b0f1a;
  --bg-dark-soft: #131b2e;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-soft: #eef2ff;
  --ink: #111827;
  --ink-soft: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(148, 163, 184, 0.28);
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 20px 48px rgba(15, 23, 42, 0.1);
  --shadow-dark: 0 32px 80px rgba(2, 6, 23, 0.34);
  --purple: #7c3aed;
  --blue: #2563eb;
  --cyan: #38bdf8;
  --green: #22c55e;
  --warning: #f59e0b;
  --gradient: linear-gradient(135deg, #8b5cf6 0%, #4f46e5 48%, #2563eb 100%);
  --gradient-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(37, 99, 235, 0.14));
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  hyphens: auto;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 28%),
    var(--bg-light);
}

body.modal-open {
  overflow: hidden;
}

body.has-sticky {
  padding-bottom: calc(var(--sticky-height, 96px) + 32px);
}

body.has-consent-banner .sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
  overflow-wrap: anywhere;
}

p,
.button,
.hero-stat,
.header-note,
.status-chip,
.listing-facts span,
.filter-pills span,
.mini-route-list span,
.legal-links a,
.chip-link,
.qr-link,
.faq-item button span:first-child,
.sticky-cta__copy strong,
.sticky-cta__copy span,
.resource-kicker {
  overflow-wrap: anywhere;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 0;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body.is-scrolled .site-header {
  background: rgba(11, 15, 26, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(11, 15, 26, 0.62);
  backdrop-filter: blur(18px);
  color: #fff;
}

.site-header__inner,
.site-header__inner > *,
.brand,
.brand-copy,
.header-actions,
.feed-topline,
.feed-header,
.feed-header__meta,
.listing-card > div,
.listing-card__meta,
.cta-panel > *,
.sticky-cta__inner > *,
.qr-modal__top > *,
.qr-copy,
.legal-card__body > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 100%;
}

.header-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 160ms ease, border-color 160ms ease;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.header-menu-toggle__icon {
  position: relative;
  width: 18px;
  height: 12px;
  flex: 0 0 auto;
}

.header-menu-toggle__icon::before,
.header-menu-toggle__icon::after,
.header-menu-toggle__icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: top 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.header-menu-toggle__icon::before {
  top: 0;
}

.header-menu-toggle__icon span {
  top: 5px;
}

.header-menu-toggle__icon::after {
  top: 10px;
}

.site-header.is-menu-open .header-menu-toggle__icon::before {
  top: 5px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .header-menu-toggle__icon span {
  opacity: 0;
}

.site-header.is-menu-open .header-menu-toggle__icon::after {
  top: 5px;
  transform: rotate(-45deg);
}

.header-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
}

.header-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.16);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.button-light {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.button-muted {
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink);
  border-color: rgba(15, 23, 42, 0.06);
}

.eyebrow,
.section-kicker,
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-tag,
.eyebrow.is-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.eyebrow {
  color: #4338ca;
  background: rgba(79, 70, 229, 0.08);
}

.section {
  padding: 56px 0;
}

.section + .section {
  padding-top: 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 58, 237, 0.32), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(37, 99, 235, 0.28), transparent 26%),
    linear-gradient(180deg, #0b0f1a 0%, #111827 100%);
}

.section-dark::before,
.section-dark::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  filter: blur(16px);
}

.section-dark::after {
  inset: -120px 0 auto auto;
  background: rgba(139, 92, 246, 0.1);
}

.hero {
  padding: 12px 0 64px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: stretch;
}

.hero__copy,
.hero__visual,
.surface-card,
.panel-card,
.plan-card,
.route-card,
.detail-card,
.support-card,
.faq-shell,
.cta-panel,
.footer-panel {
  border-radius: var(--radius-2xl);
}

.hero__copy {
  padding: 22px 0 6px;
}

.hero__copy h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero__copy p,
.page-hero p,
.section-copy,
.detail-card p,
.support-card p,
.plan-card p,
.faq-panel__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.page-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center; /* Use center alignment for better balance */
}

.page-hero .hero-copy__meta,
.hero-copy__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-stat {
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.hero-trust span {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.hero__visual,
.visual-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.hero__visual::before,
.visual-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.feed-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

.feed-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.feed-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
}

.feed-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.16);
}

.feed-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0.2)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.feed-header__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.feed-avatar {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
}

.feed-header strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.feed-header span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.filter-pills,
.mini-route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pills span,
.mini-route-list span {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.listing-stack {
  display: grid;
  gap: 12px;
}

.listing-card {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 30px rgba(2, 6, 23, 0.14);
  animation: floatCard 8s ease-in-out infinite;
}

.listing-card:nth-child(2) {
  animation-delay: 1.2s;
}

.listing-card:nth-child(3) {
  animation-delay: 2.2s;
}

.listing-card:nth-child(4) {
  animation-delay: 3.2s;
}

.listing-card__thumb {
  border-radius: 20px;
  min-height: 88px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.74), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.34), rgba(124, 58, 237, 0.4)),
    #dbeafe;
  position: relative;
  overflow: hidden;
}

.listing-card__thumb::before,
.listing-card__thumb::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
}

.listing-card__thumb::before {
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  box-shadow:
    24px 10px 0 -8px rgba(255, 255, 255, 0.28),
    0 10px 22px rgba(37, 99, 235, 0.14);
}

.listing-card__thumb::after {
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 22px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.08), rgba(255, 255, 255, 0.42));
}

.listing-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.new-badge,
.source-badge,
.status-chip,
.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 800;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.new-badge {
  padding: 7px 12px;
  color: #14532d;
  background: rgba(34, 197, 94, 0.16);
}

.source-badge {
  padding: 7px 11px;
  background: rgba(79, 70, 229, 0.08);
  color: #4338ca;
}

.status-chip {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.listing-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.listing-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.listing-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 8px;
}

.listing-facts span {
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.05);
  color: #1e293b;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  white-space: normal;
}

.trust-strip {
  margin-top: -48px; /* Increased negative margin for more overlap */
  position: relative;
  z-index: 2;
}

.trust-panel,
.surface-card,
.panel-card,
.faq-shell,
.footer-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.trust-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 28px;
}

.trust-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4338ca;
}

.trust-panel p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
}

.grid-2,
.grid-3,
.grid-4,
.routes-grid,
.plan-grid,
.detail-grid,
.support-grid {
  display: grid;
  gap: 22px;
}

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

.grid-3,
.detail-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.routes-grid,
.plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.surface-card,
.panel-card,
.detail-card,
.support-card,
.route-card,
.plan-card,
.cta-panel,
.footer-panel {
  padding: 26px;
}

.surface-card h2,
.panel-card h2,
.detail-card h3,
.support-card h3,
.plan-card h3,
.route-card h3,
.faq-heading h2,
.cta-panel h2,
.footer-brand h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.surface-card h2,
.panel-card h2,
.faq-heading h2,
.cta-panel h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.detail-card h3,
.support-card h3,
.plan-card h3,
.route-card h3,
.footer-brand h3 {
  font-size: 1.32rem;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.detail-card,
.support-card,
.route-card,
.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.plan-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plan-card > * {
  width: 100%;
}

.detail-card.is-gradient,
.cta-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--gradient);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.detail-card.is-gradient p,
.cta-panel p,
.footer-dark p,
.footer-dark a {
  color: rgba(255, 255, 255, 0.82);
}

.detail-card ul,
.plan-card ul,
.support-card ul,
.footer-links,
.footer-meta,
.point-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.point-list {
  display: grid;
  gap: 10px;
}

.point-list li,
.detail-card li,
.plan-card li,
.support-card li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.detail-card.is-gradient li,
.cta-panel li {
  color: rgba(255, 255, 255, 0.84);
}

.point-list li::before,
.detail-card li::before,
.plan-card li::before,
.support-card li::before,
.cta-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 0 0 5px rgba(99, 102, 241, 0.12);
}

.detail-card.is-gradient li::before,
.cta-panel li::before {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
}

.route-card {
  position: relative;
  overflow: hidden;
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--gradient);
}

.route-card p,
.plan-card p,
.support-card p,
.detail-card p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.route-card .button,
.plan-card .button {
  margin-top: 22px;
}

.route-badge-row,
.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.mini-pill,
.plan-badge {
  padding: 8px 12px;
  background: rgba(79, 70, 229, 0.08);
  color: #4338ca;
}

.plan-badge.is-value {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 16px;
}

.price-line strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.65rem;
  line-height: 1;
}

.price-line span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.price-vat-note {
  display: block;
  width: 100%;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.plan-card.is-selected {
  border-color: rgba(99, 102, 241, 0.42);
  box-shadow:
    0 18px 40px rgba(79, 70, 229, 0.18),
    inset 0 0 0 1px rgba(99, 102, 241, 0.16);
}

.plan-card__select {
  margin-top: 18px;
  width: 100%;
}

.faq-shell {
  padding: 28px;
}

.faq-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.faq-heading p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}

.faq-item button span:first-child {
  min-width: 0;
}

.faq-item button span:last-child {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #4338ca;
  background: rgba(79, 70, 229, 0.08);
  transition: transform 160ms ease;
}

.faq-item.is-open button span:last-child {
  transform: rotate(45deg);
}

.faq-panel__content {
  display: none;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.faq-panel__content p {
  color: inherit;
}

.faq-item.is-open .faq-panel__content {
  display: block;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.footer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 26px;
  padding: 28px;
}

.footer-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    #111827;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  margin: 0;
  max-width: 560px;
  line-height: 1.7;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-meta li {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

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

.footer-links a {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 45;
  width: min(calc(100% - 20px), 760px);
  padding: 12px;
  border-radius: 24px;
  background: rgba(11, 15, 26, 0.92);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(18px);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.sticky-cta__copy strong {
  display: block;
  font-size: 0.98rem;
}

.sticky-cta__copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.sticky-cta .button {
  min-width: 220px;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
}

.qr-modal.is-visible {
  display: grid;
}

.qr-modal__card {
  width: min(100%, 540px);
  padding: 26px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-dark);
}

.qr-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.qr-modal__top h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  line-height: 1.08;
}

.qr-modal__top p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.qr-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: transparent;
  cursor: pointer;
  font-size: 0;
  position: relative;
}

.qr-close::before {
  content: "X";
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.qr-modal__body {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.qr-code-frame {
  padding: 16px;
  border-radius: 24px;
  background: var(--bg-light);
  border: 1px solid var(--line);
}

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

.qr-copy {
  display: grid;
  gap: 14px;
}

.qr-link {
  word-break: break-all;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

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

.qr-web-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4338ca;
  font-weight: 700;
  line-height: 1.5;
}

.qr-web-link:hover {
  color: #312e81;
}

.consent-banner-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 16px);
  z-index: 58;
  padding: 0;
  pointer-events: none;
}

.consent-banner-wrap .container {
  pointer-events: none;
}

.consent-banner {
  position: relative;
  width: min(100%, 920px);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(248, 250, 252, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
  pointer-events: auto;
}

.consent-banner__copy {
  display: grid;
  gap: 8px;
}

.consent-banner__copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.consent-banner__copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.consent-banner__actions .button {
  min-width: 0;
}

.consent-banner__link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #4338ca;
  font-weight: 700;
  cursor: pointer;
}

.consent-banner__link:hover {
  color: #312e81;
}

.route-hero-card,
.timeline-card,
.checkout-note {
  padding: 24px;
  border-radius: var(--radius-2xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.timeline-card strong,
.checkout-note strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.16rem;
}

.timeline-card p,
.checkout-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

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

.step-card {
  padding: 28px;
  border-radius: var(--radius-2xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.step-number {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--gradient-soft);
  color: #4338ca;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.step-card h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.legal-links a,
.chip-link {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--ink-soft);
}

.muted-copy {
  color: var(--ink-soft);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.breadcrumbs a {
  color: var(--ink);
}

.breadcrumbs [aria-current="page"] {
  color: #4338ca;
  font-weight: 700;
}

.resource-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(79, 70, 229, 0.08);
  color: #4338ca;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-page .site-footer {
  padding-top: 0;
}

.legal-page-hero {
  align-items: stretch;
}

.legal-summary {
  display: grid;
  gap: 16px;
}

.legal-summary .timeline-card {
  background: rgba(255, 255, 255, 0.96);
}

.legal-summary .legal-links {
  margin-top: 0;
}

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

.legal-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.legal-card__body {
  display: grid;
  gap: 14px;
  overflow-x: auto;
}

.legal-card__body p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal-card__body strong,
.legal-summary .timeline-card strong {
  color: var(--ink);
}

.legal-list {
  margin-top: 0;
}

.doc-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.94rem;
  color: var(--ink);
}

.doc-table th,
.doc-table td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.doc-table thead th {
  background: var(--bg-light);
  font-family: "Space Grotesk", sans-serif;
}

.doc-table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.02);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}


.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-proof-card,
.visual-proof-card,
.proof-counter-card,
.testimonial-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.14);
}

.hero-proof-card__eyebrow,
.visual-proof-card__label,
.proof-counter-card__eyebrow,
.testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-proof-card--metric {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.22), rgba(37, 99, 235, 0.14));
}

.hero-proof-card strong,
.visual-proof-card strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  line-height: 1.1;
}

.hero-proof-card p,
.visual-proof-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.48;
}

.hero__visual--product {
  display: flex;
  padding: 18px;
}

.hero-product-stage {
  position: relative;
  display: grid;
  /* grid-template-columns are no longer needed */
  width: 100%;
  min-height: 100%;
  align-items: center;
  justify-content: center; /* Center the single item */
}

.hero-product-stage__glow {
  position: absolute;
  inset: auto 10% 6% 14%;
  height: 42%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.38), transparent 72%);
  filter: blur(34px);
  pointer-events: none;
}

.phone-push-card {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  width: min(100%, 314px);
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.24);
  animation: notificationDrop 5.8s ease-in-out infinite;
}

.phone-push-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.phone-push-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.phone-push-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.phone-mockup {
  position: relative;
  z-index: 1;
  padding-top: 62px;
}

.phone-mockup__frame {
  width: min(100%, 440px); /* Increased width */
  margin: 0 auto;
  padding: 16px 12px 12px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(148, 163, 184, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.34);
}

.phone-mockup__notch {
  width: 128px;
  height: 26px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: #0f172a;
}

.phone-mockup__screen {
  display: grid;
  gap: 14px;
  min-height: 540px;
  padding: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  color: #fff;
}

.phone-chat-header,
.phone-chat-header__meta,
.phone-alert-card__meta,
.phone-alert-card__footer,
.proof-counter-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.phone-chat-header__avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.phone-chat-header strong {
  display: block;
  font-size: 0.98rem;
}

.phone-chat-header span,
.phone-chat-header__status {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.phone-chat-day {
  justify-self: center;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
}

.phone-chat-bubble {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.86);
}

.phone-chat-bubble strong {
  font-size: 0.94rem;
}

.phone-chat-bubble p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.phone-chat-bubble--intro {
  background: rgba(255, 255, 255, 0.08);
}

.phone-alert-list {
  display: grid;
  gap: 12px;
}

.phone-chat-bubble--status {
  grid-template-columns: auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
}

.phone-chat-bubble__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.phone-alert-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.18);
  animation: cardLift 4.6s ease-in-out infinite 0.8s;
}

.phone-alert-card--secondary {
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.12);
  animation-delay: 1.4s;
}

.phone-alert-card strong {
  font-size: 1.18rem;
}

.phone-alert-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.phone-alert-card--secondary strong {
  font-size: 1rem;
}

.phone-alert-card--secondary p {
  font-size: 0.84rem;
  line-height: 1.42;
}

.phone-alert-card__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 0.8rem;
  font-weight: 700;
}

.phone-alert-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: var(--gradient);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(79, 70, 229, 0.22);
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.hero-visual-proof-rail {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  align-self: end;
}

.visual-proof-card {
  background: rgba(255, 255, 255, 0.07);
  padding: 14px;
}

.visual-proof-card--metric strong {
  font-size: 2rem;
}

.social-proof-shell {
  display: grid;
  gap: 28px;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(3, minmax(0, 0.82fr));
  gap: 16px;
  align-items: stretch;
}

.proof-counter-card,
.testimonial-card {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
}

.proof-counter-card {
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(37, 99, 235, 0.03), rgba(255, 255, 255, 0.96));
}

.proof-counter-card__eyebrow,
.testimonial-card__badge {
  background: rgba(79, 70, 229, 0.08);
  color: #4338ca;
}

.proof-counter-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  color: var(--ink);
}

.proof-counter-card h3,
.testimonial-card strong {
  margin: 0;
  color: var(--ink);
}

.proof-counter-card p,
.testimonial-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.68;
}

.testimonial-card strong {
  align-self: end;
  color: #334155;
  font-size: 0.92rem;
}

.proof-counter-metrics {
  margin-top: 8px;
}

.proof-counter-metrics span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.04);
}

.proof-counter-metrics strong {
  font-size: 1.1rem;
  line-height: 1.1;
}

.proof-counter-metrics em {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

@keyframes notificationDrop {
  0%, 18%, 100% {
    transform: translateY(-12px);
    opacity: 0;
  }

  24%, 72% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(-4px);
    opacity: 0;
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0.06);
  }
}

@keyframes cardLift {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

@media (max-width: 1100px) {
  .hero__grid,
  .page-hero,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .hero-proof-grid,
  .proof-grid,
  .hero-product-stage {
    grid-template-columns: 1fr;
  }

  .proof-counter-card {
    grid-column: 1 / -1;
  }

  .hero-visual-proof-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4,
  .routes-grid,
  .plan-grid,
  .detail-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav,
  .header-note,
  .header-actions {
    display: none;
  }

  .header-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header__inner {
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    gap: 8px;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(11, 15, 26, 0.96);
    box-shadow: 0 18px 38px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(18px);
  }

  .site-header.is-menu-open .site-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
  }
}

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

  body.has-sticky {
    padding-bottom: calc(var(--sticky-height, 96px) + 28px);
  }


  .grid-2,
  .grid-3,
  .grid-4,
  .routes-grid,
  .plan-grid,
  .detail-grid,
  .support-grid,
  .legal-grid,
  .step-grid,
  .footer-links,
  .qr-modal__body {
    grid-template-columns: 1fr;
  }

  .listing-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    align-items: start;
  }

  .listing-card__thumb {
    min-height: 72px;
    border-radius: 18px;
  }

  .cta-panel,
  .sticky-cta__inner,
  .trust-panel,
  .consent-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-proof-grid,
  .hero-visual-proof-rail {
    grid-template-columns: 1fr;
  }

  .proof-counter-metrics {
    flex-direction: column;
    align-items: stretch;
  }

  .phone-push-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-bottom: 10px;
  }

  .phone-mockup {
    padding-top: 0;
  }

  .sticky-cta {
    width: min(calc(100% - 16px), 100%);
    bottom: 12px;
  }

  .consent-banner-wrap {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  .consent-banner {
    width: 100%;
  }

  .sticky-cta .button {
    width: 100%;
    min-width: 0;
  }
}

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

  body.has-sticky {
    padding-bottom: calc(var(--sticky-height, 96px) + 24px);
  }


  .site-header {
    padding: 10px 0;
  }

  .site-header__inner {
    padding: 12px 14px;
    border-radius: 24px;
  }

  .brand-copy span {
    display: none;
  }

  .header-menu-toggle {
    min-height: 44px;
    padding: 0 14px;
  }

  .hero {
    padding-bottom: 42px;
  }

  .hero__copy h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .hero__copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-proof-card,
  .visual-proof-card,
  .proof-counter-card,
  .testimonial-card {
    padding: 16px;
  }

  .hero-proof-grid {
    margin-top: 18px;
    grid-template-columns: 1fr;
  }

  .hero-proof-grid .hero-proof-card:nth-child(3),
  .hero-visual-proof-rail {
    display: none;
  }

  .phone-mockup__frame {
    width: 100%;
    border-radius: 34px;
  }

  .phone-mockup__screen {
    min-height: 420px;
    padding: 16px;
    border-radius: 24px;
  }

  .phone-push-card {
    padding: 14px;
    border-radius: 20px;
  }

  .phone-alert-list {
    gap: 10px;
  }

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

  .filter-pills span:nth-child(n + 3) {
    display: none;
  }

  .sticky-cta {
    bottom: 10px;
  }

  .sticky-cta__copy {
    display: none;
  }

  .sticky-cta__inner {
    padding: 10px;
    align-items: stretch;
  }

  .surface-card,
  .panel-card,
  .detail-card,
  .support-card,
  .route-card,
  .plan-card,
  .cta-panel,
  .footer-panel,
  .hero__visual,
  .visual-card,
  .faq-shell,
  .route-hero-card,
  .timeline-card,
  .checkout-note,
  .step-card {
    padding: 20px;
    border-radius: 24px;
  }

  .trust-panel,
  .sticky-cta {
    border-radius: 22px;
  }

  .qr-modal {
    padding: 14px;
  }

  .qr-modal__card {
    padding: 20px;
    border-radius: 24px;
  }

  .consent-banner {
    gap: 14px;
    padding: 18px;
  }

  .consent-banner__actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .consent-banner__actions .button,
  .consent-banner__actions .consent-banner__link {
    width: 100%;
  }

  .consent-banner__actions .consent-banner__link {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .listing-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 10px;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .consent-banner-wrap {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
  }

  .consent-banner__actions {
    grid-template-columns: 1fr;
  }

  .phone-alert-card__footer {
    align-items: stretch;
  }

  .phone-alert-card__cta {
    width: 100%;
  }

  .listing-card__thumb {
    min-height: 60px;
    border-radius: 16px;
  }

  .listing-card strong {
    font-size: 1rem;
  }

  .listing-card p {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .listing-facts {
    gap: 6px;
    margin: 8px 0 6px;
  }

  .listing-facts span {
    padding: 7px 9px;
    font-size: 0.76rem;
  }

  .doc-table,
  .doc-table thead,
  .doc-table tbody,
  .doc-table tr,
  .doc-table th,
  .doc-table td {
    display: block;
    width: 100%;
  }

  .doc-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

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

  .doc-table tbody {
    display: grid;
    gap: 12px;
  }

  .doc-table tr {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
  }

  .doc-table td {
    border-width: 0 0 1px;
    padding: 12px 14px;
  }

  .doc-table td:last-child {
    border-bottom: 0;
  }

  .doc-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #475569;
  }
}
