:root {
  --navy: #0a1f44;
  --navy-deep: #06152e;
  --navy-mid: #12305f;
  --orange: #ff6b00;
  --orange-light: #ffa726;
  --orange-soft: rgba(255, 107, 0, 0.12);
  --white: #ffffff;
  --bg: #f5f7fb;
  --bg-soft: #eef2f8;
  --muted: #5c6b80;
  --text: #0a1f44;
  --line: #d9e0ea;
  --success: #1b8a4a;
  --danger: #c62828;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 8px 24px rgba(10, 31, 68, 0.07);
  --shadow-lg: 0 24px 48px rgba(10, 31, 68, 0.16);
  --max: 1120px;
  --space-section: 88px;
  --space-section-sm: 52px;
  --lh-body: 1.65;
  --lh-tight: 1.15;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: var(--lh-body);
  font-size: 1.025rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: #e65f00;
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 21, 46, 0.92);
  color: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
  color: var(--white);
}

.brand img.mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand img.wordmark {
  height: 26px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 107, 0, 0.18);
  color: var(--orange-light);
  text-decoration: none;
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  color: var(--white) !important;
  padding: 9px 16px;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.28);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: linear-gradient(90deg, #ff7a1a, #ffb03a);
  color: var(--white) !important;
  filter: brightness(1.04);
}

/* —— Hero —— */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 92% 8%, rgba(255, 107, 0, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 8% 90%, rgba(18, 48, 95, 0.9), transparent 60%),
    linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 42%, var(--navy-mid) 100%);
  color: var(--white);
  padding: clamp(56px, 9vw, 100px) 0;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  opacity: 0.12;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 107, 0, 0.16);
  border: 1px solid rgba(255, 167, 38, 0.35);
  color: var(--orange-light);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: var(--lh-tight);
  letter-spacing: -0.025em;
  font-weight: 800;
  max-width: 14ch;
}

.hero h1 .accent {
  color: var(--orange-light);
}

.hero p.lede {
  margin: 0 0 28px;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 4% 4%;
  background: radial-gradient(circle, rgba(255, 167, 38, 0.32), transparent 68%);
  filter: blur(28px);
  z-index: 0;
}

.hero-proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proofs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.hero-proofs li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
  flex-shrink: 0;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.98rem;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  text-decoration: none;
  min-height: 50px;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.28);
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s ease,
    filter 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.btn:hover {
  text-decoration: none;
  color: var(--white);
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 107, 0, 0.34);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
  box-shadow: 0 6px 14px rgba(255, 107, 0, 0.22);
}

.btn:focus-visible {
  outline: 2px solid var(--orange-light);
  outline-offset: 3px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  filter: none;
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  filter: none;
  box-shadow: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* —— Sections —— */
section {
  padding: var(--space-section) 0;
}

.section-alt {
  background: var(--bg);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: var(--lh-tight);
  font-weight: 800;
  color: var(--navy);
}

.section-intro {
  color: var(--muted);
  margin: 0 0 40px;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* —— Trust strip —— */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 0, 0.25);
}

.trust-item .trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.trust-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* —— How it works + mocks —— */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps-5 {
  grid-template-columns: repeat(5, 1fr);
}

.step,
.cat,
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, border-color 0.2s ease;
}

.step:hover,
.cat:hover,
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 31, 68, 0.12);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 0.95rem;
  box-shadow: 0 6px 14px rgba(255, 107, 0, 0.25);
}

.cat h3,
.card h3,
.step h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.cat p,
.card p,
.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.96rem;
}

.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  align-items: start;
}

.mock-caption {
  text-align: center;
  margin: 12px 0 0;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--muted);
}

