:root {
  --accent: #cd32ba;
  --accent-strong: #a72298;
  --ink: #071625;
  --muted: #536070;
  --line: #e9edf3;
  --soft: #f7f9fc;
  --mint: #c9f4e4;
  --gold: #ffd166;
  --blue: #dcefff;
  --shadow: 0 24px 80px rgba(7, 22, 37, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 8px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(233, 237, 243, 0.88);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; min-width: 140px; }
.brand img {
  width: 140px;
  max-width: none;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}
.nav { display: flex; gap: 22px; margin-left: auto; color: #253142; font-size: 0.9rem; font-weight: 700; }
.nav a { position: relative; transition: color 180ms ease; }
.nav a:hover, .nav a.is-active { color: var(--accent); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 32px rgba(205, 50, 186, 0.28);
  font-size: 0.9rem;
  font-weight: 800;
}
.site-header > .brand + .header-cta { margin-left: auto; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section, .hero, .trust-bar, .footer {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.section { padding: 92px 0; }
.section-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr); gap: clamp(38px, 6vw, 78px); align-items: center; }

.hero {
  position: relative;
  min-height: 0;
  padding: clamp(42px, 6vh, 66px) 0 34px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 26px auto auto -8vw;
  width: 360px;
  height: 360px;
  background:
    linear-gradient(135deg, rgba(205, 50, 186, 0.12), rgba(201, 244, 228, 0.24)),
    repeating-linear-gradient(60deg, transparent 0 22px, rgba(7, 22, 37, 0.035) 23px 24px);
  clip-path: polygon(20% 2%, 88% 18%, 98% 70%, 42% 98%, 2% 54%);
  z-index: -1;
}

.eyebrow {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.eyebrow + :is(h1, h2, h3) { margin-top: 0; }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 700px;
  margin: 18px 0 20px;
  font-size: clamp(3rem, 6.25vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: 0;
}
.hero-copy h1 { margin-top: 0; }

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 { margin-bottom: 10px; font-size: 1.08rem; line-height: 1.2; }
p { color: var(--muted); line-height: 1.72; }
.hero-lead { max-width: 650px; font-size: clamp(1.05rem, 1.55vw, 1.35rem); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--accent); box-shadow: 0 18px 36px rgba(205, 50, 186, 0.28); }
.button.primary:hover { background: var(--accent-strong); }
.button.secondary { color: var(--ink); background: #fff; box-shadow: inset 0 0 0 1px var(--line); }

.hero-actions, .pricing-points, .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-panel {
  display: grid;
  grid-template-columns: auto 156px;
  gap: 18px;
  align-items: center;
  width: fit-content;
  margin: 20px 0 18px;
}

.store-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: center;
}
.store-link {
  display: inline-flex;
  width: 188px;
  min-width: 188px;
  align-items: center;
  gap: 11px;
  height: 54px;
  padding: 0 16px;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  border-radius: 13px;
  background: #071625;
  box-shadow: 0 16px 32px rgba(7, 22, 37, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.store-link:hover {
  transform: translateY(-2px);
  background: #102334;
  box-shadow: 0 20px 38px rgba(7, 22, 37, 0.22);
}
.store-icon {
  display: block;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
}
.store-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.store-link strong {
  display: block;
  min-width: 0;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: 0;
}

.qr-card {
  display: grid;
  gap: 7px;
  justify-items: center;
  width: 156px;
  min-height: 156px;
  padding: 13px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 22, 37, 0.08);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 900;
  color: var(--ink);
}
.qr-card img { width: 86px; height: 86px; object-fit: contain; border-radius: 8px; }
.qr-card span { max-width: 118px; line-height: 1.15; }

.trust-line { margin-top: 12px; color: #253142; font-weight: 800; }
.hero-badges { margin-top: 18px; }
.hero-badges span, .pricing-points span {
  padding: 10px 13px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #243143;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: clamp(500px, 58vh, 590px);
  display: grid;
  place-items: center;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 560px);
  min-height: clamp(500px, 58vh, 590px);
}

.map-shape {
  position: absolute;
  width: min(100%, 560px);
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(205, 50, 186, 0.14), rgba(220, 239, 255, 0.76)),
    radial-gradient(circle at 72% 28%, rgba(255, 209, 102, 0.42), transparent 28%);
  clip-path: polygon(20% 5%, 72% 0, 98% 28%, 92% 84%, 48% 100%, 2% 72%, 4% 24%);
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(310px, 78vw);
  padding: 14px;
  border-radius: 46px;
  background:
    linear-gradient(145deg, #172232, #030a12 46%, #1f2d3e);
  box-shadow:
    0 26px 90px rgba(7, 22, 37, 0.22),
    inset 0 0 0 1px rgba(255,255,255,0.14);
}

.phone-shell::before,
.phone-shell::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: #0a1420;
  border-radius: 999px;
}

.phone-shell::before {
  left: -5px;
  top: 118px;
  width: 4px;
  height: 76px;
}

.phone-shell::after {
  right: -5px;
  top: 168px;
  width: 4px;
  height: 96px;
}

.phone-shell img {
  width: 100%;
  aspect-ratio: 9 / 18.6;
  object-fit: cover;
  border-radius: 30px;
  background: #fff;
}

.phone-top {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 96px;
  height: 27px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #071625;
  z-index: 2;
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 45px rgba(7, 22, 37, 0.13);
  backdrop-filter: blur(14px);
}

.floating-card span, .floating-card small { display: block; color: var(--muted); font-size: 0.72rem; font-weight: 800; }
.floating-card strong { display: block; color: var(--ink); font-size: 1.25rem; }
.card-price {
  left: clamp(12px, 7%, 52px);
  top: 118px;
}
.card-status {
  right: clamp(12px, 5%, 42px);
  bottom: 88px;
  max-width: 230px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(7, 22, 37, 0.08);
  overflow: hidden;
}

.trust-bar div {
  padding: 26px;
  border-right: 1px solid var(--line);
}
.trust-bar div:last-child { border-right: 0; }
.trust-bar strong { display: block; font-size: 2rem; }
.trust-bar span { color: var(--muted); font-size: 0.84rem; font-weight: 800; }
.trust-bar .rating-highlight {
  background:
    linear-gradient(135deg, rgba(205, 50, 186, 0.09), rgba(255,255,255,0.94)),
    #fff;
}
.trust-bar .rating-highlight strong {
  color: var(--accent);
  font-size: 2.35rem;
}

.reviews-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: end;
  width: min(1160px, calc(100% - 36px));
  margin: 34px auto 0;
}

.reviews-strip h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.55rem);
}

