/* ─────────────────────────────────────────
   eSpotly — Apple-style dark design
   ───────────────────────────────────────── */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Design tokens */
:root {
  --bg:        #000000;
  --bg-2:      #0a0a0a;
  --surface:   #141414;
  --surface-2: #1c1c1e;
  --border:    rgba(255, 255, 255, 0.08);
  --teal:      #00bfa5;
  --teal-dim:  rgba(0, 191, 165, 0.14);
  --teal-glow: rgba(0, 191, 165, 0.35);
  --text:      #f5f5f7;
  --text-2:    #a1a1a6;
  --text-3:    #6e6e73;
  --nav-h:     80px;
  --max-w:     1080px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base */
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Live counter section ────────────────── */
.counter-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin: 0 auto;
  gap: 2px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--border);
}

.counter-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.3s;
}

.counter-card:hover { background: var(--surface-2); }

.counter-live {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}

.counter-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(0, 191, 165, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.counter-live-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.counter-big {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.045em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  filter: drop-shadow(0 0 24px rgba(0, 191, 165, 0.3));
}

.counter-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .counter-grid { grid-template-columns: 1fr; border-radius: 16px; }
  .counter-card { padding: 2rem 1.5rem; }
  .counter-big  { font-size: clamp(2.8rem, 14vw, 4rem); }
}

/* ── Navbar ─────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand { display: flex; align-items: center; flex-shrink: 0; }

/* ── Logo spin + glow ── */

.navbar-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  animation: spin 8s linear infinite, glow 2s ease-in-out infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(0, 191, 165, 0.4)) drop-shadow(0 0 8px rgba(0, 191, 165, 0.2)); }
  50%       { filter: drop-shadow(0 0 12px rgba(0, 191, 165, 0.9)) drop-shadow(0 0 24px rgba(0, 191, 165, 0.5)) brightness(1.15); }
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.6rem;
  border-radius: 980px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}

.btn-primary {
  background: var(--teal);
  color: #000;
}

.btn-primary:hover {
  background: #00a896;
  transform: scale(1.03);
  box-shadow: 0 0 32px var(--teal-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 0.95rem;
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 5rem) 2rem 7rem;
}

/* Hero video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay so text stays readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(0, 191, 165, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* ── Car parking animation ───────────────────── */
#heroCar {
  position: fixed;
  right: 9rem;
  width: 95px;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  transform: rotate(180deg);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.45));
  will-change: top, opacity;
}

#benefits {
  position: relative;
}

.anim-parking-spot {
  position: absolute;
  right: 9rem;
  top: calc(50% + 6rem);
  transform: translateY(-50%);
  width: 96px;
  height: 160px;
  background:
    repeating-linear-gradient(90deg, #111 0, #111 10px, #f5c400 10px, #f5c400 20px)
    bottom / 100% 7px no-repeat,
    #161616;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.9rem;
}

.anim-parking-spot::before,
.anim-parking-spot::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 5px;
  background: #fff;
  opacity: 0.7;
}

.anim-parking-spot::before { left: 0; }
.anim-parking-spot::after  { right: 0; }

.anim-parking-inner-line {
  position: absolute;
  top: 18%;
  width: 3px;
  height: 22%;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
}

.anim-parking-inner-line:first-child  { left:  30%; }
.anim-parking-inner-line:nth-child(2) { right: 30%; }

.anim-parking-p {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  font-style: italic;
}

@media (max-width: 900px) {
  #heroCar, .anim-parking-spot { display: none; }
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-eyebrow {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
}

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6.8rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 2.75rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── Sections ────────────────────────────── */
.section { padding: 120px 2rem; }

.section-surface { background: var(--bg-2); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-align: center;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.section-sub {
  text-align: center;
  color: var(--text-2);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 3.5rem;
}

/* ── Steps ───────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 5rem;
  border-radius: 20px;
  overflow: hidden;
  background: var(--border);
}

.step {
  background: var(--surface);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
}

.step:hover { background: var(--surface-2); }

.step-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.22;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  font-variant-numeric: tabular-nums;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.7;
  font-weight: 300;
}

.hiw-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0;
}

.hiw-title {
  text-align: left;
  margin-bottom: 0;
}

.mascot-hiw {
  width: 90px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}

/* ── App Preview ─────────────────────────── */
.app-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.app-preview-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.app-preview-text h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.app-preview-text p {
  color: var(--text-2);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 380px;
}

/* Phone frame */
.phone-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 260px;
  height: 530px;
  background: #1a1a1a;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 0;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 2;
}

.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42px;
  display: block;
}