.mock-note {
  margin: 20px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* —— App Preview gallery —— */
.app-preview {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.app-preview-viewport {
  min-width: 0;
}

.app-preview-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 18px 8px 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.app-preview-track:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.app-preview-track::-webkit-scrollbar {
  display: none;
}

.app-preview-slide {
  flex: 0 0 auto;
  width: min(78vw, 280px);
  scroll-snap-align: center;
  margin: 0;
  text-align: center;
  opacity: 0.55;
  transform: scale(0.94);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.app-preview-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.app-preview-frame,
.app-preview-phone {
  background: var(--white);
  border-radius: 18px;
  padding: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.app-preview-frame img,
.app-preview-phone img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center top;
  background: var(--navy);
}

.app-preview-caption {
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.app-preview-nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.app-preview-nav:hover {
  background: var(--orange-soft);
  border-color: rgba(255, 107, 0, 0.35);
  color: var(--orange);
  transform: scale(1.04);
}

.app-preview-nav:active {
  transform: scale(0.97);
}

.app-preview-nav:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.app-preview-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.app-preview-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.app-preview-dot.is-active {
  width: 22px;
  background: var(--orange);
}

.app-preview-hint {
  text-align: center;
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* —— Phone mock (CSS UI) —— */
.phone-mock {
  position: relative;
  z-index: 1;
  width: min(100%, 268px);
  margin-inline: auto;
  background: #0d1526;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.phone-mock.phone-mock-lg {
  width: min(100%, 288px);
}

.phone-notch {
  width: 88px;
  height: 10px;
  margin: 4px auto 10px;
  background: #1a2438;
  border-radius: 999px;
}

.phone-screen {
  background: #f3f5f8;
  border-radius: 26px;
  min-height: 420px;
  padding: 14px 12px 16px;
  color: var(--navy);
  overflow: hidden;
}

.phone-screen.screen-dark {
  background: linear-gradient(180deg, #0a1f44 0%, #132a4d 100%);
  color: var(--white);
  min-height: 460px;
}

.mock-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 12px;
  opacity: 0.75;
}

.mock-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.mock-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.15);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.screen-dark .mock-pill {
  background: rgba(255, 255, 255, 0.12);
  color: var(--orange-light);
}

.mock-field {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 0.78rem;
}

.screen-dark .mock-field {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.mock-field strong {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.55;
  margin-bottom: 2px;
}

.mock-cta {
  margin-top: 12px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 11px;
  border-radius: 999px;
}

.mock-offer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}

.mock-offer .price {
  font-weight: 800;
  color: var(--orange);
  font-size: 0.95rem;
}

.mock-map {
  height: 140px;
  border-radius: 14px;
  margin: 8px 0 12px;
  background:
    linear-gradient(135deg, rgba(27, 138, 74, 0.15), transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 18px,
      rgba(10, 31, 68, 0.06) 18px,
      rgba(10, 31, 68, 0.06) 19px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 18px,
      rgba(10, 31, 68, 0.06) 18px,
      rgba(10, 31, 68, 0.06) 19px
    ),
    #e8eef5;
  position: relative;
}

.mock-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.mock-pin.pickup {
  background: var(--orange);
  left: 28%;
  top: 58%;
}

.mock-pin.driver {
  background: #1565c0;
  left: 48%;
  top: 38%;
}

.mock-pin.drop {
  background: var(--success);
  left: 72%;
  top: 28%;
}

.mock-status {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--success);
}

.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cats-8 {
  grid-template-columns: repeat(4, 1fr);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255, 107, 0, 0.22), transparent 55%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 55%, var(--navy-mid));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  margin: 0;
  color: var(--white);
}

.cta-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  line-height: 1.6;
}

.cta-band .btn {
  flex-shrink: 0;
}

.download-band {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.download-band .btn-row {
  justify-content: center;
  margin-top: 8px;
}

.page-hero {
  padding: var(--space-section-sm) 0 24px;
}

.prose {
  max-width: 46rem;
}

.prose h2 {
  margin-top: 2.25rem;
}

.prose p,
.prose li {
  color: #24344f;
}

.draft-banner {
  background: #fff4e0;
  color: #7a3e00;
  border: 1px solid #ffd59a;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  margin: 8px 0 24px;
}

.form {
  max-width: 36rem;
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 650;
  font-size: 0.95rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 107, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.phone-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 650;
}

.form-status.busy {
  display: block;
  background: #eef2f7;
  color: var(--navy);
}

.form-status.ok {
  display: block;
  background: #e8f6ee;
  color: var(--success);
}

.form-status.err {
  display: block;
  background: #fdecea;
  color: var(--danger);
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq details:hover,
.faq details[open] {
  border-color: rgba(255, 107, 0, 0.28);
  box-shadow: var(--shadow);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
}

.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

/* —— Help & Support —— */
.help-hero {
  background:
    radial-gradient(ellipse 70% 55% at 92% 8%, rgba(255, 107, 0, 0.2), transparent 55%),
    linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  color: var(--white);
  padding: clamp(48px, 8vw, 88px) 0;
}

.help-hero-inner {
  max-width: 40rem;
}

.help-hero .hero-kicker {
  margin-bottom: 16px;
}

.help-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--white);
}

.help-hero .lede {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  line-height: 1.65;
}

.help-hero .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.help-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 0 4px;
}

.help-toc a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.help-toc a:hover {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.08);
  color: var(--orange);
  text-decoration: none;
}

.help-block {
  max-width: 46rem;
  scroll-margin-top: 96px;
}

#contact-support {
  scroll-margin-top: 96px;
}

/* —— About —— */
.about-prose {
  max-width: 42rem;
  scroll-margin-top: 96px;
}

.about-prose h2 {
  margin: 0 0 14px;
}

.about-prose p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.about-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.about-value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--orange);
}

.about-value h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.about-value p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.96rem;
}

.help-hero .accent {
  color: var(--orange-light);
}

/* —— Contact —— */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 16px;
}