.review-controls {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.review-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(7, 22, 37, 0.08);
}
.review-carousel {
  min-width: 0;
  overflow: hidden;
}
.review-list {
  max-width: 100%;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 2px 18px;
  scrollbar-width: none;
}
.review-list::-webkit-scrollbar { display: none; }

.review-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  flex: 0 0 clamp(280px, 29vw, 330px);
  scroll-snap-align: start;
  min-height: 298px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 14px 40px rgba(7, 22, 37, 0.06);
}

.review-card .stars {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 900;
}

.review-body {
  position: relative;
  min-height: 0;
}
.review-card p {
  margin: 12px 0 0;
  color: #263548;
  font-size: 0.92rem;
  line-height: 1.58;
}
.review-text.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
.review-body.has-toggle:has(.is-collapsed)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fbfdff);
}
.review-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review-toggle {
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(205, 50, 186, 0.2);
  border-radius: 999px;
  color: var(--accent);
  background: #fff4fc;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}
.review-toggle:hover { border-color: rgba(205, 50, 186, 0.4); }

.review-card strong {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading p { max-width: 690px; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-grid article, .contact-form, .calculator, .faq-item, .map-shell, .partner-revenue-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(7, 22, 37, 0.07);
}

.benefit-grid article {
  padding: 26px;
  min-height: 250px;
}

.benefit-grid span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
}

.how, .map-section { width: 100%; max-width: none; background: linear-gradient(180deg, #f8fbff, #fff); }
.how > *, .map-section > * { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }

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

.steps article {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(7, 22, 37, 0.07);
}

.step-media {
  display: grid;
  place-items: center;
  min-height: 342px;
  padding: 22px 22px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(205, 50, 186, 0.16), transparent 44%),
    linear-gradient(180deg, #fff4fc, #f8fbff);
}
.step-media img {
  width: min(68%, 188px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border: 8px solid #071625;
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  background: #fff;
  box-shadow: 0 22px 42px rgba(7, 22, 37, 0.18);
}
.steps article > div:not(.step-media) { padding: 24px; }
.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
}

.pricing {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trailer-pricing {
  display: grid;
  gap: 22px;
}
.trailer-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 14px;
}
.trailer-category {
  display: grid;
  gap: 10px;
  min-width: 0;
}
.trailer-category > span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(205, 50, 186, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: #fff4fc;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.trailer-category > div {
  display: grid;
  gap: 10px;
}
.trailer-selector button {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 10px 14px;
  min-height: 176px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,255,0.96)),
    radial-gradient(circle at 78% 8%, rgba(205, 50, 186, 0.14), transparent 38%);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 18px 46px rgba(7, 22, 37, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.trailer-selector button:hover {
  transform: translateY(-2px);
  border-color: rgba(205, 50, 186, 0.32);
}
.trailer-selector button.is-active {
  border-color: rgba(205, 50, 186, 0.56);
  background:
    linear-gradient(180deg, rgba(255,244,252,0.98), rgba(248,251,255,0.98)),
    radial-gradient(circle at 78% 8%, rgba(205, 50, 186, 0.2), transparent 38%);
  box-shadow: 0 22px 56px rgba(205, 50, 186, 0.16);
}
.selector-media {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 130px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 45%, rgba(205, 50, 186, 0.13), transparent 46%),
    linear-gradient(135deg, #fff4fc, #eef6ff);
}
.selector-media img {
  width: min(112px, 104%);
  max-height: 108px;
  object-fit: contain;
}
.selector-copy {
  display: grid;
  gap: 6px;
  align-self: start;
}
.selector-copy strong {
  font-size: 1rem;
  line-height: 1.15;
}
.selector-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}
.selector-snippet {
  align-self: end;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  background: #071625;
  font-size: 0.78rem;
  font-weight: 900;
}
.trailer-pricing-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(260px, 0.88fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 8%, rgba(205, 50, 186, 0.1), transparent 32%),
    linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 22px 70px rgba(7, 22, 37, 0.08);
}
.trailer-pricing-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 36%, rgba(205, 50, 186, 0.14), transparent 34%),
    linear-gradient(135deg, #fff4fc, #eef6ff);
}
.trailer-pricing-media span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,0.78);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.trailer-pricing-media img {
  width: min(96%, 360px);
  max-height: 245px;
  object-fit: contain;
}
.trailer-pricing-copy {
  align-self: center;
}
.model-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.trailer-pricing-copy h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}
.best-for {
  display: block;
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 0.96rem;
}
.trailer-pricing-copy ul,
.partner-copy ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
}
.trailer-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.price-tile {
  display: grid;
  align-content: center;
  min-height: 122px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.price-tile.is-primary {
  color: #fff;
  background: #071625;
  border-color: #071625;
}
.price-tile span,
.price-tile small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.price-tile.is-primary span,
.price-tile.is-primary small { color: rgba(255,255,255,0.68); }
.price-tile strong {
  display: block;
  margin: 6px 0 3px;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1;
  white-space: nowrap;
}
.price-confidence {
  grid-column: 2 / 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(205, 50, 186, 0.22);
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
}
.price-confidence strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}
.price-confidence p {
  margin: 0;
  max-width: 560px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.map-shell {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #eef6ff;
}
.map-canvas { width: 100%; height: 520px; }
.map-consent {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.93), rgba(255,255,255,0.86)),
    radial-gradient(circle at 36% 36%, rgba(205, 50, 186, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(7,22,37,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7,22,37,0.04) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
}
.map-consent p { max-width: 540px; margin-bottom: 8px; }
.map-consent.is-config-needed {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,249,252,0.92)),
    radial-gradient(circle at 50% 42%, rgba(205, 50, 186, 0.12), transparent 36%),
    repeating-linear-gradient(45deg, rgba(7,22,37,0.035) 0 12px, rgba(205,50,186,0.05) 12px 24px);
}

