/* ============================================================
   Maa!dd �f¢â�?s¬â�,��" Vehicle Advertising Platform
   Global Design System
   ============================================================ */

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Google Fonts �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ CSS Variables �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
:root {
  /* Colors (Cube Theme) */
  --primary: #1E88E5;
  /* Cube Blue */
  --primary-light: #42A5F5;
  --primary-dark: #1565C0;
  --accent: #E53935;
  /* Cube Red */
  --accent-2: #FB8C00;
  /* Cube Orange */
  --accent-3: #FDD835;
  /* Cube Yellow */
  --bg: #FFFFFF;
  /* Cube White */
  --bg-dark: #1A1A1A;
  --surface: #FFFFFF;
  --surface-2: #F5F5F5;
  --border: #E0E0E0;
  --text-primary: #000000;
  --text-secondary: #555555;
  --text-muted: #888888;
  --success: #43A047;
  --navbar-link-color: #1565C0;
  /* Cube Green */
  --danger: #E53935;
  /* Cube Red */
  --warning: #FB8C00;
  /* Cube Orange for warnings */

  /* Gradient */
  --gradient-main: linear-gradient(135deg, #1E88E5 0%, #42A5F5 50%, #1565C0 100%);
  --gradient-hero: linear-gradient(135deg, #1A1A1A 0%, #1E88E5 60%, #1565C0 100%);
  --gradient-card: linear-gradient(135deg, #E53935, #FB8C00);
  --gradient-accent: linear-gradient(135deg, #FB8C00, #FDD835);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 30px rgba(229, 57, 53, 0.25);
  /* Cube Red glow */
  --shadow-blue: 0 8px 32px rgba(30, 136, 229, 0.25);
  /* Cube Blue shadow */

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-max: 1200px;
  --container-pad: 1.5rem;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Reset & Base �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--font-size-base);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Container �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Typography �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.25rem, 5vw, var(--font-size-6xl));
}

h2 {
  font-size: clamp(1.875rem, 3.5vw, var(--font-size-5xl));
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, var(--font-size-3xl));
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

p {
  color: var(--text-secondary);
  line-height: 1.75;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Navigation �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 800;
  font-size: var(--font-size-xl);
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.navbar__logo span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.navbar__link {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--navbar-link-color);
  transition: color var(--transition), background var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--primary);
  background: rgba(30, 136, 229, 0.06);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) var(--container-pad) var(--space-6);
  flex-direction: column;
  gap: var(--space-2);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: slideDown 0.2s ease;
}

.navbar__mobile.open {
  display: flex;
}

.navbar__mobile .navbar__link {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-base);
  border-radius: var(--radius-md);
}

