/* ==========================================================================
   FIXID — VIBRANT BRAND THEME
   Version: 4.0 - Light & Colorful with Your Brand Colors
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables (Custom Properties) - COMPLETELY REWORKED FOR LIGHT MODE
   ========================================================================== */
:root {
  /* Brand Colors - Your Provided Colors (KEEPING ALL YOUR COLORS) */
  --fixid-orange-primary: #fe8b00;  /* Main orange */
  --fixid-orange-secondary: #fc7500; /* Darker orange */
  --fixid-orange-tertiary: #fb7300;  /* Even darker orange */
  --fixid-orange-deep: #fb7300;      /* Deep orange */
  --fixid-coral: #e77c59;             /* Coral orange */
  --fixid-blush: #fcbbaf;             /* Soft peach/blush */
  --fixid-blue-soft: #6c9cd7;         /* Soft blue */
  --fixid-cyan-light: #85e3f5;        /* Light cyan */
  --fixid-blue-bright: #2792e5;       /* Bright blue */
  --fixid-cyan: #74daf1;               /* Medium cyan */
  
  /* Derived Gradients - KEEPING ALL YOUR COLOR COMBINATIONS */
  --gradient-orange-primary: linear-gradient(135deg, #fe8b00 0%, #fc7500 100%);
  --gradient-orange-warm: linear-gradient(135deg, #fe8b00 0%, #e77c59 100%);
  --gradient-blue-cyan: linear-gradient(135deg, #2792e5 0%, #74daf1 100%);
  --gradient-sunset: linear-gradient(135deg, #fe8b00 0%, #e77c59 50%, #fcbbaf 100%);
  --gradient-ocean: linear-gradient(135deg, #6c9cd7 0%, #85e3f5 100%);
  --gradient-accent: linear-gradient(135deg, #fe8b00 0%, #2792e5 100%);
  
  /* Background & Surface - COMPLETELY LIGHTENED */
  --bg-primary: #ffffff;              /* Pure white background */
  --bg-secondary: #f8fafc;            /* Very light gray-blue */
  --bg-tertiary: #f1f5f9;             /* Light gray for sections */
  --bg-card: #ffffff;                  /* White cards */
  --bg-card-hover: #f8fafc;            /* Subtle hover state */
  --bg-accent-subtle: rgba(254, 139, 0, 0.05); /* Subtle orange background */
  --bg-blue-subtle: rgba(39, 146, 229, 0.05); /* Subtle blue background */
  --bg-orange-light: rgba(254, 139, 0, 0.08); /* Light orange for highlights */
  --bg-coral-light: rgba(231, 124, 89, 0.08); /* Light coral for highlights */
  
  /* Text Colors - DARK for light background */
  --text-primary: #0f172a;             /* Almost black for headings */
  --text-secondary: #334155;            /* Dark gray for body text */
  --text-tertiary: #64748b;             /* Medium gray for secondary text */
  --text-muted: #94a3b8;                /* Light gray for muted text */
  --text-on-dark: #ffffff;               /* White text for dark backgrounds */
  
  /* Borders & Dividers - LIGHT */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.12);
  --border-strong: rgba(0, 0, 0, 0.16);
  --border-orange-light: rgba(254, 139, 0, 0.2);
  --border-orange-medium: rgba(254, 139, 0, 0.3);
  --border-blue-light: rgba(39, 146, 229, 0.2);
  
  /* Shadows - SOFTER for light mode */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(254, 139, 0, 0.3);
  --shadow-glow-blue: 0 0 30px rgba(39, 146, 229, 0.3);
  --shadow-glow-coral: 0 0 30px rgba(231, 124, 89, 0.3);
  
  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  
  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Line Heights */
  --leading-tight: 1.1;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 1.75;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Container */
  --container-max: 1280px;
}

/* ==========================================================================
   2. Base Styles & Reset - LIGHT BACKGROUND
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-secondary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Background Gradients - COLORFUL for light mode */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: 
    radial-gradient(1200px 600px at 15% 10%, rgba(254, 139, 0, 0.08), transparent 55%),
    radial-gradient(900px 520px at 80% 15%, rgba(231, 124, 89, 0.06), transparent 60%),
    radial-gradient(900px 520px at 70% 85%, rgba(39, 146, 229, 0.05), transparent 55%),
    radial-gradient(800px 400px at 30% 50%, rgba(252, 187, 175, 0.04), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Selection */
::selection {
  background: rgba(254, 139, 0, 0.2);
  color: var(--text-primary);
}

/* ==========================================================================
   3. Typography - COLORFUL for light mode
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  font-weight: 800;
  background: linear-gradient(135deg, #fe8b00 0%, #e77c59 50%, #2792e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  position: relative;
  padding-bottom: var(--space-sm);
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-orange-primary);
  border-radius: var(--radius-full);
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: var(--text-2xl);
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h4 {
  font-size: var(--text-xl);
  color: var(--text-primary);
}

p {
  margin-bottom: var(--space-md);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   4. Layout & Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

/* ==========================================================================
   5. Header & Navigation - LIGHT MODE
   ========================================================================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-orange-light);
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--transition);
}

.topbar.scrolled {
  padding: var(--space-xs) 0;
  box-shadow: var(--shadow-lg);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  transition: transform var(--transition);
}

.brand:hover {
  transform: scale(1.02);
}

.brand__logo {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.brand:hover .brand__logo {
  transform: rotate(-5deg);
  box-shadow: var(--shadow-glow);
}

/* Navigation */
.topbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-orange-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: #fe8b00;
  background: rgba(254, 139, 0, 0.05);
}

.nav__links a:hover::after {
  width: 20px;
}

/* Language Switcher */
.lang {
  position: relative;
}

.lang__btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: white;
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.lang__btn:hover {
  background: rgba(254, 139, 0, 0.05);
  border-color: #fe8b00;
  color: #fe8b00;
}

.lang__menu {
  position: absolute;
  top: calc(100% + var(--space-xs));
  right: 0;
  min-width: 160px;
  background: white;
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  display: none;
  box-shadow: var(--shadow-xl);
  z-index: 100;
}

.lang__menu.open {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.lang__menu button {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}

.lang__menu button:hover {
  background: rgba(254, 139, 0, 0.05);
  color: #fe8b00;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   6. Hero Section - COLORFUL LIGHT MODE
   ========================================================================== */
.hero {
  padding: calc(var(--space-3xl) + 60px) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* Pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: rgba(254, 139, 0, 0.1);
  border: 1px solid rgba(254, 139, 0, 0.3);
  border-radius: var(--radius-full);
  color: #fe8b00;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.dot {
  width: 8px;
  height: 8px;
  background: #fe8b00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hero Content */
.hero__title {
  margin: var(--space-lg) 0 var(--space-md);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

/* CTA Buttons */
.hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__cta--stores {
  flex-direction: column;
  align-items: flex-start;
}

.store-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.store-btn {
  display: inline-block;
  transition: transform var(--transition);
}

.store-btn:hover {
  transform: translateY(-2px);
}

.store-btn img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

@media (max-width: 520px) {
  .store-btn img {
    height: 44px;
  }
}

/* Trust Indicators */
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (max-width: 768px) {
  .hero__trust {
    grid-template-columns: 1fr;
  }
}

.trust__item {
  padding: var(--space-lg);
  background: white;
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.trust__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-orange-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.trust__item:hover {
  background: white;
  border-color: #fe8b00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.trust__item:hover::before {
  opacity: 1;
}

.trust__label {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.trust__desc {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

/* Hero Panel */
.hero__panel {
  position: relative;
}

.panel {
  background: white;
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-orange-light);
}

.panel__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fe8b00;
}

.panel__badge {
  padding: var(--space-xs) var(--space-sm);
  background: rgba(39, 146, 229, 0.1);
  border: 1px solid rgba(39, 146, 229, 0.3);
  border-radius: var(--radius-full);
  color: #2792e5;
  font-size: var(--text-xs);
  font-weight: 600;
}

.panel__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.kv {
  padding: var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-lg);
}

.kv__k {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-bottom: var(--space-xs);
}

.kv__v {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
}

.progress {
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.progress__bar {
  height: 100%;
  background: var(--gradient-orange-primary);
  border-radius: var(--radius-full);
  animation: progress 2s ease-out;
}

@keyframes progress {
  from { width: 0; }
  to { width: 72%; }
}

.panel__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.mini {
  padding: var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.mini:hover {
  border-color: #fe8b00;
  background: rgba(254, 139, 0, 0.05);
}

.mini__k {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-bottom: var(--space-xs);
}

.mini__v {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.panel__note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-orange-light);
}

.glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: 0;
}

.glow--1 {
  top: -150px;
  right: -150px;
  background: #fe8b00;
}

.glow--2 {
  bottom: -150px;
  left: -150px;
  background: #2792e5;
}

/* ==========================================================================
   7. Buttons - COLORFUL
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--gradient-orange-primary);
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  border: 2px solid #fe8b00;
  color: #fe8b00;
}

.btn--ghost:hover {
  background: rgba(254, 139, 0, 0.1);
  border-color: #fe8b00;
  box-shadow: var(--shadow-glow);
}

.btn--small {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
}

/* Secondary button variant with blue gradient */
.btn--secondary {
  background: var(--gradient-blue-cyan);
  color: white;
}

.btn--secondary:hover {
  box-shadow: var(--shadow-glow-blue);
}

/* ==========================================================================
   8. Stats Section - COLORFUL
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
  margin: var(--space-3xl) 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.stat-item {
  padding: var(--space-xl);
  background: white;
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-orange-primary);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
}

.stat-item:hover::before {
  transform: translateX(0);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: #fe8b00;
  box-shadow: var(--shadow-glow);
}

.stat-item h3 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-xs);
  font-weight: 800;
  background: var(--gradient-orange-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-tertiary);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   9. Services Section - COLORFUL
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.service-card {
  padding: var(--space-xl);
  background: white;
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-orange-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #fe8b00;
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  display: inline-block;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: #fe8b00;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-tertiary);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  font-size: var(--text-sm);
}

/* ==========================================================================
   10. Benefits Section - COLORFUL
   ========================================================================== */
.benefits-section {
  background: linear-gradient(135deg, rgba(254, 139, 0, 0.05) 0%, rgba(39, 146, 229, 0.05) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  margin: var(--space-3xl) 0;
  border: 1px solid rgba(254, 139, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(600px 600px at 10% 20%, rgba(254, 139, 0, 0.1), transparent 60%),
    radial-gradient(500px 500px at 90% 80%, rgba(39, 146, 229, 0.1), transparent 60%);
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.benefit-item {
  padding: var(--space-xl);
  background: white;
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
  background: white;
  border-color: #fe8b00;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  background: var(--gradient-orange-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.benefit-item h4, .benefit-item h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: #fe8b00;
}

.benefit-item p {
  color: var(--text-tertiary);
  margin-bottom: 0;
  font-size: var(--text-sm);
}

/* ==========================================================================
   11. Sections - LIGHT MODE
   ========================================================================== */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--alt {
  background: var(--bg-secondary);
  position: relative;
}

.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fe8b00, transparent);
}

.section__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  position: relative;
  z-index: 2;
}

.section__head h2 {
  margin-bottom: var(--space-md);
}

.section__head p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ==========================================================================
   12. Grid System
   ========================================================================== */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

@media (max-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   13. Cards - LIGHT MODE
   ========================================================================== */
.card {
  padding: var(--space-xl);
  background: white;
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-orange-primary);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
}

.card:hover::before {
  transform: translateX(0);
}

.card:hover {
  background: white;
  border-color: #fe8b00;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: #fe8b00;
}

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

/* ==========================================================================
   14. Features - LIGHT MODE
   ========================================================================== */
.feature {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: white;
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature:hover {
  background: white;
  border-color: #fe8b00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.feature__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(254, 139, 0, 0.1);
  border: 1px solid rgba(254, 139, 0, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: #fe8b00;
  font-weight: 600;
}

.feature h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: #fe8b00;
}

.feature p {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

/* ==========================================================================
   15. Steps - LIGHT MODE
   ========================================================================== */
.steps {
  display: grid;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-xl);
  background: white;
  border: 1px solid var(--border-orange-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step:hover {
  background: white;
  border-color: #fe8b00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.step__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gradient-orange-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 600;
  color: white;
  box-shadow: var(--shadow-md);
}

.step__body h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: #fe8b00;
}

.step__body p {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

/* ==========================================================================
   16. Pricing Section - LIGHT & COLORFUL
   ========================================================================== */
.pricing-section {
  background: linear-gradient(135deg, rgba(254, 139, 0, 0.05) 0%, rgba(39, 146, 229, 0.05) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  margin: var(--space-3xl) 0;
  border: 1px solid rgba(254, 139, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(500px 500px at 20% 10%, rgba(254, 139, 0, 0.1), transparent 60%),
    radial-gradient(400px 400px at 80% 90%, rgba(39, 146, 229, 0.1), transparent 60%);
  pointer-events: none;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

/* Pricing Card Base */
.pricing-card {
  padding: var(--space-2xl);
  background: white;
  border: 2px solid var(--border-orange-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-md);
}

.pricing-card:hover {
  border-color: #fe8b00;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* Premium Card */
.pricing-card--premium {
  border-color: #fe8b00;
  background: linear-gradient(135deg, rgba(254, 139, 0, 0.05) 0%, rgba(254, 139, 0, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-card--premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-orange-primary);
}

.pricing-card--premium:hover {
  border-color: #fe8b00;
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

/* Premium Badge */
.pricing-card__badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient-orange-primary);
  color: white;
  padding: var(--space-xs) var(--space-xl);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: rotate(45deg);
  width: 140px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

/* Pricing Card Header */
.pricing-card__header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.pricing-card__header h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  font-weight: 800;
}

.pricing-card--premium .pricing-card__header h3 {
  background: var(--gradient-orange-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Price Display */
.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.pricing-card__currency {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-card__amount {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-card--premium .pricing-card__amount {
  background: var(--gradient-orange-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card__period {
  font-size: var(--text-lg);
  color: var(--text-tertiary);
  font-weight: 500;
}

.pricing-card__description {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
  margin-top: var(--space-sm);
}

/* Pricing Features */
.pricing-card__features {
  flex: 1;
  margin-bottom: var(--space-xl);
}

.pricing-card__includes {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-orange-light);
}

.pricing-card__includes strong {
  color: #fe8b00;
  font-size: var(--text-sm);
  font-weight: 600;
}

.pricing-card__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card__features li {
  padding: var(--space-sm) 0;
  color: var(--text-tertiary);
  font-size: var(--text-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  position: relative;
  padding-left: 0;
}

.pricing-card__features li::before {
  content: "✓";
  color: #fe8b00;
  font-weight: 600;
  margin-right: var(--space-sm);
}

.pricing-card--premium .pricing-card__features li {
  color: var(--text-secondary);
  font-weight: 500;
}

/* CTA Section */
.pricing-card__cta {
  text-align: center;
}

.pricing-card__note {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-top: var(--space-sm);
  text-align: center;
}

/* Enterprise Pricing */
.pricing-enterprise {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: white;
  border: 1px solid rgba(254, 139, 0, 0.3);
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-md);
}

.pricing-enterprise__content h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: #fe8b00;
}

.pricing-enterprise__content p {
  color: var(--text-tertiary);
  margin-bottom: var(--space-lg);
  font-size: var(--text-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   17. Testimonial Section - LIGHT MODE
   ========================================================================== */
.worker-testimonial {
  background: linear-gradient(135deg, rgba(254, 139, 0, 0.05) 0%, rgba(39, 146, 229, 0.05) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  margin: var(--space-2xl) 0;
  border: 1px solid rgba(254, 139, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.worker-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(400px 400px at 10% 10%, rgba(254, 139, 0, 0.1), transparent 60%),
    radial-gradient(300px 300px at 90% 90%, rgba(39, 146, 229, 0.1), transparent 60%);
  pointer-events: none;
}

.worker-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: var(--space-lg);
  border: 3px solid #fe8b00;
  box-shadow: var(--shadow-md);
}

.worker-testimonial blockquote {
  font-style: italic;
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
  padding-left: var(--space-lg);
  border-left: 3px solid #fe8b00;
  font-size: var(--text-lg);
}

.worker-testimonial h4 {
  font-size: var(--text-lg);
  margin: 0;
  color: #fe8b00;
}

.worker-testimonial p {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
  margin: var(--space-xs) 0 0 0;
}

/* ==========================================================================
   18. Carousel - LIGHT MODE
   ========================================================================== */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: white;
  border: 1px solid var(--border-orange-light);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.carousel__track {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-slow);
  cursor: grab;
}

.carousel__track:active {
  cursor: grabbing;
}

.carousel__item {
  flex: 0 0 auto;
  width: 280px;
  height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-orange-light);
  background: var(--bg-secondary);
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.carousel__item:hover {
  transform: scale(1.02);
  border-color: #fe8b00;
  box-shadow: var(--shadow-glow);
}

.carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.carousel__dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border-orange-light);
  cursor: pointer;
  transition: all var(--transition);
}

.carousel__dots button.active {
  background: #fe8b00;
  transform: scale(1.2);
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   19. CTA Section - LIGHT & COLORFUL
   ========================================================================== */
.section--cta {
  background: linear-gradient(135deg, rgba(254, 139, 0, 0.05) 0%, rgba(39, 146, 229, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(800px 800px at 20% 20%, rgba(254, 139, 0, 0.1), transparent 70%),
    radial-gradient(800px 800px at 80% 80%, rgba(39, 146, 229, 0.1), transparent 70%);
  pointer-events: none;
}

.cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .cta {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.cta__copy h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  margin-bottom: var(--space-md);
}

.cta__copy p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: var(--leading-relaxed);
}

.cta__meta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.badge {
  padding: var(--space-xs) var(--space-md);
  background: rgba(254, 139, 0, 0.1);
  border: 1px solid rgba(254, 139, 0, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: #fe8b00;
  transition: all var(--transition);
}

.badge:hover {
  background: rgba(254, 139, 0, 0.15);
  border-color: #fe8b00;
  transform: translateY(-1px);
}

.badge--outline {
  background: transparent;
  border-color: #2792e5;
  color: #2792e5;
}

.badge--outline:hover {
  background: rgba(39, 146, 229, 0.1);
  border-color: #2792e5;
}

/* ==========================================================================
   20. Form - LIGHT MODE
   ========================================================================== */
.form {
  background: white;
  border: 1px solid rgba(254, 139, 0, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.form__row {
  display: flex;
  gap: var(--space-sm);
}

@media (max-width: 768px) {
  .form__row {
    flex-direction: column;
  }
}

input[type="email"],
select {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  background: white;
  border: 2px solid var(--border-orange-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: all var(--transition);
}

input[type="email"]::placeholder,
select::placeholder {
  color: var(--text-tertiary);
}

input[type="email"]:focus,
select:focus {
  outline: none;
  border-color: #fe8b00;
  box-shadow: 0 0 0 3px rgba(254, 139, 0, 0.1);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  background-size: 20px;
  padding-right: var(--space-3xl);
}

.form__hint {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-top: var(--space-sm);
}

.form__status {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
}

.form__status.ok {
  background: rgba(254, 139, 0, 0.1);
  border: 1px solid rgba(254, 139, 0, 0.3);
  color: #fe8b00;
}

.form__status.err {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* ==========================================================================
   21. Footer - LIGHT MODE
   ========================================================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(254, 139, 0, 0.2);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer__left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer__logo {
  height: 80px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.footer__brand {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fe8b00;
}

.footer__small {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-top: var(--space-xs);
}

.footer__right {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer__right a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.footer__right a:hover {
  color: #fe8b00;
  background: rgba(254, 139, 0, 0.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid rgba(254, 139, 0, 0.2);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.footer__company h3,
.footer__map h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: #fe8b00;
}

.footer__muted {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.footer__link {
  color: #fe8b00;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.footer__link:hover {
  color: #fc7500;
  text-decoration: underline;
}

.footer__legal {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: white;
  border: 1px solid rgba(254, 139, 0, 0.3);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition);
}

.footer__btn:hover {
  background: rgba(254, 139, 0, 0.05);
  border-color: #fe8b00;
  color: #fe8b00;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

/* Footer Social Links */
.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.footer__socials a {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  background: white;
  border: 1px solid rgba(254, 139, 0, 0.3);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition);
}

.footer__socials a:hover {
  background: rgba(254, 139, 0, 0.05);
  border-color: #fe8b00;
  color: #fe8b00;
  transform: translateY(-1px);
}

/* Footer Stores */
.footer__stores {
  display: flex;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.footer__stores img {
  height: 40px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.footer__stores a:hover img {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(254, 139, 0, 0.3);
  height: 300px;
  box-shadow: var(--shadow-lg);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================================================
   22. Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --space-4xl: 4rem;
    --space-3xl: 3rem;
    --space-2xl: 2.5rem;
  }
  
  .hero {
    padding: calc(var(--space-3xl) + 60px) 0 var(--space-2xl);
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .benefits-section,
  .pricing-section {
    padding: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 1.5rem;
    --space-lg: 1.25rem;
    --text-3xl: 1.75rem;
    --text-4xl: 2rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav__links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(254, 139, 0, 0.3);
    border-bottom: 1px solid rgba(254, 139, 0, 0.3);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-sm);
    display: none;
    box-shadow: var(--shadow-xl);
    z-index: 999;
  }
  
  .nav__links.open {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }
  
  .nav__links a {
    width: 100%;
    text-align: center;
    padding: var(--space-md);
  }
  
  .nav__links a:hover {
    background: rgba(254, 139, 0, 0.05);
  }
  
  .hero__trust {
    grid-template-columns: 1fr;
  }
  
  .panel__row,
  .panel__cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 1.25rem;
    --space-lg: 1rem;
    --space-md: 0.75rem;
  }
  
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  .hero__title {
    font-size: var(--text-3xl);
  }
  
  .btn {
    width: 100%;
  }
  
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }
  
  .carousel__item {
    width: 260px;
    height: 520px;
  }
  
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  .footer__right {
    width: 100%;
    justify-content: space-between;
  }
}

/* ==========================================================================
   23. Animations
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.scale-in {
  animation: scaleIn 0.5s ease-out;
}

/* ==========================================================================
   24. Scrollbar - LIGHT MODE
   ========================================================================== */
@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--bg-secondary);
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fe8b00, #fc7500);
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-secondary);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-orange-primary);
  }
}

/* ==========================================================================
   25. Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.mt-1 { margin-top: var(--space-xs); }
.mb-1 { margin-bottom: var(--space-xs); }

.mt-2 { margin-top: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-sm); }

.mt-3 { margin-top: var(--space-md); }
.mb-3 { margin-bottom: var(--space-md); }

.mt-4 { margin-top: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-lg); }

.mt-5 { margin-top: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-6 { margin-top: var(--space-2xl); }
.mb-6 { margin-bottom: var(--space-2xl); }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.overflow-hidden { overflow: hidden; }

/* ==========================================================================
   26. Custom Animations for New Elements
   ========================================================================== */
.service-card,
.benefit-item,
.stat-item,
.pricing-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animations */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Color utilities */
.text-orange { color: #fe8b00 !important; }
.text-blue { color: #2792e5 !important; }
.text-coral { color: #e77c59 !important; }
.text-blush { color: #fcbbaf !important; }

.bg-orange-light { background: rgba(254, 139, 0, 0.05) !important; }
.bg-blue-light { background: rgba(39, 146, 229, 0.05) !important; }
.bg-coral-light { background: rgba(231, 124, 89, 0.05) !important; }

.border-orange { border-color: #fe8b00 !important; }
.border-blue { border-color: #2792e5 !important; }
.border-coral { border-color: #e77c59 !important; }

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */