/* ============================================================
   YUMMI — Shared Stylesheet
   Covers: All pages (index, subscriptions, legal pages,
           delete-account, disclaimer, privacy-policy, tos)
   ============================================================ */

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

/* ── Variables ── */
:root {
  --pink: #f472b6;
  --pink-dark: #e91e8c;
  --purple: #a855f7;
  --purple-dark: #7c3aed;
  --indigo: #4c1d95;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-15: rgba(255,255,255,0.15);
  --white-10: rgba(255,255,255,0.10);
  --white-08: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.2);
}

html { scroll-behavior: smooth; }

/* ── Body ── */
body {
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 25%, #a855f7 55%, #f472b6 100%);
  background-attachment: fixed;
  color: #fff;
  overflow-x: hidden;
}

/* Legal pages add bottom padding */
body.legal-page { padding: 0 0 60px; }

/* ============================================================
   NAV — Main site nav (index, subscriptions)
   ============================================================ */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.7rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--white-80);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--white-15); color: #fff; }
.nav-links a.active {
  background: rgba(255,255,255,0.22);
  color: #fff;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.35);
}
.nav-links .btn-nav {
  background: rgba(255,255,255,0.2);
  border: 1px solid var(--border);
  color: #fff;
}
.nav-links .btn-nav:hover { background: rgba(255,255,255,0.32); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ── Legal page nav (simple: logo + back button) ── */
nav.legal-nav { padding: 20px 40px; z-index: 100; }
.nav-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s;
}
.nav-back:hover { background: rgba(255,255,255,0.22); }
.nav-logo-text { font-family: 'Pacifico', cursive; font-size: 1.6rem; color: #fff; text-decoration: none; }

/* ============================================================
   HERO — Shared hero styles
   ============================================================ */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
}
/* Legal pages use smaller hero */
.hero.hero-sm { padding: 56px 24px 40px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero.hero-sm .hero-badge { padding: 8px 20px; margin-bottom: 20px; }

.hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.hero.hero-sm h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 12px; }

.hero h1 span { color: #fde68a; }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--white-80);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 500;
}
/* Legal hero uses .hero p instead of .hero-sub */
.hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   HERO ACTIONS — App store buttons
   ============================================================ */
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-store {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  color: #4c1d95;
  border-radius: 16px;
  padding: 14px 26px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.9);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-store:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.25); }
.btn-store .store-icon { font-size: 1.6rem; }
.btn-store .store-text { text-align: left; }
.btn-store .store-text small { display: block; font-size: 0.72rem; font-weight: 600; color: #7c3aed; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-store .store-text strong { display: block; font-size: 1rem; color: #4c1d95; }

/* ============================================================
   PHONE SHOWCASE — Homepage cards
   ============================================================ */
.phone-showcase {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.phone-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px 22px;
  width: 200px;
  text-align: center;
  transition: transform 0.3s;
}
.phone-card:hover { transform: translateY(-6px); }
.phone-card .phone-emoji { font-size: 3.5rem; margin-bottom: 12px; display: block; }
.phone-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.phone-card p { font-size: 0.82rem; color: var(--white-80); line-height: 1.5; }

/* ============================================================
   SECTIONS — Homepage layout
   ============================================================ */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--white-80);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 50px;
  font-weight: 500;
}
.section-centered { text-align: center; }
.section-centered .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   FEATURE GRID — Homepage customer features
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  transition: transform 0.25s, background 0.25s;
}
.feature-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--white-80); line-height: 1.65; }

/* ============================================================
   HOW IT WORKS — Steps
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: 22px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f472b6, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 4px 20px rgba(244,114,182,0.4);
}
.step-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--white-80); line-height: 1.6; }

/* ============================================================
   DRIVER SECTION — Split layout
   ============================================================ */
