/*
Theme Name: Max Hub TV
Theme URI: https://maxhubtv.com
Author: Max Hub TV
Description: Custom WordPress theme for Max Hub TV. Dark design with amber accents.
Version: 2.0.0
License: Private
Text Domain: maxhubtv
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root, [data-theme="dark"] {
  --black: #000;
  --near-black: #0a0a0a;
  --card: #111111;
  --card-hover: #1a1a1a;
  --amber: #f59e0b;
  --amber-hover: #d97706;
  --amber-light: rgba(245,158,11,0.15);
  --amber-border: rgba(245,158,11,0.3);
  --amber-border-md: rgba(245,158,11,0.4);
  --white: #ffffff;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-800: #27272a;
  --border: rgba(255,255,255,0.05);
  --border-md: rgba(255,255,255,0.1);
  --border-lg: rgba(255,255,255,0.2);
  --green: #22c55e;
  --green-bg: rgba(34,197,94,0.1);
  --green-border: rgba(34,197,94,0.2);
  --whatsapp: #25D366;
  --whatsapp-hover: #20bd5a;
  --max-w: 80rem;
  --max-w-5: 64rem;
  --max-w-4: 56rem;
  --max-w-3: 48rem;
  --px: clamp(1rem, 4vw, 2rem);
}

[data-theme="light"] {
  --black: #f8fafc;
  --near-black: #ffffff;
  --card: #ffffff;
  --card-hover: #f1f5f9;
  --white: #0f172a;
  --zinc-300: #334155;
  --zinc-400: #475569;
  --zinc-500: #64748b;
  --zinc-600: #94a3b8;
  --zinc-800: #cbd5e1;
  --border: rgba(15,23,42,0.08);
  --border-md: rgba(15,23,42,0.15);
  --border-lg: rgba(15,23,42,0.25);
  --amber: #d97706;
  --amber-hover: #b45309;
  --amber-light: rgba(217,119,6,0.15);
  --amber-border: rgba(217,119,6,0.3);
  --amber-border-md: rgba(217,119,6,0.4);
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  background: var(--card-hover);
  color: var(--amber);
  border: 1px solid var(--border-md);
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
}
.theme-toggle-btn:hover {
  background: var(--amber-light);
  border-color: var(--amber-border);
}


/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.container-5 { max-width: var(--max-w-5); margin: 0 auto; padding: 0 var(--px); }
.container-4 { max-width: var(--max-w-4); margin: 0 auto; padding: 0 var(--px); }
.container-3 { max-width: var(--max-w-3); margin: 0 auto; padding: 0 var(--px); }
main { flex: 1; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, #92400e, #b45309, #92400e);
  color: #fef3c7;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  letter-spacing: 0.02em;
}
.announcement-bar a { color: #fde68a; text-decoration: underline; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 42px; left: 0; right: 0;
  z-index: 50;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--amber-border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.nav-logo svg { color: var(--amber); flex-shrink: 0; }
.nav-logo .accent { color: var(--amber); }
.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
.nav-links a {
  font-size: 0.8125rem;
  color: var(--zinc-400);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
.nav-actions .nav-signin {
  font-size: 0.875rem;
  color: var(--zinc-400);
  transition: color 0.2s;
}
.nav-actions .nav-signin:hover { color: #fff; }
.btn-primary {
  background: var(--amber);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #fbbf24; color: #fff; }
.btn-primary-lg {
  background: var(--amber);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: background 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-primary-lg:hover { background: #fbbf24; color: #fff; }
.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--zinc-300);
  border: 1px solid var(--border-lg);
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: all 0.2s;
}
.btn-ghost-lg:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}
.btn-whatsapp:hover { background: var(--whatsapp-hover); color: #fff; }
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0.25rem;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 106px; left: 0; right: 0;
  background: rgba(0,0,0,0.98);
  border-bottom: 1px solid var(--border);
  z-index: 49;
  padding: 1rem var(--px);
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  color: var(--zinc-400);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn-primary { text-align: center; margin-top: 0.5rem; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .nav-hamburger { display: none; }
}

/* ============================================================
   PAGE OFFSET (for fixed nav + announcement bar)
   ============================================================ */
.page-top { padding-top: 106px; }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  padding-top: 4rem;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(120,53,15,0.3) 0%, #000 50%, #000 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: rgba(245,158,11,0.1);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 var(--px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.4);
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--amber); }
.hero p {
  font-size: 1.125rem;
  color: var(--zinc-400);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
  .hero-ctas a { width: auto; }
}
.hero-ctas a { width: 100%; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--zinc-400);
  font-size: 0.875rem;
}
.hero-stat svg { color: var(--amber); flex-shrink: 0; }

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  background: var(--near-black);
  padding: 6rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.125rem;
  color: var(--zinc-400);
  max-width: 40rem;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}
