@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&family=Poppins:ital,wght@0,600;0,700;0,800;1,700&display=swap');

:root {
  --primary-gold: #FFE040;
  --dark-bg: #FFFFFF; /* Main background locked to light/white */
  --dark-surface: #F7F7F5; /* Light gray surfaces */
  --dark-surface-2: #EBEBEB; /* Inner cards and hover background */
  --green-accent: #00C462;
  --white: #FFFFFF;
  --light-bg: #FFFFFF;
  --border-light: #EBEBEB;
  --muted-dark-text: #666666;
  --muted-white-text: #555555; /* Refactored to dark gray for light theme contrast */
  --border-dark-muted: rgba(0, 0, 0, 0.08);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  --container-max-width: 1280px;
  --section-padding-desktop: 80px 0;
  --section-padding-mobile: 52px 0;
  --btn-radius: 100px;
  --card-radius: 20px;
  --card-radius-large: 24px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--dark-bg);
  color: #0D0D0D; /* Default text color set to dark */
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: #0D0D0D; /* Headings are dark */
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Containers */
.e-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2; /* Content sits above shader blobs */
}

.e-section {
  padding: var(--section-padding-desktop);
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.e-section.dark {
  background-color: var(--dark-bg);
  color: #0D0D0D; /* Override dark theme classes to be light */
}

.e-section.light {
  background-color: var(--dark-surface);
  color: #0D0D0D;
}

.e-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.e-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.e-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CSS Shader Gradient system */
.shader-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  background-color: var(--dark-bg);
}

.shader-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  mix-blend-mode: multiply;
  animation: drift 25s infinite alternate ease-in-out;
}

.blob-gold {
  background-color: var(--primary-gold);
  width: 600px;
  height: 600px;
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.blob-green {
  background-color: var(--green-accent);
  width: 700px;
  height: 700px;
  bottom: -15%;
  right: -10%;
  animation-delay: -6s;
}

.blob-gold-2 {
  background-color: var(--primary-gold);
  width: 450px;
  height: 450px;
  top: 45%;
  left: 55%;
  animation-delay: -12s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(120px, 90px) scale(1.15);
  }
  66% {
    transform: translate(-60px, 140px) scale(0.85);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Headers & Accents */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
  color: var(--green-accent); /* Standardize eyebrow in light theme */
}

.dark .eyebrow {
  color: var(--green-accent);
}

.light .eyebrow {
  color: var(--green-accent);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0D0D0D;
}

.section-desc {
  font-size: 1.125rem;
  max-width: 640px;
  margin-bottom: 40px;
  color: var(--muted-dark-text);
}

.dark .section-desc {
  color: var(--muted-dark-text);
}

.light .section-desc {
  color: var(--muted-dark-text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--btn-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 48px;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--dark-bg); /* Gold button, dark text */
  border-color: var(--primary-gold);
  color: #0D0D0D;
}

.btn-primary:hover {
  background-color: #0D0D0D;
  color: var(--white);
  border-color: #0D0D0D;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 13, 13, 0.15);
}

.btn-secondary {
  background-color: var(--white);
  color: #0D0D0D;
  border-color: var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--green-accent);
  color: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 196, 98, 0.05);
}

.btn-accent {
  background-color: var(--green-accent);
  color: var(--white);
  border-color: var(--green-accent);
}

.btn-accent:hover {
  background-color: #0D0D0D;
  border-color: #0D0D0D;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 196, 98, 0.15);
}

/* Sticky Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.site-header .e-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: #0D0D0D; /* Dark logo for white theme */
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}

.nav-link:hover {
  color: var(--green-accent);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
}

.link-captain {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--green-accent);
}

.link-captain:hover {
  color: #0D0D0D;
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #0D0D0D;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding-top: 160px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--green-accent);
  background-color: rgba(0, 196, 98, 0.05);
  color: var(--green-accent);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: #0D0D0D;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--green-accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted-dark-text);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-chip {
  padding: 8px 16px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #0D0D0D;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.trust-chip::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--green-accent);
  border-radius: 50%;
}

/* Premium Phone Mockup UI (Hero Right Column - Styled Dark/High Contrast) */
.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  animation: floatMockup 6s ease-in-out infinite alternate;
}

.phone-shell {
  background: #000;
  border-radius: 40px;
  padding: 16px;
  border: 4px solid var(--dark-surface-2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.phone-screen {
  background: #0d0d0d;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.mock-card {
  background-color: var(--dark-surface); /* Wait, screen card needs dark background for screen compatibility */
  background-color: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--card-radius);
  padding: 16px;
  transition: var(--transition-smooth);
}

/* Search Card */
.search-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
}

