/* CSS Variables */
:root {
  /* Brand Colors */
  --brand: #0ea5e9;
  --brand-2: #38bdf8;
  --ink: #111827;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f3f4f6;
  --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(1.875rem, 1.6rem + 1.375vw, 2.5rem);
  --font-size-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);

  /* 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;

  /* Layout */
  --container-max-width: 1200px;
  --container-padding: clamp(16px, 4vw, 32px);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --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);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 300ms ease;
  --transition-slow: 400ms ease;
}

/* Dark Mode Override */
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f9fafb;
    --muted: #d1d5db;
    --bg: #0b1220;
    --bg-soft: #0f172a;
    --line: #1f2937;
    --brand: #38bdf8;
  }
}

/* Manual Dark Mode */
[data-theme="dark"] {
  --ink: #f9fafb;
  --muted: #d1d5db;
  --bg: #0b1220;
  --bg-soft: #0f172a;
  --line: #1f2937;
  --brand: #38bdf8;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--ink);
  background-color: var(--bg);
  transition: background-color var(--transition), color var(--transition);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-base);
}

p {
  color: var(--muted);
  line-height: 1.6;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  z-index: 1000;
  transition: width var(--transition-fast);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background-color var(--transition);
}

[data-theme="dark"] .header {
  background: rgba(11, 18, 32, 0.8);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--space-8);
}

.logo__text {
  font-size: var(--font-size-xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav__link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link:focus {
  color: var(--brand);
  background: var(--bg-soft);
}

.nav__link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 50%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.dark-toggle {
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.dark-toggle:hover,
.dark-toggle:focus {
  background: var(--bg-soft);
  border-color: var(--brand);
  color: var(--brand);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: all var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  box-shadow: var(--shadow);
}

.btn--primary:hover,
.btn--primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: var(--bg-soft);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background: var(--bg);
  border-color: var(--brand);
  color: var(--brand);
}

.btn--large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
}

/* Hero Section */
.hero {
  padding: var(--space-24) 0 var(--space-20);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
  margin-top: 80px;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__title {
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, var(--ink), var(--muted));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
  color: var(--muted);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--success);
  color: white;
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}

.hero__image:hover {
  transform: scale(1.05);
}

/* Section Styles */
section {
  padding: var(--space-20) 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-16);
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--muted);
}

/* Features Section */
.features {
  background: var(--bg-soft);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.feature-card {
  background: var(--bg);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  border-radius: var(--radius-xl);
}

.feature-card__title {
  margin-bottom: var(--space-4);
  color: var(--ink);
}

.feature-card__description {
  color: var(--muted);
}

/* Animation on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Specs Section */
.specs {
  background: var(--bg);
}

.tabs__nav {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tabs__nav::-webkit-scrollbar {
  display: none;
}

.tabs__tab {
  background: none;
  border: none;
  padding: var(--space-4) var(--space-6);
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.tabs__tab[aria-selected="true"] {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.tabs__tab:hover:not([aria-selected="true"]) {
  color: var(--ink);
}

.tabs__panel {
  background: var(--bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spec-table {
  display: grid;
  gap: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: var(--ink);
}

.spec-value {
  color: var(--muted);
}

/* Compare Section */
.compare {
  background: var(--bg-soft);
}

.compare__controls {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-8);
}

.toggle-switch {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
}

.toggle-switch input {
  display: none;
}

.toggle-switch__slider {
  position: relative;
  width: 48px;
  height: 24px;
  background: var(--line);
  border-radius: 12px;
  transition: background var(--transition);
}

.toggle-switch__slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-switch__slider {
  background: var(--brand);
}

.toggle-switch input:checked + .toggle-switch__slider::before {
  transform: translateX(24px);
}

.toggle-switch__label {
  font-weight: 500;
  color: var(--ink);
}

.compare-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--bg);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.compare-table th,
.compare-table td {
  padding: var(--space-4) var(--space-6);
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--ink);
}

.compare-table td {
  color: var(--muted);
}

.compare-table td[data-best="true"] {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  font-weight: 600;
  position: relative;
}

.compare-table.highlight td[data-best="true"] {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* Gallery Section */
.gallery {
  background: var(--bg);
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.carousel__wrapper {
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.carousel__track {
  display: flex;
  transition: transform var(--transition-slow);
}

.carousel__slide {
  flex: 0 0 100%;
}

.carousel__slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--ink);
}

.carousel__btn:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: var(--shadow-lg);
}

.carousel__btn--prev {
  left: var(--space-4);
}

.carousel__btn--next {
  right: var(--space-4);
}

.carousel__indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.carousel__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel__indicator.active {
  background: var(--brand);
  transform: scale(1.2);
}

/* Reviews Section */
.reviews {
  background: var(--bg-soft);
}

.reviews__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-12);
  gap: var(--space-8);
}

.rating-overview {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.rating-overview__score {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--brand);
}

.rating-overview__stars {
  display: flex;
  gap: var(--space-1);
  color: var(--warning);
}

.rating-overview__count {
  color: var(--muted);
  font-size: var(--font-size-sm);
}

.review-filters {
  display: flex;
  gap: var(--space-2);
}

.review-filter {
  background: none;
  border: 1px solid var(--line);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: var(--font-size-sm);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}

.review-filter--active,
.review-filter:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.review-card {
  background: var(--bg);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.review-card__name {
  font-weight: 600;
  color: var(--ink);
}

.review-card__location {
  font-size: var(--font-size-sm);
  color: var(--muted);
}

.review-card__rating {
  display: flex;
  gap: var(--space-1);
  color: var(--warning);
}

.review-card__text {
  color: var(--muted);
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  background: var(--bg);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--line);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card--featured {
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.pricing-card__title {
  text-align: center;
  margin-bottom: var(--space-6);
  color: var(--ink);
}

.pricing-card__price {
  text-align: center;
  margin-bottom: var(--space-2);
}

.pricing-card__price-old {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: var(--space-1);
}

.pricing-card__price-current {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--brand);
}

.pricing-card__discount {
  text-align: center;
  background: var(--success);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin: var(--space-4) auto var(--space-6);
  width: fit-content;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: var(--space-8);
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  color: var(--muted);
}

.pricing-card__features li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
}

/* Countdown */
.countdown {
  text-align: center;
  background: var(--bg-soft);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.countdown__label {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-6);
}

.countdown__timer {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

.countdown__item {
  text-align: center;
  background: var(--bg);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  min-width: 80px;
}

.countdown__number {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--brand);
}

.countdown__unit {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--muted);
  font-weight: 500;
}