@media (max-width: 860px) {
  .app-preview-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .app-preview-text {
    align-items: center;
  }

  .app-preview-text p { max-width: 100%; }
}

/* ── Split (Benefits) ────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 5rem;
  border-radius: 20px;
  overflow: hidden;
  background: var(--border);
}

.split-card {
  background: var(--surface);
  padding: 3.5rem 3rem;
  transition: background 0.3s;
}

.split-card:hover { background: var(--surface-2); }

.split-icon {
  width: 44px;
  height: 44px;
  color: var(--teal);
  margin-bottom: 1.75rem;
}

.split-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.5;
  font-weight: 300;
}

/* Teal checkmark dot */
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  background: var(--teal-dim) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 9 9'%3E%3Cpath d='M1.5 4.5l2 2L7.5 2' stroke='%2300bfa5' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

/* ── CTA Band ─────────────────────────────── */
.cta-band {
  padding: 140px 2rem;
}

.cta-inner {
  max-width: 640px;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-inner p {
  color: var(--text-2);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* ── Contact Form ─────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-3);
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-3); }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.14);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.contact-form .btn { align-self: flex-start; }

.contact-email-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 auto 0.5rem;
  max-width: 420px;
}

.contact-email-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
  gap: 1rem;
}

.contact-email-item:hover {
  border-color: var(--teal);
  background: var(--surface-2);
}

.contact-email-label {
  font-size: 0.82rem;
  color: var(--text-3);
  font-weight: 400;
  white-space: nowrap;
}

.contact-email-addr {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  white-space: nowrap;
}

.form-status {
  font-size: 0.875rem;
  min-height: 1.2em;
}

.form-status.success { color: var(--teal); }
.form-status.error   { color: #ff453a; }

/* ── Footer ──────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-tagline {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-company {
  color: var(--text-2);
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-location {
  color: var(--text-3);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-location a {
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-location a:hover { color: var(--teal); }

.footer-links {
  padding-left: 9rem;
}

.footer-col-title {
  color: var(--text-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav a {
  color: var(--text-3);
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--teal); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-end;
}

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

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social-link:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: var(--teal-dim);
}

.footer-emails {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-email-item {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  align-items: flex-start;
}

.footer-email-label {
  font-size: 0.72rem;
  color: var(--text-3);
}

.footer-email-addr {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 400;
  transition: opacity 0.2s;
}

.footer-email-item:hover .footer-email-addr { opacity: 0.75; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  color: var(--text-3);
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-legal a {
  color: var(--text-3);
  font-size: 0.75rem;
  opacity: 0.7;
  transition: color 0.2s, opacity 0.2s;
}

.footer-legal a:hover { color: var(--teal); opacity: 1; }

.footer-legal span { color: var(--text-3); opacity: 0.35; font-size: 0.75rem; }
.footer-legal .sec-reg { color: var(--text-3); opacity: 0.7; font-size: 0.75rem; }

/* ── Scroll animations ───────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity  0.75s var(--ease),
    transform 0.75s var(--ease);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger within grid containers */
.steps  .step:nth-child(1)[data-animate],
.split  .split-card:nth-child(1)[data-animate] { transition-delay: 0ms; }

.steps  .step:nth-child(2)[data-animate]       { transition-delay: 110ms; }
.split  .split-card:nth-child(2)[data-animate] { transition-delay: 130ms; }

.steps  .step:nth-child(3)[data-animate]       { transition-delay: 220ms; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 80px; }

  .navbar {
    height: auto;
    min-height: var(--nav-h);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
  }

  .nav-inner {
    padding: 0 1.25rem;
    flex-wrap: wrap;
    height: auto;
    min-height: var(--nav-h);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }

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

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.72rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }

  /* Hamburger → X */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .navbar-logo  { height: 45px; }
  .navbar-brand { margin-left: 0.75rem; }

  .section     { padding: 80px 1.5rem; }
  .cta-band    { padding: 100px 1.5rem; }

  .step,
  .split-card  { padding: 2.5rem 2rem; }

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

  .hero        { padding-bottom: 5rem; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .contact-form .btn {
    align-self: stretch;
    max-width: none;
  }

  .footer-cols { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { padding-left: 0; }
  .footer-contact { align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ── Legal pages (terms.html / privacy.html) ── */
.legal-header {
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 191, 165, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #060606 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.legal-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0, 191, 165, 0.25);
  border-radius: 980px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

.legal-header h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.legal-meta {
  font-size: 0.82rem;
  color: var(--text-3);
}

.legal-layout {
  max-width: 1080px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Sticky table of contents */
.legal-toc {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.legal-toc h2 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.legal-toc ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  counter-reset: toc;
}

.legal-toc ol li { counter-increment: toc; }

.legal-toc ol li a {
  display: flex;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text-3);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  line-height: 1.4;
}

.legal-toc ol li a::before {
  content: counter(toc) ". ";
  color: var(--text-3);
  opacity: 0.55;
  flex-shrink: 0;
  min-width: 2.2em;
}

.legal-toc ol li a:hover {
  color: var(--teal);
  background: var(--teal-dim);
}

/* Main article */
.legal-article {
  min-width: 0;
}

.legal-section {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.legal-section h2 .sec-num {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-dim);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.legal-section p {
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 0.9rem;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul,
.legal-section ol {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.6rem;
  margin-bottom: 0.9rem;
}

.legal-section ul li,
.legal-section ol li {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 300;
  padding-left: 1.4rem;
  position: relative;
}

.legal-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 500;
}

.legal-section ol {
  counter-reset: legal-ol;
}

.legal-section ol li {
  counter-increment: legal-ol;
}

.legal-section ol li::before {
  content: counter(legal-ol) ".";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
}

.legal-section strong {
  color: var(--text);
  font-weight: 500;
}

.legal-contact-box {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-2);
}

.legal-contact-box a {
  color: var(--teal);
  font-weight: 500;
  transition: opacity 0.2s;
}

.legal-contact-box a:hover { opacity: 0.75; }

/* Back link */
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--text-3);
  transition: color 0.2s;
  margin-bottom: 2.5rem;
}

.legal-back:hover { color: var(--teal); }

/* Responsive: collapse TOC below 860px */
@media (max-width: 860px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem 5rem;
  }

  .legal-toc {
    position: static;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
  }

  .legal-toc ol {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.1rem;
  }
}

@media (max-width: 480px) {
  .legal-header { padding-top: calc(var(--nav-h) + 2.5rem); }

  .legal-toc ol { grid-template-columns: 1fr; }
}

/* ── FAQ page ─────────────────────────────── */
.faq-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.faq-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.35rem;
}

