:root {
  /* Color Palette - Premium Light Theme with Gold and Green */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;

  --accent-primary: #F59E0B;
  /* Gold */
  --accent-secondary: #F59E0B;
  /* Navy Blue */
  --accent-gradient: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);

  --text-primary: #0f172a;
  /* Slate 900 */
  --text-secondary: #334155;
  /* Slate 700 */
  --text-muted: #64748b;
  /* Slate 500 */

  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(15, 23, 42, 0.08);
  --glass-hover-bg: rgba(255, 255, 255, 0.95);
  --glass-hover-border: rgba(15, 23, 42, 0.12);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.15);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container-max-width: 1280px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Common Layout Elements */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: var(--transition-normal);
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--accent-secondary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #047857;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text-primary);
  border-color: var(--glass-border);
}

.btn-secondary:hover {
  background-color: var(--bg-tertiary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Badges styling */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: rgba(5, 150, 105, 0.1);
  color: var(--accent-secondary);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header Section */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
  transition: var(--transition-normal);
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-secondary);
}

.logo-img {
  width: 2.25rem;
  height: 2.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-secondary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-secondary);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 12rem;
  background-color: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background-color: var(--bg-tertiary);
  color: var(--accent-secondary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.5rem;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  background-color: var(--bg-primary);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.floating-badge-1 {
  top: 10%;
  left: -5%;
}

.floating-badge-2 {
  bottom: 15%;
  right: -5%;
}

.badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.badge-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  padding: 2.5rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-secondary);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(5, 150, 105, 0.1);
  color: var(--accent-secondary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Dual Callout (Driver Section) */
.dual-callout {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.callout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.callout-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 25rem;
}

.screenshot-overlap {
  position: relative;
  width: 100%;
}

.screenshot-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 12.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.screenshot-2 {
  position: absolute;
  top: 4rem;
  left: 9rem;
  width: 12.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

/* Timeline */
.timeline-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  margin-top: 4rem;
}

.timeline::after {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--bg-tertiary);
  z-index: 1;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--accent-secondary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--bg-primary);
}

.timeline-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.timeline-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Phone Mockup Animations */
.mockup-container {
  width: 16rem;
  height: 32rem;
  border: 10px solid #1e293b;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #0f172a;
}

.mockup-screen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.mockup-screen img.active {
  opacity: 1;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  background-color: var(--bg-secondary);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle-icon {
  font-size: 1.25rem;
  color: var(--accent-secondary);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  display: none;
}

/* CTA Banner */
.cta-banner {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.cta-card {
  background: var(--accent-gradient);
  border-radius: 1.5rem;
  padding: 4rem;
  text-align: center;
  color: #ffffff;
}

.cta-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-card .btn-primary {
  background-color: #ffffff;
  color: var(--accent-secondary);
}

.cta-card .btn-primary:hover {
  background-color: var(--bg-tertiary);
  transform: translateY(-2px);
}

.cta-card .btn-secondary {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.cta-card .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Footer styling */
footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 5rem 0 3rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-info .logo {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.social-icon:hover {
  background-color: var(--accent-secondary);
  transform: translateY(-2px);
}

.footer-links-col h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive styles */
@media (max-width: 1024px) {

  .hero-grid,
  .callout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .floating-badge {
    display: none;
  }

  .stats-grid,
  .features-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .stats-grid,
  .features-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}