/* Custom Plus Jakarta Sans loading locally (official repository files containing OpenType tables for stylistic sets like ss03) */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-ExtraBoldItalic.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* 
  SmartPark UCR - Landing Page Stylesheet
  Design System: Modern, Sleek, Elegant, Young, and Dynamic
*/

:root {
  /* Colors */
  --color-deep-navy: #0A1F6B;
  --color-royal-blue: #1A3EBF;
  --color-amber: #F5A623;
  --color-ice-blue: #E8EEFF;
  --color-dark-bg: #090e24;
  --color-card-bg: rgba(255, 255, 255, 0.08);
  --color-card-border: rgba(255, 255, 255, 0.12);
  --color-white: #ffffff;
  --color-text-light: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-dark: #0f172a;
  
  /* Status Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-sans);
  font-feature-settings: "ss03" on; /* Enable rounded alternates (a, g, y, u) globally */
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Header & Navbar */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 14, 36, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

.main-header.scrolled {
  background: rgba(9, 14, 36, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-normal);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-white);
}

.navbar-logo {
  height: 42px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.brand-text h1 {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-ice-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text span {
  font-size: 10px;
  color: var(--color-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-fast);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-royal-blue) 0%, #3058f2 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(26, 62, 191, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 62, 191, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-amber {
  background: linear-gradient(135deg, var(--color-amber) 0%, #ffc04d 100%);
  color: var(--color-dark-bg);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.3);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(26, 62, 191, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(10, 31, 107, 0.3) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--color-amber);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--color-white) 30%, var(--color-ice-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

/* Feature Badges under Hero */
.hero-badges {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.hero-badge-item {
  display: flex;
  flex-direction: column;
}

.hero-badge-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-amber);
}

.hero-badge-label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Mockup Widget - Smartphone Shell */
.hero-illustration {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--color-royal-blue);
  filter: blur(100px);
  opacity: 0.25;
  z-index: 1;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: 290px;
  height: 580px;
  background: #000;
  border: 10px solid #1c1c1e;
  border-radius: 36px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(26, 62, 191, 0.2);
  overflow: hidden;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 25px;
  background: #1c1c1e;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-dark-bg);
  padding: 30px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mock-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.mock-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-logo-img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.mock-logo-name {
  font-size: 14px;
  font-weight: 800;
}

.mock-live-badge {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 99px;
  animation: pulse-live 2s infinite;
}

.mock-rec-card {
  background: linear-gradient(135deg, rgba(26, 62, 191, 0.2) 0%, rgba(10, 31, 107, 0.2) 100%);
  border: 1px solid rgba(26, 62, 191, 0.3);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.mock-rec-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: var(--color-amber);
  filter: blur(30px);
  opacity: 0.3;
}

.mock-rec-title {
  font-size: 11px;
  color: var(--color-amber);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mock-rec-text {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mock-rec-pill {
  display: inline-block;
  background: var(--color-amber);
  color: var(--color-dark-bg);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 99px;
}

.mock-finca-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-finca-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-finca-name {
  font-size: 12px;
  font-weight: 700;
}

.mock-finca-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-finca-pct {
  font-size: 11px;
  font-weight: 600;
}

.mock-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mock-indicator.full { background-color: var(--color-danger); }
.mock-indicator.mid { background-color: var(--color-warning); }
.mock-indicator.free { background-color: var(--color-success); }

.mock-app-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  display: flex;
  justify-content: space-around;
}

.mock-footer-item {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.mock-footer-item.active {
  background: var(--color-royal-blue);
}

/* Sections Base Styling */
.section {
  padding: 100px 0;
}

.section-dark {
  background: #060919;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-tagline {
  color: var(--color-amber);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 16px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 24px;
  padding: 32px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(26, 62, 191, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-royal-blue), var(--color-amber));
  opacity: 0;
  transition: var(--transition-fast);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(26, 62, 191, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-ice-blue);
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--color-royal-blue);
  color: var(--color-white);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* About / Crisis Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-highlight {
  font-size: 18px;
  color: var(--color-amber);
  font-weight: 700;
  margin-bottom: 16px;
}

.about-text {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-royal-blue);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Live Status Peek Section */
.live-status-card {
  background: linear-gradient(135deg, #0c122e 0%, #060917 100%);
  border: 1px solid rgba(26, 62, 191, 0.25);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.live-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.live-indicator-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-dot {
  width: 12px;
  height: 12px;
  background-color: var(--color-success);
  border-radius: 50%;
  animation: pulse-live 1.8s infinite;
}

.live-indicator-wrapper h3 {
  font-size: 20px;
}

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

.live-col-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
  transition: var(--transition-normal);
}

.live-col-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 62, 191, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.live-col-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.live-col-subtitle {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.live-progress-container {
  margin-bottom: 16px;
}

.live-progress-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.live-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  transition: width 1s ease-out;
}

.live-progress-fill.free {
  background: var(--color-success);
}

.live-progress-fill.mid {
  background: var(--color-warning);
}

.live-progress-fill.full {
  background: var(--color-danger);
}

.live-col-numbers {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
}

.live-col-numbers .pct {
  color: var(--color-amber);
}

.live-card-footer {
  text-align: center;
}

/* Waitlist Sign-up Section */
.waitlist-card {
  background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-deep-navy) 100%);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.waitlist-card::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.1) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.waitlist-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.waitlist-card h2 {
  font-size: 40px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.waitlist-card p {
  color: var(--color-ice-blue);
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.waitlist-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-form {
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 6px;
  align-items: center;
  transition: var(--transition-normal);
}

.waitlist-form:focus-within {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--color-white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.waitlist-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  outline: none;
}

.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.waitlist-form .btn {
  padding: 12px 28px;
}

.waitlist-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

/* Success Feedback State */
.waitlist-success {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.waitlist-success-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.waitlist-success h3 {
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: 12px;
}

.waitlist-success p {
  font-size: 15px;
  color: var(--color-ice-blue);
  opacity: 0.9;
  max-width: 420px;
  margin: 0 auto;
}

/* Footer Section */
.main-footer {
  background: #040612;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-info-col h4 {
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-info-col p {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-links-col h5 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

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

.footer-link a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-link a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* Animations */
@keyframes pulse-live {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    opacity: 0.9;
  }
  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    opacity: 0.9;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .live-columns {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-info-col {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .navbar {
    height: 70px;
  }
  
  .nav-links {
    display: none; /* Hide navigation links on mobile to focus on CTA */
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding-top: 120px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .waitlist-card {
    padding: 40px 20px;
  }
  
  .waitlist-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }
  
  .waitlist-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    width: 100%;
  }
  
  .waitlist-form .btn {
    width: 100%;
    padding: 14px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-info-col {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Simulator Mobile Block and Promotion overrides */
@media (max-width: 900px) {
  #cta-header-simulator,
  #hero-primary-cta,
  #live-btn-go-simulator,
  #fl-simulator {
    display: none !important;
  }
  
  /* Promote pilot sign up CTA to primary on mobile */
  #hero-secondary-cta {
    background: linear-gradient(135deg, var(--color-royal-blue) 0%, #3058f2 100%) !important;
    color: var(--color-white) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(26, 62, 191, 0.4) !important;
  }
  #hero-secondary-cta:hover {
    box-shadow: 0 6px 20px rgba(26, 62, 191, 0.6) !important;
  }
  
  .simulator-mobile-warning {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--color-royal-blue);
    border-radius: 12px;
    padding: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.5;
    margin-top: 10px;
  }
}

/* Simulator Desktop-Only Disclaimer styling (shows on both desktop & mobile) */
.hero-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--color-amber);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: -24px;
  margin-bottom: 40px;
  max-width: 520px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-disclaimer strong {
  color: var(--color-white);
}

.hero-disclaimer .disclaimer-icon {
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .hero-disclaimer {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

