/* ========================================
   FleetPath Design System
   Clean • Light • Modern • Premium
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --fp-blue: #1F73F1;
  --fp-blue-dark: #1557B0;
  --fp-blue-light: #E8F0FE;
  --fp-blue-glow: rgba(31, 115, 241, 0.15);
  --fp-navy: #0A1628;
  --fp-navy-light: #0F2440;
  --fp-white: #FFFFFF;
  --fp-off-white: #F8FAFE;
  --fp-gray-50: #F9FAFB;
  --fp-gray-100: #F3F4F6;
  --fp-gray-200: #E5E7EB;
  --fp-gray-300: #D1D5DB;
  --fp-gray-400: #9CA3AF;
  --fp-gray-500: #6B7280;
  --fp-gray-600: #4B5563;
  --fp-gray-700: #374151;
  --fp-gray-800: #1F2937;
  --fp-gray-900: #111827;
  --fp-green: #10B981;
  --fp-gold: #F59E0B;
  --fp-red: #EF4444;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-blue: 0 4px 14px rgba(31, 115, 241, 0.25);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-family);
  color: var(--fp-gray-800);
  background: var(--fp-white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--fp-blue); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--fp-blue-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--fp-gray-900); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--fp-gray-600); line-height: 1.75; }
.text-gradient {
  background: linear-gradient(135deg, var(--fp-blue), #4F9CF7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99999;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md);
}
.nav-inner { max-width: 1400px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; color: var(--fp-blue); }
.nav-logo svg { width: 36px; height: 36px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 16px; font-size: 0.9rem; font-weight: 500;
  color: var(--fp-gray-600); border-radius: var(--radius-md);
  transition: var(--transition-fast); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--fp-blue); background: var(--fp-blue-light); }
.nav-cta {
  padding: 10px 24px; font-size: 0.875rem; font-weight: 600;
  color: var(--fp-white); background: var(--fp-blue);
  border: none; border-radius: var(--radius-full); cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-blue);
}
.nav-cta:hover { background: var(--fp-blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(31,115,241,0.35); color: #fff; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--fp-gray-700); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* --- Hero Sections --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: 72px; z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  will-change: transform;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.80) 0%, rgba(10,22,40,0.55) 50%, rgba(31,115,241,0.20) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-content h1 { color: var(--fp-white); margin-bottom: 20px; font-weight: 800; }
.hero-content .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.85);
  font-weight: 500; margin-bottom: 16px;
}
.hero-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; max-width: 600px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-mini { min-height: 55vh; }
.hero-mini .hero-content { text-align: center; margin: 0 auto; }
.hero-mini .hero-content p { margin-left: auto; margin-right: auto; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--fp-off-white); border-top: 1px solid var(--fp-gray-200);
  border-bottom: 1px solid var(--fp-gray-200); padding: 20px 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 600; color: var(--fp-gray-700);
}
.trust-item .dot { width: 8px; height: 8px; background: var(--fp-blue); border-radius: 50%; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: 0.95rem; font-weight: 600;
  border: none; border-radius: var(--radius-full); cursor: pointer;
  transition: var(--transition); text-decoration: none; line-height: 1;
}
.btn-primary {
  background: var(--fp-blue); color: var(--fp-white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--fp-blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31,115,241,0.4); color: #fff; }
.btn-outline {
  background: transparent; color: var(--fp-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--fp-white); color: #fff; }
.btn-outline-dark { background: transparent; color: var(--fp-blue); border: 2px solid var(--fp-blue); }
.btn-outline-dark:hover { background: var(--fp-blue); color: var(--fp-white); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn svg, .btn i { width: 18px; height: 18px; }

/* --- Cards --- */
.card {
  background: var(--fp-white); border: 1px solid var(--fp-gray-200);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: transparent; }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--fp-blue-light); color: var(--fp-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem;
}
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { font-size: 0.95rem; }
.card-premium {
  background: linear-gradient(135deg, var(--fp-white), var(--fp-off-white));
  border: 1px solid var(--fp-gray-100);
  box-shadow: var(--shadow-lg);
}
.card-premium::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--fp-blue), #4F9CF7);
}

/* --- Section Headers --- */
.section-header { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; color: var(--fp-blue);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
  background: var(--fp-blue-light); padding: 6px 16px;
  border-radius: var(--radius-full);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; }