.driver-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.driver-text .section-sub { margin-bottom: 30px; }
.driver-features { display: flex; flex-direction: column; gap: 14px; }
.driver-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
}
.driver-feature .df-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.driver-feature h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; }
.driver-feature p { font-size: 0.86rem; color: var(--white-80); line-height: 1.55; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'Pacifico', cursive;
  font-size: 2.8rem;
  color: #fde68a;
  display: block;
  text-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.stat-item .stat-label { font-size: 0.9rem; color: var(--white-80); font-weight: 600; margin-top: 4px; }

/* ============================================================
   TRUST / PRIVACY GRID
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-card .trust-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 6px; }
.trust-card p { font-size: 0.87rem; color: var(--white-80); line-height: 1.6; }

/* ============================================================
   SUBSCRIPTION PREVIEW — Homepage
   ============================================================ */
.sub-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.sub-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.25s;
}
.sub-card:hover { transform: translateY(-4px); }
.sub-card.featured {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 8px 40px rgba(244,114,182,0.25);
}
.sub-type-icon { font-size: 3rem; margin-bottom: 14px; display: block; }
.sub-card h3 { font-family: 'Pacifico', cursive; font-size: 1.4rem; margin-bottom: 8px; }
.sub-card .sub-tagline { font-size: 0.88rem; color: var(--white-80); margin-bottom: 20px; line-height: 1.5; }
.sub-card ul { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.sub-card ul li { font-size: 0.88rem; color: var(--white-80); display: flex; gap: 8px; align-items: flex-start; }
.sub-card ul li::before { content: "✓"; color: #fde68a; font-weight: 900; flex-shrink: 0; }

/* ============================================================
   SHARED BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f472b6, #a855f7);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(244,114,182,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(244,114,182,0.55); }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.2); }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fde68a;
  color: #4c1d95;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(253,230,138,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(253,230,138,0.55); }

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section { text-align: center; padding: 60px 24px; }
.quote-bubble {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
}
.quote-text {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.4;
  margin-bottom: 20px;
  color: #fde68a;
}
.quote-credit { font-size: 0.9rem; color: var(--white-80); font-weight: 600; }

/* ============================================================
   FOOTER — Main site footer
   ============================================================ */
footer {
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  text-align: center;
}
.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}
.footer-links {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-links a {
  color: var(--white-80);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
}
.footer-links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.footer-store-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.footer-store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--border);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s;
}
.footer-store-btn:hover { background: rgba(255,255,255,0.22); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ── Legal page footer (simpler) ── */
footer.legal-footer {
  background: transparent;
  border-top: none;
  padding: 0;
  margin-top: 48px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
footer.legal-footer a { color: #f9a8d4; text-decoration: none; }
footer.legal-footer a:hover { text-decoration: underline; }

/* ============================================================
   LEGAL PAGES — Shared content card styles
   ============================================================ */
.container { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 16px;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.card-header .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.card-header h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #f9a8d4;
  letter-spacing: 0.3px;
}
.card-body {
  padding: 18px 24px 22px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
}
.card-body ul {
  margin: 10px 0 4px 4px;
  padding: 0;
  list-style: none;
}
.card-body ul li {
  padding: 4px 0 4px 20px;
  position: relative;
}
.card-body ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: #f472b6;
  font-weight: 800;
}
.card-body .sub-heading {
  font-weight: 700;
  color: #f9a8d4;
  margin: 14px 0 6px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Warning card variant (TOS) */
.card.warn {
  border-color: rgba(244, 114, 182, 0.5);
  background: rgba(244, 114, 182, 0.12);
}
.card.warn .card-header h2 { color: #fda4c0; }

/* Meta strip (effective date) */
.meta-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 28px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.meta-strip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f472b6;
  flex-shrink: 0;
}

/* ============================================================
   DELETE ACCOUNT PAGE — Form styles
   ============================================================ */
.form-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 20px;
}
.form-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: #f9a8d4;
  background: rgba(255,255,255,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.confirm-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.35);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 24px;
}
.confirm-row input[type="checkbox"] {
  width: 20px; height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #f472b6;
  cursor: pointer;
}
.confirm-row label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
}
.btn-delete {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  letter-spacing: 0.3px;
}
.btn-delete:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-delete:active { transform: translateY(0); }

.alert {
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}
.alert-error { background: rgba(239,68,68,0.2); border: 1px solid rgba(239,68,68,0.4); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,0.2); border: 1px solid rgba(34,197,94,0.4); color: #86efac; }

/* ============================================================
   SUBSCRIPTIONS PAGE
   ============================================================ */
.trial-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(253,230,138,0.18);
  border: 1.5px solid rgba(253,230,138,0.5);
  border-radius: 50px;
  padding: 10px 26px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fde68a;
  margin-bottom: 50px;
}

.truck-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.truck-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white-80);
  text-decoration: none;
  transition: all 0.2s;
}
.truck-tab:hover, .truck-tab.active {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.truck-tab .tab-icon { font-size: 1.5rem; }

.section-label { text-align: center; margin-bottom: 40px; }
.section-label .truck-emoji { font-size: 3.5rem; display: block; margin-bottom: 12px; }
.section-label h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}
.section-label p { font-size: 1rem; color: var(--white-80); max-width: 560px; margin: 0 auto; line-height: 1.65; font-weight: 500; }

