/* Yenkonkoa Official Website Styles — Modern Premium Edition */
:root {
  --black: #050507;
  --dark: #0a0b10;
  --dark-elevated: #11121a;
  --surface: #161823;
  --surface-light: #1e2030;
  --white: #f8f9fb;
  --grey: #9ca3af;
  --grey-dark: #6b7280;
  --accent: #f6c649;
  --accent-light: #ffe082;
  --accent-dark: #c79a2a;
  --danger: #ef4444;
  --success: #22c55e;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --radius-xl: 36px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --shadow-glow: 0 0 40px rgba(246, 198, 73, 0.15);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 32px 80px rgba(0, 0, 0, 0.5);
  --gradient-gold: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 50%,
    var(--accent-dark) 100%
  );
  --gradient-dark: linear-gradient(
    180deg,
    var(--black) 0%,
    var(--dark) 50%,
    var(--black) 100%
  );
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
::selection {
  background: rgba(246, 198, 73, 0.25);
  color: var(--white);
}
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: var(--black);
  padding: 12px 16px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(246, 198, 73, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(246, 198, 73, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(246, 198, 73, 0.08);
  box-shadow: var(--shadow-glow);
}
.btn-sm {
  padding: 12px 22px;
  font-size: 14px;
}
.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}
.btn.full {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: rgba(5, 5, 7, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(5, 5, 7, 0.88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.logo:hover {
  opacity: 0.85;
}
.logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(246, 198, 73, 0.2);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
}
.nav-link:hover {
  color: var(--white);
}
.nav-cta {
  margin-left: 8px;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
.hamburger::before {
  top: -7px;
}
.hamburger::after {
  top: 7px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  text-align: left;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.12);
  }
}
.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.6s ease;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(246, 198, 73, 0.12) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      var(--dark) 0%,
      #0f172a 40%,
      #1a1608 75%,
      var(--black) 100%
    );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 7, 0.92) 0%,
    rgba(5, 5, 7, 0.75) 50%,
    rgba(5, 5, 7, 0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(246, 198, 73, 0.1);
  border: 1px solid rgba(246, 198, 73, 0.25);
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.ghana-star {
  width: 16px;
  height: 16px;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(246, 198, 73, 0.35));
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(20px, 2.8vw, 28px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.35;
}
.hero-body {
  font-size: 17px;
  color: var(--grey);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(246, 198, 73, 0.3);
  transform: translateY(-2px);
}
.badge .icon {
  color: var(--accent);
  font-size: 14px;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  transition: opacity 0.4s ease;
  opacity: 1;
}
.scroll-indicator span {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-title .accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 18px;
  color: var(--grey);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.65;
}
.built-for-ghana {
  text-align: center;
  padding-bottom: 0;
}
.built-for-ghana .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.skyline-artwork {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 24px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 30%,
    black 100%
  );
}
.skyline-artwork img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) opacity(0.65);
}

/* Cards */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition-slow);
  overflow: hidden;
  isolation: isolate;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(246, 198, 73, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 198, 73, 0.3);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-card);
}
.card:hover::before {
  opacity: 1;
}
.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(246, 198, 73, 0.1);
  border: 1px solid rgba(246, 198, 73, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  transition: var(--transition);
}
.card:hover .card-icon {
  background: rgba(246, 198, 73, 0.15);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(246, 198, 73, 0.15);
}
.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.card p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
}

/* Services */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.service-pill {
  font-size: 15px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 16px 28px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.service-pill:hover {
  background: var(--gradient-gold);
  color: var(--black);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(246, 198, 73, 0.25);
}

/* Steps */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  max-width: 280px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 198, 73, 0.25);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-card);
}
.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--black);
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(246, 198, 73, 0.25);
}
.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.step-arrow::before {
  content: "\2192";
  font-size: 28px;
  color: var(--accent);
  opacity: 0.7;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse {
  direction: rtl;
}
.split.reverse > * {
  direction: ltr;
}
.split-text .section-title {
  max-width: 540px;
}
.split-visual {
  display: flex;
  justify-content: center;
}
.glass-stat {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  max-width: 340px;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  isolation: isolate;
}
.glass-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(246, 198, 73, 0.15),
    transparent 60%
  );
  z-index: -1;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.stat-label {
  color: var(--grey);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 0;
  line-height: 1.5;
}
.checklist .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--gradient-gold);
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(246, 198, 73, 0.25);
}
.checklist.center {
  align-items: center;
  max-width: 520px;
  margin: 0 auto;
}
.checklist.center li {
  text-align: left;
  width: 100%;
}