.navbar__mobile-actions {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Buttons �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30, 136, 229, 0.30);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-light);
  background: rgba(30, 136, 229, 0.04);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-accent {
  background: linear-gradient(135deg, #FB8C00, #FDD835);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(229, 57, 53, 0.35);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: var(--font-size-base);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: var(--font-size-xs);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Badge �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-primary {
  background: rgba(30, 136, 229, 0.09);
  color: var(--primary);
}

.badge-accent {
  background: rgba(229, 57, 53, 0.1);
  color: #0891b2;
}

.badge-success {
  background: rgba(67, 160, 71, 0.1);
  color: #059669;
}

.badge-warning {
  background: rgba(253, 216, 53, 0.1);
  color: #d97706;
}

.badge-gradient {
  background: var(--gradient-main);
  color: white;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Section Headers �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.section-header .badge {
  margin-bottom: var(--space-4);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Cards �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: var(--space-8);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-gradient {
  background: var(--gradient-main);
  color: white;
  border: none;
}

.card-gradient p,
.card-gradient h3 {
  color: white;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Feature Icon �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
}

.feature-icon-blue {
  background: rgba(30, 136, 229, 0.09);
  color: var(--primary-light);
}

.feature-icon-cyan {
  background: rgba(229, 57, 53, 0.1);
  color: var(--accent);
}

.feature-icon-indigo {
  background: rgba(251, 140, 0, 0.1);
  color: var(--accent-2);
}

.feature-icon-amber {
  background: rgba(253, 216, 53, 0.1);
  color: var(--accent-3);
}

.feature-icon-green {
  background: rgba(67, 160, 71, 0.1);
  color: var(--success);
}

.feature-icon-gradient {
  background: var(--gradient-main);
  color: white;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Grid Layouts �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Section spacing �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.section {
  padding: var(--space-24) 0;
}

.section-sm {
  padding: var(--space-16) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: white;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section-gradient {
  background: var(--gradient-hero);
  color: white;
}

.section-surface {
  background: var(--surface-2);
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Footer �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: var(--space-20) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  margin-top: var(--space-4);
  line-height: 1.7;
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 800;
  font-size: var(--font-size-xl);
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer__col h5 {
  color: white;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--font-size-sm);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: white;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font-size-sm);
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
}

.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer__social-btn:hover {
  background: var(--primary-light);
  color: white;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Forms �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-hint {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.form-error {
  font-size: var(--font-size-xs);
  color: var(--danger);
  margin-top: var(--space-1);
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Divider �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-8) 0;
}

.divider-text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Stats �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  font-weight: 500;
  margin-top: var(--space-1);
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Testimonial �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: var(--font-size-sm);
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--font-size-sm);
}

.testimonial-role {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.stars {
  color: var(--accent-3);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Steps �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.step-item {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--gradient-main);
  color: white;
  font-weight: 800;
  font-size: var(--font-size-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}

.step-content h4 {
  margin-bottom: var(--space-2);
}

.step-content p {
  font-size: var(--font-size-sm);
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Pricing �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition);
}

.pricing-card.featured {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-blue);
  transform: scale(1.03);
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-price {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-price sup {
  font-size: var(--font-size-xl);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.pricing-period {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}

.pricing-feature:last-of-type {
  border-bottom: none;
}

.pricing-feature .check {
  color: var(--success);
  font-size: 0.85rem;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ FAQ Accordion �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  background: var(--surface);
  text-align: left;
  transition: background var(--transition);
  gap: var(--space-4);
}

.faq-question:hover {
  background: var(--surface-2);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: rgba(30, 136, 229, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Tab Switcher �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.tab-list {
  display: flex;
  background: var(--surface-2);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 2px;
  width: fit-content;
}

.tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.tab-btn.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Hero Section �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

/* hero background logo removed */

.hero-glow {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -100px;
  right: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-2);
  bottom: -50px;
  left: -50px;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-20) 0;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #67e8f9, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-size-lg);
  max-width: 500px;
  margin-bottom: var(--space-10);
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__stats {
  margin-top: var(--space-16);
  display: flex;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.hero__stat {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: var(--space-5);
}

.hero__stat-value {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ CTA Section �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.cta-section {
  background: var(--gradient-hero);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2,
.cta-section p {
  color: white;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
}

.cta-section .cta-btns {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Vehicle Card �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.vehicle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition);
}

.vehicle-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.vehicle-card .vehicle-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-4);
  display: block;
}

.vehicle-card h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Check List �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.check-item .check-icon {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: rgba(67, 160, 71, 0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Auth Pages �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-left {
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-16);
  position: relative;
  overflow: hidden;
}

/* auth-left background logo removed */

.auth-left-content {
  position: relative;
  z-index: 1;
}

.auth-left h2 {
  color: white;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: var(--space-8) 0 var(--space-4);
}

.auth-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-8);
}

.auth-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-sm);
}

.auth-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.auth-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-16);
  background: var(--surface);
  overflow-y: auto;
}

.auth-form-container {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 800;
  font-size: var(--font-size-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-8);
}

.auth-logo .auth-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.auth-form-container h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-2);
}

.auth-form-container .auth-subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  font-size: var(--font-size-sm);
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Dashboard �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.dashboard-sidebar {
  width: 260px;
  min-width: 260px;
  flex-shrink: 0;
  background: var(--bg-dark);
  color: white;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 200;
}


.sidebar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 800;
  font-size: var(--font-size-lg);
  color: white;
}

.sidebar-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-main);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.sidebar-nav {
  padding: var(--space-4) var(--space-3);
  flex: 1;
}

.sidebar-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  padding: var(--space-4) var(--space-4) var(--space-2);
  font-weight: 600;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: all var(--transition);
  margin-bottom: 2px;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.sidebar-link.active {
  background: var(--primary);
  color: white;
}