.field-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.field-dot.green {
  background-color: var(--green-accent);
  box-shadow: 0 0 8px var(--green-accent);
}

.field-dot.gold {
  background-color: var(--primary-gold);
  box-shadow: 0 0 8px var(--primary-gold);
}

.field-info {
  display: flex;
  flex-direction: column;
}

.field-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.search-divider {
  height: 1px;
  background-color: rgba(255,255,255,0.08);
  margin-left: 22px;
}

/* Ride Types */
.ride-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ride-type-card {
  padding: 12px 8px;
  border-radius: 12px;
  text-align: center;
  background-color: #1e1e1e;
  border: 1px solid transparent;
  cursor: pointer;
}

.ride-type-card.active {
  background-color: rgba(255, 224, 64, 0.08);
  border-color: var(--primary-gold);
}

.ride-type-icon {
  font-size: 20px;
  margin-bottom: 6px;
}

.ride-type-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
  color: rgba(255,255,255,0.9);
}

.ride-type-card.active .ride-type-title {
  color: var(--primary-gold);
}

.ride-type-subtitle {
  font-size: 8px;
  color: rgba(255,255,255,0.5);
  line-height: 1.2;
}

/* Find Ride CTA */
.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #161616, #1e1e1e);
}

.cta-panel-info {
  display: flex;
  flex-direction: column;
}

.cta-panel-label {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
}

.cta-panel-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
}

.btn-mini {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 20px;
  background-color: var(--primary-gold);
  color: #0d0d0d;
  font-weight: 600;
  border: none;
}

/* Captain Card */
.captain-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 3px solid var(--primary-gold);
}

.captain-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.captain-info {
  display: flex;
  flex-direction: column;
}

.captain-title {
  font-size: 9px;
  color: var(--primary-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.captain-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.captain-status {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

/* Stats Section */
.stats-section {
  background-color: var(--dark-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: #0D0D0D; /* Stats number dark/gold contrast */
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--muted-dark-text);
  line-height: 1.4;
}

/* Services Section */
.services-section {
  background-color: var(--dark-surface);
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 196, 98, 0.2);
}

.service-badge {
  align-self: flex-start;
  padding: 4px 12px;
  background-color: rgba(0, 196, 98, 0.08);
  color: var(--green-accent);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--dark-bg);
  color: #0D0D0D;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--muted-dark-text);
}

/* How It Works Section */
.how-section {
  background-color: var(--dark-bg);
}

.step-card {
  text-align: center;
  position: relative;
  padding: 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--dark-surface);
  border: 2px solid var(--green-accent);
  color: var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 24px auto;
  transition: var(--transition-smooth);
}

.step-card:hover .step-number {
  background-color: var(--green-accent);
  color: var(--white);
  box-shadow: 0 0 15px rgba(0, 196, 98, 0.25);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #0D0D0D;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--muted-dark-text);
}

.step-divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-light);
}

/* Why AjaaoRide Section */
.why-section {
  background-color: var(--dark-surface);
}

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

.why-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary-gold);
  border-radius: 12px;
  padding: 32px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(0,0,0,0.01);
}

.why-card:hover {
  border-left-color: var(--green-accent);
  transform: translateX(4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.why-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark-bg);
  color: #0D0D0D;
}

.why-card-desc {
  font-size: 0.95rem;
  color: var(--muted-dark-text);
}

/* For Captains Section */
.captains-section {
  background-color: var(--dark-bg);
}

.captain-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.cap-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 32px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.cap-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-accent);
  box-shadow: 0 15px 30px rgba(0,0,0,0.04);
}

.cap-card-icon {
  font-size: 2.25rem;
  color: var(--green-accent);
  margin-bottom: 16px;
}

.cap-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #0D0D0D;
}

.cap-card-desc {
  font-size: 0.95rem;
  color: var(--muted-dark-text);
}

.captains-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Safety Section */
.safety-section {
  background-color: var(--dark-surface);
}

.safety-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  border-color: var(--green-accent);
}

.safety-card-icon {
  font-size: 2.5rem;
  color: var(--green-accent);
  margin-bottom: 16px;
}

.safety-card-title {
  font-size: 1.25rem;
  color: var(--dark-bg);
  color: #0D0D0D;
  margin-bottom: 12px;
}

.safety-card-desc {
  font-size: 0.95rem;
  color: var(--muted-dark-text);
}

/* Expansion Section */
.expansion-section {
  background-color: var(--dark-bg);
  text-align: center;
}

.expansion-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.expansion-row {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  text-align: left;
  margin-top: 24px;
}

.expansion-row > div {
  flex: 1;
}

.city-group-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.city-group-title.live {
  color: var(--green-accent);
}