.faq-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-3);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.faq-tab:hover { color: var(--text-2); }

.faq-tab.active {
  background: var(--surface-2);
  color: var(--teal);
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.faq-panel { display: none; }
.faq-panel.active { display: block; }

.faq-group {
  margin-bottom: 3rem;
}

.faq-group-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 4l3 3 3-3' stroke='%23a1a1a6' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  transition: transform 0.3s, background-color 0.2s;
}

.faq-item[open] .faq-q { color: var(--teal); }

.faq-item[open] .faq-q::after {
  transform: rotate(180deg);
  background-color: var(--teal-dim);
  border-color: rgba(0, 191, 165, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 4l3 3 3-3' stroke='%2300bfa5' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding-bottom: 0;
}

.faq-item[open] .faq-a {
  padding-bottom: 1.25rem;
}

.faq-a p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 300;
}

.faq-a p + p { margin-top: 0.6rem; }

.faq-a strong { color: var(--text); font-weight: 500; }

.faq-a a {
  color: var(--teal);
  font-weight: 500;
  transition: opacity 0.2s;
}

.faq-a a:hover { opacity: 0.75; }

.faq-a ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-left: 0;
}

.faq-a ul li {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
}

.faq-a ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--teal);
}

.faq-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.faq-steps span {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
  color: var(--text-2);
  font-weight: 400;
}

.faq-steps svg { color: var(--text-3); flex-shrink: 0; }

.faq-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-payment-methods span {
  background: var(--teal-dim);
  border: 1px solid rgba(0, 191, 165, 0.25);
  border-radius: 980px;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 500;
}

.faq-contact {
  margin-top: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.faq-contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.faq-contact p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-2);
}

.mascot-contact {
  width: 100px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}