.sidebar-link .icon {
  width: 18px;
  text-align: center;
  font-size: 0.95rem;
}

.sidebar-footer {
  padding: var(--space-4) var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dashboard-main {
  flex: 1;
  min-width: 0;
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}


.dashboard-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Hamburger toggle — hidden on desktop, shown on mobile via media query */
.dashboard-mobile-toggle {
  display: none;
}

/* ── Sidebar close button (injected by JS on mobile) ── */
.sidebar-close-btn {
  display: none;
  /* hidden on desktop — shown via media query below */
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
  flex-shrink: 0;
  padding: 0;
}

.sidebar-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.dashboard-topbar h4 {
  font-size: var(--font-size-lg);
  white-space: nowrap;
}

.dashboard-topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.topbar-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition);
  position: relative;
}

.topbar-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.topbar-avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: var(--font-size-sm);
  cursor: pointer;
}

.badge-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--danger);
  border: 2px solid var(--surface);
}


.dashboard-content {
  padding: var(--space-6) var(--space-8);
}

.dashboard-section-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
}

.dashboard-stat-card {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dashboard-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
}

.dashboard-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}

.ds-icon-blue {
  background: rgba(30, 136, 229, 0.09);
  color: var(--primary-light);
}

.ds-icon-cyan {
  background: rgba(229, 57, 53, 0.1);
  color: var(--accent);
}

.ds-icon-green {
  background: rgba(67, 160, 71, 0.1);
  color: var(--success);
}

.ds-icon-amber {
  background: rgba(253, 216, 53, 0.1);
  color: var(--accent-3);
}

.ds-icon-indigo {
  background: rgba(251, 140, 0, 0.1);
  color: var(--accent-2);
}

.dashboard-stat-value {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1.1;
}

.dashboard-stat-label {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.01em;
  text-transform: none;
  /* no uppercase — prevents wrapping */
  white-space: normal;
  line-height: 1.3;
}

