/* Yolda Kalma marketing site */

:root {
  --ink: #132b45;
  --muted: #607083;
  --paper: #f7f9fb;
  --surface: #ffffff;
  --line: #dce4eb;
  --green: #c4681e;
  --green-dark: #193a5d;
  --mint: #f0b47e;
  --mint-soft: #f8eadf;
  --orange: #c4681e;
  --shadow: 0 24px 70px rgba(25, 58, 93, 0.18);
  --font-sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 7px 22px rgba(25, 58, 93, 0.18);
  image-rendering: auto;
}

@media (min-width: 901px) {
  .brand-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 11px;
  }

  .brand img.brand-logo {
    width: 44px;
    height: 44px;
  }
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #43514c;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--green);
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 19px;
  font-size: 14px;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 48px));
  min-height: 680px;
  margin: 0 auto;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 44px;
  padding: 42px 0 70px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dce8e1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 14px 9px 10px;
  color: #405149;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 9px;
  height: 9px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px var(--mint-soft);
}

h1 {
  max-width: 720px;
  margin: 24px 0 23px;
  font-size: clamp(54px, 6.1vw, 84px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.97;
}

h1 span {
  position: relative;
  color: var(--green);
}

h1 span::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 2px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  opacity: 0.8;
  transform: rotate(-1deg);
  z-index: -1;
}

.hero-description {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--green);
  box-shadow: 0 12px 30px rgba(196, 104, 30, 0.25);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 16px 32px rgba(25, 58, 93, 0.28);
}

.button-primary span {
  font-size: 21px;
}

.button-secondary {
  border: 1px solid #cbd8d1;
  background: white;
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #a7b9af;
  box-shadow: 0 10px 25px rgba(20, 35, 31, 0.08);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #52625b;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-checks span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--green);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(210, 220, 230, 0.95);
  border-radius: 54px 54px 54px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.25)),
    repeating-linear-gradient(24deg, transparent 0 48px, rgba(25, 58, 93, 0.045) 49px 50px),
    repeating-linear-gradient(115deg, transparent 0 68px, rgba(196, 104, 30, 0.04) 69px 70px),
    #edf2f6;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  border: 1px solid rgba(25, 58, 93, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-visual::before {
  width: 420px;
  height: 420px;
}

.hero-visual::after {
  width: 520px;
  height: 520px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.glow-one {
  top: 8%;
  right: -8%;
  width: 210px;
  height: 210px;
  background: rgba(240, 180, 126, 0.42);
}

.glow-two {
  bottom: 0;
  left: -3%;
  width: 170px;
  height: 170px;
  background: rgba(25, 58, 93, 0.12);
}

.route {
  position: absolute;
  width: 210px;
  border-top: 3px dashed rgba(196, 104, 30, 0.5);
}

.route-a {
  top: 28%;
  left: -7%;
  transform: rotate(26deg);
}

.route-b {
  right: -8%;
  bottom: 27%;
  transform: rotate(-33deg);
}

.map-pin {
  position: absolute;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 6px solid white;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(20, 35, 31, 0.18);
  transform: rotate(-45deg);
}

.map-pin span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.pin-a {
  top: 20%;
  left: 13%;
}

.pin-b {
  right: 10%;
  bottom: 17%;
  background: var(--green-dark);
}

.phone {
  position: relative;
  z-index: 3;
  width: 292px;
  border: 8px solid var(--green-dark);
  border-radius: 42px;
  background: var(--green-dark);
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.phone-top {
  position: relative;
  display: flex;
  height: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  color: white;
  font-size: 8px;
  font-weight: 800;
}

.phone-island {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 68px;
  height: 15px;
  border-radius: 999px;
  background: #0a1b2c;
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  border-radius: 30px;
  background: #fbfdfb;
  padding: 21px 17px 17px;
}

.phone-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-heading div {
  display: grid;
  gap: 4px;
}

.phone-heading small {
  color: #77847f;
  font-size: 9px;
}

.phone-heading strong {
  font-size: 13px;
  letter-spacing: -0.03em;
}

.avatar {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(20, 35, 31, 0.12);
}

.location-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid #e2ebe6;
  border-radius: 14px;
  background: white;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(25, 58, 93, 0.08);
}

.location-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: var(--mint-soft);
  color: var(--green);
  font-size: 17px;
}

.location-card div {
  display: grid;
  gap: 3px;
}

.location-card small {
  color: #8b9692;
  font-size: 8px;
}

.location-card strong {
  font-size: 9px;
}