/* Plan cards */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.plan-card {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid var(--border);
  border-radius: 26px;
  padding: 32px 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, background 0.25s;
  position: relative;
}
.plan-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.16); }
.plan-card.best-value {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 8px 48px rgba(244,114,182,0.3);
}
.best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f472b6, #a855f7);
  color: #fff;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(244,114,182,0.4);
}
.season-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #78350f;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(251,191,36,0.4);
}
.plan-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.plan-name { font-family: 'Pacifico', cursive; font-size: 1.35rem; margin-bottom: 6px; }
.plan-period { font-size: 0.82rem; color: var(--white-60); font-weight: 600; margin-bottom: 16px; }
.plan-trial {
  display: inline-block;
  background: rgba(253,230,138,0.18);
  border: 1px solid rgba(253,230,138,0.4);
  color: #fde68a;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 20px; }
.plan-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; flex: 1; }
.plan-features li { font-size: 0.88rem; color: var(--white-80); display: flex; gap: 8px; align-items: flex-start; line-height: 1.45; }
.plan-features li .check { color: #86efac; font-weight: 900; flex-shrink: 0; font-size: 0.9rem; }
.plan-cta {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: all 0.2s;
}
.plan-cta.outline { border: 2px solid rgba(255,255,255,0.5); color: #fff; }
.plan-cta.outline:hover { background: rgba(255,255,255,0.18); }
.plan-cta.filled {
  background: linear-gradient(135deg, #f472b6, #a855f7);
  color: #fff;
  box-shadow: 0 6px 24px rgba(244,114,182,0.4);
}
.plan-cta.filled:hover { box-shadow: 0 10px 32px rgba(244,114,182,0.55); transform: translateY(-2px); }
.plan-cta.season {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #78350f;
  box-shadow: 0 6px 24px rgba(251,191,36,0.35);
  font-weight: 900;
}
.plan-cta.season:hover { box-shadow: 0 10px 32px rgba(251,191,36,0.5); transform: translateY(-2px); }

/* Compare table */
.compare-wrap { overflow-x: auto; margin-bottom: 20px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.compare-table th {
  background: rgba(255,255,255,0.12);
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th:first-child { border-radius: 14px 0 0 0; }
.compare-table th:last-child { border-radius: 0 14px 0 0; }
.compare-table td { padding: 12px 18px; font-size: 0.88rem; color: var(--white-80); border-bottom: 1px solid rgba(255,255,255,0.08); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.tick { color: #86efac; font-size: 1rem; }
.cross { color: rgba(255,255,255,0.3); font-size: 1rem; }

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.benefit-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-card .b-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.benefit-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 5px; }
.benefit-card p { font-size: 0.86rem; color: var(--white-80); line-height: 1.6; }

/* Section divider */
.section-divider { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 0 24px 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,0.09);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  gap: 12px;
  user-select: none;
}
.faq-q:hover { background: rgba(255,255,255,0.07); }
.faq-arrow { font-size: 1rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 14px 22px 18px;
  font-size: 0.9rem;
  color: var(--white-80);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-item.open .faq-a { display: block; }

/* CTA box */
.cta-box {
  text-align: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 52px 32px;
  max-width: 700px;
  margin: 0 auto;
}
.cta-box h2 { font-family: 'Pacifico', cursive; font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 14px; }
.cta-box p { font-size: 1rem; color: var(--white-80); margin-bottom: 28px; line-height: 1.7; font-weight: 500; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SCREENSHOTS CAROUSEL
   ============================================================ */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}
.carousel-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}
.carousel-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 8px;
  box-sizing: border-box;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  display: block;
  transition: transform 0.25s, box-shadow 0.25s;
}
.carousel-slide img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
}
.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  user-select: none;
}
.carousel-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: scale(1.08);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: linear-gradient(135deg, #f472b6, #a855f7);
  transform: scale(1.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .carousel-slide { flex: 0 0 calc(100% / 2); }
}
@media (max-width: 640px) {
  .carousel-slide { flex: 0 0 100%; }
  .carousel-btn { width: 38px; height: 38px; font-size: 1.4rem; }
}
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(76,29,149,0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 20px; border-radius: 12px; font-size: 1.25rem; }
  .hamburger { display: flex; }
  .driver-split { grid-template-columns: 1fr; }
  .sub-preview { grid-template-columns: 1fr; }
  section { padding: 56px 20px; }
  .hero { padding: 56px 20px 48px; }
  .plans-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .phone-showcase { gap: 12px; }
  .phone-card { width: 155px; padding: 20px 14px; }
}

/* ============================================================
   LEGAL PAGES — Dynamic loading states (js/legal.js)
   ============================================================ */

.legal-loading,
.legal-error {
  text-align: center;
  padding: 60px 20px;
  opacity: 0.75;
}

.legal-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: legal-spin 0.8s linear infinite;
}

@keyframes legal-spin {
  to { transform: rotate(360deg); }
}