/* Safety */
.safety {
  background: var(--gradient-dark);
}
.safety::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(246, 198, 73, 0.08),
    transparent 50%
  );
  pointer-events: none;
}

/* Pricing */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(246, 198, 73, 0.12),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.price-card:hover::before {
  opacity: 1;
}
.price-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.price-card.accent {
  border-color: rgba(246, 198, 73, 0.4);
  background: rgba(246, 198, 73, 0.08);
  box-shadow: var(--shadow-glow);
}
.price-card.accent::before {
  opacity: 1;
}
.price-card.accent h3 {
  color: var(--accent);
}

/* Waitlist form */
.waitlist {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}
.form-card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-elevated);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(246, 198, 73, 0.08),
    transparent 55%
  );
  z-index: -1;
}
.form-card .section-title {
  margin-top: 12px;
  margin-bottom: 12px;
}
.form-card .section-subtitle {
  margin-bottom: 32px;
}
.form-mode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(246, 198, 73, 0.1);
  border: 1px solid rgba(246, 198, 73, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.form-mode::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.form-mode.driver {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.25);
}
.form-mode.driver::before {
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.field .required {
  color: var(--accent);
  font-weight: 500;
}
.field .optional {
  color: var(--grey);
  font-weight: 400;
}
.field input,
.field select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--white);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}
.field input:hover,
.field select:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.field input:focus,
.field select:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(246, 198, 73, 0.12);
}
.field input::placeholder {
  color: var(--grey-dark);
}
.field select option {
  background: var(--surface);
  color: var(--white);
}
.checkbox-group {
  border: 0;
  padding: 0;
}
.checkbox-group legend {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}
.checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--grey);
  cursor: pointer;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.checkbox:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 198, 73, 0.2);
}
.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-note {
  font-size: 13px;
  color: var(--grey);
  text-align: center;
}
.form-note a {
  color: var(--accent);
  text-decoration: underline;
}
.form-status {
  text-align: center;
  font-size: 14px;
  min-height: 20px;
  font-weight: 500;
}
.form-status.success {
  color: var(--success);
}
.form-status.error {
  color: var(--danger);
}

/* Beta opt-in checkbox */
.beta-optin .checkbox {
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--grey);
  font-size: 14px;
}
.beta-optin .checkbox:hover {
  background: transparent;
  border-color: transparent;
}

/* App store badges (coming soon) */
.apps-coming-soon {
  background: var(--dark);
  text-align: center;
}
.apps-coming-soon .section-title,
.apps-coming-soon .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.apps-coming-soon .section-title {
  max-width: 700px;
}
.apps-coming-soon .section-subtitle {
  max-width: 640px;
  margin-bottom: 36px;
}
.store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  min-width: 180px;
  transition: var(--transition);
}
.store-badge.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(100%);
}
.badge-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.badge-text small {
  font-size: 11px;
  color: var(--grey);
  font-weight: 500;
}
.badge-text strong {
  font-size: 16px;
  font-weight: 700;
}