.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding: 20px 24px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "-"; }
.faq-item p { padding: 0 24px 22px; margin: 0; }

.contact { align-items: start; }
.contact-form { display: grid; gap: 14px; padding: 28px; }
.contact-form label { display: grid; gap: 8px; color: #273548; font-size: 0.84rem; font-weight: 900; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--soft);
  outline: 0;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(205, 50, 186, 0.1);
}
.form-status { min-height: 24px; margin: 0; font-size: 0.9rem; font-weight: 800; }

.partner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: center;
  padding: 52px;
  border-radius: 28px;
  background: linear-gradient(135deg, #071625 0%, #142236 58%, #2a173b 100%);
}

.partner-page {
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fc 42%, #fff 100%);
}
.partner-page h1 { line-height: 1.06; }

.partner-hero {
  position: relative;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  padding: 72px 0 64px;
  overflow: hidden;
}

.partner-hero::before {
  content: "";
  position: absolute;
  inset: 72px auto auto -80px;
  width: 520px;
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(205, 50, 186, 0.12), rgba(220, 239, 255, 0.78)),
    repeating-linear-gradient(60deg, transparent 0 24px, rgba(7, 22, 37, 0.035) 25px 26px);
  clip-path: polygon(17% 4%, 76% 0, 100% 35%, 82% 90%, 28% 100%, 0 58%);
  z-index: -1;
}

