/* ==========================================================================
   MYLOC LANDING PAGE DESIGN SYSTEM (VANILLA CSS)
   Theme: High-End Dark Glassmorphism, Cyan/Lime Accents, Modern Typography
   ========================================================================== */

/* 1. CSS VARIABLES & RESET */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Color Palette */
  --bg-dark: #07111a;
  --bg-card: rgba(13, 27, 42, 0.65);
  --bg-card-hover: rgba(20, 38, 58, 0.8);
  --bg-darker: #03070b;

  /* Accents */
  --cyan: #00B6FF;
  --cyan-glow: rgba(0, 182, 255, 0.4);
  --lime: #A3E635;
  --lime-glow: rgba(163, 230, 53, 0.35);
  --purple: #8B5CF6;
  --yellow: #F59E0B;
  --red: #EF4444;
  --blue: #3B82F6;

  /* Text Colors */
  --text-white: #FFFFFF;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  /* Glassmorphism & Borders */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-cyan: rgba(0, 182, 255, 0.3);
  --shadow-main: 0 12px 40px rgba(0, 0, 0, 0.45);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* 2. BACKGROUND GLOW ORBS */
.bg-glow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.4;
}

.bg-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--cyan);
  top: -100px;
  left: -150px;
}

.bg-glow-2 {
  width: 600px;
  height: 600px;
  background: #1e3a8a;
  top: 40%;
  right: -200px;
}

.bg-glow-3 {
  width: 450px;
  height: 450px;
  background: var(--purple);
  bottom: 5%;
  left: -100px;
}

/* 3. LAYOUT & CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background-color: rgba(3, 7, 11, 0.5);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.align-center { align-items: center; }
.text-center { text-align: center; }

/* 4. TYPOGRAPHY & BADGES */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.2;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(0, 182, 255, 0.1);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-pill);
  color: var(--cyan);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3rem;
}

.gradient-text {
  background: linear-gradient(135deg, #00B6FF 0%, #A3E635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan { color: var(--cyan) !important; }
.text-lime { color: var(--lime) !important; }
.text-purple { color: var(--purple) !important; }
.text-blue { color: var(--blue) !important; }
.text-yellow { color: var(--yellow) !important; }
.text-red { color: var(--red) !important; }
.text-white { color: var(--text-white) !important; }
.text-muted { color: var(--text-muted) !important; }

/* 5. GLASSMORPHISM CARDS */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-main);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card-hover:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 182, 255, 0.25);
  box-shadow: 0 16px 48px rgba(0, 182, 255, 0.15);
}

.highlight-border {
  border: 1px solid var(--cyan);
  box-shadow: 0 0 25px rgba(0, 182, 255, 0.2);
}

/* 6. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00B6FF 0%, #0088CC 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #33C5FF 0%, #0099EE 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 182, 255, 0.6);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border-cyan);
}

.btn-outline:hover {
  background: rgba(0, 182, 255, 0.1);
  border-color: var(--cyan);
}

.btn-sm { padding: 0.5rem 1.15rem; font-size: 0.875rem; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.1rem; }
.btn-xs { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
.btn-block { width: 100%; }

.pulse-btn {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 182, 255, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(0, 182, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 182, 255, 0); }
}

/* 7. NAVIGATION BAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(7, 17, 26, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-fast);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  height: 38px;
  width: auto;
}

.brand-badge {
  background: var(--lime);
  color: var(--bg-darker);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* 8. HERO SECTION */
.hero-section {
  padding-top: 8.5rem;
  padding-bottom: 5.5rem;
  position: relative;
  background: linear-gradient(135deg, rgba(3, 7, 11, 0.92) 0%, rgba(7, 17, 26, 0.75) 45%, rgba(3, 7, 11, 0.88) 100%), 
              url('assets/car_photo.png') no-repeat center center / cover;
  border-bottom: 1px solid var(--border-glass);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem;
  align-items: center;
}

/* Glassmorphism Card Left (as on design screenshot) */
.hero-card-left {
  background: rgba(7, 17, 26, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 182, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  position: relative;
}

.hero-brand-header {
  margin-bottom: 1.25rem;
}

.hero-brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: 0.35rem;
  filter: drop-shadow(0 2px 8px rgba(0, 182, 255, 0.3));
}