.dashboard-stat-change {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  margin-top: var(--space-2);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.change-up {
  background: rgba(67, 160, 71, 0.1);
  color: var(--success);
}

.change-down {
  background: rgba(229, 57, 53, 0.1);
  color: var(--danger);
}

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.data-table thead th {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.data-table tbody tr:hover {
  background: var(--surface-2);
}

.data-table tbody td {
  padding: var(--space-4);
  color: var(--text-secondary);
  vertical-align: middle;
}

.data-table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-active {
  background: rgba(67, 160, 71, 0.1);
  color: #059669;
}

.status-paused {
  background: rgba(253, 216, 53, 0.1);
  color: #d97706;
}

.status-pending {
  background: rgba(251, 140, 0, 0.1);
  color: #4f46e5;
}

.status-ended {
  background: rgba(148, 163, 184, 0.15);
  color: #64748b;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Progress bar �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.progress-bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--gradient-main);
  transition: width 1s ease;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Chart placeholder �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.chart-placeholder {
  height: 220px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
}

.chart-bar {
  flex: 1;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: var(--gradient-main);
  opacity: 0.8;
  min-height: 20px;
  transition: opacity var(--transition);
}

.chart-bar:hover {
  opacity: 1;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Notification dot �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.notif-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--danger);
  display: inline-block;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Animate on scroll �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Scroll Indicator �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-xs);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator span::before {
  content: '';
  width: 4px;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  animation: scrollDot 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

/* --- Responsive --- */

/* ---------- Tablet (1024px) ---------- */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-left {
    display: none;
  }

  .dashboard-sidebar {
    width: 220px;
  }

  .dashboard-main {
    margin-left: 220px;
  }

  .contact-split {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- Mobile (768px) ---------- */
@media (max-width: 768px) {
  :root {
    --container-pad: 1rem;
  }

  .navbar__nav,
  .navbar__actions {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-section .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .section-sm {
    padding: var(--space-10) 0;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  /* ═══ PRECISE SIDEBAR CONSTRAINTS (Off-canvas Transform) ═══ */
  .dashboard-layout {
    display: block;
  }

  .dashboard-main {
    display: block;
    width: 100% !important;
    min-width: 0;
  }

  /* Sidebar: Off-canvas by default */
  .dashboard-sidebar {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 75% !important;
    max-width: 320px !important;
    height: 100vh !important;
    min-width: 0 !important;
    z-index: 1001 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: var(--bg-dark);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  /* Sidebar: Slide in when open */
  body.sidebar-open .dashboard-sidebar {
    transform: translateX(0);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.45);
  }

  /* (Removed old slide-out/slide-in keyframes since transition handles it) */

  /* Close button (injected by JS) */
  .sidebar-close-btn {
    display: flex !important;
    align-self: flex-end;
    margin: 0.75rem 0.75rem 0 auto;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  /* Overlay div injected by JS */
  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    cursor: pointer;
    animation: overlayFadeIn 0.22s ease;
  }

  @keyframes overlayFadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Lock body scroll while sidebar open */
  body.sidebar-open {
    overflow: hidden;
  }



  .dashboard-mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .dashboard-main {
    width: 100%;
  }

  /* Show the injected close button on mobile */
  .sidebar-close-btn {
    display: flex;
  }

  /* Sidebar needs position:relative so the close button anchors to it */
  .dashboard-sidebar {
    position: fixed;
    /* already set above, just add relative for stacking context */
  }

  .dashboard-content {
    padding: var(--space-4) var(--space-4);
  }

  .dashboard-topbar {
    padding: var(--space-3) var(--space-4);
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  /* Hide subtitle text in topbar on mobile to save space */
  .topbar-sub {
    display: none;
  }

  /* On mobile: stat card text tighter to fit 2-col grid */
  .dashboard-stat-value {
    font-size: 1.5rem;
  }

  .dashboard-stat-label {
    font-size: 0.66rem;
    letter-spacing: 0;
  }

  .dashboard-stat-change {
    font-size: 0.66rem;
    padding: 2px 5px;
  }

  .dashboard-stat-card {
    overflow: hidden;
  }

  .step-item {
    flex-direction: column;
    gap: var(--space-4);
  }

  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-left {
    display: none;
  }

  .auth-right {
    padding: var(--space-8) var(--space-5);
  }

  .auth-form-container {
    max-width: 100%;
  }

  .contact-split {
    grid-template-columns: 1fr !important;
  }

  .data-table {
    min-width: 700px;
  }

  .tab-list {
    flex-wrap: wrap;
  }

  .section-header {
    margin-bottom: var(--space-10);
  }

  .badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
  }

  .pricing-card {
    margin-bottom: 0;
  }
}

/* ═══ Responsive Dashboard Grid Utilities ═══ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

@media(max-width:1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2-1 {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-2-1 {
    grid-template-columns: 1fr;
  }
}

@media(max-width:480px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .grid-2-1 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ---------- Small Mobile (480px) ---------- */
@media (max-width: 480px) {
  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.05rem;
  }

  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: var(--font-size-sm);
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .card {
    padding: var(--space-5);
  }

  .section {
    padding: var(--space-12) 0;
  }

  .section-sm {
    padding: var(--space-8) 0;
  }

  .dashboard-stat-card {
    padding: var(--space-4);
  }

  .dashboard-stat-value {
    font-size: 1.4rem;
  }

  .dashboard-topbar {
    padding: var(--space-3);
    gap: 0.5rem;
  }

  .dashboard-content {
    padding: var(--space-3);
  }

  .dashboard-mobile-toggle {
    width: 34px !important;
    height: 34px !important;
  }

  .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .auth-right {
    padding: var(--space-6) var(--space-4);
  }

  .auth-form-container h2 {
    font-size: 1.375rem;
  }

  .contact-info-item {
    flex-direction: column;
    gap: var(--space-2);
  }

  .footer {
    padding: var(--space-12) 0 var(--space-6);
  }

  .footer__brand p {
    max-width: 100%;
  }

  .chart-placeholder {
    height: 140px;
  }

  .navbar {
    height: 60px;
  }

  .navbar__mobile {
    top: 60px;
  }

  .dashboard-topbar {
    padding: var(--space-4);
  }

  .dashboard-topbar h4 {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: var(--space-5);
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .scroll-indicator {
    display: none;
  }
}

/* ---------- Tiny screens (360px) ---------- */
@media (max-width: 360px) {
  :root {
    --container-pad: 0.75rem;
  }

  h1 {
    font-size: 1.625rem;
  }

  h2 {
    font-size: 1.375rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .btn-lg {
    padding: 0.65rem 1rem;
  }

  /* Sidebar narrower so it doesn't fully cover the overlay hint */
  .dashboard-sidebar {
    width: 240px;
    min-width: 240px;
  }

  .dashboard-stat-card {
    padding: 0.75rem;
  }

  .dashboard-stat-value {
    font-size: 1.25rem;
  }

  .dashboard-stat-label {
    font-size: 0.72rem;
  }

  .dashboard-topbar {
    padding: 0.5rem 0.75rem;
    gap: 0.4rem;
  }

  .dashboard-content {
    padding: 0.75rem;
  }

  .card {
    padding: 0.875rem;
  }
}

/* ---------- Ultra-small screens (320px) ---------- */
@media (max-width: 320px) {
  :root {
    --container-pad: 0.5rem;
  }

  html {
    font-size: 14px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  h4 {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.72rem;
  }

  .btn-full,
  .btn-sm {
    width: 100%;
    justify-content: center;
  }

  /* Sidebar — slim enough to leave overlay visible */
  .dashboard-sidebar {
    width: 220px;
    min-width: 0;
  }

  .sidebar-logo {
    font-size: 1rem;
    padding: 1rem 1rem 0.5rem;
  }

  .sidebar-link {
    font-size: 0.78rem;
    padding: 0.5rem 0.75rem;
  }

  /* Topbar */
  .dashboard-topbar {
    padding: 0.4rem 0.6rem;
    gap: 0.35rem;
  }

  .dashboard-topbar h4 {
    font-size: 0.875rem;
  }

  .dashboard-topbar p {
    display: none;
  }

  .dashboard-mobile-toggle {
    width: 32px !important;
    height: 32px !important;
    padding: 0.3rem !important;
  }

  /* Content area */
  .dashboard-content {
    padding: 0.6rem;
  }

  /* Stat cards — all stack to 1 column */
  .grid-4,
  .grid-2,
  .grid-2-1 {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
    margin-bottom: 0.75rem !important;
  }

  .dashboard-stat-card {
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .dashboard-stat-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .dashboard-stat-value {
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .dashboard-stat-label {
    font-size: 0.68rem;
    margin-bottom: 0;
  }

  .dashboard-stat-change {
    font-size: 0.65rem;
  }

  .dashboard-stat-card::before {
    display: none;
  }

  /* Cards */
  .card {
    padding: 0.75rem;
    border-radius: var(--radius-lg);
  }

  /* Settings grids */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Tables — enable horizontal scroll */
  .data-table {
    min-width: 460px;
    font-size: 0.75rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.5rem 0.6rem;
  }

  /* Chart */
  .chart-placeholder {
    height: 110px;
  }

  /* Form controls */
  .form-control,
  .settings-input {
    font-size: 0.82rem;
    padding: 0.5rem 0.7rem;
  }

  /* Banner in driver dash */
  [style*="padding: 1.5rem 2rem"] {
    padding: 1rem !important;
  }

  /* Section header action row */
  [style*="justify-content: space-between"] {
    flex-wrap: wrap !important;
  }

  /* Status pills */
  .status-pill {
    font-size: 0.62rem;
    padding: 0.2rem 0.5rem;
  }
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Utility Classes �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.text-muted {
  color: var(--text-muted);
}

.text-primary-color {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.text-success {
  color: var(--success);
}

.text-danger {
  color: var(--danger);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mt-10 {
  margin-top: var(--space-10);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.align-center {
  align-items: center;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.w-full {
  width: 100%;
}

.rounded-full {
  border-radius: var(--radius-full);
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ Logo mark �f¢â�,�â�?s¬�f¢â�,�â�?s¬�f¢â�,�â�?s¬ */
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 800;
  font-size: var(--font-size-xl);
  letter-spacing: -0.03em;
}

/* --- Inline Grid Mobile Overrides --- */
/* Dashboard pages use inline style grids. These override them on mobile. */
@media (max-width: 768px) {
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 0.75rem"] {
    grid-template-columns: 1fr !important;
  }

  [style*="display: flex"][style*="justify-content: space-between"][style*="flex-wrap: wrap"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }

  [style*="display: flex"][style*="gap: 1.5rem"] {
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }

  [style*="border-right: 1px solid var(--border)"] {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
}

@media (max-width: 480px) {
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .earnings-showcase {
    padding: var(--space-8) var(--space-5) !important;
  }

  .earnings-number {
    font-size: 3rem !important;
  }
}

/* ===== Colorful SVG Icon Enhancement ===== */
.badge svg {
  vertical-align: -2px;
  margin-right: 2px;
}

.badge-primary svg {
  color: var(--primary-light);
}

.badge-accent svg {
  color: var(--accent);
}

.badge-gradient svg {
  color: inherit;
}

.feature-icon svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-icon svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-stat-icon svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-icon svg {
  color: #1E88E5;
}

.vehicle-card .vehicle-icon svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-link svg {
  color: var(--primary-light);
  vertical-align: -2px;
  margin-right: 4px;
}

.auth-feature-icon svg {
  color: white;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__social-btn svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-visual svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.overview-flow-icon svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* === STAT CARDS â€” Mobile Horizontal Layout === */
@media (max-width: 768px) {

  /* 2-column stack for stat cards on mobile */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* CSS Grid layout for cards on mobile: stacked vertically rather than flex row to fit 2-columns nicely */
  .dashboard-stat-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1.25rem 1rem !important;
    min-height: auto !important;
  }

  .dashboard-stat-card::before {
    top: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 3px !important;
  }

  .dashboard-stat-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    margin-bottom: 0.75rem !important;
    align-self: flex-start !important;
    flex-shrink: 0 !important;
    font-size: 1.2rem !important;
  }

  .dashboard-stat-value {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--text-primary) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 0.25rem !important;
  }

  .dashboard-stat-label {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
    text-transform: none !important;
    white-space: normal !important;
    letter-spacing: 0 !important;
  }

  .dashboard-stat-change {
    margin-top: 0.5rem !important;
    font-size: 0.7rem !important;
    align-self: flex-start !important;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.875rem !important;
    /* 14px gap for smallest screens */
  }

  .dashboard-stat-card {
    grid-template-columns: auto !important;
    grid-template-rows: auto auto auto !important;
    padding: 1rem !important;
  }

  .dashboard-stat-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1rem !important;
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    margin-bottom: 0.5rem !important;
    align-self: start !important;
  }

  .dashboard-stat-value {
    font-size: 1.3rem !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
  }

  .dashboard-stat-label {
    font-size: 0.7rem !important;
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    margin-top: 0.2rem !important;
  }

  .dashboard-stat-change {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    margin-top: 0.3rem !important;
    align-self: start !important;
  }
}

/* === POPUPS & MODALS â€” Fully Responsive === */
@media (max-width: 600px) {
  .swal2-popup {
    width: 92vw !important;
    max-width: 92vw !important;
    padding: 1.5rem 1.25rem !important;
    border-radius: 1.25rem !important;
    font-size: 0.92rem !important;
  }

  .swal2-title {
    font-size: 1.1rem !important;
    padding: 0 0 0.5rem !important;
  }

  .swal2-html-container {
    font-size: 0.875rem !important;
    margin: 0.4rem 0 0.9rem !important;
  }

  .swal2-actions {
    flex-direction: column !important;
    gap: 0.6rem !important;
    width: 100% !important;
  }

  .swal2-confirm,
  .swal2-cancel,
  .swal2-deny {
    width: 100% !important;
    min-height: 44px !important;
    font-size: 0.9rem !important;
    border-radius: 0.75rem !important;
  }

  .swal2-icon {
    width: 3.5rem !important;
    height: 3.5rem !important;
    margin: 0 auto 0.9rem !important;
  }

  .swal2-input,
  .swal2-textarea,
  .swal2-select {
    font-size: 0.9rem !important;
    padding: 0.6rem 0.9rem !important;
    width: 100% !important;
  }

  .swal2-toast {
    width: 90vw !important;
    max-width: 90vw !important;
    font-size: 0.85rem !important;
  }
}

/* Generic modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-box {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

@media (max-width: 600px) {
  .modal-box {
    padding: 1.25rem;
    max-height: 85vh;
  }

  .modal-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .modal-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Sidebar overlay fade-out */
@keyframes overlayFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}