.feature-card:hover {
  background: var(--card-hover);
  border-color: var(--amber-border-md);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(245,158,11,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.feature-card:hover .feature-icon { background: rgba(245,158,11,0.25); }
.feature-icon svg { color: var(--amber); }
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--zinc-400);
  line-height: 1.6;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  background: var(--near-black);
  padding: 6rem 0;
}
.device-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.device-selector p {
  font-size: 0.875rem;
  color: var(--zinc-400);
  margin-bottom: 1rem;
}
.device-tabs {
  display: inline-flex;
  background: var(--card);
  border: 1px solid var(--border-md);
  border-radius: 9999px;
  padding: 4px;
  gap: 4px;
}
.device-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--zinc-400);
}
.device-tab:hover { color: #fff; }
.device-tab.active {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
@media (min-width: 640px) { .plans-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .plans-grid { grid-template-columns: repeat(5, 1fr); } }
.plan-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.plan-card:hover { border-color: rgba(255,255,255,0.2); }
.plan-card.popular {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-color: #fbbf24;
  box-shadow: 0 20px 60px rgba(120,53,15,0.4);
  transform: scale(1.04);
}
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #d97706;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.plan-badge.amber {
  background: var(--amber);
  color: #fff;
}
.plan-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.plan-desc {
  font-size: 0.75rem;
  color: var(--zinc-500);
  margin-bottom: 1rem;
}
.plan-card.popular .plan-desc { color: rgba(254,243,199,0.8); }
.plan-price { font-size: 1.875rem; font-weight: 700; color: #fff; }
.plan-price-note {
  font-size: 0.75rem;
  color: var(--zinc-500);
  margin-bottom: 1.25rem;
}
.plan-card.popular .plan-price-note { color: rgba(254,243,199,0.8); }
.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}
.plan-cta {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  transition: all 0.2s;
  background: var(--amber);
  color: #fff;
}
.plan-cta:hover { background: #fbbf24; color: #fff; }
.plan-card.popular .plan-cta {
  background: #fff;
  color: #d97706;
}
.plan-card.popular .plan-cta:hover { background: #fef3c7; }

.plan-cta-wa {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.45rem 0.75rem;
  border-radius: 9999px;
  transition: all 0.2s;
  background: var(--whatsapp);
  color: #fff;
}
.plan-cta-wa:hover { background: var(--whatsapp-hover); color: #fff; }
.plan-card.popular .plan-cta-wa {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.plan-card.popular .plan-cta-wa:hover { background: rgba(255, 255, 255, 0.35); color: #fff; }

.plan-includes {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
}
.plan-includes-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--zinc-400);
  margin-bottom: 1.25rem;
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .includes-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .includes-grid { grid-template-columns: repeat(6, 1fr); } }
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--zinc-300);
}
.includes-item svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }

.badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .badges-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .badges-grid { grid-template-columns: repeat(5, 1fr); } }
.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}
.badge-item .emoji { font-size: 1.25rem; flex-shrink: 0; }
.badge-item span:last-child {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--zinc-300);
  line-height: 1.4;
}
.pricing-note {
  text-align: center;
  color: var(--zinc-500);
  font-size: 0.875rem;
  margin-top: 2rem;
}

/* ============================================================
   DEVICES SECTION
   ============================================================ */