.hero-slogan {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-card-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.hero-card-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

/* Contacts info box from 2nd screenshot */
.hero-contact-box {
  background: rgba(0, 182, 255, 0.06);
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-prompt {
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-leader {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.contact-leader strong {
  color: var(--lime);
}

.contact-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.contact-details-row a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.contact-details-row a:hover {
  color: var(--lime);
  text-decoration: underline;
}

.contact-footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(163, 230, 53, 0.1);
  border: 1px solid rgba(163, 230, 53, 0.3);
  border-radius: var(--radius-pill);
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-stats-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stat-mini-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}

.stat-mini-card .stat-value {
  font-size: 1.35rem;
  margin-bottom: 0.15rem;
}

.stat-mini-card .stat-label {
  font-size: 0.75rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Mockup Card */
.mockup-card {
  padding: 1.5rem;
  border: 1px solid rgba(0, 182, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 1.25rem;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-dots span:nth-child(1) { background: #FF5F56; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #27C93F; }

.mockup-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.driver-match-box {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.user-avatar-wrap {
  position: relative;
}

.user-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  object-fit: cover;
}

.online-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: var(--lime);
  border: 2px solid var(--bg-dark);
  border-radius: 50%;
}

.match-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.match-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.tags-row {
  display: flex;
  gap: 0.5rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.tag-lime { background: rgba(163, 230, 53, 0.15); color: var(--lime); }
.tag-blue { background: rgba(59, 130, 246, 0.15); color: var(--blue); }

.match-price {
  text-align: right;
  margin-left: auto;
}

.price-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lime);
}

.price-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.app-status-bar {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.app-download-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 182, 255, 0.08);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
}

.dl-text strong { display: block; font-size: 0.9rem; color: var(--text-white); }
.dl-text small { font-size: 0.75rem; color: var(--text-secondary); }

/* 9. PROBLEMS & SOLUTION */
.problem-card .card-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.check-list li i {
  margin-top: 0.2rem;
}

.card-footer-tag {
  font-size: 0.85rem;
  font-weight: 600;
  border-top: 1px solid var(--border-glass);
  padding-top: 1rem;
}

.badge-top-corner {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--cyan);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* 10. PRODUCT MVP SECTION */
.image-wrapper {
  position: relative;
  padding: 0.75rem;
}

.img-fluid {
  width: 100%;
  height: auto;
  display: block;
}

.rounded {
  border-radius: var(--radius-md);
}

.floating-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 1.5rem;
  background: rgba(7, 17, 26, 0.9);
  border: 1px solid var(--border-cyan);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-main);
}

.floating-badge i { font-size: 1.8rem; }
.floating-badge strong { display: block; font-size: 0.95rem; }
.floating-badge small { font-size: 0.8rem; color: var(--text-secondary); }

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 182, 255, 0.1);
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* 11. MARKET SECTION */
.stat-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.market-insight-banner {
  padding: 2rem;
  border-color: rgba(163, 230, 53, 0.3);
}

.insight-content {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.insight-icon {
  font-size: 3rem;
  color: var(--lime);
}

.insight-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.insight-content p {
  color: var(--text-secondary);
}

/* 12. BUSINESS MODEL */
.tarification-grid {
  max-width: 900px;
  margin: 0 auto;
}

.tarif-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.popular-tarif {
  border-color: var(--cyan);
  box-shadow: 0 0 35px rgba(0, 182, 255, 0.25);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 2rem;
  background: var(--cyan);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
}

.tarif-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.tarif-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.tarif-price .amount {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-white);
}

.tarif-price .period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.tarif-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tarif-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.financial-summary-card {
  background: rgba(0, 182, 255, 0.04);
  border: 1px solid var(--border-cyan);
}

.fin-item {
  display: flex;
  flex-direction: column;
}

.fin-label { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.35rem; }
.fin-val { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; }
.fin-sub { font-size: 0.75rem; color: var(--text-muted); }

/* 13. INTERACTIVE ROADMAP */
.roadmap-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.tab-btn span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.tab-btn small {
  font-size: 0.8rem;
}

.tab-btn.active, .tab-btn:hover {
  background: rgba(0, 182, 255, 0.1);
  border-color: var(--cyan);
}

.tab-btn.active span {
  color: var(--cyan);
}

.roadmap-content-box {
  min-height: 240px;
}

.quarter-panel {
  display: none;
}

.quarter-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.quarter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 1.5rem;
}

.quarter-header h3 {
  font-size: 1.35rem;
}

.budget-tag {
  background: rgba(163, 230, 53, 0.15);
  color: var(--lime);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}

.quarter-tasks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.quarter-tasks li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.quarter-tasks li i {
  margin-top: 0.25rem;
}

