/* ============================================
   PUBLIC SITE STYLES v2.0
   Modern, polished, feature-rich
   ============================================ */

:root { --header-h: 72px; --promo-h: 36px; }

.header {
  position: fixed; top: var(--promo-h); left: 0; right: 0; z-index: var(--z-sticky);
  height: var(--header-h); transition: all var(--t-normal);
  background: transparent;
}
...[truncated]
  background: rgba(248,250,252,0.85); backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--border-color);
}
[data-theme="dark"] .header.scrolled {
  background: rgba(11,15,25,0.85);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-size: 1.625rem; font-weight: 900; color: var(--text-primary); text-decoration: none;
  display: flex; align-items: center; gap: var(--space-2); letter-spacing: -0.5px;
}
.logo-icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: #fff;
}

.nav-links { display: flex; align-items: center; gap: var(--space-8); }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 0.9375rem;
  position: relative; padding: var(--space-2) 0; transition: color var(--t-fast);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-primary), #8b5cf6); border-radius: var(--r-full);
  transition: width var(--t-normal);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--c-primary); }
.nav-links a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }

.cart-btn {
  position: relative; width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--bg-surface-2); border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 1.125rem; transition: all var(--t-normal); color: var(--text-primary);
}
.cart-btn:hover { background: var(--bg-surface-3); transform: scale(1.05); }

.lang-btn {
  padding: 0.25rem 0.625rem; border-radius: var(--r-md);
  background: var(--bg-surface-2); border: 1px solid var(--border-color);
  font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: all var(--t-normal);
  color: var(--text-primary); white-space: nowrap; line-height: 1;
}
.lang-btn:hover { background: var(--bg-surface-3); transform: scale(1.05); }

.theme-toggle {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--bg-surface-2); border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 1.125rem; transition: all var(--t-normal);
}
.theme-toggle:hover { background: var(--bg-surface-3); transform: scale(1.05); }

.mobile-menu-btn {
  width: 40px; height: 40px; border-radius: var(--r-md); border: 1px solid var(--border-color);
  background: var(--bg-surface); display: none; align-items: center; justify-content: center;
  cursor: pointer; flex-direction: column; gap: 5px; padding: 8px;
}
.mobile-menu-btn span {
  display: block; width: 20px; height: 2px; background: var(--text-primary); border-radius: var(--r-full);
  transition: all var(--t-normal);
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
}

.mobile-nav {
  position: fixed; inset: 0; background: var(--bg-surface); z-index: calc(var(--z-sticky) - 1);
  padding: calc(var(--header-h) + var(--space-6)) var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
  transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: 1.25rem; font-weight: 600; color: var(--text-primary); text-decoration: none;
  padding: var(--space-3) 0; border-bottom: 1px solid var(--border-color);
}

/* ============================================
   HERO v2 — Animated gradient mesh + floating elements
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + var(--promo-h));
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99,102,241,0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139,92,246,0.12), transparent),
    var(--bg-root);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(99,102,241,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139,92,246,0.06) 0%, transparent 50%);
  animation: heroPulse 8s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 1rem;
  border-radius: var(--r-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-success);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .hero p { margin-left: auto; margin-right: auto; }
}

.hero-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-10);
}
@media (max-width: 900px) {
  .hero-stats { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: var(--space-4); }
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: var(--space-1);
}

/* Hero phone mockup */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-phone-wrap {
  position: relative;
  width: 280px;
  height: 500px;
}
.hero-phone {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: linear-gradient(180deg, #1e1e2e 0%, #2d2d44 100%);
  border: 4px solid #3a3a55;
  box-shadow:
    0 0 0 2px rgba(99,102,241,0.3),
    0 25px 50px -12px rgba(0,0,0,0.5),
    0 0 60px rgba(99,102,241,0.2);
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
.hero-phone::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #1e1e2e;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.hero-screen {
  position: absolute;
  inset: 12px;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--c-primary) 0%, #8b5cf6 50%, #ec4899 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}
.hero-screen-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.hero-screen-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-float-1, .hero-float-2, .hero-float-3 {
  position: absolute;
  font-size: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  animation: float 4s ease-in-out infinite;
}
.hero-float-1 { top: 10%; left: -10%; animation-delay: 0s; }
.hero-float-2 { top: 60%; right: -5%; animation-delay: 1.5s; }
.hero-float-3 { bottom: 15%; left: -5%; animation-delay: 3s; font-size: 1.5rem; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-24) 0;
  position: relative;
}
.section-alt {
  background: var(--bg-surface);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   SERVICE CARDS v2
   ============================================ */
.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all var(--t-normal);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c-primary), #8b5cf6);
  opacity: 0;
  transition: opacity var(--t-normal);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--c-primary-light);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto var(--space-5);
  box-shadow: 0 8px 24px var(--c-primary-glow);
  transition: transform var(--t-bounce);
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
.service-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: var(--space-1);
}
.service-duration {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* Skeleton for services */
.service-skeleton {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-6);
}
.service-skeleton .sk-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  margin: 0 auto var(--space-5);
}
.service-skeleton .sk-title {
  height: 20px;
  width: 60%;
  margin: 0 auto var(--space-3);
}
.service-skeleton .sk-text {
  height: 14px;
  width: 80%;
  margin: 0 auto var(--space-2);
}

