/* Fonts loaded via <link> in HTML <head> with display=swap — no render-blocking @import */

/* ===== ROOT ===== */
:root {
  --bg:     #FFFFFF;
  --bg2:    #F7F3FF;
  --glass:  rgba(124,58,237,0.04);
  --glass2: rgba(124,58,237,0.08);
  --border: rgba(124,58,237,0.14);
  --border2: rgba(124,58,237,0.32);
  --text:   #1E0A3C;
  --muted:  #6B5B8A;
  --muted2: #4C1D95;
  --purple: #7C3AED;
  --purple2: #6D28D9;
  --indigo: #4F46E5;
  --green:  #16A34A;
  --amber:  #D97706;
  --red:    #DC2626;
  --grad1: linear-gradient(135deg, #7C3AED 0%, #4F46E5 60%, #2563EB 100%);
  --grad2: linear-gradient(135deg, #A855F7 0%, #7C3AED 50%, #4F46E5 100%);
  --shadow: 0 20px 60px rgba(124,58,237,0.12);
  --shadow2: 0 4px 24px rgba(124,58,237,0.10);
  --radius: 16px;
  --radius2: 22px;
  --max: 1140px;
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { line-height: 1.15; font-weight: 800; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse 100% 55% at 10% -8%,  rgba(124,58,237,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 70%  45% at 90% 105%, rgba(79,70,229,0.06)  0%, transparent 60%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.28); border-radius: 3px; }

/* ===== UTILITIES ===== */
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.muted  { color: var(--muted); }
.muted2 { color: var(--muted2); }
.small  { font-size: 12px; }
.kicker {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.20);
  color: var(--purple); font-weight: 700; font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
}
.gradText {
  background: var(--grad2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(124,58,237,0.06);
}
.header__inner { display: flex; align-items: center; padding: 15px 0; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; letter-spacing: -0.2px; margin-right: auto; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad1); color: #fff; font-size: 12px; font-weight: 900;
  box-shadow: 0 4px 14px rgba(124,58,237,0.30);
}
.brand__name { background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav .navLink { color: var(--muted); font-weight: 600; font-size: 14px; padding: 8px 12px; border-radius: 10px; transition: color 0.15s, background 0.15s; }
.nav .navLink:hover, .nav .navLink.isActive { color: var(--purple); background: rgba(124,58,237,0.07); }
.nav .btn { padding: 10px 18px; border-radius: 12px; }
.navToggle {
  display: none; border: 1px solid var(--border); background: transparent;
  color: var(--purple); border-radius: 10px; padding: 10px 14px;
  font-size: 18px; cursor: pointer; transition: background 0.15s;
}
.navToggle:hover { background: var(--glass2); }
.mobileNav { display: none; padding: 10px 0 16px; border-top: 1px solid var(--border); background: var(--bg); }
.mobileNav a { display: block; padding: 12px 0; color: var(--muted); font-weight: 600; font-size: 15px; transition: color 0.15s; }
.mobileNav a:hover { color: var(--purple); }

/* ===== BUTTONS ===== */
.btn {
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  padding: 13px 22px; border-radius: var(--radius); font-weight: 700; font-size: 14px;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow2); background: var(--bg2); border-color: var(--border2); color: var(--text); }
.btn--primary { background: var(--grad1); color: #fff; border-color: transparent; box-shadow: 0 4px 18px rgba(124,58,237,0.28); }
.btn--primary:hover { box-shadow: 0 8px 36px rgba(124,58,237,0.40); filter: brightness(1.06); background: var(--grad1); border-color: transparent; color: #fff; }
.btn--ghost { background: rgba(124,58,237,0.06); border-color: rgba(124,58,237,0.22); color: var(--purple); }
.btn--ghost:hover { background: rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.42); color: var(--purple); }
.btn--small { padding: 9px 16px; font-size: 13px; border-radius: 12px; }
.btn--full { width: 100%; }

/* ===== HERO ===== */
.hero { padding: 80px 0 64px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
h1 { font-size: clamp(36px, 4.5vw, 58px); margin: 14px 0 16px; line-height: 1.08; font-weight: 900; letter-spacing: -0.5px; color: var(--text); }
.lead { color: var(--muted); font-size: 18px; max-width: 54ch; line-height: 1.7; }
.ctaRow { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 10px; }

.statsRow { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.statNum { font-size: 26px; font-weight: 900; background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.statLabel { color: var(--muted); font-size: 12px; font-weight: 600; margin-top: 2px; display: block; }
.trustRow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.trustBadge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border: 1px solid var(--border); background: var(--glass); border-radius: 999px; font-size: 11px; font-weight: 700; color: var(--purple); }

/* ===== CARDS ===== */
.card { border: 1px solid var(--border); background: #fff; border-radius: var(--radius2); box-shadow: var(--shadow); overflow: hidden; }
.card__header { padding: 22px 22px 0; }
.card__title { margin: 0; font-size: 20px; color: var(--text); }
.card__subtitle { margin: 6px 0 0; color: var(--muted); font-weight: 600; }
.card__body { padding: 22px; }

/* ===== SEGMENTED ===== */
.segmented { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg2); }
.segmented__btn { padding: 13px 10px; border: 0; background: transparent; color: var(--muted); font-weight: 700; font-size: 14px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.segmented__btn.isActive { background: var(--grad1); color: #fff; }

/* ===== PRICE BLOCK ===== */
.priceBlock { margin: 18px 0 14px; }
.priceMain { font-size: 48px; font-weight: 900; letter-spacing: -1px; background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.priceMeta { color: var(--muted); font-weight: 600; font-size: 14px; }

/* ===== SLIDER ===== */
.sliderBlock { border: 1px solid var(--border); background: var(--bg2); border-radius: var(--radius); padding: 16px; margin: 16px 0; }
.sliderTop { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.label { color: var(--muted); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; }
.value { font-weight: 800; font-size: 18px; color: var(--text); }
.badge { padding: 5px 12px; border-radius: 999px; font-weight: 700; font-size: 11px; background: rgba(22,163,74,0.10); border: 1px solid rgba(22,163,74,0.22); color: #16A34A; }
.slider { width: 100%; margin: 14px 0 10px; -webkit-appearance: none; height: 4px; border-radius: 2px; background: rgba(124,58,237,0.18); outline: none; }
.slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--grad1); cursor: pointer; box-shadow: 0 0 10px rgba(124,58,237,0.35); }
.sliderBottom { display: flex; justify-content: space-between; color: var(--muted); font-weight: 700; font-size: 13px; }

/* ===== FEATURE LIST ===== */
.featureList { display: grid; gap: 12px; margin: 16px 0; }
.feature { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-weight: 600; font-size: 14px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad1); margin-top: 6px; flex-shrink: 0; }
.fineprint { color: var(--muted); font-size: 12px; margin-top: 12px; opacity: 0.8; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section--alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sectionHead { margin-bottom: 36px; }
.sectionHead--center { text-align: center; }
.sectionHead h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 900; letter-spacing: -0.3px; margin-bottom: 10px; color: var(--text); }
.sectionHead p { color: var(--muted); font-size: 16px; max-width: 56ch; line-height: 1.7; }
.sectionHead--center p { margin: 0 auto; }

/* ===== GRIDS ===== */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ===== PLAN CARDS ===== */
.plan { border: 1px solid var(--border); background: #fff; border-radius: var(--radius2); padding: 24px; position: relative; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; box-shadow: var(--shadow2); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border2); }
.plan--featured { background: linear-gradient(160deg, rgba(124,58,237,0.06) 0%, rgba(79,70,229,0.04) 100%); border-color: rgba(124,58,237,0.28); box-shadow: 0 16px 50px rgba(124,58,237,0.16); }
.ribbon { position: absolute; top: 16px; right: 16px; padding: 5px 12px; border-radius: 999px; background: rgba(217,119,6,0.10); border: 1px solid rgba(217,119,6,0.24); color: var(--amber); font-weight: 700; font-size: 11px; }
.plan__name { font-weight: 700; color: var(--purple); font-size: 12px; text-transform: uppercase; letter-spacing: 0.10em; }
.plan__price { font-size: 36px; font-weight: 900; margin-top: 8px; letter-spacing: -0.5px; color: var(--text); }
.plan__meta { color: var(--muted); font-weight: 600; font-size: 13px; margin-top: 4px; }
.plan__list { margin: 18px 0; padding: 0; display: grid; gap: 10px; }
.plan__list li { color: var(--muted); font-weight: 600; font-size: 14px; padding-left: 22px; position: relative; }
.plan__list li::before { content: '✓'; position: absolute; left: 0; color: var(--purple); font-weight: 800; }

/* ===== TABLE ===== */
.tableWrap { overflow: auto; border: 1px solid var(--border); border-radius: var(--radius2); background: #fff; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 16px 18px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
th { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; background: var(--bg2); }
tr:last-child td { border-bottom: 0; }
td strong { font-weight: 800; color: var(--text); }

/* ===== CTA STRIP ===== */
.ctaStrip { border: 1px solid var(--border); background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(79,70,229,0.04) 100%); border-radius: var(--radius2); padding: 32px 36px; margin: 28px 0; }
.ctaStrip__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.ctaStrip h3 { margin: 0 0 6px; font-size: 22px; font-weight: 800; color: var(--text); }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { border: 1px solid var(--border); background: #fff; border-radius: var(--radius2); padding: 26px; position: relative; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow2); }
.step:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow); }
.step__num { width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--grad1); font-weight: 900; color: #fff; font-size: 16px; box-shadow: 0 4px 14px rgba(124,58,237,0.28); }
.step h3 { margin: 14px 0 8px; font-size: 17px; font-weight: 800; color: var(--text); }
.step p { margin: 0; color: var(--muted); font-weight: 500; font-size: 14px; line-height: 1.65; }

/* ===== QUOTES ===== */
.quote { border: 1px solid var(--border); background: #fff; border-radius: var(--radius2); padding: 24px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow2); }
.quote:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow); }
.quote__stars { color: var(--amber); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.quote p { margin: 0 0 14px; font-weight: 600; font-size: 15px; color: var(--text); line-height: 1.65; }
.quote__meta { color: var(--muted); font-weight: 600; font-size: 13px; }
.quote__name { font-weight: 800; color: var(--purple); }

/* ===== FAQ ===== */
.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--border); background: #fff; border-radius: var(--radius); padding: 18px 22px; transition: border-color 0.2s, box-shadow 0.2s; box-shadow: var(--shadow2); }
.faq details[open] { border-color: var(--border2); box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 15px; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--purple); flex-shrink: 0; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); font-weight: 500; font-size: 14px; margin: 14px 0 0; line-height: 1.75; }
.faq a { color: var(--purple); font-weight: 700; }

/* ===== CALLOUTS ===== */
.callout { border: 1px solid rgba(124,58,237,0.18); background: rgba(124,58,237,0.05); border-radius: var(--radius); padding: 16px 18px; font-size: 14px; color: var(--muted2); font-weight: 600; }
.callout strong { font-weight: 800; color: var(--text); }
.callout--green { border-color: rgba(22,163,74,0.22); background: rgba(22,163,74,0.06); color: #15803D; }
.callout--amber { border-color: rgba(217,119,6,0.22); background: rgba(217,119,6,0.06); color: #92400E; }
.callout--red { border-color: rgba(220,38,38,0.20); background: rgba(220,38,38,0.05); color: #991B1B; }

/* ===== WHATSAPP WIDGET ===== */
.whatsCard { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; border: 1px solid var(--border); background: #fff; border-radius: var(--radius2); padding: 22px; box-shadow: var(--shadow); }
.whatsSelection { font-weight: 800; font-size: 18px; margin-top: 8px; background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.copyStatus { margin-top: 10px; color: var(--green); font-weight: 600; font-size: 13px; }

/* ===== ICON FEATURE CARDS ===== */
.iconCard { border: 1px solid var(--border); background: #fff; border-radius: var(--radius2); padding: 26px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow2); }
.iconCard:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow); }
.iconCard__icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(124,58,237,0.10) 0%, rgba(79,70,229,0.08) 100%); border: 1px solid rgba(124,58,237,0.16); font-size: 24px; margin-bottom: 16px; }
.iconCard h3 { margin-bottom: 8px; font-size: 16px; font-weight: 800; color: var(--text); }
.iconCard p { color: var(--muted); font-size: 14px; font-weight: 500; line-height: 1.65; }

/* ===== CHANNEL CARDS ===== */
.channelCard { border: 1px solid var(--border); background: #fff; border-radius: var(--radius2); padding: 22px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow2); }
.channelCard:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow); }
.channelCard__icon { font-size: 30px; margin-bottom: 10px; }
.channelCard__name { font-weight: 800; font-size: 16px; margin-bottom: 4px; color: var(--text); }
.channelCard__meta { color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.channelCard__list { display: grid; gap: 6px; }
.channelCard__list li { color: var(--muted); font-size: 13px; font-weight: 600; padding-left: 16px; position: relative; }
.channelCard__list li::before { content: '›'; position: absolute; left: 2px; color: var(--purple); }

/* ===== STATUS ===== */
.statusBadge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 999px; font-weight: 700; font-size: 14px; }
.statusBadge--up { background: rgba(22,163,74,0.10); border: 1px solid rgba(22,163,74,0.22); color: #15803D; }
.statusBadge--down { background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.20); color: #991B1B; }
.statusDot { width: 8px; height: 8px; border-radius: 50%; background: #16A34A; box-shadow: 0 0 8px rgba(22,163,74,0.50); animation: statusPulse 2s infinite; }
@keyframes statusPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.statusRow { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--border); gap: 12px; }
.statusRow:last-child { border-bottom: 0; }
.statusRow__label { font-weight: 700; font-size: 15px; color: var(--text); }
.statusRow__sub { color: var(--muted); font-size: 13px; margin-top: 3px; }

/* ===== LEGAL CONTENT ===== */
.legalContent { max-width: 760px; }
.legalContent h2 { font-size: 20px; font-weight: 800; margin: 36px 0 12px; color: var(--purple); }
.legalContent h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; color: var(--text); }
.legalContent p { color: var(--muted); font-size: 14px; line-height: 1.85; margin-bottom: 14px; font-weight: 500; }
.legalContent ul { margin: 10px 0 18px; padding-left: 20px; display: grid; gap: 8px; list-style: disc; }
.legalContent ul li { color: var(--muted); font-size: 14px; line-height: 1.65; font-weight: 500; }
.legalContent a { color: var(--purple); text-decoration: underline; }
.legalContent .lastUpdated { color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 28px; }

/* ===== COOKIE TOGGLES ===== */
.cookieToggle { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); gap: 16px; }
.cookieToggle:last-child { border-bottom: 0; }
.cookieToggle__info { flex: 1; }
.cookieToggle__title { font-weight: 800; font-size: 15px; margin-bottom: 4px; color: var(--text); }
.cookieToggle__desc { color: var(--muted); font-size: 13px; font-weight: 500; line-height: 1.6; }
input[type="checkbox"] { width: 44px; height: 26px; appearance: none; -webkit-appearance: none; border-radius: 999px; background: rgba(124,58,237,0.10); border: 1px solid var(--border2); cursor: pointer; position: relative; transition: background 0.2s; flex-shrink: 0; }
input[type="checkbox"]::before { content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%; background: #c4b5fd; top: 2px; left: 2px; transition: transform 0.2s, background 0.2s; }
input[type="checkbox"]:checked { background: var(--grad1); border-color: transparent; }
input[type="checkbox"]:checked::before { transform: translateX(18px); background: #fff; }
input[type="checkbox"]:disabled { opacity: 0.40; cursor: not-allowed; }

/* ===== FOOTER ===== */
.footer { padding: 52px 0 28px; border-top: 1px solid var(--border); background: #1E0A3C; margin-top: 20px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr; gap: 36px; align-items: start; }
.footer__brand { font-weight: 900; font-size: 18px; margin-bottom: 10px; color: #fff; }
.footer__brand span { background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer__desc { color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 500; line-height: 1.75; margin-bottom: 18px; }
.footer__colTitle { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.40); margin-bottom: 16px; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: rgba(255,255,255,0.55); font-weight: 600; font-size: 13px; transition: color 0.15s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.10); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bottom .muted { color: rgba(255,255,255,0.40); }
.footer__bottom a { color: rgba(255,255,255,0.40); }
.footer__bottom a:hover { color: rgba(255,255,255,0.80); }

/* ===== WA FLOAT ===== */
.waFloat { position: fixed; right: 20px; bottom: 20px; z-index: 999; display: flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 999px; background: var(--grad1); color: #fff; font-weight: 800; font-size: 14px; box-shadow: 0 8px 32px rgba(124,58,237,0.36); border: 0; transition: transform 0.15s, box-shadow 0.15s; text-decoration: none; }
.waFloat:hover { transform: translateY(-3px); box-shadow: 0 14px 46px rgba(124,58,237,0.50); color: #fff; }

/* ===== SUPPORT CARDS ===== */
.supportCard { border: 1px solid var(--border); background: #fff; border-radius: var(--radius2); padding: 24px; box-shadow: var(--shadow2); }
.supportCard h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.supportCard ul { display: grid; gap: 8px; }
.supportCard ul li { color: var(--muted); font-size: 14px; font-weight: 500; padding-left: 18px; position: relative; }
.supportCard ul li::before { content: '→'; position: absolute; left: 0; color: var(--purple); font-weight: 700; font-size: 12px; }

/* ===== SKIP NAV ===== */
.skipNav { position: absolute; left: -9999px; top: 0; z-index: 9999; padding: 12px 24px; background: var(--grad1); color: #fff; font-weight: 800; font-size: 14px; border-radius: 0 0 var(--radius) 0; text-decoration: none; }
.skipNav:focus { left: 0; }

/* ===== FOCUS STYLES ===== */
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 4px; }
.segmented__btn:focus-visible { outline-offset: -2px; }
input[type="range"]:focus-visible { outline: 2px solid var(--purple); outline-offset: 4px; }

/* ===== COOKIE BANNER ===== */
.cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: rgba(255,255,255,0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-top: 1px solid var(--border); padding: 18px 0; transition: transform 0.3s; box-shadow: 0 -4px 24px rgba(124,58,237,0.08); }
.cookieBanner[hidden] { transform: translateY(100%); display: block; visibility: hidden; }
.cookieBanner__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookieBanner__text { color: var(--muted); font-size: 13px; font-weight: 500; max-width: 60ch; line-height: 1.6; }
.cookieBanner__text a { color: var(--purple); font-weight: 700; text-decoration: underline; }
.cookieBanner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== INLINE STYLE REPLACEMENTS ===== */
.autoGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 40px; }
.autoGrid--wide { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.autoGrid--narrow { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.stepNum { font-size: 32px; font-weight: 700; color: var(--purple); margin-bottom: 12px; }
.faqAnswer { padding: 16px; color: var(--muted); }
.faqAnswer a { color: var(--purple); font-weight: 700; }
.ratingBanner { background: linear-gradient(135deg, rgba(124,58,237,0.07) 0%, rgba(79,70,229,0.04) 100%); border: 1px solid rgba(124,58,237,0.16); border-radius: var(--radius); padding: 24px; margin: 40px 0; text-align: center; }
.ratingBanner__score { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.ratingBanner__sub { margin: 0; color: var(--muted); font-size: 14px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.textCenter { text-align: center; }
.justifyCenter { justify-content: center; }
.featuredBadge { position: absolute; top: 0; right: 0; background: var(--purple); color: #fff; padding: 6px 12px; font-size: 12px; font-weight: 600; border-radius: 0 0 0 var(--radius); }
.plan__features { margin: 24px 0; display: grid; gap: 10px; padding: 0; list-style: none; }
.plan__features li { color: var(--muted); font-weight: 600; font-size: 14px; padding-left: 22px; position: relative; }
.plan__features li::before { content: '✓'; position: absolute; left: 0; color: var(--purple); font-weight: 800; }
.requirementsList { margin-top: 16px; list-style: none; padding: 0; }
.requirementsList li { padding: 8px 0; }
.footer__bottomLinks { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== PRICING TABLE (RESPONSIVE CARDS) ===== */
.pricingActions { display: flex; gap: 8px; flex-wrap: wrap; }
.priceCol { font-weight: 800; font-size: 15px; color: var(--text); }
.perMonth { font-weight: 600; font-size: 12px; color: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .grid2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .whatsCard { grid-template-columns: 1fr; }
  .nav { display: none; }
  .navToggle { display: inline-flex; }
  .mobileNav { display: block; }
  .mobileNav[hidden] { display: none; }
  .section { padding: 56px 0; }
  h1 { font-size: 36px; }
  .statsRow { gap: 20px; }
  .ctaStrip { padding: 24px; }
  /* Pricing table → stacked cards on mobile */
  .tableWrap { border: 0; background: none; box-shadow: none; overflow: visible; }
  table, thead, tbody, th, td, tr { display: block; }
  thead { display: none; }
  tr { border: 1px solid var(--border); background: #fff; border-radius: var(--radius); padding: 20px; margin-bottom: 14px; box-shadow: var(--shadow2); }
  td { padding: 6px 0; border: 0; text-align: left; }
  td:first-child { font-weight: 800; font-size: 17px; margin-bottom: 10px; color: var(--text); }
  td:empty { display: none; }
  td .pricingActions { margin-top: 12px; }
}
@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }
  .ctaRow { flex-direction: column; }
  .ctaRow .btn { width: 100%; }
  h1 { font-size: 32px; }
  .priceMain { font-size: 40px; }
  .waFloat { right: 14px; bottom: 80px; padding: 12px 18px; font-size: 13px; }
  .hero { padding: 52px 0 44px; }
  .grid4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 0 24px; }
  .cookieBanner__inner { flex-direction: column; text-align: center; }
}

/* ===== THEME TOGGLE BUTTON ===== */
.themeToggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--border); background: transparent;
  color: var(--purple); border-radius: 10px;
  cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.themeToggle:hover { background: var(--glass2); border-color: var(--border2); }
.themeIcon { pointer-events: none; }
.themeIcon--sun  { display: none; }
.themeIcon--moon { display: block; }

/* ===== DARK THEME ===== */
[data-theme="dark"] {
  --bg:     #07000f;
  --bg2:    #0d0120;
  --glass:  rgba(255,255,255,0.05);
  --glass2: rgba(255,255,255,0.09);
  --border: rgba(168,85,247,0.18);
  --border2: rgba(168,85,247,0.35);
  --text:   #f0eeff;
  --muted:  #9b8fc0;
  --muted2: #c4b5fd;
  --purple: #a855f7;
  --purple2: #7c3aed;
  --indigo: #6366f1;
  --green:  #4ade80;
  --amber:  #fbbf24;
  --red:    #f87171;
  --grad1: linear-gradient(135deg, #a855f7 0%, #6366f1 60%, #3b82f6 100%);
  --grad2: linear-gradient(135deg, #e879f9 0%, #a855f7 50%, #6366f1 100%);
  --shadow: 0 24px 80px rgba(120,40,220,0.22);
  --shadow2: 0 4px 24px rgba(120,40,220,0.12);
}

/* Dark: swap icons */
[data-theme="dark"] .themeIcon--sun  { display: block; }
[data-theme="dark"] .themeIcon--moon { display: none; }

/* Dark: body background */
[data-theme="dark"] body {
  background:
    radial-gradient(ellipse 100% 60% at 15% -10%, rgba(168,85,247,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 110%, rgba(99,102,241,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 50% 45%, rgba(236,72,153,0.08) 0%, transparent 60%),
    var(--bg);
}

/* Dark: scrollbar */
[data-theme="dark"] ::-webkit-scrollbar-track { background: var(--bg2); }

/* Dark: header & nav */
[data-theme="dark"] .header { background: rgba(7,0,15,0.82); }
[data-theme="dark"] .mobileNav { background: var(--bg); }

/* Dark: buttons */
[data-theme="dark"] .btn { background: var(--glass); }
[data-theme="dark"] .btn:hover { background: var(--glass2); }

/* Dark: cards & panels (override hardcoded #fff) */
[data-theme="dark"] .card        { background: var(--glass); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
[data-theme="dark"] .plan        { background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
[data-theme="dark"] .plan--featured { background: linear-gradient(160deg, rgba(168,85,247,0.14) 0%, rgba(99,102,241,0.09) 100%); }
[data-theme="dark"] .quote       { background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
[data-theme="dark"] .step        { background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
[data-theme="dark"] .faq details { background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
[data-theme="dark"] .tableWrap   { background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
[data-theme="dark"] .iconCard    { background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
[data-theme="dark"] .channelCard { background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
[data-theme="dark"] .whatsCard   { background: var(--glass); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
[data-theme="dark"] .supportCard { background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

/* Dark: cookie banner */
[data-theme="dark"] .cookieBanner { background: rgba(7,0,15,0.95); box-shadow: none; }

/* Dark: segmented control */
[data-theme="dark"] .segmented { background: rgba(168,85,247,0.05); }
[data-theme="dark"] .segmented__btn.isActive { background: rgba(168,85,247,0.22); color: var(--text); }

/* Dark: status & badge colours */
[data-theme="dark"] .badge { background: rgba(74,222,128,0.12); border-color: rgba(74,222,128,0.22); color: #4ade80; }
[data-theme="dark"] .statusBadge--up { background: rgba(74,222,128,0.12); border-color: rgba(74,222,128,0.25); color: #4ade80; }
[data-theme="dark"] .statusBadge--down { background: rgba(248,113,113,0.12); border-color: rgba(248,113,113,0.25); color: var(--red); }
[data-theme="dark"] .statusDot { background: #4ade80; box-shadow: 0 0 8px #4ade80; }

/* Dark: callout variants */
[data-theme="dark"] .callout--green { border-color: rgba(74,222,128,0.22); background: rgba(74,222,128,0.08); color: #4ade80; }
[data-theme="dark"] .callout--amber { border-color: rgba(251,191,36,0.22); background: rgba(251,191,36,0.08); color: var(--amber); }
[data-theme="dark"] .callout--red   { border-color: rgba(248,113,113,0.22); background: rgba(248,113,113,0.08); color: var(--red); }

/* Dark: legal headings */
[data-theme="dark"] .legalContent h2 { color: var(--muted2); }
[data-theme="dark"] .legalContent h3 { color: var(--muted2); }

/* Dark: footer */
[data-theme="dark"] .footer { background: rgba(5,0,12,0.92); }

/* Dark: responsive table rows */
@media (max-width: 980px) {
  [data-theme="dark"] tr { background: var(--glass); }
}