.partner-hero-copy p {
  max-width: 680px;
  font-size: 1.12rem;
}

.partner-hero-panel {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(145deg, #071625, #2a173b);
  box-shadow: var(--shadow);
}

.partner-hero-panel span {
  display: block;
  color: rgba(255,255,255,0.72);
  font-weight: 900;
}

.partner-hero-panel strong {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: clamp(5rem, 11vw, 8rem);
  line-height: 0.9;
}

.partner-hero-panel p {
  color: rgba(255,255,255,0.76);
  font-weight: 800;
}

.partner-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.partner-model-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(7, 22, 37, 0.07);
}

.partner-model-card img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
  background: var(--soft);
}

.partner-model-card > div {
  padding: 24px;
}

.partner-model-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-model-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.partner-model-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-model-card dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.partner-calculator-section {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #f7f9fc, #fff);
}

.partner-calculator-section > * {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.premium-calculator {
  display: grid;
  grid-template-columns: 0.68fr 1fr 0.78fr;
  gap: 18px;
  align-items: stretch;
}

.calculator-models,
.calculator-controls,
.calculator-results {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(7, 22, 37, 0.07);
}

.calculator-models {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.calculator-models button {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.calculator-models button.is-active {
  border-color: rgba(205, 50, 186, 0.58);
  background: rgba(205, 50, 186, 0.07);
  box-shadow: 0 12px 30px rgba(205, 50, 186, 0.12);
}

.calculator-models img {
  width: 82px;
  aspect-ratio: 1.28;
  object-fit: cover;
  border-radius: 12px;
}

.calculator-controls {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.selected-model {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--soft);
}

.selected-model img {
  width: 128px;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 14px;
}

.selected-model span,
.calculator-results span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.selected-model strong {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
}

.selected-model p {
  margin: 6px 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.calculator-mode {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 6px;
  border-radius: 14px;
  background: var(--soft);
}

.calculator-mode button {
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.calculator-mode button.is-active {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(205, 50, 186, 0.22);
}

.calculator-controls label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  color: #263548;
  font-size: 0.92rem;
  font-weight: 900;
}

.calculator-controls input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--accent);
}

.calculator-controls output {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  min-width: 58px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.calculator-results {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, #071625, #2a173b);
  border-color: rgba(255,255,255,0.12);
}

.calculator-results span {
  color: rgba(255,255,255,0.66);
}

.calculator-results strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.calculator-results p {
  color: rgba(255,255,255,0.74);
  font-size: 0.9rem;
  line-height: 1.62;
}

.assumption-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
}

.assumption-list div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
}

.assumption-list dt {
  color: rgba(255,255,255,0.56);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.assumption-list dd {
  margin: 4px 0 0;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.calculator-results .estimate-note {
  margin-top: -4px;
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
}
.partner h2, .partner h3 { color: #fff; }
.partner p, .partner li { color: rgba(255,255,255,0.76); }
.partner-revenue-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    radial-gradient(circle at 80% 10%, rgba(205, 50, 186, 0.32), transparent 34%);
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
}
.partner-revenue-card > span {
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.partner-revenue-card > strong {
  color: #fff;
  font-size: clamp(1.85rem, 2.8vw, 2.45rem);
  line-height: 1.02;
}
.partner-revenue-card p { margin: 0; color: rgba(255,255,255,0.76); }

.system-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.system-stack span {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 10px;
  color: #fff;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
}
.partner-share {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
}
.partner-share span,
.partner-share small {
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.partner-share strong {
  grid-row: 1 / 3;
  color: #fff;
  font-size: 3rem;
  line-height: 0.9;
}
.partner-share small {
  grid-column: 2;
  text-transform: none;
  line-height: 1.35;
}

.calculator {
  padding: 28px;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
}
.calculator label { display: grid; gap: 10px; margin-top: 18px; color: rgba(255,255,255,0.82); font-size: 0.86rem; font-weight: 900; }
.calculator input { accent-color: var(--accent); width: 100%; }
.calc-result {
  margin-top: 26px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
}
.calc-result span { color: var(--muted); font-size: 0.78rem; font-weight: 900; }
.calc-result strong { display: block; margin-top: 6px; font-size: 2.5rem; }

.final-cta {
  width: min(920px, calc(100% - 36px));
  margin: 78px auto;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) auto;
  grid-template-areas:
    "icon title stores"
    "icon text stores";
  gap: 8px 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(205, 50, 186, 0.11), transparent 32%),
    linear-gradient(135deg, #fff, #f7f9fc);
  box-shadow: 0 24px 70px rgba(7, 22, 37, 0.09);
  text-align: left;
}
.final-cta img {
  grid-area: icon;
  width: 86px;
  margin: 0;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(7, 22, 37, 0.14);
}
.final-cta h2 {
  grid-area: title;
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
}
.final-cta p {
  grid-area: text;
  max-width: 560px;
  margin: 0;
}
.final-cta .store-buttons {
  grid-area: stores;
  grid-template-columns: 1fr;
  justify-self: end;
}
.centered { justify-content: center; }

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 34px;
  align-items: center;
  min-width: 0;
  margin-top: 34px;
  padding: 34px;
  color: #fff;
  background: #071625;
  border-radius: 28px 28px 0 0;
}
.footer img {
  width: 178px;
  max-width: none;
  height: auto;
  padding: 8px 10px;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
}
.footer p { max-width: 360px; margin: 12px 0 0; color: rgba(255,255,255,0.68); font-size: 0.9rem; }
.footer nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: flex-end;
  gap: 18px;
  max-width: 100%;
  min-width: 0;
  color: rgba(255,255,255,0.76);
  font-weight: 500;
}
.footer nav a,
.footer nav button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.footer nav a:hover,
.footer nav button:hover { color: #fff; text-decoration: underline; }

.redirect-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 20%, rgba(205, 50, 186, 0.15), transparent 34%),
    linear-gradient(135deg, #fff, #f8fbff 58%, #fff4fc);
}
.redirect-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 24px 18px;
}
.redirect-card {
  position: relative;
  width: min(100%, 470px);
  padding: clamp(24px, 4vw, 34px);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 28px 90px rgba(7, 22, 37, 0.13);
  backdrop-filter: blur(18px);
}
.redirect-card::before {
  content: "";
  position: absolute;
  inset: auto -86px -118px auto;
  width: 260px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(205, 50, 186, 0.16), rgba(220, 239, 255, 0.86));
  clip-path: polygon(18% 6%, 72% 0, 98% 30%, 91% 84%, 48% 100%, 3% 73%, 5% 25%);
  z-index: -1;
}
.redirect-logo {
  display: inline-flex;
  width: 164px;
  margin-bottom: 18px;
}
.redirect-logo img {
  width: 100%;
  height: auto;
}
.redirect-app-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 22, 37, 0.1);
}
.redirect-app-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.redirect-card h1 {
  max-width: none;
  margin: 8px 0 12px;
  font-size: clamp(1.9rem, 5vw, 2.55rem);
  line-height: 1;
}
.redirect-card p {
  max-width: 360px;
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.65;
}
.redirect-actions {
  display: grid;
  gap: 10px;
}
.redirect-store-link {
  width: 100%;
  min-width: 0;
  justify-content: center;
}
.redirect-fallback {
  width: 100%;
  justify-content: center;
  box-shadow: inset 0 0 0 1px var(--line);
}
.redirect-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
}

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 100;
  display: grid;
  justify-items: center;
  pointer-events: none;
}
.cookie-panel {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.85fr);
  gap: 22px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 90px rgba(7, 22, 37, 0.2);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}