/* ============================================
   STORE / PRODUCT CARDS v2
   ============================================ */
.store-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-8);
}
.filter-chip {
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.filter-chip:hover {
  border-color: var(--c-primary-light);
  color: var(--c-primary);
}
.filter-chip.active {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px var(--c-primary-glow);
}

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--c-primary-light);
}

.product-img {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-surface-2), var(--bg-surface-3));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-img .product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  background: var(--c-warning);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}
.product-img .product-img-placeholder {
  font-size: 3rem;
  opacity: 0.5;
}
.product-img .product-quick-actions {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  display: flex;
  gap: var(--space-2);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--t-normal);
}
.product-card:hover .product-quick-actions {
  opacity: 1;
  transform: translateY(0);
}
.product-quick-actions button {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-md);
}
.product-quick-actions button:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  transform: scale(1.1);
}

.product-info {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
  line-height: 1.3;
}
.product-info p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  line-height: 1.5;
  flex: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}
.product-price {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--c-primary);
}
.product-stock {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}
.product-stock.low {
  color: var(--c-warning);
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: var(--space-2);
}
.product-btn {
  flex: 1;
  padding: 0.625rem;
  border-radius: var(--r-md);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
  text-align: center;
}
.product-btn-primary {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
}
.product-btn-primary:hover {
  box-shadow: 0 4px 12px var(--c-primary-glow);
  transform: translateY(-1px);
}
.product-btn-primary.added-anim {
  background: var(--c-success);
}
.product-btn-secondary {
  background: var(--bg-surface-2);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.product-btn-secondary:hover {
  background: var(--bg-surface-3);
}

/* Product skeleton */
.product-skeleton {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.product-skeleton .sk-img {
  aspect-ratio: 4/3;
  width: 100%;
}
.product-skeleton .sk-body {
  padding: var(--space-5);
}
.product-skeleton .sk-title {
  height: 18px;
  width: 70%;
  margin-bottom: var(--space-3);
}
.product-skeleton .sk-text {
  height: 12px;
  width: 90%;
  margin-bottom: var(--space-2);
}
.product-skeleton .sk-price {
  height: 20px;
  width: 40%;
  margin-top: var(--space-4);
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  transition: all var(--t-normal);
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  color: #fbbf24;
  font-size: 1.125rem;
  margin-bottom: var(--space-3);
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  font-style: italic;
}
.review-text::before {
  content: '"';
  font-size: 2rem;
  color: var(--c-primary-light);
  line-height: 1;
  margin-right: var(--space-1);
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}
.review-name {
  font-weight: 700;
  font-size: 0.875rem;
}
.review-device {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* ============================================
   PRICE ESTIMATOR
   ============================================ */
.estimator-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-2xl);
  padding: var(--space-10);
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.estimator-step {
  display: none;
}
.estimator-step.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

.estimator-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.estimator-option {
  padding: var(--space-5) var(--space-4);
  border-radius: var(--r-lg);
  border: 2px solid var(--border-color);
  background: var(--bg-surface);
  cursor: pointer;
  text-align: center;
  transition: all var(--t-fast);
}
.estimator-option:hover {
  border-color: var(--c-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.estimator-option.selected {
  border-color: var(--c-primary);
  background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(139,92,246,0.05));
  box-shadow: 0 0 0 3px var(--c-primary-glow);
}
.estimator-option .opt-icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
}
.estimator-option .opt-label {
  font-weight: 600;
  font-size: 0.9375rem;
}
.estimator-option .opt-price {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: var(--space-1);
}

.estimator-result {
  text-align: center;
  padding: var(--space-8);
}
.estimator-result .result-price {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: var(--space-4) 0;
}
.estimator-result .result-meta {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: var(--space-6);
}

.estimator-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-color);
}
.estimator-progress {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}
.estimator-progress-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg-surface-3);
  transition: all var(--t-normal);
}
.estimator-progress-dot.active {
  background: var(--c-primary);
  box-shadow: 0 0 0 4px var(--c-primary-glow);
}
.estimator-progress-dot.completed {
  background: var(--c-success);
}