/* Driver */
.driver-visual .glass-stat {
  max-width: 360px;
}
.driver-cta {
  margin-top: 24px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(246, 198, 73, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.faq-item summary {
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(246, 198, 73, 0.1);
  border: 1px solid rgba(246, 198, 73, 0.2);
  font-size: 20px;
  color: var(--accent);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: rgba(246, 198, 73, 0.2);
}
.faq-item p {
  color: var(--grey);
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  padding-right: 44px;
}

/* Final CTA */
.final-cta {
  text-align: center;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(246, 198, 73, 0.08) 0%,
    transparent 60%
  );
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.final-cta .section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.final-cta .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

/* Footer */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 32px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(246, 198, 73, 0.05),
    transparent 50%
  );
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.footer-brand p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.7;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}
.social-links a svg {
  width: 18px;
  height: 18px;
}
.social-links a:hover {
  color: var(--black);
  background: var(--gradient-gold);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(246, 198, 73, 0.25);
}
.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--grey);
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--grey-dark);
  font-size: 13px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-bottom a {
  color: var(--accent);
  text-decoration: underline;
}
.footer-bottom .social-links {
  margin-top: 0;
  margin-bottom: 8px;
}
.proudly-ghanaian {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(246, 198, 73, 0.08);
  border: 1px solid rgba(246, 198, 73, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
}
.ghana-flag {
  position: relative;
  width: 28px;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.ghana-flag .flag-red {
  background: #ce1126;
}
.ghana-flag .flag-gold {
  background: #fcd116;
}
.ghana-flag .flag-green {
  background: #006b3f;
}
.ghana-flag .flag-star {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.ghana-flag .flag-star svg {
  width: 10px;
  height: 10px;
}

/* Legal pages */
.legal-page {
  padding-top: 120px;
  min-height: 100vh;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 8px;
}
.legal-content .effective {
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 24px;
}
.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--white);
}
.legal-content p {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--grey);
  margin-bottom: 14px;
}
.legal-content li {
  margin-bottom: 8px;
  font-size: 15px;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .cols-3,
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .split.reverse {
    direction: ltr;
  }
  .split-text .section-title,
  .split-text .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    text-align: center;
    padding: 160px 0 100px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-subtitle,
  .hero-body {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta,
  .trust-badges {
    justify-content: center;
  }
  .hero-media video {
    display: none;
    transform: none;
    animation: none;
    object-position: center;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 5, 7, 0.85) 0%,
      rgba(5, 5, 7, 0.55) 50%,
      rgba(5, 5, 7, 0.45) 100%
    );
  }
  .hero-content .hero-title,
  .hero-content .hero-subtitle,
  .hero-content .hero-body {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  }
}
@media (max-width: 700px) {
  .nav-menu {
    position: fixed;
    inset: 76px 16px auto 16px;
    flex-direction: column;
    background: rgba(10, 11, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    gap: 18px;
    transform: translateY(-20px) scale(0.96);
    transition: 0.35s ease;
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow-elevated);
    backdrop-filter: blur(20px);
  }
  .nav-menu.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
  }
  .nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .cols-3,
  .pricing-cards,
  .form-row,
  .checkboxes {
    grid-template-columns: 1fr;
  }
  .section-title,
  .section-subtitle,
  .section-eyebrow {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .section-title {
    max-width: 90%;
  }
  .section-subtitle {
    max-width: 540px;
  }
  .split-text .checklist,
  .why-waitlist .checklist {
    margin-left: auto;
    margin-right: auto;
  }
  .steps {
    flex-direction: column;
  }
  .step-arrow::before {
    content: "\2193";
  }
  .step-arrow {
    margin: -8px 0;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .badge {
    justify-content: center;
  }
  .store-badges {
    gap: 12px;
  }
  .store-badge {
    min-width: 160px;
    padding: 10px 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
  .social-links {
    justify-content: center;
  }
  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section {
    padding: 80px 0;
  }
  .final-cta {
    padding: 100px 0;
  }
  .form-card {
    padding: 32px;
  }
  .hero-title {
    font-size: clamp(38px, 10vw, 56px);
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
  .btn-lg {
    padding: 16px 28px;
    font-size: 15px;
  }
  .form-card {
    padding: 24px;
  }
  .card {
    padding: 28px;
  }
  .glass-stat {
    padding: 40px 32px;
  }
  .store-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .store-badge {
    width: 100%;
    max-width: 260px;
    min-width: auto;
    justify-content: center;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