.cookie-panel .eyebrow { margin-bottom: 12px; }
.cookie-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}
.cookie-panel p { margin-bottom: 0; font-size: 0.92rem; line-height: 1.55; }
.cookie-options {
  display: grid;
  gap: 10px;
}
.cookie-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}
.cookie-option strong,
.cookie-option small {
  display: block;
}
.cookie-option strong {
  margin-bottom: 4px;
  font-size: 0.94rem;
}
.cookie-option small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}
.cookie-option.is-locked { opacity: 0.82; }
.cookie-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-privacy {
  grid-column: 1 / -1;
  width: fit-content;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
}

.legal-page {
  min-height: 100vh;
  background: var(--soft);
}
.legal-main {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 90px;
}
.legal-card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(7, 22, 37, 0.07);
}
.legal-card h1 { font-size: clamp(2rem, 3.6vw, 3.2rem); }
.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.75vw, 1.38rem);
  line-height: 1.18;
}
.legal-card address { color: var(--muted); font-style: normal; line-height: 1.8; }
.legal-text h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}
.legal-text h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
}
.legal-text p,
.legal-text address,
.legal-text li {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}
.legal-text ul {
  margin: 10px 0 18px;
  padding-left: 22px;
}
.legal-text a:not(.button) {
  color: var(--accent);
  font-weight: 800;
}