/* ============================================
   TRACKER v2
   ============================================ */
.tracker-section {
  background: linear-gradient(180deg, var(--bg-root) 0%, var(--bg-surface) 100%);
}
.tracker-box {
  max-width: 640px;
  margin: 0 auto;
}
.tracker-form {
  display: flex;
  gap: var(--space-3);
  background: var(--bg-surface);
  padding: var(--space-2);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}
.tracker-form .input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  box-shadow: none;
}
.tracker-form .input:focus {
  box-shadow: none;
}
@media (max-width: 480px) {
  .tracker-form { flex-direction: column; }
}

/* Tracker result card */
.tracker-result-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  margin-top: var(--space-6);
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.5s ease;
}
.tracker-result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-color);
}
.tracker-device-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.tracker-device-info p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}
.tracker-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.tracker-meta-item {
  padding: var(--space-4);
  background: var(--bg-surface-2);
  border-radius: var(--r-lg);
}
.tracker-meta-item .meta-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-tertiary);
  margin-bottom: var(--space-1);
}
.tracker-meta-item .meta-value {
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-mono);
}

/* Tracker timeline */
.tracker-timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.tracker-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--bg-surface-3);
  border-radius: var(--r-full);
  z-index: 0;
}
.tracker-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.tracker-step-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-surface-3);
  border: 3px solid var(--bg-surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: var(--space-3);
  transition: all var(--t-normal);
}
.tracker-step-dot.completed {
  background: var(--c-success);
  border-color: var(--c-success);
  color: #fff;
}
.tracker-step-dot.current {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  box-shadow: 0 0 0 6px var(--c-primary-glow);
  animation: pulse 2s ease-in-out infinite;
}
.tracker-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-tertiary);
  max-width: 80px;
}
.tracker-step.current .tracker-step-label {
  color: var(--c-primary);
}

/* ============================================
   BOOKING FORM v2
   ============================================ */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .booking-grid { grid-template-columns: 1fr; }
}
.booking-grid .form-group:nth-last-child(2) {
  grid-column: 1 / -1;
}
.booking-grid button {
  grid-column: 1 / -1;
}

/* ============================================
   FOOTER v2
   ============================================ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: var(--space-4) 0;
}
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: all var(--t-fast);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: translateY(-2px);
}

.footer-grid h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-5);
  color: var(--text-primary);
}
.footer-grid a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  padding: var(--space-2) 0;
  transition: color var(--t-fast);
}
.footer-grid a:hover {
  color: var(--c-primary);
}

.footer-map {
  width: 100%;
  height: 120px;
  border-radius: var(--r-lg);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: 0.8125rem;
  margin-top: var(--space-3);
  overflow: hidden;
}

.footer-newsletter {
  margin-top: var(--space-4);
}
.footer-newsletter-form {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.footer-newsletter-form .input {
  flex: 1;
  font-size: 0.8125rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: var(--space-6) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-header {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 { font-size: 1.125rem; }
.cart-body { flex: 1; overflow-y: auto; padding: var(--space-4); }
.cart-footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--border-color);
  background: var(--bg-surface);
}
.cart-empty {
  text-align: center;
  padding: var(--space-12) var(--space-6);
  color: var(--text-tertiary);
}
.cart-empty-icon { font-size: 3rem; margin-bottom: var(--space-4); }
.cart-empty h4 { color: var(--text-primary); margin-bottom: var(--space-2); }

.cart-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--r-lg);
  transition: background var(--t-fast);
}
.cart-item:hover { background: var(--bg-surface-2); }
.cart-item-img {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--bg-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: var(--space-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-bottom: var(--space-2);
}
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-surface-2);
  border-radius: var(--r-md);
  padding: 0.25rem;
}
.cart-item-qty button {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  border: none;
  background: var(--bg-surface);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.cart-item-qty button:hover { background: var(--bg-surface-3); }
.cart-item-qty span {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 0.8125rem;
}
.cart-item-remove {
  width: 32px; height: 32px;
  border-radius: var(--r-md);
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  color: var(--text-tertiary);
}
.cart-item-remove:hover {
  background: var(--c-danger-light);
  color: var(--c-danger);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

/* ============================================
   QUICK VIEW MODAL
   ============================================ */