.contact-aside h2,
.contact-form-panel h2 {
  margin: 0 0 10px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-card {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

a.contact-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.contact-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.contact-card strong {
  font-size: 1.05rem;
  color: var(--navy);
  word-break: break-word;
}

.contact-card-hint {
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-social h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.contact-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-social a {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.contact-social a:hover {
  border-color: rgba(255, 107, 0, 0.4);
  color: var(--orange);
  text-decoration: none;
}

.contact-note {
  margin: 24px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow);
  scroll-margin-top: 96px;
}

.contact-form-panel .form {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-panel {
    padding: 22px 20px 26px;
  }
}

@media (max-width: 900px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

.help-block h2 {
  margin-bottom: 8px;
}

.help-block .section-intro {
  margin-bottom: 24px;
}

.help-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.cta-band .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  filter: none;
}

.help-policies {
  max-width: 46rem;
}

.help-policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.help-policy-list a {
  display: block;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  font-weight: 650;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.help-policy-list a:hover {
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: var(--shadow);
  color: var(--orange);
  text-decoration: none;
}

@media (max-width: 720px) {
  .help-hero .btn-row .btn,
  .help-cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-band .help-cta-actions {
    width: 100%;
  }
}

/* —— Footer —— */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.86);
  padding: 56px 0 28px;
  margin-top: 8px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px 28px;
}

.footer-brand p {
  margin: 0 0 12px;
  max-width: 22rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.footer-brand .footer-logo {
  margin-bottom: 14px;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.site-footer h2 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin: 0 0 16px;
  font-weight: 700;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0 0 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.site-footer a:hover {
  color: var(--orange-light);
  text-decoration: none;
}

.copyright {
  width: min(var(--max), calc(100% - 40px));
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .trust-item,
  .step,
  .cat,
  .card {
    transition: none;
  }

  .btn:hover,
  .trust-item:hover,
  .step:hover,
  .cat:hover,
  .card:hover {
    transform: none;
  }
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
    margin-inline: auto;
  }

  .hero p.lede {
    margin-inline: auto;
  }

  .btn-row {
    justify-content: center;
  }

  .hero-proofs {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mock.phone-mock-lg {
    width: min(100%, 240px);
  }

  .phone-screen.screen-dark {
    min-height: 380px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .steps,
  .steps-5,
  .cards,
  .cats,
  .cats-8,
  .mock-row {
    grid-template-columns: 1fr 1fr;
  }

  .app-preview-nav {
    display: none;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
  }

  .section-intro {
    margin-bottom: 28px;
  }
}

@media (max-width: 720px) {
  :root {
    --space-section: 56px;
  }

  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 2px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .steps,
  .steps-5,
  .cards,
  .cats,
  .cats-8,
  .mock-row,
  .trust-strip,
  .footer-grid,
  .phone-row {
    grid-template-columns: 1fr;
  }

  .hero,
  section {
    padding: 48px 0;
  }

  .hero::after {
    display: none;
  }

  .btn-row .btn {
    width: 100%;
    text-align: center;
  }

  .cta-band .btn {
    width: 100%;
  }

  .hero-visual {
    max-width: 420px;
    margin-inline: auto;
  }

  .phone-mock-float {
    width: min(52%, 200px);
  }

  .cta-band-media {
    grid-template-columns: 1fr;
  }

  .help-hero-grid,
  .about-split {
    grid-template-columns: 1fr;
  }

  .cat-media {
    height: 140px;
  }
}

/* —— Section photography —— */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-photo {
  margin: 0;
  width: 100%;
  max-width: 440px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 4 / 5;
  background: rgba(0, 0, 0, 0.2);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-mock-float {
  position: absolute;
  right: -4%;
  bottom: -4%;
  width: min(46%, 220px);
  z-index: 2;
  transform: rotate(-4deg);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.4));
}

.cat {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cat-media {
  height: 160px;
  background: linear-gradient(160deg, #eef2f7, #dde5ef);
  overflow: hidden;
}

.cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease);
}

.cat:hover .cat-media img {
  transform: scale(1.04);
}

.cat-media-illus {
  display: grid;
  place-items: center;
  height: 168px;
  padding: 16px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 107, 0, 0.1), transparent 55%),
    linear-gradient(160deg, #f4f7fb, #e8eef6);
}

.cat-media-illus img {
  width: min(88%, 200px);
  height: 100%;
  object-fit: contain;
}

.cats-8 .cat-media-illus {
  height: 156px;
}

.hero-photo--illus,
.cta-band-photo--illus,
.help-hero-photo--illus,
.about-split-photo--illus {
  background: linear-gradient(160deg, #eef3f9, #e2eaf4);
}

.hero-photo--illus img,
.cta-band-photo--illus img,
.help-hero-photo--illus img,
.about-split-photo--illus img {
  object-fit: cover;
}

.cat h3,
.cat p {
  padding-left: 22px;
  padding-right: 22px;
}

.cat h3 {
  margin-top: 18px;
}

.cat p {
  padding-bottom: 22px;
}

.cta-band-media {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.cta-band-photo {
  min-height: 240px;
  margin: 0;
}

.cta-band-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-band-copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.cta-band-copy .btn {
  margin-top: 16px;
  align-self: flex-start;
}

.help-hero-split {
  padding-bottom: clamp(40px, 6vw, 64px);
}

.help-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.help-hero-photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 5 / 4;
}

.help-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.about-split-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 5 / 4;
}

.about-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