.city-group-title.future {
  color: var(--muted-dark-text);
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
}

.city-tag {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.city-tag.live {
  background-color: rgba(0, 196, 98, 0.06);
  border: 1px solid var(--green-accent);
  color: var(--green-accent);
}

.city-tag.live:hover {
  background-color: var(--green-accent);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 196, 98, 0.15);
}

.city-tag.future {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  color: var(--muted-dark-text);
  box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.city-tag.future:hover {
  border-color: #999;
  color: #0D0D0D;
  transform: scale(1.05);
}

/* Download App Section */
.download-section {
  background-color: var(--dark-surface);
  text-align: center;
}

.download-box {
  max-width: 600px;
  margin: 0 auto;
}

.download-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.download-note {
  font-size: 0.875rem;
  color: var(--muted-dark-text);
  font-weight: 500;
}

.download-support {
  font-size: 0.75rem;
  color: var(--muted-dark-text);
  margin-top: 8px;
}

/* Footer Section */
.site-footer {
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 32px 0;
  font-family: var(--font-body);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: #0D0D0D; /* Dark logo for footer */
  margin-bottom: 8px;
}

.footer-brand .tagline {
  font-size: 14px;
  color: var(--muted-dark-text);
  margin-bottom: 4px;
}

.footer-brand .company {
  font-size: 12px;
  color: var(--muted-dark-text);
  opacity: 0.8;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #0D0D0D;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--muted-dark-text);
}

.footer-link:hover {
  color: var(--green-accent);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted-dark-text);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--green-accent);
  color: var(--white);
  border-color: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 196, 98, 0.15);
}

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

.copyright {
  font-size: 13px;
  color: var(--muted-dark-text);
  opacity: 0.8;
}

.policy-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.policy-link {
  font-size: 13px;
  color: var(--muted-dark-text);
  opacity: 0.8;
}

.policy-link:hover {
  color: var(--green-accent);
  opacity: 1;
}

/* Standalone Support Pages Styles */
.support-hero {
  padding-top: 160px;
  padding-bottom: 48px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.support-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0D0D0D;
}

.support-hero-desc {
  font-size: 1.125rem;
  color: var(--muted-dark-text);
  max-width: 600px;
  margin: 0 auto;
}

.support-content-section {
  background-color: var(--dark-surface);
  color: #0D0D0D;
  padding: 64px 0;
}

.support-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.policy-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-dark-text);
}

.policy-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-bg);
  color: #0D0D0D;
  margin-top: 40px;
  margin-bottom: 16px;
}

.policy-text p {
  margin-bottom: 20px;
}

.policy-text ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.policy-text li {
  margin-bottom: 8px;
}

/* Contact Page Form & Block */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.contact-card-form {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.contact-form-heading {
  font-size: 1.5rem;
  color: var(--dark-bg);
  color: #0D0D0D;
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 0.95rem;
  color: var(--muted-dark-text);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-bg);
  color: #0D0D0D;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background-color: var(--dark-surface);
  color: #0D0D0D;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--green-accent);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 196, 98, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.info-block-title {
  font-size: 1.25rem;
  color: var(--dark-bg);
  color: #0D0D0D;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--green-accent);
}

.info-text-primary {
  font-weight: 600;
  color: var(--dark-bg);
  color: #0D0D0D;
  font-size: 14px;
}

.info-text-secondary {
  color: var(--muted-dark-text);
  font-size: 14px;
}

/* Mobile Popup Navigation */
.mobile-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  transform: translateY(-20px);
}

.mobile-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: #0D0D0D;
  font-size: 32px;
  cursor: pointer;
}

.mobile-popup-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #0D0D0D;
}

.mobile-nav-link:hover {
  color: var(--green-accent);
}

.mobile-popup-bottom {
  text-align: center;
}

.mobile-popup-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0D0D0D;
}

.mobile-popup-desc {
  font-size: 13px;
  color: var(--muted-dark-text);
  margin-bottom: 24px;
}

.mobile-popup-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Floating Animation */
@keyframes floatMockup {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .e-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .e-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .e-section {
    padding: var(--section-padding-mobile);
  }
  .hero-section {
    padding-top: 120px;
  }
  .nav-menu, .header-ctas {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .e-grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-mockup-wrapper {
    margin-top: 24px;
  }
  .section-title {
    font-size: 2rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .captain-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .captains-ctas {
    flex-direction: column;
  }
  .e-grid-3 {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .how-steps-wrapper {
    grid-template-columns: 1fr !important;
  }
  .step-divider-container {
    display: none !important;
  }
  .expansion-row {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .e-grid-4 {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .policy-links {
    flex-direction: column;
    gap: 12px;
  }
}