#quick-view-content .modal-product-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-surface-2), var(--bg-surface-3));
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: var(--space-5);
  overflow: hidden;
}
#quick-view-content .modal-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   BOTTOM NAV (mobile)
   ============================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-around;
  padding: var(--space-2) 0 calc(var(--space-2) + env(safe-area-inset-bottom));
  z-index: calc(var(--z-sticky) - 1);
  backdrop-filter: blur(20px);
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 0.625rem;
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  transition: color var(--t-fast);
  flex: 1;
}
.bottom-nav a.active { color: var(--c-primary); }
.bottom-nav-icon { font-size: 1.25rem; }

/* ============================================
   DARK MODE TOGGLE
   ============================================ */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.125rem;
  transition: all var(--t-fast);
  color: var(--text-primary);
}
.theme-toggle:hover {
  background: var(--bg-surface-3);
  transform: scale(1.05);
}

/* ============================================
   INSTALL PROMPT (PWA)
   ============================================ */
.install-prompt {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-xl);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  z-index: var(--z-toast);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 90vw;
}
.install-prompt.show {
  transform: translateX(-50%) translateY(0);
}
.install-prompt-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.install-prompt-text { flex: 1; }
.install-prompt-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.install-prompt-text p {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}
.install-prompt-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text-tertiary);
  padding: var(--space-2);
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

/* Skeleton shimmer */
.skeleton {
  background: linear-gradient(90deg, var(--bg-surface-2) 25%, var(--bg-surface) 50%, var(--bg-surface-2) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: var(--r-md);
}
@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Cart badge */
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  background: var(--c-danger);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-count.bounce {
  animation: badgeBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes badgeBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Booking form highlight from estimator */
.booking-grid.highlight {
  animation: formHighlight 1.2s ease;
}
@keyframes formHighlight {
  0% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
  100% { box-shadow: 0 0 0 0 rgba(99,102,241,0); }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  .section { padding: var(--space-16) 0; }
  .estimator-box { padding: var(--space-6); }
  .tracker-result-card { padding: var(--space-5); }
  .tracker-meta-grid { grid-template-columns: 1fr; }
  .tracker-timeline::before { left: 16px; right: 16px; }
  .tracker-step-dot { width: 32px; height: 32px; font-size: 0.75rem; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6);
  padding: var(--space-6) 0;
  position: relative;
  z-index: 1;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.trust-item {
  display: flex; align-items: center; gap: var(--space-3);
  color: #fff; font-size: 0.875rem;
}
.trust-item strong { display: block; font-weight: 700; font-size: 0.9375rem; }
.trust-item span { opacity: 0.85; font-size: 0.8125rem; }
.trust-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .trust-item { font-size: 0.8125rem; }
  .trust-icon { width: 36px; height: 36px; font-size: 1rem; }
}

/* ============================================
   BRAND LOGOS STRIP
   ============================================ */
.brand-strip { padding: var(--space-10) 0; }
.brand-strip-label {
  text-align: center; color: var(--text-tertiary); font-size: 0.875rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: var(--space-6);
}
.brand-logos {
  display: flex; justify-content: center; align-items: center;
  gap: var(--space-8); flex-wrap: wrap;
}
.brand-logo {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  font-size: 2rem; opacity: 0.6; transition: opacity var(--t-fast), transform var(--t-fast);
  filter: grayscale(0.3);
}
.brand-logo:hover { opacity: 1; transform: translateY(-4px); filter: grayscale(0); }
.brand-logo span {
  font-size: 0.75rem; font-weight: 600; color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-grid {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.faq-item {
  background: var(--bg-surface); border: 1px solid var(--border-color);
  border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow var(--t-fast), border-color var(--t-fast);
}
.faq-item:hover { border-color: var(--c-primary-200); }
[data-theme="dark"] .faq-item:hover { border-color: rgba(99,102,241,0.3); }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--c-primary-200); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-5) var(--space-6); cursor: pointer;
  font-weight: 600; color: var(--text-primary); list-style: none;
  font-size: 0.9375rem; gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  font-size: 0.75rem; color: var(--text-tertiary);
  transition: transform var(--t-fast); flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(180deg); color: var(--c-primary); }
.faq-item p {
  padding: 0 var(--space-6) var(--space-5); margin: 0;
  color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.6;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: calc(var(--space-6) + 56px); right: var(--space-6);
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: var(--z-sticky); text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  animation: waPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6); }
}
@media (min-width: 769px) {
  .whatsapp-float { bottom: var(--space-6); }
}

/* ============================================
   SOCIAL PROOF TOAST
   ============================================ */
