/* CSS Variables & Base Styles */
:root {
  /* Brand Colors */
  --brand: #2563eb;
  --accent: #facc15;
  --ink: #111827;
  --muted: #6b7280;
  --bg: #ffffff;
  --panel: #f9fafb;
  --line: #e5e7eb;

  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --font-size-3xl: clamp(2rem, 1.7rem + 1.5vw, 3rem);

  /* Spacing */
  --space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --space-sm: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
  --space-md: clamp(1rem, 0.8rem + 1vw, 2rem);
  --space-lg: clamp(2rem, 1.5rem + 2.5vw, 4rem);
  --space-xl: clamp(4rem, 3rem + 5vw, 8rem);

  /* Layout */
  --container-padding: clamp(1rem, 4vw, 2rem);
  --border-radius: 0.75rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f172a;
    --panel: #1e293b;
    --ink: #f9fafb;
    --muted: #9ca3af;
    --line: #334155;
    --brand: #3b82f6;
    --accent: #fcd34d;
  }
}

[data-theme="dark"] {
  --bg: #0f172a;
  --panel: #1e293b;
  --ink: #f9fafb;
  --muted: #9ca3af;
  --line: #334155;
  --brand: #3b82f6;
  --accent: #fcd34d;
}

[data-theme="light"] {
  --brand: #2563eb;
  --accent: #facc15;
  --ink: #111827;
  --muted: #6b7280;
  --bg: #ffffff;
  --panel: #f9fafb;
  --line: #e5e7eb;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg);
  transition: background-color var(--transition-base), color var(--transition-base);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  z-index: 1000;
  transition: width 0.1s ease;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  z-index: 999;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .header.scrolled {
  background: rgba(15, 23, 42, 0.9);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.logo:hover {
  color: var(--brand);
}

.nav {
  display: flex;
  gap: var(--space-md);
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.nav a:hover,
.nav a.active {
  color: var(--brand);
  background-color: var(--panel);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.theme-toggle {
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background-color: var(--panel);
  border-color: var(--brand);
}

.theme-toggle .moon-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background-color: var(--ink);
  transition: all var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 998;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  gap: var(--space-sm);
}

.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-sm);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.mobile-nav a:hover {
  background-color: var(--panel);
  color: var(--brand);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand);
  color: white;
}

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--brand) 85%, black);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background-color: var(--panel);
  border-color: var(--brand);
  color: var(--brand);
}

.btn-large {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-base);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--ink);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--muted);
}

/* Hero Section */
.hero {
  padding: calc(80px + var(--space-xl)) 0 var(--space-xl) 0;
  background: linear-gradient(135deg, var(--panel) 0%, var(--bg) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--ink);
}

.text-accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--muted);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}

.hero-image:hover {
  transform: scale(1.02) rotate(1deg);
}

/* Features Section */
.features {
  padding: var(--space-xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--border-radius-xl);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand), color-mix(in srgb, var(--brand) 80%, var(--accent)));
  border-radius: var(--border-radius-lg);
  color: white;
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--ink);
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Specifications Section */
.specifications {
  padding: var(--space-xl) 0;
  background: var(--panel);
}

.specs-tabs {
  max-width: 800px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  overflow-x: auto;
  padding-bottom: var(--space-xs);
}

.tab-btn {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--brand);
  border-color: var(--brand);
  color: white;
}

.tab-pane {
  display: none;
  background: var(--bg);
  border-radius: var(--border-radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.specs-table {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 500;
  color: var(--muted);
}

.spec-value {
  font-weight: 600;
  color: var(--ink);
}

/* Models Section */
.models {
  padding: var(--space-xl) 0;
}

.filter-chips {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.chip {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.chip.active,
.chip:hover {
  background-color: var(--brand);
  border-color: var(--brand);
  color: white;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.model-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand);
}

.model-card.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}

.featured-badge,
.popular-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--brand);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 999px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  z-index: 1;
}

.popular-badge {
  background: var(--accent);
  color: var(--ink);
}

.model-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.model-content {
  padding: var(--space-lg);
}

.model-content h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--ink);
}

.model-desc {
  color: var(--muted);
  margin-bottom: var(--space-md);
}

.model-specs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.model-specs span {
  background: var(--bg);
  color: var(--muted);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 999px;
  font-size: var(--font-size-xs);
  font-weight: 500;
}

.model-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--brand);
  margin-bottom: var(--space-md);
}