.service-label {
  margin: 19px 0 10px;
  font-size: 10px;
  font-weight: 800;
}

.live-location-panel {
  overflow: hidden;
  border: 1px solid #d9e2ea;
  border-radius: 14px;
  background: white;
  box-shadow: 0 7px 20px rgba(25, 58, 93, 0.08);
}

.live-route {
  position: relative;
  height: 72px;
  background:
    repeating-linear-gradient(25deg, transparent 0 23px, rgba(25, 58, 93, 0.045) 24px 25px),
    #eef3f7;
}

.customer-point,
.driver-point {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(25, 58, 93, 0.18);
}

.customer-point {
  top: 21px;
  left: 26px;
  width: 18px;
  height: 18px;
  background: var(--green-dark);
}

.driver-point {
  right: 29px;
  bottom: 15px;
  width: 25px;
  height: 25px;
  background: var(--orange);
  color: white;
  font-size: 10px;
}

.route-line {
  position: absolute;
  top: 35px;
  right: 46px;
  left: 41px;
  border-top: 2px dashed rgba(196, 104, 30, 0.6);
  transform: rotate(7deg);
}

.live-meta {
  display: grid;
  gap: 3px;
  padding: 9px 11px 10px;
}

.live-meta strong {
  color: var(--green-dark);
  font-size: 9px;
}

.live-meta small {
  color: #718094;
  font-size: 8px;
}

.phone-button {
  width: 100%;
  min-height: 40px;
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color: white;
  font: inherit;
  font-size: 9px;
  font-weight: 800;
}

.provider-card {
  position: absolute;
  right: 2%;
  bottom: 17%;
  z-index: 5;
  display: flex;
  min-width: 216px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(210, 220, 230, 0.95);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  padding: 11px 12px;
  box-shadow: 0 18px 38px rgba(25, 58, 93, 0.16);
  backdrop-filter: blur(8px);
  animation: float 4s ease-in-out infinite;
}

.provider-avatar {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--green-dark);
  color: white;
  font-size: 10px;
  font-weight: 800;
}

.provider-card div {
  display: grid;
  flex: 1;
  gap: 4px;
}

.provider-card strong {
  font-size: 11px;
}

.provider-card small {
  color: #708078;
  font-size: 9px;
}

.verified {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 10px;
}

.trust-strip {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 76px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 14px 44px rgba(20, 35, 31, 0.05);
}

.trust-strip p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 22px 26px;
}

.trust-strip p + p {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  color: var(--green-dark);
  font-size: 15px;
}

.trust-strip span {
  color: #78857f;
  font-size: 11px;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 42px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading h2,
.trust-copy h2,
.final-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.audiences {
  padding: 70px 0 122px;
}

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

.audience-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 34px;
  padding: 42px;
}

.customer-card {
  border: 1px solid #efd8c5;
  background: #f9eee5;
}

.provider-side {
  background: var(--ink);
  color: white;
}

.card-topline {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--surface);
  color: var(--green);
  font-size: 17px;
  box-shadow: 0 7px 18px rgba(25, 58, 93, 0.1);
}

.provider-side .audience-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--mint);
  box-shadow: none;
}

.audience-card h3 {
  max-width: 480px;
  margin: 27px 0 16px;
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.audience-card > p {
  max-width: 470px;
  margin: 0;
  color: #617184;
  font-size: 15px;
  line-height: 1.7;
}

.provider-side > p {
  color: #b9c7d5;
}

.audience-card ul {
  display: grid;
  max-width: 470px;
  gap: 0;
  margin: 27px 0 25px;
  padding: 0;
  list-style: none;
}

.audience-card li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 9px;
  border-top: 1px solid rgba(25, 58, 93, 0.14);
  padding: 13px 0;
  color: #40556b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.provider-side li {
  border-color: rgba(255, 255, 255, 0.12);
  color: #d9e3ec;
}

.audience-card li span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.provider-side li span {
  color: var(--mint);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.provider-side .text-link {
  color: var(--mint);
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.mini-ticket {
  position: absolute;
  right: 27px;
  bottom: 26px;
  left: 27px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(196, 104, 30, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  box-shadow: 0 14px 34px rgba(25, 58, 93, 0.1);
}

.ticket-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--green);
  color: white;
  font-size: 14px;
}

.mini-ticket div {
  display: grid;
  flex: 1;
  gap: 4px;
}

.mini-ticket small {
  color: #758497;
  font-size: 9px;
}

.mini-ticket strong {
  font-size: 11px;
}

.mini-ticket b {
  border-radius: 999px;
  background: var(--mint-soft);
  padding: 7px 10px;
  color: var(--green-dark);
  font-size: 10px;
}

.opportunity-stack {
  position: absolute;
  right: 25px;
  bottom: 23px;
  left: 25px;
  display: grid;
  gap: 8px;
}

.opportunity-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  padding: 13px 15px;
  color: #dce6f0;
  font-size: 10px;
  backdrop-filter: blur(8px);
}

.opportunity-stack div:first-child {
  margin-right: 52px;
}

.opportunity-stack div:last-child {
  margin-left: 52px;
}

.opportunity-stack b {
  color: var(--mint);
}

.how-it-works {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  color: white;
  padding: 112px 0 118px;
}

.how-it-works::before {
  position: absolute;
  top: -260px;
  right: -160px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(240, 180, 126, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(240, 180, 126, 0.03),
    0 0 0 180px rgba(240, 180, 126, 0.02);
  content: "";
}

.light-heading {
  position: relative;
  z-index: 2;
}

.light-heading .section-kicker {
  color: var(--mint);
}

.light-heading > p {
  color: #bdcad7;
}

.steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.steps article {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  padding: 31px;
}

.steps article:nth-child(2) {
  background: var(--mint);
  color: var(--ink);
}

.step-number {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.steps article:nth-child(2) .step-number {
  color: rgba(20, 35, 31, 0.48);
}

.step-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 54px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--mint);
  font-size: 27px;
}

.steps article:nth-child(2) .step-symbol {
  background: rgba(255, 255, 255, 0.65);
  color: var(--green-dark);
}

.steps h3 {
  margin: 23px 0 11px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.steps p {
  margin: 0;
  color: #bdcad7;
  font-size: 12px;
  line-height: 1.65;
}

.steps article:nth-child(2) p {
  color: #4a3a2e;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  align-items: center;
  gap: 100px;
  padding-top: 120px;
  padding-bottom: 118px;
}

.trust-copy > p {
  max-width: 500px;
  margin: 22px 0 29px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.trust-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(25, 58, 93, 0.055);
}

.trust-list article > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  background: var(--mint-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.trust-list h3 {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.trust-list p {
  margin: 0;
  color: #718094;
  font-size: 12px;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 410px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
  border-radius: 42px 42px 42px 16px;
  background: var(--green);
  color: white;
  padding: 64px 72px;
}

.final-copy,
.final-actions,
.store-badges {
  position: relative;
  z-index: 2;
}

.final-copy .section-kicker {
  color: var(--mint);
}

.final-copy > p {
  max-width: 570px;
  margin: 20px 0 0;
  color: #f6e6d9;
  font-size: 15px;
  line-height: 1.7;
}

.final-actions {
  display: grid;
  gap: 12px;
  min-width: 205px;
}

.store-badges {
  display: grid;
  min-width: 270px;
  gap: 10px;
}

.store-badge {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 13px;
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 12px 28px rgba(25, 58, 93, 0.16);
}

.store-badge[aria-disabled="true"] {
  cursor: default;
  opacity: 0.92;
}

.store-badge-dark {
  background: var(--ink);
  color: white;
}

.store-badge-light {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: white;
  color: var(--ink);
}

.store-symbol {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 18px;
  font-weight: 850;
}

.store-badge-light .store-symbol {
  border-color: #dce4eb;
  background: #f2f5f8;
  color: var(--green);
}

.play-symbol {
  padding-left: 3px;
  font-size: 15px;
}

.store-badge > span:last-child {
  display: grid;
  gap: 3px;
}

.store-badge small {
  font-size: 9px;
  letter-spacing: 0.03em;
  opacity: 0.7;
}

.store-badge strong {
  font-size: 14px;
  letter-spacing: -0.025em;
}

.cta-light {
  background: var(--mint);
  color: var(--ink);
}

.cta-light:hover,
.cta-light:focus-visible {
  background: white;
}

.cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: white;
}

.cta-outline:hover,
.cta-outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.cta-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.orbit-one {
  right: -120px;
  width: 420px;
  height: 420px;
}

.orbit-two {
  right: -30px;
  width: 240px;
  height: 240px;
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 72px auto 0;
  overflow: hidden;
  border-radius: 36px 36px 0 0;
  background: #102b46;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 1.15fr 1.35fr;
  gap: 42px;
  padding: 58px 54px 50px;
}

.footer-brand {
  color: white;
}

.footer-intro p {
  max-width: 270px;
  margin: 20px 0 18px;
  font-size: 13px;
  line-height: 1.7;
}

.footer-platforms {
  display: flex;
  gap: 8px;
}

.footer-platforms span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 10px;
  font-weight: 800;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column h3,
.support-card h3 {
  margin: 2px 0 10px;
  color: white;
  font-size: 13px;
}

.footer-column a,
.footer-column > span {
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #f0b47e;
}

.footer-legal > span {
  cursor: default;
}

.footer-legal a,
.footer-legal .cookie-prefs-link {
  max-width: 28ch;
}

.footer-column .cookie-prefs-link {
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
  color: inherit;
}

.support-card {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.support-kicker {
  color: #f0b47e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
}

.whatsapp-button {
  display: flex;
  min-height: 58px;
  margin-top: 17px;
  align-items: center;
  gap: 11px;
  border-radius: 16px;
  background: white;
  padding: 10px 13px;
  color: #102b46;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 20px;
  font-weight: 900;
}

.whatsapp-button > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.whatsapp-button small {
  color: #718096;
  font-size: 9px;
  font-weight: 700;
}

.whatsapp-button strong {
  white-space: nowrap;
  font-size: 12px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 54px;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom address {
  font-style: normal;
}

.footer-bottom > a {
  justify-self: end;
  color: white;
  font-weight: 800;
}

.mobile-dock {
  display: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-description {
    margin: 0 auto;
  }

  .hero-actions,
  .hero-checks {
    justify-content: center;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p {
    max-width: 620px;
  }

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

  .trust-section {
    gap: 50px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .final-actions {
    display: flex;
    min-width: 0;
  }

  .store-badges {
    min-width: 0;
  }

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

  .support-card {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .trust-strip,
  .section-shell,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    gap: 34px;
    padding: 30px 0 54px;
  }

  .eyebrow {
    font-size: 10px;
  }

  h1 {
    margin-top: 20px;
    font-size: clamp(44px, 14.5vw, 62px);
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.62;
  }

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

  .button {
    width: 100%;
  }

  .hero-checks {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-visual {
    min-height: 480px;
    border-radius: 34px 34px 34px 14px;
  }

  .phone {
    width: 246px;
  }

  .phone-screen {
    padding: 17px 13px 13px;
  }

  .provider-card {
    right: 50%;
    bottom: 4%;
    transform: translateX(50%);
    animation: none;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 54px;
  }

  .trust-strip p {
    padding: 18px;
  }

  .trust-strip p + p {
    border-left: 0;
  }

  .trust-strip p:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .trust-strip p:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-heading h2,
  .trust-copy h2,
  .final-copy h2 {
    font-size: 38px;
  }

  .audiences {
    padding: 54px 0 78px;
  }

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

  .audience-card {
    min-height: 610px;
    border-radius: 27px;
    padding: 29px 24px;
  }

  .audience-card h3 {
    font-size: 32px;
  }

  .audience-card li {
    font-size: 11px;
  }

  .mini-ticket {
    right: 18px;
    bottom: 19px;
    left: 18px;
  }

  .opportunity-stack {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .how-it-works {
    padding: 78px 0 82px;
  }

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

  .steps article {
    min-height: auto;
    padding: 26px;
  }

  .step-symbol {
    margin-top: 32px;
  }

  .trust-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 78px;
    padding-bottom: 76px;
  }

  .trust-list article {
    grid-template-columns: 44px 1fr;
    padding: 17px;
  }

  .trust-list article > span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .final-cta {
    min-height: 0;
    gap: 34px;
    border-radius: 29px 29px 29px 12px;
    padding: 46px 25px;
  }

  .final-actions {
    display: grid;
  }

  .store-badges {
    width: 100%;
  }

  .site-footer {
    margin-top: 46px;
    border-radius: 28px 28px 0 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 24px 34px;
  }

  .footer-intro p {
    max-width: 100%;
  }

  .footer-column {
    gap: 11px;
  }

  .support-card {
    max-width: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 21px 24px 104px;
  }

  .footer-bottom > a {
    justify-self: start;
  }

  .mobile-dock {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    border: 1px solid rgba(20, 35, 31, 0.1);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.94);
    padding: 7px;
    box-shadow: 0 15px 45px rgba(20, 35, 31, 0.19);
    backdrop-filter: blur(14px);
  }

  .mobile-dock a {
    display: grid;
    min-height: 44px;
    place-items: center;
    border-radius: 13px;
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-dock a:first-child {
    background: var(--green);
    color: white;
  }

  .mobile-dock a:last-child {
    background: #eef4f1;
    color: var(--ink);
  }
}

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

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