.seo-page {
  background: #fff;
}
.seo-hero {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 34px;
  align-items: center;
  padding: clamp(72px, 9vw, 118px) 0 56px;
}
.seo-hero h1 {
  max-width: 760px;
}
.seo-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.seo-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  isolation: isolate;
}
.seo-map-shape {
  position: absolute;
  width: min(100%, 390px);
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(205, 50, 186, 0.15), rgba(220, 239, 255, 0.82)),
    radial-gradient(circle at 78% 24%, rgba(255, 209, 102, 0.34), transparent 30%);
  clip-path: polygon(18% 6%, 72% 0, 98% 30%, 91% 84%, 48% 100%, 3% 73%, 5% 25%);
  z-index: -1;
}
.seo-phone-shell {
  position: relative;
  width: min(218px, 60vw);
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(145deg, #172232, #030a12 46%, #1f2d3e);
  box-shadow:
    0 24px 80px rgba(7, 22, 37, 0.22),
    inset 0 0 0 1px rgba(255,255,255,0.14);
}
.seo-phone-shell::before,
.seo-phone-shell::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 4px;
  background: #0a1420;
  border-radius: 999px;
}
.seo-phone-shell::before {
  left: -5px;
  top: 84px;
  height: 54px;
}
.seo-phone-shell::after {
  right: -5px;
  top: 118px;
  height: 68px;
}
.seo-phone-shell img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 18.6;
  object-fit: cover;
  border-radius: 28px;
  background: #fff;
}
.seo-phone-top {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 72px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #071625;
  z-index: 2;
}
.seo-floating-card {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 45px rgba(7, 22, 37, 0.13);
  backdrop-filter: blur(14px);
}
.seo-floating-card span,
.seo-floating-card small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
}
.seo-floating-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.1;
}
.seo-floating-price {
  left: 0;
  top: 95px;
}
.seo-floating-price strong {
  color: var(--accent);
  font-size: 1.65rem;
}
.seo-floating-status {
  right: 0;
  bottom: 70px;
  max-width: 178px;
}
.seo-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0;
}
.seo-copy-block {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 18px 55px rgba(7, 22, 37, 0.06);
}
.seo-copy-block p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.seo-grid {
  display: grid;
  gap: 16px;
}
.seo-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.seo-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.seo-grid.benefits {
  grid-template-columns: repeat(5, 1fr);
}
.seo-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(7, 22, 37, 0.05);
}
.seo-grid article > span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}
.seo-grid h3 {
  margin: 8px 0;
  font-size: 1.02rem;
}
.seo-example-grid article {
  display: grid;
  align-items: center;
  min-height: 122px;
}
.seo-example-grid h3 {
  margin: 0;
}
.seo-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.seo-trailer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.seo-trailer-card {
  display: grid;
  grid-template-rows: 210px 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 8%, rgba(205, 50, 186, 0.08), transparent 32%),
    linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 18px 55px rgba(7, 22, 37, 0.07);
}
.seo-trailer-media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 45%, rgba(205, 50, 186, 0.13), transparent 42%),
    linear-gradient(135deg, #fff4fc, #eef6ff);
}
.seo-trailer-media span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.seo-trailer-media img {
  width: min(96%, 270px);
  max-height: 168px;
  object-fit: contain;
}
.seo-trailer-copy {
  padding: 22px 22px 8px;
}
.seo-trailer-copy h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}
.seo-trailer-copy strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.86rem;
}
.seo-trailer-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.seo-trailer-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.seo-trailer-copy li {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 0.74rem;
  font-weight: 800;
}
.seo-trailer-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 16px 22px 22px;
}
.seo-trailer-prices div {
  display: grid;
  align-content: center;
  min-height: 84px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.seo-trailer-prices div:first-child {
  color: #fff;
  background: #071625;
  border-color: #071625;
}
.seo-trailer-prices span,
.seo-trailer-prices small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}
.seo-trailer-prices div:first-child span,
.seo-trailer-prices div:first-child small {
  color: rgba(255,255,255,0.68);
}
.seo-trailer-prices strong {
  display: block;
  margin: 5px 0 2px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1;
  white-space: nowrap;
}
.seo-empty-model {
  max-width: 760px;
  padding: 28px;
  border: 1px solid rgba(205, 50, 186, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(205, 50, 186, 0.12), transparent 34%),
    linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 18px 55px rgba(7, 22, 37, 0.06);
}
.seo-empty-model h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
}
.seo-empty-model p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
}
.seo-empty-model .button {
  margin-top: 8px;
}
.seo-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-link-grid a,
.seo-link-grid span {
  display: inline-flex;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}