/* Performance Section */
.performance {
  padding: var(--space-xl) 0;
  background: var(--panel);
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-lg);
}

.benchmark-card,
.battery-card {
  background: var(--bg);
  border-radius: var(--border-radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.benchmark-card h3,
.battery-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--ink);
}

.chart-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.chart-bar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.bar {
  flex: 1;
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 999px;
  width: var(--value, 0%);
  transition: width 1s ease;
}

.bar-label {
  min-width: 100px;
  font-size: var(--font-size-sm);
  color: var(--muted);
}

.bar-value {
  min-width: 40px;
  text-align: right;
  font-weight: 600;
  color: var(--brand);
  font-size: var(--font-size-sm);
}

.battery-graph {
  width: 100%;
  height: 200px;
}

.chart-label {
  font-size: 12px;
  fill: var(--muted);
}

/* Reviews Section */
.reviews {
  padding: var(--space-xl) 0;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.stars {
  display: flex;
  gap: 2px;
}

.rating-text {
  color: var(--muted);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--border-radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.user-info h4 {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.user-info p {
  color: var(--muted);
  font-size: var(--font-size-sm);
}

.testimonial-card > p {
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-rating .stars span {
  color: var(--accent);
  font-size: var(--font-size-lg);
}

/* Pricing Section */
.pricing {
  padding: var(--space-xl) 0;
  background: var(--panel);
}

.countdown {
  text-align: center;
  margin-top: var(--space-md);
}

.countdown > span {
  display: block;
  color: var(--muted);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.countdown-timer {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  min-width: 80px;
  box-shadow: var(--shadow-sm);
}

.time-unit span {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--brand);
}

.time-unit label {
  font-size: var(--font-size-sm);
  color: var(--muted);
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--border-radius-xl);
  padding: var(--space-lg);
  position: relative;
  transition: all var(--transition-base);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.price-card.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  font-size: var(--font-size-xs);
  font-weight: 600;
}

.price-header h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--ink);
}

.price-header p {
  color: var(--muted);
  margin-bottom: var(--space-lg);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.price-currency {
  font-size: var(--font-size-base);
  color: var(--muted);
}

.price-value {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--brand);
}

.price-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.price-features li {
  padding: var(--space-xs) 0;
  color: var(--ink);
  position: relative;
  padding-left: var(--space-md);
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 600;
}

/* FAQ Section */
.faq {
  padding: var(--space-xl) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--brand);
}

.faq-question {
  width: 100%;
  background: var(--panel);
  border: none;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--ink);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--bg);
}

.faq-question svg {
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: var(--space-md) var(--space-lg);
  color: var(--muted);
  line-height: 1.6;
  background: var(--bg);
}

/* Contact Section */
.contact {
  padding: var(--space-xl) 0;
  background: var(--panel);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: white;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.contact-item p {
  color: var(--muted);
}

.contact-form {
  background: var(--bg);
  border-radius: var(--border-radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--line);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: var(--font-size-base);
  background: var(--bg);
  color: var(--ink);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: var(--space-xl) 0 var(--space-md) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand .logo {
  color: var(--bg);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: color-mix(in srgb, var(--bg) 70%, transparent);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-links a {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--bg) 10%, transparent);
  color: var(--bg);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--bg);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: var(--space-xs);
}

.footer-column ul li a {
  color: color-mix(in srgb, var(--bg) 70%, transparent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--bg);
}

.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--bg) 20%, transparent);
  padding-top: var(--space-md);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  color: color-mix(in srgb, var(--bg) 70%, transparent);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--bg);
}

.footer-tech {
  color: color-mix(in srgb, var(--bg) 50%, transparent);
  font-size: var(--font-size-sm);
}

/* Mobile Sticky CTA */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: var(--space-md);
  z-index: 999;
  display: none;
  box-shadow: var(--shadow-lg);
}

.mobile-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-cta-price {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: var(--font-size-xs);
  color: var(--muted);
}

.price-amount {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--brand);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: var(--bg);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Toast */
.toast {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: var(--success);
  color: white;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-base);
  z-index: 1500;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-cta {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .performance-grid {
    grid-template-columns: 1fr;
  }

  .tabs-nav {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation Keyframes */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--panel);
}

::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}

/* Focus States */
*:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .mobile-cta,
  .modal-overlay,
  .toast {
    display: none !important;
  }
}