/* --- Stats --- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  text-align: center; padding: 32px 20px;
  background: var(--fp-white); border-radius: var(--radius-lg);
  border: 1px solid var(--fp-gray-200);
}
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--fp-blue); margin-bottom: 4px; }
.stat-label { font-size: 0.9rem; color: var(--fp-gray-500); font-weight: 500; }

/* --- Leadership --- */
.leader-card {
  text-align: center; padding: 40px 30px;
  background: var(--fp-white); border: 1px solid var(--fp-gray-200);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.leader-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--fp-blue), #4F9CF7);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; color: var(--fp-white);
}
.leader-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.leader-card .title { font-size: 0.875rem; color: var(--fp-blue); font-weight: 600; margin-bottom: 16px; }
.leader-card p { font-size: 0.9rem; }

/* --- Mockup Display --- */
.mockup-wrapper {
  position: relative; padding: 20px;
  background: linear-gradient(135deg, var(--fp-blue-light), rgba(31,115,241,0.05));
  border-radius: var(--radius-xl); overflow: hidden;
}
.mockup-wrapper img {
  border-radius: var(--radius-md); box-shadow: var(--shadow-2xl);
  width: 100%; height: auto;
}
.mockup-phone {
  max-width: 280px; margin: 0 auto;
  border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow-2xl); border: 8px solid var(--fp-gray-900);
  height: 580px;
}
.mockup-phone img { border-radius: 0; width: 100%; height: 100%; object-fit: cover; }

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--fp-gray-700); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px; font-size: 0.95rem;
  border: 1.5px solid var(--fp-gray-300); border-radius: var(--radius-md);
  background: var(--fp-white); color: var(--fp-gray-800);
  transition: var(--transition-fast); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--fp-blue); box-shadow: 0 0 0 3px var(--fp-blue-glow);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-card {
  background: var(--fp-white); border: 1px solid var(--fp-gray-200);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* --- News / Timeline --- */
.news-card {
  background: var(--fp-white); border: 1px solid var(--fp-gray-200);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition); margin-bottom: 24px;
}
.news-card:hover { box-shadow: var(--shadow-lg); border-color: var(--fp-blue-light); }
.news-date { font-size: 0.8rem; font-weight: 600; color: var(--fp-blue); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.news-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.news-card p { font-size: 0.95rem; }
.news-tag { display: inline-block; padding: 4px 12px; font-size: 0.75rem; font-weight: 600; background: var(--fp-blue-light); color: var(--fp-blue); border-radius: var(--radius-full); margin-top: 16px; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--fp-navy), var(--fp-navy-light));
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,115,241,0.15), transparent 70%);
}
.cta-section h2 { color: var(--fp-white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 36px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: var(--fp-gray-900); color: var(--fp-gray-400); padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand p { font-size: 0.9rem; margin-top: 16px; line-height: 1.7; color: var(--fp-gray-400); }
.footer h4 { color: var(--fp-white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-links a { display: block; padding: 6px 0; font-size: 0.9rem; color: var(--fp-gray-400); transition: var(--transition-fast); }
.footer-links a:hover { color: var(--fp-white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem;
}
.safe-harbor {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; margin-top: 0;
  font-size: 0.72rem; line-height: 1.6; color: var(--fp-gray-500);
}

/* --- Animations --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-ring { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
/* --- Scroll Reveal (CSS + IntersectionObserver) --- */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Investor Highlights --- */
.highlight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.highlight-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--fp-white); border: 1px solid var(--fp-gray-200);
  transition: var(--transition); position: relative; overflow: hidden;
}
.highlight-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--fp-blue);
}
.highlight-card:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.highlight-card h4 { margin-bottom: 8px; }
.highlight-card p { font-size: 0.9rem; }

/* --- Value Points (For Fleets) --- */
.value-list { list-style: none; padding: 0; }
.value-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--fp-gray-100);
  font-size: 1rem; color: var(--fp-gray-700);
}
.value-list li:last-child { border: none; }
.value-check {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--fp-blue-light); color: var(--fp-blue);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-4, .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: #FFFFFF; flex-direction: column; padding: 24px;
    gap: 4px; z-index: 999999; overflow-y: auto;
    border-top: 2px solid var(--fp-blue);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 16px 20px; font-size: 1.1rem; font-weight: 600; width: 100%;
    color: var(--fp-gray-800); border-radius: var(--radius-md);
    border: 1px solid var(--fp-gray-100);
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--fp-blue); background: var(--fp-blue-light);
    border-color: var(--fp-blue);
  }
  .mobile-toggle { display: block; z-index: 10000; }
  .nav-cta { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4, .stat-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-mini { min-height: auto; padding-top: 100px; padding-bottom: 50px; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; margin-top: 24px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-items { gap: 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 24px; }
  .leader-kevin { order: -1; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .stat-number { font-size: 2rem; }
}