.devices-section {
  background: var(--near-black);
  padding: 6rem 0;
}
.devices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .devices-grid { grid-template-columns: repeat(4, 1fr); } }
.device-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all 0.3s;
}
.device-card:hover {
  background: var(--card-hover);
  border-color: var(--amber-border-md);
}
.device-icon-wrap {
  width: 64px; height: 64px;
  background: var(--card-hover);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.device-card:hover .device-icon-wrap { background: #222; }
.device-card h3 { font-size: 0.875rem; font-weight: 600; color: #fff; }
.device-card p { font-size: 0.75rem; color: var(--zinc-500); }
.devices-note {
  text-align: center;
  color: var(--zinc-500);
  font-size: 0.875rem;
  margin-top: 2.5rem;
}

/* ============================================================
   SETUP SECTION
   ============================================================ */
.setup-section {
  background: #000;
  padding: 6rem 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
}
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-num-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(120,53,15,0.4);
}
.step-num svg { color: #fff; }
.step-badge {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  background: var(--card-hover);
  border: 1px solid var(--border-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--zinc-400);
}
.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--zinc-400);
  line-height: 1.6;
  max-width: 20rem;
  margin-bottom: 1rem;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}
.step-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
}
.setup-help-box {
  margin-top: 4rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .setup-help-box { flex-direction: row; align-items: center; justify-content: space-between; }
}
.setup-help-box h3 { font-size: 1.125rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.setup-help-box p { font-size: 0.875rem; color: var(--zinc-400); }

/* ============================================================
   CHANNELS SECTION
   ============================================================ */
.channels-section { background: var(--black); padding: 6rem 0; }
.channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .channels-grid { grid-template-columns: repeat(4, 1fr); } }
.channel-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}
.channel-card:hover { border-color: var(--amber-border-md); }
.channel-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.channel-name { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.channel-count { font-size: 0.75rem; font-weight: 700; color: var(--amber); }

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section { background: var(--near-black); padding: 6rem 0; }
.rating-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border-md);
  border-radius: 1rem;
  padding: 1.25rem 2rem;
  margin-bottom: 1rem;
}
.rating-number {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}
.rating-number span:first-child { font-size: 3rem; font-weight: 700; color: #fff; }
.rating-number span:last-child { font-size: 0.875rem; color: var(--zinc-400); margin-bottom: 0.5rem; }
.stars { display: flex; gap: 2px; }
.star { color: #fbbf24; font-size: 1rem; }
.rating-count { font-size: 0.875rem; color: var(--zinc-400); }
.rating-count strong { color: #fff; }
.reviews-masonry {
  columns: 1;
  column-gap: 1.25rem;
}
@media (min-width: 640px) { .reviews-masonry { columns: 2; } }
@media (min-width: 1024px) { .reviews-masonry { columns: 3; } }
.review-card {
  break-inside: avoid;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--border-md); }
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-name { font-size: 0.875rem; font-weight: 600; color: #fff; }
.review-location { font-size: 0.75rem; color: var(--zinc-500); }
.review-plan {
  margin-left: auto;
  background: rgba(245,158,11,0.15);
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.review-text { font-size: 0.875rem; color: var(--zinc-300); line-height: 1.6; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--near-black); padding: 6rem 0; }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--amber-border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: none;
  gap: 1rem;
}
.faq-question:hover { color: #fff; }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(245,158,11,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--zinc-400);
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section { background: var(--black); padding: 6rem 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.cta-section p { font-size: 1.125rem; color: var(--zinc-400); margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .cta-buttons { flex-direction: row; justify-content: center; } }
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--zinc-300);
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: all 0.2s;
  text-align: center;
}
.btn-outline:hover { border-color: rgba(245,158,11,0.4); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--zinc-400);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-brand-actions { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand-actions .btn-primary-sm {
  display: inline-flex;
  width: fit-content;
  background: var(--amber);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  transition: background 0.2s;
}
.footer-brand-actions .btn-primary-sm:hover { background: #fbbf24; }
.footer-brand-actions .footer-link {
  font-size: 0.75rem;
  color: var(--zinc-400);
  transition: color 0.2s;
}
.footer-brand-actions .footer-link:hover { color: #fff; }
.footer-brand-actions .footer-link-icon {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--zinc-400);
  transition: color 0.2s;
}
.footer-brand-actions .footer-link-icon:hover { color: #fff; }
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--zinc-400);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.75rem; color: var(--zinc-500); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-bubble {
  position: relative;
  background: #fff;
  color: #1f1f1f;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  max-width: 220px;
  line-height: 1.4;
  transition: opacity 0.3s;
}
.wa-bubble.hidden { display: none; }
.wa-bubble-brand { font-size: 0.75rem; font-weight: 700; color: #71717a; margin-bottom: 0.25rem; }
.wa-bubble-text { font-weight: 500; }
.wa-bubble-tail {
  position: absolute;
  bottom: -8px; right: 24px;
  width: 12px; height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.wa-dismiss {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  background: #e4e4e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 12px;
  color: #52525b;
  transition: background 0.2s;
}
.wa-dismiss:hover { background: #d4d4d8; }
.wa-btn {
  width: 56px; height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
  transition: all 0.3s;
}
.wa-btn:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37,211,102,0.4);
}

/* ============================================================
   INNER PAGE HEADER
   ============================================================ */
.page-header {
  background: var(--near-black);
  border-bottom: 1px solid var(--border);
  padding-top: 6rem;
  padding-bottom: 3.5rem;
}
.page-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--zinc-500);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.page-header .back-link:hover { color: #fff; }
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.page-header p { font-size: 1.125rem; color: var(--zinc-400); max-width: 40rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--zinc-500);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--zinc-500); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .current { color: var(--zinc-300); }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .product-plans-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .product-plans-grid { grid-template-columns: repeat(3, 1fr); } }
.product-plan-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.product-plan-card:hover { border-color: var(--amber-border-md); }
.product-plan-card.popular {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-color: #fbbf24;
  box-shadow: 0 10px 40px rgba(245,158,11,0.2);
}
.ppc-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.ppc-badge.white { background: #fff; color: #d97706; }
.ppc-badge.amber { background: var(--amber); color: #fff; }
.ppc-price-row { display: flex; align-items: baseline; gap: 0.5rem; }
.ppc-price { font-size: 2.5rem; font-weight: 800; color: #fff; }
.ppc-per { font-size: 0.875rem; color: var(--zinc-400); }
.product-plan-card.popular .ppc-per { color: rgba(254,243,199,0.8); }
.ppc-monthly { font-size: 0.75rem; font-weight: 500; color: var(--amber); margin-top: 0.25rem; margin-bottom: 2rem; }
.product-plan-card.popular .ppc-monthly { color: rgba(254,243,199,0.8); }
.ppc-features { display: flex; flex-direction: column; gap: 0.625rem; flex: 1; margin-bottom: 2rem; }
.ppc-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.ppc-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(245,158,11,0.15);
}
.ppc-check svg { color: var(--amber); }
.product-plan-card.popular .ppc-check { background: rgba(255,255,255,0.25); }
.product-plan-card.popular .ppc-check svg { color: #fff; }
.ppc-feature span:last-child { color: var(--zinc-300); }
.product-plan-card.popular .ppc-feature span:last-child { color: rgba(254,243,199,0.9); }
.ppc-view {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem;
  border-radius: 9999px;
  background: var(--amber);
  color: #fff;
  transition: background 0.2s;
  margin-bottom: 0.625rem;
}
.ppc-view:hover { background: #fbbf24; color: #fff; }
.product-plan-card.popular .ppc-view { background: #fff; color: #d97706; }
.product-plan-card.popular .ppc-view:hover { background: #fef3c7; }
.ppc-subscribe {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.625rem;
  border-radius: 9999px;
  border: 1px solid var(--border-md);
  color: var(--zinc-300);
  transition: all 0.2s;
}
.ppc-subscribe:hover { border-color: var(--amber-border-md); color: #fff; }
.product-plan-card.popular .ppc-subscribe { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); color: #fff; }
.product-plan-card.popular .ppc-subscribe:hover { background: rgba(255,255,255,0.3); }

/* Comparison table */
.compare-section { background: #0d0d0d; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5rem 0; }
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; min-width: 640px; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 0.875rem 0.75rem;
  text-align: center;
  font-size: 0.875rem;
}
.compare-table th:first-child, .compare-table td:first-child {
  text-align: left;
  padding-right: 1.5rem;
  width: 33%;
}
.compare-table thead tr { border-bottom: 1px solid var(--border-md); }
.compare-table th { color: var(--zinc-400); font-weight: 500; }
.compare-table th.highlight { color: var(--amber); }
.compare-table th .sub { display: block; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; color: var(--amber); margin-bottom: 0.25rem; }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody td { color: var(--zinc-300); }
.compare-table tbody td:first-child { color: var(--zinc-400); }
.compare-table tbody td.highlight { color: var(--amber); }
.compare-table .check-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(245,158,11,0.15);
  border-radius: 50%;
}
.compare-table .check-wrap svg { color: var(--amber); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .about-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.about-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}
.about-stat-card svg { color: var(--amber); margin: 0 auto 0.75rem; }
.about-stat-card strong { display: block; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.about-stat-card span { font-size: 0.75rem; color: var(--zinc-400); }
.prose { color: var(--zinc-300); line-height: 2; }
.prose p { margin-bottom: 1.25rem; }
.mission-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}
.mission-box h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}
.why-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; color: var(--zinc-400); line-height: 1.6; }
.about-cta {
  background: linear-gradient(135deg, rgba(120,53,15,0.4), rgba(39,39,42,1));
  border: 1px solid rgba(120,53,15,0.3);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
}
.about-cta h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.about-cta p { color: var(--zinc-400); margin-bottom: 1.75rem; max-width: 28rem; margin-left: auto; margin-right: auto; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.status-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
}
.status-bar svg { color: #4ade80; flex-shrink: 0; }
.status-bar p { font-size: 0.875rem; color: #86efac; }
.status-bar p strong { color: #4ade80; }
.status-dot {
  margin-left: auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .contact-cards-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card.wa-card {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.3);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon.wa { background: rgba(37,211,102,0.2); }
.contact-icon.email { background: var(--card-hover); }
.contact-icon.wa svg { color: var(--whatsapp); }
.contact-icon.email svg { color: var(--amber); }
.contact-card h2 { font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.contact-card p { font-size: 0.875rem; color: var(--zinc-400); line-height: 1.6; }
.contact-card small { font-size: 0.75rem; color: var(--zinc-500); }
.quick-answers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .quick-answers-grid { grid-template-columns: 1fr 1fr; } }
.qa-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}
.qa-card h3 { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.qa-card p { font-size: 0.875rem; color: var(--zinc-400); }

/* ============================================================
   SETUP GUIDE PAGE
   ============================================================ */
.setup-page { background: var(--black); min-height: 100vh; color: #fff; }
.setup-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) { .setup-layout { flex-direction: row; } }
.setup-sidebar {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 1024px) { .setup-sidebar { width: 224px; } }
.sidebar-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--zinc-500);
  margin-bottom: 0.75rem;
}
.device-nav {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .device-nav { flex-direction: column; overflow-x: visible; padding-bottom: 0; }
}
.device-nav-btn {
  flex-shrink: 0;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--card);
  color: var(--zinc-400);
  border: none;
  width: auto;
}
@media (min-width: 1024px) { .device-nav-btn { width: 100%; } }
.device-nav-btn:hover { color: #fff; background: var(--card-hover); }
.device-nav-btn.active { background: var(--amber); color: #fff; }
.device-nav-btn strong { display: block; font-weight: 500; }
.device-nav-btn small { font-size: 0.7rem; color: inherit; opacity: 0.7; }
.setup-main { flex: 1; min-width: 0; }
.setup-panel { display: none; }
.setup-panel.active { display: block; }
.setup-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
.setup-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.setup-card-header h2 { font-size: 1.5rem; font-weight: 700; color: #fff; }
.setup-card-header p { font-size: 0.875rem; color: var(--zinc-400); margin-top: 0.25rem; }
.supported-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.app-rec {
  background: var(--card-hover);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.app-rec p:first-child { font-size: 0.75rem; color: var(--zinc-500); }
.app-rec strong { font-size: 1rem; font-weight: 600; color: #fff; }
.app-rec a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--amber);
  transition: color 0.2s;
}
.app-rec a:hover { color: #fbbf24; }
.setup-steps-list { display: flex; flex-direction: column; }
.setup-step {
  display: flex;
  gap: 1rem;
}
.step-line { display: flex; flex-direction: column; align-items: center; }
.step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.step-connector {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 0.5rem;
}
.setup-panel h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 0.5rem;
}
.setup-panel p {
  font-size: 0.9375rem;
  color: #d4d4d8 !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.setup-step-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 0.35rem;
}
.setup-step-body p {
  font-size: 0.9rem;
  color: #a1a1aa !important;
  line-height: 1.6;
}
.setup-step-body p strong {
  color: #ffffff !important;
}
.setup-note {
  background: var(--card);
  border: 1px solid var(--amber-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #fef3c7 !important;
  font-size: 0.875rem;
  margin-top: 1.5rem;
}
.setup-note strong {
  color: var(--amber) !important;
}
.setup-sidebar-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #a1a1aa !important;
  margin-bottom: 0.75rem;
}
.step-content { padding-bottom: 2rem; flex: 1; }
.step-content h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.step-content p { font-size: 0.875rem; color: var(--zinc-400); line-height: 1.6; }
.step-tip {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(250,204,21,0.8);
  background: rgba(250,204,21,0.1);
  border: 1px solid rgba(250,204,21,0.2);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}
.setup-nav-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.setup-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--zinc-400);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.setup-nav-btn:hover:not(:disabled) { color: #fff; }
.setup-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.still-need-help {
  margin-top: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .still-need-help { flex-direction: row; align-items: center; justify-content: space-between; }
}
.still-need-help h3 { font-size: 1rem; font-weight: 600; color: #fff; }
.still-need-help p { font-size: 0.875rem; color: var(--zinc-400); margin-top: 0.25rem; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem var(--px);
  color: var(--zinc-300);
  line-height: 1.8;
}
.legal-content h1 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.legal-content .updated { font-size: 0.875rem; color: var(--zinc-500); margin-bottom: 3rem; }
.legal-content h2 { font-size: 1.25rem; font-weight: 600; color: #fff; margin: 2rem 0 0.75rem; }
.legal-content h3 { font-size: 1.0625rem; font-weight: 600; color: #fff; margin: 1.5rem 0 0.5rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: 0.25rem; }
.legal-content a { color: var(--amber); }
.legal-content a:hover { text-decoration: underline; }
.legal-highlight {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--amber-border-md); }
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--card-hover), #111);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.blog-card-body h2 { font-size: 1.0625rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 0.75rem; }
.blog-card-body p { font-size: 0.875rem; color: var(--zinc-400); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.blog-meta { font-size: 0.75rem; color: var(--zinc-500); }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber);
  margin-top: 0.75rem;
  transition: color 0.2s;
}
.blog-read-more:hover { color: #fbbf24; }

/* Single post */
.single-post { max-width: 48rem; margin: 0 auto; padding: 4rem var(--px); }
.single-post h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 1rem; }
.post-meta { font-size: 0.875rem; color: var(--zinc-500); margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.post-content { color: var(--zinc-300); line-height: 1.8; }
.post-content h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: 1.25rem; font-weight: 600; color: #fff; margin: 2rem 0 0.75rem; }
.post-content p { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.375rem; }
.post-content strong { color: #fff; font-weight: 600; }
.post-content a { color: var(--amber); }
.post-content a:hover { text-decoration: underline; }
.post-content blockquote {
  border-left: 3px solid var(--amber);
  padding-left: 1.25rem;
  color: var(--zinc-400);
  font-style: italic;
  margin: 1.5rem 0;
}

/* ============================================================
   WHY US (product page section)
   ============================================================ */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .why-us-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-us-grid { grid-template-columns: repeat(4, 1fr); } }
.why-us-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.why-us-card:hover { border-color: rgba(245,158,11,0.2); }
.why-us-emoji { font-size: 2rem; margin-bottom: 1rem; }
.why-us-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.why-us-card p { font-size: 0.875rem; color: var(--zinc-400); line-height: 1.6; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-16 > * + * { margin-top: 4rem; }
.py-10 { padding: 2.5rem 0; }
.py-16 { padding: 4rem 0; }
.py-20 { padding: 5rem 0; }
.py-24 { padding: 6rem 0; }
.section-bg-alt { background: var(--near-black); }
.section-bg-dark { background: var(--black); }
.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; }

/* ============================================================
   SPIN LOADER (keep for initial load reference)
   ============================================================ */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { width: 40px; height: 40px; border: 2px solid #27272a; border-top-color: var(--amber); border-radius: 50%; animation: spin 0.8s linear infinite; }

/* ============================================================
   WA BUBBLE VISIBILITY STATE
   ============================================================ */
.wa-bubble { opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.wa-bubble.visible { opacity: 1; pointer-events: auto; }

/* ============================================================
   NAV SCROLL STATE
   ============================================================ */
.site-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

/* ============================================================
   SETUP GUIDE PAGE (full template)
   ============================================================ */
.setup-guide-section { background: var(--black); padding: 4rem 0 6rem; }
.setup-guide-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .setup-guide-layout { flex-direction: row; align-items: flex-start; } }

/* sidebar */
.setup-sidebar {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1024px) { .setup-sidebar { width: 220px; position: sticky; top: 6rem; } }

.setup-sidebar-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zinc-500);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.setup-device-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-400);
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.setup-device-btn:hover { color: #fff; background: var(--card-hover); border-color: var(--border-md); }
.setup-device-btn.active { background: var(--amber); border-color: var(--amber); color: #fff; }
.setup-btn-icon { font-size: 1.125rem; flex-shrink: 0; }

.setup-sidebar-help {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
}
.setup-sidebar-help p { font-size: 0.75rem; color: var(--zinc-400); margin-bottom: 0.625rem; }

/* panels */
.setup-panels { flex: 1; min-width: 0; }
.setup-panel { display: none; }
.setup-panel.active { display: block; }
.setup-panel h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.setup-panel > p { font-size: 0.9375rem; color: var(--zinc-400); line-height: 1.6; margin-bottom: 2rem; }

.setup-steps-list { display: flex; flex-direction: column; gap: 0; }
.setup-step {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}
.setup-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: var(--border-md);
}
.setup-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.setup-step-body { flex: 1; }
.setup-step-body h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.375rem; }
.setup-step-body p { font-size: 0.875rem; color: var(--zinc-400); line-height: 1.7; }

.setup-note {
  margin-top: 0.5rem;
  padding: 0.875rem 1.125rem;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  font-size: 0.8125rem;
  color: var(--zinc-400);
  line-height: 1.6;
}
.setup-note strong { color: #fbbf24; }

/* ============================================================
   ABOUT PAGE — extended styles
   ============================================================ */
.about-stats-section { background: var(--near-black); padding: 3rem 0; border-bottom: 1px solid var(--border); }
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .about-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.about-stat {
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.about-stat-num {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}
.about-stat-num span { color: var(--amber); }
.about-stat-label { font-size: 0.8125rem; color: var(--zinc-400); font-weight: 500; }

.about-story-section { background: var(--black); padding: 5rem 0; }
.about-story-body { color: var(--zinc-300); line-height: 1.9; }
.about-story-body p { margin-bottom: 1.25rem; }

.about-mission-section { background: var(--near-black); padding: 5rem 0; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .mission-grid { grid-template-columns: repeat(3, 1fr); } }
.mission-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
.mission-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mission-card h3 { font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.mission-card p { font-size: 0.875rem; color: var(--zinc-400); line-height: 1.7; }

.why-section { background: var(--black); padding: 5rem 0; }
.why-emoji { font-size: 2rem; margin-bottom: 0.875rem; }

/* ============================================================
   CONTACT PAGE — extended styles
   ============================================================ */
.contact-section { background: var(--black); padding: 4rem 0 6rem; }
.contact-status-bar {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  margin-bottom: 2rem;
}
.status-indicator { display: flex; align-items: center; gap: 0.625rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-dot.online { background: #4ade80; animation: pulse 2s infinite; }
.status-text { font-size: 0.875rem; color: #86efac; }
.status-text strong { color: #4ade80; }

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .contact-cards-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: border-color 0.2s;
}
.contact-card.primary { border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.05); }
.contact-card:hover { border-color: var(--border-md); }
.contact-card.primary:hover { border-color: rgba(37,211,102,0.5); }

.contact-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon.whatsapp { background: rgba(37,211,102,0.2); }
.contact-card-icon.email { background: rgba(245,158,11,0.15); }

.contact-card-body { flex: 1; }
.contact-card-body h2 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.375rem; }
.contact-card-body p { font-size: 0.875rem; color: var(--zinc-400); line-height: 1.6; margin-bottom: 0.5rem; }

.contact-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  margin-bottom: 0.875rem;
}
.contact-card-badge.secondary { background: rgba(245,158,11,0.15); color: #fbbf24; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

.contact-detail { font-size: 0.9375rem !important; font-weight: 500; color: var(--zinc-200) !important; }
.contact-detail a { color: var(--amber); }
.contact-availability { font-size: 0.8125rem !important; color: var(--zinc-500) !important; }

.quick-answers { margin-top: 3rem; }
.quick-answers h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .quick-grid { grid-template-columns: 1fr 1fr; } }

.quick-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.quick-card:hover { border-color: var(--amber-border); }
.quick-emoji { font-size: 1.75rem; margin-bottom: 0.875rem; }
.quick-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.quick-card p { font-size: 0.875rem; color: var(--zinc-400); line-height: 1.6; margin-bottom: 1rem; }
.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber);
  transition: color 0.2s;
}
.quick-link:hover { color: #fbbf24; }

/* ============================================================
   COMPARE TABLE (product page)
   ============================================================ */
.compare-section { background: var(--near-black); padding: 5rem 0; }
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 0.875rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  color: var(--zinc-400);
}
.compare-table thead th {
  color: var(--zinc-400);
  font-weight: 600;
  font-size: 0.8125rem;
}
.compare-table .popular-col { color: var(--amber) !important; }
.compare-table tbody td { color: var(--zinc-200); }

/* ============================================================
   WHY US (product & about pages)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--amber-border); }
.why-emoji { font-size: 2rem; margin-bottom: 0.875rem; }
.why-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; color: var(--zinc-400); line-height: 1.6; }

/* ============================================================
   LEGAL PAGES — extended
   ============================================================ */
.legal-section { background: var(--black); padding: 4rem 0 6rem; }
.legal-container {
  max-width: 48rem;
}
.legal-container h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 2.5rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.legal-container p { color: var(--zinc-300); line-height: 1.8; margin-bottom: 1rem; font-size: 0.9375rem; }
.legal-container ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1.25rem; }
.legal-container li { color: var(--zinc-300); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 0.25rem; }
.legal-container a { color: var(--amber); }
.legal-container a:hover { text-decoration: underline; }

/* ============================================================
   BLOG (archive & single)
   ============================================================ */
.blog-section { background: var(--black); padding: 4rem 0 6rem; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}
.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  background: rgba(245,158,11,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.blog-date { font-size: 0.75rem; color: var(--zinc-500); }
.blog-card-title { font-size: 1.0625rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 0.625rem; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--amber); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--zinc-400); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-thumb { display: block; height: 180px; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }

.blog-empty { text-align: center; padding: 4rem 0; }
.blog-empty p { color: var(--zinc-400); margin-bottom: 1.5rem; }

/* Pagination */
.navigation .nav-links { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; flex-wrap: wrap; }
.navigation .nav-links a, .navigation .nav-links span { padding: 0.5rem 0.875rem; border-radius: 8px; font-size: 0.875rem; background: var(--card); border: 1px solid var(--border); color: var(--zinc-300); }
.navigation .nav-links a:hover { border-color: var(--amber-border-md); color: #fff; }
.navigation .nav-links .current { background: var(--amber); border-color: var(--amber); color: #fff; }

/* Single post */
.single-section { background: var(--black); padding: 3rem 0 6rem; }
.single-container { max-width: 50rem; }
.single-thumbnail { border-radius: 1rem; overflow: hidden; margin-bottom: 2.5rem; }
.single-thumbnail img { width: 100%; height: auto; display: block; }
.single-content { color: var(--zinc-300); line-height: 1.85; margin-bottom: 3rem; }
.single-content h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 2.5rem 0 1rem; }
.single-content h3 { font-size: 1.25rem; font-weight: 600; color: #fff; margin: 2rem 0 0.75rem; }
.single-content p { margin-bottom: 1.25rem; font-size: 0.9375rem; }
.single-content ul, .single-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.single-content ul { list-style: disc; }
.single-content ol { list-style: decimal; }
.single-content li { margin-bottom: 0.375rem; }
.single-content strong { color: #fff; }
.single-content a { color: var(--amber); }
.single-content a:hover { text-decoration: underline; }
.single-content blockquote {
  border-left: 3px solid var(--amber);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--zinc-400);
  font-style: italic;
}
.single-footer {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) { .single-footer { flex-direction: row; justify-content: space-between; align-items: center; } }
.single-tags { font-size: 0.875rem; color: var(--zinc-500); }
.single-tags a { color: var(--amber); }
.single-nav { display: flex; gap: 1.5rem; }
.single-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--zinc-400);
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.single-nav-link:hover { color: #fff; }

/* ============================================================
   PLAN INCLUDES (homepage pricing)
   ============================================================ */
.plan-includes {
  margin-top: 2.5rem;
  text-align: center;
}
.plan-includes-label {
  font-size: 0.875rem;
  color: var(--zinc-500);
  margin-bottom: 1rem;
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  max-width: 40rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .includes-grid { grid-template-columns: repeat(3, 1fr); } }
.includes-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--zinc-300);
}
.includes-item svg { color: #4ade80; flex-shrink: 0; }

/* ============================================================
   BUTTON VARIANTS
   ============================================================ */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s;
}
.btn-whatsapp:hover { background: var(--whatsapp-hover); transform: translateY(-1px); color: #fff; }

.btn-whatsapp-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: var(--whatsapp);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: background 0.2s;
}
.btn-whatsapp-sm:hover { background: var(--whatsapp-hover); color: #fff; }

.hero-ctas { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; align-items: center; } }
.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--zinc-300);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border-md);
  transition: all 0.2s;
}
.btn-ghost-lg:hover { color: #fff; border-color: rgba(245,158,11,0.4); }

/* hero stats row */
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2rem; }
.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--zinc-400);
}
.hero-stat svg { color: var(--amber); flex-shrink: 0; }

/* ============================================================
   PRISTINE WHITE / LIGHT THEME OVERRIDES
   ============================================================ */
[data-theme="light"] {
  --black: #f8fafc;
  --near-black: #ffffff;
  --card: #ffffff;
  --card-hover: #f1f5f9;
  --white: #0f172a;
  --zinc-300: #334155;
  --zinc-400: #475569;
  --zinc-500: #64748b;
  --zinc-600: #94a3b8;
  --zinc-800: #cbd5e1;
  --border: rgba(15, 23, 42, 0.08);
  --border-md: rgba(15, 23, 42, 0.12);
  --border-lg: rgba(15, 23, 42, 0.2);
}

[data-theme="light"] body {
  background-color: #f8fafc;
  color: #0f172a;
}

[data-theme="light"] .site-nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .nav-logo {
  color: #0f172a;
}

[data-theme="light"] .nav-links a,
[data-theme="light"] .nav-actions .nav-signin {
  color: #334155;
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-actions .nav-signin:hover {
  color: #0f172a;
}

[data-theme="light"] .mobile-menu {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mobile-menu a {
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6,
[data-theme="light"] .hero h1,
[data-theme="light"] .section-header h2,
[data-theme="light"] .feature-card h3,
[data-theme="light"] .plan-card h3,
[data-theme="light"] .plan-price,
[data-theme="light"] .device-card h3,
[data-theme="light"] .step-card h3,
[data-theme="light"] .channel-name,
[data-theme="light"] .review-name,
[data-theme="light"] .faq-question,
[data-theme="light"] .cta-section h2,
[data-theme="light"] .footer-col h4,
[data-theme="light"] .setup-help-box h3,
[data-theme="light"] .rating-number span:first-child,
[data-theme="light"] .rating-count strong,
[data-theme="light"] .page-header h1 {
  color: #0f172a !important;
}

[data-theme="light"] p,
[data-theme="light"] .hero p,
[data-theme="light"] .section-header p,
[data-theme="light"] .feature-card p,
[data-theme="light"] .plan-desc,
[data-theme="light"] .plan-price-note,
[data-theme="light"] .device-card p,
[data-theme="light"] .step-card p,
[data-theme="light"] .review-text,
[data-theme="light"] .faq-answer-inner,
[data-theme="light"] .cta-section p,
[data-theme="light"] .footer-brand p,
[data-theme="light"] .footer-col ul a,
[data-theme="light"] .quick-card p,
[data-theme="light"] .setup-help-box p,
[data-theme="light"] .hero-stat,
[data-theme="light"] .setup-panel h2,
[data-theme="light"] .setup-step-body h3,
[data-theme="light"] .setup-step-body p strong {
  color: #0f172a !important;
}

[data-theme="light"] .setup-panel p,
[data-theme="light"] .setup-step-body p,
[data-theme="light"] .setup-sidebar-label {
  color: #334155 !important;
}

[data-theme="light"] .setup-note {
  background: #ffffff !important;
  border-color: #d97706 !important;
  color: #92400e !important;
}

[data-theme="light"] .feature-card,
[data-theme="light"] .plan-card,
[data-theme="light"] .plan-includes,
[data-theme="light"] .badge-item,
[data-theme="light"] .device-card,
[data-theme="light"] .setup-help-box,
[data-theme="light"] .channel-card,
[data-theme="light"] .rating-box,
[data-theme="light"] .review-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .quick-card,
[data-theme="light"] .contact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .feature-card:hover,
[data-theme="light"] .device-card:hover,
[data-theme="light"] .channel-card:hover,
[data-theme="light"] .review-card:hover {
  background: #f8fafc;
  border-color: #d97706;
}

[data-theme="light"] .btn-ghost-lg,
[data-theme="light"] .btn-outline {
  color: #0f172a;
  border-color: #cbd5e1;
  background: #ffffff;
}

[data-theme="light"] .btn-ghost-lg:hover,
[data-theme="light"] .btn-outline:hover {
  border-color: #d97706;
  color: #d97706;
}

[data-theme="light"] .hero-gradient {
  background: linear-gradient(135deg, #fef3c7 0%, #f8fafc 60%, #f8fafc 100%);
}

[data-theme="light"] .hero-glow {
  background: rgba(217, 119, 6, 0.08);
}

/* ============================================================
   LIGHT MODE ALL-PAGES COMPLETE CONTRAST FIXES
   ============================================================ */
[data-theme="light"] body,
[data-theme="light"] .contact-section,
[data-theme="light"] .about-story-section,
[data-theme="light"] .why-section,
[data-theme="light"] .legal-section,
[data-theme="light"] .setup-page,
[data-theme="light"] .setup-guide-section,
[data-theme="light"] .cta-section,
[data-theme="light"] .channels-section,
[data-theme="light"] .single-section,
[data-theme="light"] .blog-section {
  background-color: #f8fafc !important;
  color: #0f172a !important;
}

[data-theme="light"] .page-header {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%) !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

[data-theme="light"] .page-header h1,
[data-theme="light"] .about-story-section h1,
[data-theme="light"] .about-story-section h2,
[data-theme="light"] .why-section h2,
[data-theme="light"] .contact-card-body h2,
[data-theme="light"] .contact-form-box h2,
[data-theme="light"] .cta-section h2,
[data-theme="light"] .legal-section h1,
[data-theme="light"] .legal-section h2 {
  color: #0f172a !important;
}

[data-theme="light"] .page-header p,
[data-theme="light"] .about-story-section p,
[data-theme="light"] .why-section p,
[data-theme="light"] .contact-card-body p,
[data-theme="light"] .contact-form-box p,
[data-theme="light"] .contact-detail,
[data-theme="light"] .contact-availability,
[data-theme="light"] .cta-section p,
[data-theme="light"] .legal-section p,
[data-theme="light"] .legal-section li {
  color: #334155 !important;
}

[data-theme="light"] .contact-card,
[data-theme="light"] .contact-form-box,
[data-theme="light"] .contact-status-bar,
[data-theme="light"] .setup-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .contact-form-box input,
[data-theme="light"] .contact-form-box textarea {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
}

[data-theme="light"] .contact-form-box label {
  color: #1e293b !important;
}

[data-theme="light"] .contact-status-bar .status-text {
  color: #0f172a !important;
}



/* Light mode specific fixes for the Popular plan buttons */
[data-theme="light"] .plan-card.popular .plan-cta {
  background: #fff !important;
  color: #d97706 !important;
}
[data-theme="light"] .plan-card.popular .plan-cta:hover {
  background: #fef3c7 !important;
}
[data-theme="light"] .plan-card.popular .plan-cta-wa {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
[data-theme="light"] .plan-card.popular .plan-cta-wa:hover {
  background: rgba(255, 255, 255, 0.35) !important;
}

/* Light mode specific fixes for device tabs */
[data-theme="light"] .device-tab {
  color: #64748b;
}
[data-theme="light"] .device-tab:hover {
  color: #0f172a;
  background: #f1f5f9;
}
[data-theme="light"] .device-tab.active {
  color: #fff !important;
}

[data-theme="light"] .device-tab:focus, [data-theme="light"] .device-tab:hover {
  color: #0f172a !important;
  background: rgba(15, 23, 42, 0.05) !important;
  outline: none !important;
}
[data-theme="light"] .device-tab.active {
  background: #d97706 !important;
  color: #ffffff !important;
}

[data-theme="light"] .faq-question:hover {
  color: #d97706 !important;
}

/* Proactive fixes for ALL white-on-hover text in Light Mode */
[data-theme="light"] .footer-brand-actions .footer-link:hover,
[data-theme="light"] .footer-brand-actions .footer-link-icon:hover,
[data-theme="light"] .footer-col ul a:hover,
[data-theme="light"] .page-header .back-link:hover,
[data-theme="light"] .breadcrumb a:hover,
[data-theme="light"] .device-nav-btn:hover,
[data-theme="light"] .setup-device-btn:hover,
[data-theme="light"] .single-nav-link:hover {
  color: #d97706 !important;
}