/* 14. CTA & FOOTER */
.cta-box {
  background: linear-gradient(135deg, rgba(0, 182, 255, 0.15) 0%, rgba(13, 27, 42, 0.9) 100%);
  border: 1px solid var(--border-cyan);
  padding: 4rem 2rem;
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-glass);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  height: 42px;
  margin-bottom: 1rem;
}

.location-tag {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--text-white);
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.contact-person strong { display: block; font-size: 1.05rem; }
.contact-person small { color: var(--text-secondary); font-size: 0.85rem; display: block; margin-bottom: 0.85rem; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-item {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-fast);
}

.contact-item:hover { color: var(--cyan); }

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 15. MODAL WINDOW */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 11, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  background: rgba(13, 27, 42, 0.95);
  border-color: var(--cyan);
  box-shadow: 0 25px 60px rgba(0, 182, 255, 0.3);
  transform: scale(0.95);
  transition: var(--transition-normal);
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) transparent;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover { color: var(--text-white); }

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.modal-header h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.modal-header p { font-size: 0.9rem; color: var(--text-secondary); }

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.modal-form .btn {
  font-size: 0.95rem;
  padding: 0.8rem 1.25rem;
  white-space: normal;
  word-break: break-word;
}

.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.radio-label input { accent-color: var(--cyan); }

.form-success-box {
  text-align: center;
  padding: 2rem 0;
}

.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.hidden { display: none !important; }

/* 16. RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .roadmap-tabs { grid-template-columns: repeat(2, 1fr); }
  .quarter-tasks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .bg-glow-1 { width: 220px; height: 220px; left: -40px; top: -50px; }
  .bg-glow-2 { width: 250px; height: 250px; right: -40px; }
  .bg-glow-3 { width: 200px; height: 200px; left: -30px; }

  .hero-section {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: center;
    width: 100% !important;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .badge-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-actions .btn {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(7, 17, 26, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: var(--transition-normal);
    border-bottom: 1px solid var(--border-glass);
  }

  .nav-menu.active { transform: translateY(0); }
  .hamburger { display: block; }
  
  .hero-title {
    text-align: center;
    font-size: 1.95rem;
    line-height: 1.25;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats-cards {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group,
  .cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
  }

  .hero-cta-group .btn,
  .cta-actions .btn {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .cta-box h2 {
    font-size: 1.85rem;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .mockup-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .section-title { font-size: 1.75rem; text-align: center; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr) !important; }
  .popular-tarif { transform: none; }
  .financial-summary-card .grid-3 { grid-template-columns: minmax(0, 1fr) !important; gap: 1.5rem; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) !important; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem !important;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .brand-logo {
    height: 32px;
  }

  .brand-badge {
    font-size: 0.6rem;
    padding: 0.1rem 0.35rem;
  }

  .hero-section {
    padding-top: 5.75rem;
    padding-bottom: 3rem;
  }

  .badge-tag {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
    margin-bottom: 1rem;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    display: inline-block;
    line-height: 1.3;
  }

  .hero-title {
    font-size: 1.55rem;
    line-height: 1.25;
    margin-bottom: 1rem;
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .hero-stats-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-cta-group,
  .cta-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-cta-group .btn,
  .cta-actions .btn {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .cta-box {
    padding: 2.25rem 1rem;
  }

  .cta-box h2 {
    font-size: 1.45rem;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 0.85rem;
  }

  .cta-box p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn-lg { width: 100%; }
  .roadmap-tabs { grid-template-columns: 1fr; }

  /* Mockup & Card Adaptations for 360px */
  .mockup-card {
    padding: 1rem 0.85rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .app-download-bar {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }

  .stat-card {
    padding: 0.75rem;
    text-align: center;
  }

  .stat-value {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Modal Mobile Adaptations */
  .modal-overlay {
    padding: 0.75rem;
    align-items: flex-start;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .modal-container {
    padding: 1.25rem;
    max-height: calc(100vh - 3rem);
  }

  .modal-header {
    margin-bottom: 1.25rem;
  }

  .modal-header h3 {
    font-size: 1.25rem;
  }

  .modal-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .form-group {
    margin-bottom: 0.85rem;
  }

  .radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
}

/* Market Stat Sequence Box Styles */
.stat-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 1.5rem;
}

.stat-step-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-step-badge.total-badge {
  width: auto;
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 182, 255, 0.15);
  border-color: var(--cyan);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
}

.stat-subnum {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.stat-box-total {
  background: rgba(0, 182, 255, 0.07) !important;
  border: 1px solid var(--cyan) !important;
  box-shadow: 0 0 25px rgba(0, 182, 255, 0.25) !important;
}