@media (max-width: 600px) {
  .faq-page { padding: 3rem 1.25rem 5rem; }

  .faq-contact { flex-direction: column; gap: 1.5rem; }
  .mascot-contact { width: 90px; }
  .hiw-header { gap: 1rem; }
  .mascot-hiw { width: 80px; }

  .faq-tab {
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
  }

  .faq-steps { gap: 0.35rem; }
}

/* ── Nav owners link ─────────────────────── */
.nav-owners { color: var(--teal) !important; font-weight: 500 !important; }

/* ── Nav owners link ─────────────────────── */

/* ── App download badges ─────────────────── */
.download-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.download-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1.6rem;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  min-width: 170px;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.download-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.download-badge-sub {
  font-size: 0.7rem;
  color: var(--text-3);
  font-weight: 400;
}

.download-badge-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.download-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-top: 1.25rem;
}

.download-note a { color: var(--teal); transition: opacity 0.2s; }
.download-note a:hover { opacity: 0.75; }

/* ── Testimonials ────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s, background 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(0, 191, 165, 0.2);
  background: var(--surface-2);
}

.testimonial-quote {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  flex: 1;
}

.testimonial-quote::before { content: '\201C'; color: var(--teal); font-style: normal; font-size: 1.2rem; }
.testimonial-quote::after  { content: '\201D'; color: var(--teal); font-style: normal; font-size: 1.2rem; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(0, 191, 165, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 0.1rem;
}

.testimonial-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 980px;
}

.testimonial-badge.driver {
  background: rgba(0, 191, 165, 0.1);
  color: var(--teal);
  border: 1px solid rgba(0, 191, 165, 0.2);
}

.testimonial-badge.owner {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-3);
  border: 1px solid var(--border);
}

/* ── Coverage section ────────────────────── */
.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.coverage-city {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 980px;
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s;
}

.coverage-city:hover { border-color: var(--teal); color: var(--teal); }

.coverage-city.coming-soon {
  background: var(--teal-dim);
  border-color: rgba(0, 191, 165, 0.3);
  color: var(--teal);
  font-weight: 500;
}

/* ── Cookie banner ───────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 3rem);
  max-width: 680px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 2000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s;
  opacity: 0;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner.hidden {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
}

.cookie-text {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.5;
  flex: 1;
}

.cookie-text a { color: var(--teal); transition: opacity 0.2s; }
.cookie-text a:hover { opacity: 0.75; }

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    transform: translateY(160px);
  }
  .cookie-banner.visible { transform: translateY(0); }
  .cookie-banner.hidden  { transform: translateY(160px); }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ── Owners page ─────────────────────────── */
.owners-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 5rem) 2rem 6rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 191, 165, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #060606 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.owners-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.owners-hero-inner h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--text);
}

.owners-hero-inner p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
}

.owners-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.owners-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 2rem 3rem;
  text-align: center;
}

.owners-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.owners-stat-label {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 400;
}

.owners-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Earnings calculator */
.calc-wrapper {
  max-width: 680px;
  margin: 0 auto;
  margin-top: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.calc-field {
  background: var(--bg-2);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.calc-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calc-prefix, .calc-suffix {
  font-size: 0.9rem;
  color: var(--text-3);
  font-weight: 400;
  flex-shrink: 0;
}

.calc-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  font-family: inherit;
  outline: none;
  min-width: 0;
  letter-spacing: -0.02em;
}

.calc-input-wrap input::placeholder { color: var(--text-3); }

.calc-result {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.calc-row:last-of-type { border-bottom: none; }

.calc-row-label {
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 300;
}

.calc-row-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.calc-fee-pct {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 400;
}

.calc-fee-val { color: var(--text-3); }

.calc-row-payout .calc-row-label { font-weight: 500; color: var(--text); }
.calc-payout-val { font-size: 1.15rem; color: var(--teal); }

.calc-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.6;
  font-weight: 300;
}

/* Why grid */
.owners-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
  border-radius: 20px;
  overflow: hidden;
  background: var(--border);
}

.owners-why-card {
  background: var(--surface);
  padding: 2.25rem 2rem;
  transition: background 0.3s;
}

.owners-why-card:hover { background: var(--surface-2); }

.owners-why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-dim);
  border: 1px solid rgba(0, 191, 165, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.owners-why-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.owners-why-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}