.social-proof-toast {
  position: fixed; bottom: calc(var(--space-6) + 120px); left: var(--space-6);
  max-width: 320px; z-index: var(--z-sticky);
  transform: translateX(-120%); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
}
.social-proof-toast.show { transform: translateX(0); opacity: 1; }
.social-proof-inner {
  display: flex; align-items: flex-start; gap: var(--space-3);
  background: var(--bg-surface); border: 1px solid var(--border-color);
  border-radius: var(--r-lg); padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg); backdrop-filter: blur(12px);
}
.social-proof-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.social-proof-text {
  font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.45;
}
.social-proof-text strong { color: var(--text-primary); font-weight: 600; }
.social-proof-time {
  display: block; color: var(--text-tertiary); font-size: 0.75rem; margin-top: 2px;
}
@media (max-width: 768px) {
  .social-proof-toast { bottom: calc(var(--space-6) + 140px); left: var(--space-4); max-width: 280px; }
}

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.sticky-mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: var(--space-3) var(--space-4) calc(var(--space-3) + env(safe-area-inset-bottom));
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6);
  display: flex; gap: var(--space-3); align-items: center;
  z-index: calc(var(--z-sticky) - 1);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 -4px 20px rgba(99,102,241,0.3);
}
.sticky-mobile-cta.visible { transform: translateY(0); }
@media (min-width: 769px) {
  .sticky-mobile-cta { display: none !important; }
}

/* Adjust bottom nav to sit above sticky CTA */
.bottom-nav { bottom: 56px; }
@media (max-width: 768px) {
  body { padding-bottom: 120px; }
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  background: linear-gradient(90deg, #f59e0b, #ef4444, #f59e0b);
  background-size: 200% 100%;
  animation: promoShine 3s linear infinite;
  color: #fff; font-size: 0.875rem; font-weight: 600;
  position: sticky; top: 0; z-index: calc(var(--z-sticky) + 1);
}
@keyframes promoShine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.promo-banner-inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-4); padding: var(--space-2) var(--space-4);
  position: relative;
}
.promo-banner strong { font-weight: 800; }
.promo-code {
  background: rgba(255,255,255,0.25); padding: 2px 8px; border-radius: var(--r-sm);
  font-family: monospace; font-weight: 700; letter-spacing: 0.05em;
}
.promo-close {
  background: none; border: none; color: rgba(255,255,255,0.8);
  font-size: 1rem; cursor: pointer; padding: 4px;
  position: absolute; right: var(--space-4); top: 50%; transform: translateY(-50%);
  transition: color var(--t-fast);
}
.promo-close:hover { color: #fff; }
@media (max-width: 768px) {
  .promo-banner { font-size: 0.75rem; }
  .promo-banner-inner { padding: var(--space-2) var(--space-8) var(--space-2) var(--space-4); text-align: center; }
}

/* ============================================
   BEFORE / AFTER GALLERY
   ============================================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6);
}
.gallery-card {
  background: var(--bg-surface); border: 1px solid var(--border-color);
  border-radius: var(--r-xl); overflow: hidden;
  transition: transform var(--t-normal), box-shadow var(--t-normal);
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-img-wrap {
  display: grid; grid-template-columns: 1fr 1fr; height: 200px;
}
.gallery-img {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.gallery-placeholder {
  color: #fff; font-size: 2rem; text-align: center; line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.gallery-placeholder small { font-size: 0.8125rem; opacity: 0.9; }
.gallery-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: var(--r-sm); font-size: 0.6875rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.gallery-badge-before { background: #ef4444; color: #fff; }
.gallery-badge-after { background: #22c55e; color: #fff; }
.gallery-label {
  padding: var(--space-4) var(--space-5); margin: 0;
  font-weight: 600; color: var(--text-primary); font-size: 0.9375rem;
  text-align: center;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-img-wrap { height: 160px; }
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-table-wrap {
  max-width: 700px; margin: 0 auto;
  background: var(--bg-surface); border: 1px solid var(--border-color);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: var(--space-4) var(--space-5); text-align: left; font-size: 0.9375rem;
}
.compare-table thead th {
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6);
  color: #fff; font-weight: 700;
}
.compare-table thead th:first-child { border-radius: var(--r-xl) 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 var(--r-xl) 0 0; }
.compare-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background var(--t-fast);
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--bg-primary); }
.compare-table td { color: var(--text-secondary); }
.compare-table td:first-child { font-weight: 600; color: var(--text-primary); }
.compare-us {
  background: rgba(34,197,94,0.08);
  color: #16a34a !important; font-weight: 600;
}
[data-theme="dark"] .compare-us {
  background: rgba(34,197,94,0.12);
  color: #4ade80 !important;
}
@media (max-width: 768px) {
  .compare-table th, .compare-table td { padding: var(--space-3) var(--space-4); font-size: 0.8125rem; }
}