.seo-link-grid a:hover {
  color: var(--accent);
  border-color: rgba(205, 50, 186, 0.3);
}
.seo-faq {
  padding-bottom: 24px;
}

@media (max-width: 1320px) {
  .footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .footer nav {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    justify-content: flex-start;
    gap: 12px;
  }
}

@media (max-width: 980px) {
  .site-header { gap: 12px; }
  .nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .menu-open .nav { display: flex; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .section-grid, .partner { grid-template-columns: 1fr; }
  .partner-hero, .premium-calculator { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-visual { min-height: 560px; }
  .phone-stage { width: min(100%, 500px); }
  .card-price { left: clamp(8px, 2vw, 26px); }
  .card-status { right: clamp(8px, 2vw, 26px); }
  .benefit-grid, .steps, .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .reviews-strip { grid-template-columns: 1fr; }
  .review-card { flex-basis: min(82%, 360px); }
  .seo-hero {
    grid-template-columns: 1fr;
    padding-top: 76px;
  }
  .seo-hero-visual {
    width: min(100%, 560px);
    min-height: 410px;
    margin: 0 auto;
  }
  .seo-floating-price { left: clamp(0px, 7vw, 34px); }
  .seo-floating-status { right: clamp(0px, 7vw, 34px); }
  .seo-grid.four,
  .seo-grid.three,
  .seo-grid.benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .seo-trailer-card {
    grid-template-rows: 190px 1fr auto;
  }
  .trailer-pricing-card { grid-template-columns: 1fr; }
  .trailer-price-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .price-confidence { grid-column: 1; }
  .partner-model-grid { grid-template-columns: 1fr; }
  .trust-bar div:nth-child(2) { border-right: 0; }
  .trust-bar div { border-bottom: 1px solid var(--line); }
  .trust-bar div:nth-child(n+3) { border-bottom: 0; }
}

@media (max-width: 680px) {
  .brand { min-width: 124px; }
  .brand img { width: 124px; }
  .site-header { min-height: 68px; }
  .nav { inset-top: 68px; }
  .section { padding: 66px 0; }
  .hero {
    display: block;
    min-height: 0;
    padding-top: 36px;
    padding-bottom: 28px;
    overflow: hidden;
  }
  .partner-hero { min-height: 0; padding-top: 42px; }
  .partner-page h1 { font-size: clamp(2rem, 9.2vw, 2.5rem); }
  .partner-hero-panel {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 4px 12px;
    align-items: center;
    margin-top: 24px;
    padding: 14px;
    border-radius: 20px;
  }
  .partner-hero-panel span { font-size: 0.72rem; line-height: 1.25; }
  .partner-hero-panel strong { grid-row: 1 / 3; font-size: 2.75rem; white-space: nowrap; }
  .partner-hero-panel p { margin: 0; font-size: 0.76rem; line-height: 1.35; }
  .partner-hero-copy p { font-size: 0.94rem; line-height: 1.55; }
  .selected-model { grid-template-columns: 1fr; }
  .selected-model img { width: 100%; }
  .calculator-models button { grid-template-columns: 72px 1fr; }
  .assumption-list { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 2; }
  h1 { max-width: 340px; font-size: clamp(2.25rem, 11vw, 3.05rem); line-height: 0.98; }
  h2 { font-size: clamp(1.9rem, 10vw, 2.7rem); }
  .hero-lead { padding-right: 0; font-size: 0.98rem; line-height: 1.58; }
  .download-panel { grid-template-columns: 1fr; }
  .qr-card { display: none; }
  .store-buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-link { width: 100%; min-width: 0; height: 50px; padding: 0 12px; gap: 8px; }
  .store-icon { flex-basis: 23px; width: 23px; height: 23px; }
  .store-link strong { font-size: 0.88rem; }
  .hero-visual {
    position: absolute;
    top: 116px;
    right: -28px;
    z-index: 0;
    width: 172px;
    min-height: 268px;
    margin-top: 0;
    opacity: 0.16;
    pointer-events: none;
  }
  .phone-stage {
    width: 172px;
    min-height: 268px;
  }
  .map-shape { display: none; }
  .phone-shell { width: 150px; border-radius: 24px; padding: 7px; }
  .phone-shell img { border-radius: 25px; }
  .phone-top { top: 11px; width: 48px; height: 13px; }
  .floating-card { padding: 12px; border-radius: 14px; }
  .floating-card strong { font-size: 1rem; }
  .card-price, .card-status { display: none; }
  .hero-badges { display: none; }
  .benefit-grid, .steps, .trust-bar { grid-template-columns: 1fr; }
  .trust-bar div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-bar div:last-child { border-bottom: 0; }
  .review-controls { margin-top: 16px; }
  .review-card { flex-basis: 86%; }
  .seo-hero {
    padding-top: 48px;
  }
  .seo-hero-visual {
    min-height: 310px;
    margin-top: 8px;
  }
  .seo-map-shape {
    width: min(100%, 300px);
  }
  .seo-phone-shell {
    width: 154px;
    padding: 8px;
    border-radius: 30px;
  }
  .seo-phone-shell img {
    border-radius: 24px;
  }
  .seo-phone-shell::before {
    top: 66px;
    height: 44px;
  }
  .seo-phone-shell::after {
    top: 94px;
    height: 54px;
  }
  .seo-phone-top {
    top: 13px;
    width: 56px;
    height: 16px;
  }
  .seo-floating-card {
    padding: 11px 12px;
    border-radius: 14px;
  }
  .seo-floating-card strong {
    font-size: 0.96rem;
  }
  .seo-floating-price {
    left: 2px;
    top: 72px;
  }
  .seo-floating-price strong {
    font-size: 1.24rem;
  }
  .seo-floating-status {
    right: 2px;
    bottom: 72px;
    max-width: 136px;
  }
  .seo-copy-block {
    padding: 22px;
  }
  .seo-grid.four,
  .seo-grid.three,
  .seo-grid.benefits {
    grid-template-columns: 1fr;
  }
  .seo-trailer-grid {
    grid-template-columns: 1fr;
  }
  .seo-trailer-prices {
    grid-template-columns: 1fr;
  }
  .seo-trailer-prices div {
    min-height: 0;
  }
  .seo-section {
    padding: 42px 0;
  }
  .trailer-pricing-card { padding: 20px; }
  .trailer-pricing-media { min-height: 210px; }
  .trailer-price-grid { grid-template-columns: 1fr 1fr; }
  .price-confidence {
    display: grid;
    align-items: start;
  }
  .partner { padding: 32px 20px; }
  .final-cta {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title"
      "text"
      "stores";
    justify-items: center;
    padding: 34px 20px;
    text-align: center;
  }
  .final-cta img { width: 82px; margin-bottom: 8px; }
  .final-cta .store-buttons {
    width: 100%;
    max-width: 390px;
    justify-self: center;
    margin-top: 10px;
  }
  .footer { grid-template-columns: 1fr; align-items: flex-start; padding: 28px 22px; }
  .footer nav {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    justify-content: flex-start;
    gap: 12px;
  }
  .cookie-banner { inset: auto 10px 10px; }
  .cookie-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 18px;
    border-radius: 20px;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .button {
    width: 100%;
  }
  .map-shell, .map-canvas { min-height: 420px; height: 420px; }
}