/* Requirements */
.owners-reqs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.owners-req {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.owners-req:last-child { border-bottom: none; }
.owners-req:hover { background: var(--surface-2); }

.owners-req-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-dim);
  border: 1px solid rgba(0, 191, 165, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.owners-req-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.owners-req-desc {
  font-size: 0.84rem;
  color: var(--text-3);
  line-height: 1.55;
  font-weight: 300;
}

.owners-req-optional {
  opacity: 0.85;
}

.owners-req-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(0, 191, 165, 0.12);
  color: var(--teal);
  border: 1px solid rgba(0, 191, 165, 0.25);
  vertical-align: middle;
}

/* Owners CTA */
.owners-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.owners-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.owners-cta p {
  color: var(--text-2);
  font-size: 1rem;
  font-weight: 300;
  max-width: 460px;
  line-height: 1.7;
}

.owners-cta-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .owners-why-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-inputs { grid-template-columns: 1fr; }
  .owners-stat-divider { display: none; }
  .owners-stats { gap: 0; }
  .owners-stat { padding: 1.25rem 2rem; border-bottom: 1px solid var(--border); width: 50%; }
}

@media (max-width: 600px) {
  .owners-hero { padding-bottom: 4rem; }
  .owners-why-grid { grid-template-columns: 1fr; }
  .owners-stat { width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .owners-cta-actions { flex-direction: column; align-items: center; }
}

/* ── About page ───────────────────────────── */
.about-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.about-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}

.about-section p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 680px;
}

.about-section p strong {
  color: var(--text);
  font-weight: 500;
}

/* Story layout */
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-story-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.about-story-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.about-founder-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.about-founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(0, 191, 165, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.about-founder-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.about-founder-role {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 400;
}

.about-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 0 14px 14px 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.7;
  font-weight: 300;
}

/* Mission */
.about-mission p { max-width: 600px; }

/* Pillars */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 1rem;
  border-radius: 20px;
  overflow: hidden;
  background: var(--border);
}

.about-pillar {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.about-pillar:hover { background: var(--surface-2); }

.about-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-dim);
  border: 1px solid rgba(0, 191, 165, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.about-pillar h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.about-pillar p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
  max-width: none;
}

/* Featured founder row */
.about-team-founder {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: var(--surface);
  border: 1px solid rgba(0, 191, 165, 0.25);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

.about-team-founder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(0, 191, 165, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-founder-avatar-lg {
  width: 72px !important;
  height: 72px !important;
  flex-shrink: 0;
}

.about-team-founder-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-team-founder-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.about-team-founder-header .about-founder-name {
  font-size: 1.15rem;
}

.about-team-founder-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0, 191, 165, 0.25);
  border-radius: 980px;
  padding: 0.25rem 0.75rem;
}

.about-team-founder .about-team-bio {
  font-size: 0.92rem;
  color: var(--text-2);
  max-width: 520px;
}

@media (max-width: 600px) {
  .about-team-founder {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.75rem 1.5rem;
  }
  .about-team-founder-header { justify-content: center; }
}

/* Team grid */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.about-team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  transition: border-color 0.3s, background 0.3s;
}

.about-team-card:hover {
  border-color: rgba(0, 191, 165, 0.2);
  background: var(--surface-2);
}

.about-team-card .about-founder-avatar {
  width: 56px;
  height: 56px;
  margin-bottom: 0.75rem;
}

.about-team-card .about-founder-name {
  font-weight: 700;
  font-size: 1rem;
}

.about-team-card .about-founder-role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 980px;
  padding: 0.25rem 0.75rem;
  margin-top: 0.2rem;
}

.about-team-card .about-founder-role {
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(0, 191, 165, 0.25);
}

.about-team-bio {
  font-size: 0.84rem;
  color: var(--text-3);
  line-height: 1.6;
  font-weight: 300;
  margin-top: 0.35rem;
}

@media (max-width: 480px) {
  .about-team-grid { grid-template-columns: 1fr; }
}

/* Coverage */
.about-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.about-cities span {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 980px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
}

.about-cities span:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.about-city-more {
  background: var(--teal-dim) !important;
  border-color: rgba(0, 191, 165, 0.3) !important;
  color: var(--teal) !important;
  font-weight: 500 !important;
}

/* CTA */
.about-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.about-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.about-cta p {
  color: var(--text-2);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.about-cta-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

@media (max-width: 860px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-story-card { position: static; }

  .about-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .about-page { padding: 3rem 1.25rem 5rem; gap: 4rem; }

  .about-cta { padding: 2.5rem 1.5rem; flex-direction: column; gap: 1.5rem; }

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