/* FAQ Section */
.faq {
  background: var(--bg-soft);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  margin-bottom: var(--space-4);
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  padding: var(--space-6) var(--space-8);
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: all var(--transition);
}

.faq-item__trigger:hover {
  background: var(--bg-soft);
}

.faq-item__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__content {
  padding: 0 var(--space-8) var(--space-6);
  color: var(--muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item__content.expanded {
  max-height: 200px;
}

/* Contact Section */
.contact {
  background: var(--bg);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-soft);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-weight: 600;
  color: var(--ink);
  font-size: var(--font-size-sm);
}

.form-input,
.form-select,
.form-textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
  font-size: var(--font-size-base);
  transition: all var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-error {
  font-size: var(--font-size-sm);
  color: var(--error);
  min-height: 1.2em;
}

.form-textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--bg-soft);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-8);
}

.footer__title {
  margin-bottom: var(--space-4);
  color: var(--ink);
}

.footer__description {
  margin-bottom: var(--space-6);
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg);
  color: var(--muted);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
}

.footer__subtitle {
  margin-bottom: var(--space-4);
  color: var(--ink);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-2);
}

.footer__link {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--brand);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--font-size-sm);
}

.footer__tech {
  font-style: italic;
}

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: var(--space-4);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  z-index: 50;
}

.mobile-cta__price {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--brand);
}

.mobile-cta__label {
  font-size: var(--font-size-sm);
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.lightbox__content {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 800px;
  width: 100%;
  aspect-ratio: 16/9;
}

.lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(255, 255, 255, 0.9);
  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);
}

.lightbox__close:hover {
  background: white;
  transform: scale(1.1);
}

.lightbox__video {
  width: 100%;
  height: 100%;
}

.lightbox__video iframe {
  width: 100%;
  height: 100%;
}

/* Toast */
.toast {
  position: fixed;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--success);
  color: white;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  opacity: 0;
  transition: all var(--transition);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast__content {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.toast__icon {
  flex-shrink: 0;
}

.toast__message {
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .reviews__summary {
    flex-direction: column;
    text-align: center;
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header__actions .btn {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  .hero {
    padding: var(--space-16) 0;
  }

  section {
    padding: var(--space-12) 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .reviews__list {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .countdown__timer {
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  .countdown__item {
    min-width: 70px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  .carousel__btn {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .hero__actions .btn {
    width: auto;
  }

  .tabs__nav {
    gap: 0;
  }

  .tabs__tab {
    flex: 1;
    text-align: center;
    padding: var(--space-3) var(--space-2);
    font-size: var(--font-size-sm);
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .compare-table {
    min-width: 500px;
  }

  .lightbox {
    padding: var(--space-4);
  }
}
