/* ============================================================
   NeuraGoods — Main Stylesheet  (light theme)
   ============================================================ */

/* === 1. TOKENS ================================================ */
:root {
  /* Brand */
  --brand:        #7a4af7;
  --brand-dark:   #6535e0;
  --brand-light:  #9b73ff;
  --brand-bg:     #f0ebff;

  /* Accent — CTA lime green */
  --accent:       #c7f74a;
  --accent-dark:  #aede2c;
  --accent-bg:    #f5ffe0;

  /* Surface — light theme */
  --bg:           #FFFFFF;
  --bg-alt:       #F8FAFC;
  --bg-card:      #FFFFFF;
  --border:       #E2E8F0;
  --border-focus: #7a4af7;

  /* Text */
  --text:         #0F172A;
  --text-2:       #334155;
  --muted:        #667198;
  --text-muted:   #667198;
  --muted-light:  #94A3B8;

  /* Semantic */
  --success:      #16A34A;
  --success-bg:   #F0FDF4;
  --danger:       #DC2626;
  --danger-bg:    #FEF2F2;
  --info:         #0EA5E9;

  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md:    0 4px 20px rgba(0,0,0,.1),  0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-brand: 0 4px 20px rgba(122,74,247,.25);

  /* Misc */
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-full:  9999px;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --transition:   150ms ease;
  --transition-md:250ms ease;
}

/* === 2. RESET ================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; min-height: 100vh; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; background: none; border: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; color: var(--text); }

/* === 3. LAYOUT ================================================ */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 4.5rem 0; }
.section-alt  { background: var(--bg-alt); }
.section-header      { text-align: center; margin-bottom: 2.75rem; }
.section-header h2   { font-size: clamp(1.625rem, 3.5vw, 2.25rem); margin-bottom: .625rem; }
.section-header p    { font-size: 1.0625rem; color: var(--muted); max-width: 540px; margin: 0 auto; }
.section-tag { display: inline-block; padding: .25rem .875rem; background: var(--brand-bg); color: var(--brand); border-radius: var(--radius-full); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .625rem; }
.bg-green { background: #c7f74a !important; }
.bg-green .section-tag { background: rgba(0,0,0,.1); color: #000; }
.bg-green .section-header h2, .bg-green .section-header p { color: #000; }
.bg-green .muted { color: rgba(0,0,0,.6); }

/* grid helpers */
.grid-auto  { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.25rem; }
.grid-2     { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* === 4. TYPOGRAPHY ============================================ */
.text-brand   { color: var(--brand); }
.text-gradient { background: linear-gradient(135deg, var(--brand), #c7f74a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-muted   { color: var(--muted); }
.text-sm      { font-size: .875rem; }
.text-xs      { font-size: .8125rem; }
.text-center  { text-align: center; }
.font-bold    { font-weight: 700; }
.font-black   { font-weight: 900; }

/* === 5. BUTTONS =============================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .625rem 1.75rem; border-radius: 50px; font-weight: 700; font-size: .9375rem; cursor: pointer; transition: all var(--transition); text-decoration: none; border: 2px solid transparent; white-space: nowrap; line-height: 1.4; text-transform: uppercase; letter-spacing: .03em; }
.btn-sm  { padding: .4375rem 1.25rem; font-size: .8125rem; }
.btn-lg  { padding: .875rem 2.25rem;  font-size: 1rem; }
.btn-xl  { padding: 1rem 2.5rem;      font-size: 1.0625rem; }
.btn-block { width: 100%; }

/* Purple button (primary) */
.btn-primary  { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 4px 20px rgba(122,74,247,.3); }
.btn-primary:hover  { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(122,74,247,.45); }

/* Lime-green CTA button */
.btn-accent, .btn_green { background: var(--accent); color: #000; border-color: var(--accent); font-weight: 800; }
.btn-accent:hover, .btn_green:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(199,247,74,.45); }

.btn-outline  { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover  { background: var(--brand-bg); }

.btn-outline-gray { background: transparent; color: var(--text-2); border-color: var(--border); }
.btn-outline-gray:hover { border-color: var(--brand); color: var(--brand); }

.btn-white    { background: #fff; color: var(--brand); border-color: #fff; font-weight: 800; }
.btn-white:hover    { background: #f0f0f0; }

/* === 6. HEADER / NAV ========================================= */
.site-header { position: sticky; top: 0; z-index: 200; background: #7a4af7; box-shadow: 0 2px 16px rgba(122,74,247,.35); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 72px; display: flex; align-items: center; gap: 1rem; }

/* Logo */
.logo { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }
.logo-icon { width: 34px; height: 34px; background: linear-gradient(135deg, var(--brand), var(--accent)); border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.logo-text { font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }

/* Desktop nav */
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; list-style: none; gap: 0; }
.nav-item > .nav-link { display: flex; align-items: center; gap: .3rem; color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; padding: .5rem .75rem; border-radius: 6px; transition: all var(--transition); cursor: pointer; white-space: nowrap; }
.nav-item > .nav-link:hover,
.nav-item:hover > .nav-link { color: #fff; background: rgba(255,255,255,.08); }
.nav-link-chevron { width: 14px; height: 14px; transition: transform var(--transition-md); }
.nav-item:hover .nav-link-chevron { transform: rotate(180deg); }

/* Mega-menu / Dropdown */
.has-dropdown { position: relative; }
.nav-dropdown { position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%); min-width: 200px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: .5rem; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: all var(--transition-md); pointer-events: none; }
.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: flex; align-items: center; gap: .625rem; padding: .5rem .75rem; color: var(--text-2); font-size: .875rem; border-radius: 8px; transition: all var(--transition); }
.nav-dropdown a:hover { color: var(--brand); background: var(--brand-bg); }
.nav-dropdown-icon { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; font-size: .875rem; flex-shrink: 0; }

/* Mega dropdown (wider) */
.has-mega:hover .nav-dropdown { min-width: 620px; left: 0; transform: none; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .25rem; padding: .25rem; }
.mega-col-title { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-light); padding: .375rem .75rem; }

/* Nav end */
.nav-end { display: flex; align-items: center; gap: .75rem; margin-left: .75rem; flex-shrink: 0; }
.nav-end .nav-text-link { color: rgba(255,255,255,.7); font-size: .875rem; padding: .375rem .5rem; transition: color var(--transition); }
.nav-end .nav-text-link:hover { color: #fff; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 10000;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition-md); pointer-events: none; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — full-screen drawer below nav */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #5a2fd0;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    border-top: 1px solid rgba(255,255,255,.12);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-group { border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-group-title { padding: .875rem 1.5rem .375rem; font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); }
.mobile-menu a { display: flex; align-items: center; gap: .625rem; min-height: 48px; padding: 0 1.5rem; color: rgba(255,255,255,.75); font-size: .9375rem; transition: color var(--transition), background var(--transition); }
.mobile-menu a:hover, .mobile-menu a:active { color: #fff; background: rgba(255,255,255,.06); }
.mobile-menu .mobile-cta { padding: 1rem 1.5rem; }

/* === 7. HERO ================================================== */
.hero { background: linear-gradient(135deg, #1a0a3d 0%, #3a1a8a 45%, #7a4af7 100%); padding: 4rem 0 3.5rem; overflow: hidden; position: relative; }

/* Split hero layout */
.hero-split { display: grid; grid-template-columns: 1fr 520px; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-copy { max-width: 620px; }
.hero-image { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.hero-image img { width: 100%; height: auto; display: block; border-radius: 16px; }
.hero::before { content:''; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c7f74a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
/* Fallback: center layout on split hero if image fails */
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; padding: .375rem 1rem; background: rgba(199,247,74,.15); border: 1px solid rgba(199,247,74,.35); border-radius: var(--radius-full); font-size: .8125rem; font-weight: 600; color: #c7f74a; margin-bottom: 1.375rem; }
.hero h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1.125rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: clamp(.9375rem, 1.8vw, 1.125rem); color: rgba(255,255,255,.65); max-width: 580px; margin: 0 auto 2.25rem; }
.hero-actions { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.75rem; }

/* Platform chips */
.platform-chips { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.platform-chip { display: inline-flex; align-items: center; gap: .375rem; padding: .375rem .875rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-full); font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.75); transition: all var(--transition); }
.platform-chip:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: #fff; transform: translateY(-1px); }
.chip-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }

/* Trust bar */
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; padding-top: 2.25rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero-trust-item { display: flex; flex-direction: column; align-items: center; }
.hero-trust-item strong { font-size: 1.5rem; font-weight: 900; color: #fff; }
.hero-trust-item span { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 500; letter-spacing: .02em; }

/* === 8. STATS BAR ============================================= */
.stats-bar { background: #c7f74a; padding: 1.25rem 0; }
.stats-bar-ticker { width: 100%; }
/* Desktop: static centered row */
.ticker-track { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.stat-item { display: flex; align-items: center; gap: .625rem; color: #000; white-space: nowrap; }
.stat-item svg { opacity: .6; flex-shrink: 0; }
.stat-item strong { font-size: 1.125rem; font-weight: 800; }
.stat-item span { font-size: .875rem; opacity: .75; }
.stat-sep { width: 1px; height: 28px; background: rgba(0,0,0,.2); }
/* Hide duplicate items on desktop */
.ticker-track .stat-item:nth-child(n+7) { display: none; }
/* Mobile: scrolling ticker */
@media (max-width: 768px) {
    .stats-bar { padding: .625rem 0; overflow: hidden; }
    .stats-bar-ticker { overflow: hidden; }
    .ticker-track { justify-content: flex-start; flex-wrap: nowrap; gap: 0;
                    width: max-content; animation: ticker-scroll 20s linear infinite; }
    .ticker-track .stat-item:nth-child(n+7) { display: flex; }
    .stat-item { padding: 0 1.75rem; }
    .stat-item strong { font-size: .875rem; }
    .stat-item span { font-size: .75rem; }
    .stat-sep { display: none; }
}
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* === 9. PLATFORM CARDS ======================================== */
.platform-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; text-decoration: none; display: flex; align-items: center; gap: 1rem; transition: all var(--transition-md); position: relative; overflow: hidden; }
.platform-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.platform-card::after { content:'→'; position:absolute; right:1.25rem; top:50%; transform:translateY(-50%); color:var(--brand); font-size:1.125rem; opacity:0; transition:all var(--transition); }
.platform-card:hover::after { opacity:1; right:1rem; }
.platform-card-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.625rem; flex-shrink: 0; }
.platform-card-info strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: .125rem; }
.platform-card-info span { font-size: .8125rem; color: var(--muted); }

/* === 10. PRICING CARDS ======================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.125rem; max-width: 1100px; margin: 0 auto; justify-content: center; }

.pricing-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.625rem 1.375rem; display: flex; flex-direction: column; gap: 1rem; transition: all var(--transition-md); position: relative; overflow: hidden; }
.pricing-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card.is-popular { border-color: var(--brand); box-shadow: var(--shadow-brand); }
.pricing-card.is-popular::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--brand), var(--accent)); }

.pricing-badge { position: absolute; top: 1rem; right: 1rem; padding: .1875rem .625rem; font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; border-radius: var(--radius-full); }
.badge-popular { background: var(--brand); color: #fff; }
.badge-value   { background: var(--success-bg); color: var(--success); border: 1px solid #BBF7D0; }
.badge-sale    { background: var(--danger-bg);  color: var(--danger);  border: 1px solid #FCA5A5; }

.pricing-qty { font-size: 1.875rem; font-weight: 900; color: var(--text); line-height: 1; }
.pricing-qty small { display: block; font-size: .8125rem; font-weight: 500; color: var(--muted); margin-top: .25rem; }

.pricing-price-block { display: flex; flex-direction: column; gap: .125rem; }
.original-price { font-size: .875rem; color: var(--danger); text-decoration: line-through; font-weight: 500; }
.current-price { font-size: 2rem; font-weight: 900; color: var(--text); line-height: 1; }
.current-price .currency { font-size: 1.125rem; font-weight: 700; color: var(--muted); vertical-align: super; font-size: .9rem; }
.price-usd { font-size: .75rem; color: var(--muted-light); }

.discount-badge { display: inline-block; padding: .125rem .5rem; background: var(--danger-bg); color: var(--danger); border-radius: var(--radius-full); font-size: .6875rem; font-weight: 800; width: fit-content; }

.pricing-features { display: flex; flex-direction: column; gap: .4375rem; margin: .25rem 0; }
.pricing-feature { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--text-2); }
.pricing-feature svg { color: var(--success); flex-shrink: 0; }

.pricing-delivery { display: flex; align-items: center; justify-content: center; gap: .375rem; font-size: .8125rem; font-weight: 600; color: var(--success); background: var(--success-bg); padding: .375rem .625rem; border-radius: var(--radius); }

/* === 11. TRUST BADGES (ratings) =============================== */
.trust-ratings { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.trust-rating-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem 1.75rem; text-align: center; min-width: 160px; box-shadow: var(--shadow-xs); }
.trust-rating-card .score { font-size: 2rem; font-weight: 900; color: var(--text); line-height: 1; }
.trust-rating-card .stars { color: #F59E0B; font-size: 1rem; letter-spacing: .1rem; margin: .25rem 0; }
.trust-rating-card .platform-name { font-size: .8125rem; font-weight: 600; color: var(--muted); }
.trust-rating-card .review-count { font-size: .75rem; color: var(--muted-light); }

/* Counter stats row */
.counter-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.counter-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-xs); }
.counter-card .counter-num { font-size: 2.25rem; font-weight: 900; color: var(--brand); line-height: 1; }
.counter-card .counter-label { font-size: .875rem; color: var(--muted); margin-top: .375rem; }

/* === 12. FEATURE CARDS ======================================== */
.feature-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.625rem; display: flex; gap: 1rem; box-shadow: var(--shadow-xs); transition: all var(--transition-md); }
.feature-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.feature-body h3 { font-size: .9375rem; font-weight: 700; margin-bottom: .25rem; }
.feature-body p  { font-size: .875rem; color: var(--muted); line-height: 1.55; }

/* === 13. HOW IT WORKS ========================================= */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps-row::before { content:''; position:absolute; top:36px; left:calc(33.33% - 1rem); right:calc(33.33% - 1rem); height:2px; background:linear-gradient(90deg, var(--brand-bg), var(--brand), var(--brand-bg)); }
.step { text-align: center; }
.step-number { width: 56px; height: 56px; margin: 0 auto 1.125rem; background: var(--brand); border-radius: 16px; display: grid; place-items: center; font-size: 1.375rem; font-weight: 900; color: #fff; box-shadow: var(--shadow-brand); }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .375rem; }
.step p  { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* === 14. REVIEWS ============================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.125rem; }
.review-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.375rem; display: flex; flex-direction: column; gap: .875rem; box-shadow: var(--shadow-xs); transition: box-shadow var(--transition-md); }
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header { display: flex; align-items: center; gap: .875rem; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--accent)); display: grid; place-items: center; font-weight: 800; font-size: .9375rem; color: #fff; flex-shrink: 0; }
.review-name { font-size: .9375rem; font-weight: 700; }
.review-meta { font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: .375rem; margin-top: .1rem; }
.review-stars { color: #F59E0B; font-size: .9375rem; letter-spacing: .05rem; }
.review-text  { font-size: .875rem; color: var(--text-2); line-height: 1.65; }
.review-footer { display: flex; justify-content: space-between; align-items: center; }
.review-service { font-size: .75rem; color: var(--muted); }
.review-verified { display: inline-flex; align-items: center; gap: .25rem; font-size: .6875rem; font-weight: 700; color: var(--success); }

/* Aggregate rating block */
.rating-block { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; display: flex; gap: 2.5rem; align-items: center; margin-bottom: 2rem; box-shadow: var(--shadow-sm); flex-wrap: wrap; }
.rating-big .score { font-size: 4rem; font-weight: 900; color: var(--text); line-height: 1; }
.rating-big .stars { color: #F59E0B; font-size: 1.375rem; margin: .25rem 0; }
.rating-big .count { font-size: .875rem; color: var(--muted); }
.rating-bars { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: .5rem; }
.bar-row { display: grid; grid-template-columns: 2rem 1fr 2.5rem; gap: .625rem; align-items: center; font-size: .8125rem; }
.bar-row span:first-child { color: var(--muted); text-align: right; }
.bar-track { background: var(--bg-alt); border-radius: 4px; height: 8px; overflow: hidden; }
.bar-fill  { height: 100%; background: linear-gradient(90deg, var(--brand), var(--accent)); border-radius: 4px; }
.bar-row span:last-child { color: var(--muted); }

/* === 15. FAQ ================================================== */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .625rem; }
.faq-item { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--brand); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.125rem 1.375rem; background: none; border: none; color: var(--text); font-size: .9375rem; font-weight: 600; text-align: left; cursor: pointer; transition: color var(--transition); }
.faq-btn:hover { color: var(--brand); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-alt); border: 1.5px solid var(--border); display: grid; place-items: center; flex-shrink: 0; transition: all var(--transition-md); }
.faq-item.open .faq-icon { background: var(--brand); border-color: var(--brand); transform: rotate(45deg); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 1.375rem; font-size: .9375rem; color: var(--muted); line-height: 1.75; transition: max-height .35s ease, padding .25s ease; }
.faq-item.open .faq-answer { max-height: 700px; padding: 0 1.375rem 1.25rem; }

/* === 16. ORDER WIDGET ========================================= */
.order-widget { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.875rem; box-shadow: var(--shadow-md); height: auto; overflow: visible; }
.order-widget h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .8125rem; font-weight: 600; color: var(--text-2); margin-bottom: .375rem; }
.form-input { width: 100%; padding: .625rem .875rem; background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: .9375rem; transition: border-color var(--transition); margin-bottom: 1rem; }
.form-input:focus { outline: none; border-color: var(--border-focus); background: #fff; }
.pkg-list { display: flex; flex-direction: column; gap: .4375rem; margin-bottom: 1rem; height: auto; overflow: visible; }
.pkg-option { display: flex; align-items: center; gap: .75rem; padding: .6875rem 1rem; background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all var(--transition); }
.pkg-option:hover { border-color: var(--brand); background: var(--brand-bg); }
.pkg-option.selected { border-color: var(--brand); background: var(--brand-bg); }
.pkg-option input[type="radio"] { accent-color: var(--brand); flex-shrink: 0; }
.pkg-label { flex: 1; font-size: .875rem; font-weight: 600; color: var(--text); }
.pkg-original { font-size: .75rem; color: var(--danger); text-decoration: line-through; }
.pkg-price { font-size: .9375rem; font-weight: 800; color: var(--brand); }
.order-total-row { display: flex; justify-content: space-between; align-items: center; padding: .875rem 0; border-top: 1.5px solid var(--border); margin-bottom: 1rem; }
.order-total-row span { font-size: .9375rem; font-weight: 600; color: var(--text-2); }
.order-total-row strong { font-size: 1.5rem; font-weight: 900; color: var(--text); }
.widget-footer { text-align: center; margin-top: .75rem; font-size: .75rem; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: .25rem; }

/* === 17. SERVICE HERO ========================================= */
.service-hero { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 3rem 0; overflow: visible; }
.service-hero-grid { display: grid; grid-template-columns: 1fr minmax(0, 420px); gap: 3rem; align-items: start; overflow: visible; }
.service-badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.s-badge { display: inline-flex; align-items: center; gap: .375rem; padding: .3125rem .75rem; border-radius: var(--radius-full); font-size: .8125rem; font-weight: 600; }
.s-badge-green  { background: var(--success-bg); color: var(--success); }
.s-badge-purple { background: var(--brand-bg); color: var(--brand); }
.s-badge-orange { background: var(--accent-bg); color: var(--accent-dark); }
.service-hero-text h1 { font-size: clamp(1.875rem, 4vw, 2.625rem); font-weight: 900; letter-spacing: -.025em; margin-bottom: .875rem; line-height: 1.1; }
.service-hero-text p { font-size: 1.0625rem; color: var(--muted); line-height: 1.75; }

/* === 18. BREADCRUMB =========================================== */
.breadcrumb { padding: .75rem 0; border-bottom: 1px solid var(--border); background: var(--bg); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: .375rem; list-style: none; font-size: .8125rem; }
.breadcrumb li { display: flex; align-items: center; gap: .375rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb li:last-child { color: var(--text-2); font-weight: 500; }

/* === 19. SEO CONTENT ========================================== */
.seo-content h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.seo-content h3 { font-size: 1.125rem; margin: 1.5rem 0 .5rem; color: var(--text-2); }
.seo-content p  { font-size: .9375rem; color: var(--muted); line-height: 1.8; margin-bottom: .875rem; }
.seo-content ul { padding-left: 1.375rem; margin-bottom: .875rem; display: flex; flex-direction: column; gap: .375rem; }
.seo-content li { font-size: .9375rem; color: var(--muted); line-height: 1.7; }

/* === 20. CTA BANNER =========================================== */
.cta-banner { background: linear-gradient(135deg, var(--brand) 0%, #4F46E5 100%); border-radius: var(--radius-xl); padding: 3.5rem 2rem; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; top:-40%; right:-10%; width:350px; height:350px; background:rgba(255,255,255,.05); border-radius:50%; pointer-events:none; }
.cta-banner h2 { font-size: clamp(1.625rem, 3.5vw, 2.25rem); color: #fff; margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.75); font-size: 1.0625rem; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* === 21. PAYMENT BADGES ======================================= */
.payment-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.payment-badge  { opacity: .85; transition: opacity var(--transition); }
.payment-badge:hover { opacity: 1; }
.payment-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 8px 12px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    opacity: .9;
    transition: opacity var(--transition), box-shadow var(--transition);
}
.payment-pill:hover { opacity: 1; box-shadow: var(--shadow-sm); }
.payment-pill img { height: 22px; width: 100%; display: block; object-fit: contain; }
.payment-pill svg { height: 22px; width: 100%; display: block; }

/* === 22. FOOTER =============================================== */
.site-footer { background: #0F172A; color: rgba(255,255,255,.7); }
.footer-main { padding: 3.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; }
.footer-logo { margin-bottom: .875rem; }
.footer-desc { font-size: .9rem; line-height: 1.7; margin-bottom: 1.375rem; color: rgba(255,255,255,.5); }
.footer-trust-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer-trust-pill { padding: .375rem .875rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-full); font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.75); }
.footer-col h4 { font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: .875rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; list-style: none; }
.footer-col li a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }

/* === 23. UTILITIES ============================================ */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border-width:0; }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.mt-1 { margin-top: .25rem; }  .mt-2 { margin-top: .5rem; }  .mt-3 { margin-top: .75rem; }
.mb-2 { margin-bottom: .5rem; } .mb-4 { margin-bottom: 1rem; }

/* === 24. RESPONSIVE =========================================== */
@media (max-width: 1024px) {
  .grid-4   { grid-template-columns: repeat(2, 1fr); }
  .grid-3   { grid-template-columns: repeat(2, 1fr); }
  .counter-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-hero-grid { grid-template-columns: 1fr; }
  .order-widget { max-width: 500px; }
  .steps-row { gap: 1rem; }
  .steps-row::before { display: none; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .platform-banner-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav, .nav-end .btn:not(.nav-toggle) { display: none; }
  .nav-end .nav-text-link { display: none; }
  .nav-end { margin-left: auto; }
  .nav-toggle { display: flex; }
  .section { padding: 3rem 0; }
  .hero { padding: 2.75rem 0 2.5rem; }
  .hero-trust { gap: 1.25rem; }
  .steps-row { grid-template-columns: 1fr; }
  .rating-block { flex-direction: column; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stat-sep { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 1rem; }
  .review-text { font-size: .875rem; }
  .service-hero { padding: 2rem 0; overflow: visible; }
  .service-hero-grid { overflow: visible; }
  .order-widget { overflow: visible; }
  .counter-row { grid-template-columns: repeat(2, 1fr); }
  .has-mega:hover .nav-dropdown { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 1.875rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .counter-row { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 2.25rem 1.25rem; }

  /* 1. Product cards: 1 column on mobile */
  .pricing-grid { grid-template-columns: 1fr; gap: .75rem; }
  .pricing-card { padding: 1rem; gap: .5rem; text-align: center; }
  .pricing-badge { top: .75rem; right: .75rem; font-size: .625rem; }

  /* 2. Card content: centered layout */
  .pricing-card { text-align: center; }
  .pricing-qty    { flex-direction: column; align-items: center; gap: .1rem;
                    padding-right: 0; padding-top: 1.5rem;
                    font-size: 1.3rem; font-weight: 700; line-height: 1.2; }
  .pricing-qty small { display: block; font-size: 1.3rem; font-weight: 700;
                       color: var(--text); margin-top: 0; }
  .pricing-delivery { justify-content: center; margin: 0; }
  .pricing-features { display: grid; grid-template-columns: 1fr 1fr;
                      gap: .2rem .375rem; margin: .125rem 0; text-align: left; }
  .pricing-feature  { font-size: .72rem; gap: .2rem; }
  .pricing-price-block { flex-direction: column; align-items: center;
                         gap: .1rem; margin: .25rem 0 0;
                         padding-top: .5rem; border-top: 1px solid var(--border); }
  .original-price   { flex-basis: auto; font-size: .75rem; }
  .current-price    { font-size: 1.625rem; line-height: 1; }
  .price-usd        { font-size: .6875rem; }
  .discount-badge   { font-size: .6875rem; }

  /* 3. Cart buttons: full width, 44px min touch target */
  .pricing-card-actions .btn,
  .pricing-card-actions .btn-block { width: 100% !important; min-height: 44px; font-size: .875rem; }

  /* 4. Hero section */
  .hero { padding: 2rem 0 1.75rem; }
  .hero-trust { gap: .75rem; flex-wrap: wrap; }
  .hero-trust-item strong { font-size: 1.25rem; }
  .hero-trust-item span { font-size: .6875rem; }
  .announcement-bar { padding: .5rem 2rem .5rem 1rem; }
  .announcement-text { font-size: .8125rem; line-height: 1.35; }
  .announcement-inner { gap: .375rem; flex-wrap: nowrap; }
  .announcement-countdown { font-size: .75rem; }

  /* 5. Platform grid: 3 columns, tighter gap */
  .platform-banner-grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .platform-banner-card { height: 80px; font-size: 1.125rem; border-radius: 10px; }
}

/* Platform cards → 2 columns on very small screens */
@media (max-width: 390px) {
  .platform-banner-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .platform-banner-card { height: 72px; font-size: 1rem; }

  /* Trust rating cards → compact 3-column row */
  .trust-ratings { gap: .375rem; flex-wrap: nowrap; }
  .trust-rating-card { flex: 1; min-width: 0; width: auto; padding: .625rem .375rem; text-align: center; }
  .trust-rating-card .score { font-size: 1.375rem; }
  .trust-rating-card .stars { font-size: .75rem; letter-spacing: .05rem; margin: .125rem 0; }
  .trust-rating-card .platform-name { font-size: .6875rem; }
  .trust-rating-card .review-count { display: none; }

  .counter-row { grid-template-columns: repeat(2, 1fr); gap: .75rem; }

}

/* === 25. PLATFORM HERO + SERVICE LINK CARDS =================== */
.platform-hero { background: linear-gradient(135deg, #1a0a3d 0%, #3a1a8a 50%, #7a4af7 100%); padding: 3rem 0; text-align: center; color: #fff; }
.platform-hero-icon { width: 72px; height: 72px; border-radius: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 2.25rem; margin-bottom: 1.125rem; }
.platform-hero h1 { font-size: clamp(1.875rem, 4vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: .75rem; }
.platform-hero p { font-size: 1.0625rem; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.25rem; }
.service-link-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.625rem; text-decoration: none; display: flex; flex-direction: column; gap: .625rem; transition: all var(--transition-md); }
.service-link-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.slc-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: .375rem; }
.slc-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.slc-desc { font-size: .875rem; color: var(--muted); line-height: 1.6; flex: 1; }
.slc-price { font-size: .9375rem; font-weight: 800; color: var(--brand); margin-top: .25rem; }

/* === 26. PLATFORM BANNER GRID ================================= */
.platform-banner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.platform-banner-card {
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
    transition: filter .2s ease, transform .2s ease;
}
.platform-banner-card:hover { filter: brightness(1.1); transform: translateY(-3px); }
.pbc-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.pbc-tiktok    { background: linear-gradient(135deg, #010101, #69C9D0); }
.pbc-youtube   { background: linear-gradient(135deg, #cc0000, #ff4444); }
.pbc-facebook  { background: linear-gradient(135deg, #1877F2, #0d5db5); }
.pbc-twitch    { background: linear-gradient(135deg, #6441a5, #9b59b6); }
.pbc-threads   { background: linear-gradient(135deg, #101010, #444444); }
/* Platform grid responsive — must be AFTER base definition to win cascade */
@media (max-width: 1024px) { .platform-banner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .platform-banner-grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
                              .platform-banner-card { height: 80px; font-size: 1.125rem; border-radius: 10px; } }
@media (max-width: 390px)  { .platform-banner-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
                              .platform-banner-card { height: 72px; font-size: 1rem; } }

/* === 27. VIDEO SECTION ======================================== */
.video-wrap { display: flex; justify-content: center; width: 100%; }
.video-wrap video { width: 100%; max-width: 800px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.video-wrap iframe { width: 100%; max-width: 800px; aspect-ratio: 16/9; height: auto; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* === 28. ANIMATIONS =========================================== */
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.anim-fade-up { animation: fadeUp .45s ease both; }

/* === 29. HERO BACKGROUND IMAGE ================================ */
.hero-bg {
    position: relative;
    background-image: url('/img/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0 4.5rem;
    overflow: hidden;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 0;
}
.hero-bg .container { position: relative; z-index: 1; }
.hero-bg .hero-inner { max-width: 780px; margin: 0 auto; text-align: center; }

/* === 30. BUTTON OVERFLOW FIX ================================== */
.btn {
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
    max-width: 100%;
    text-overflow: clip;
}
.btn-block { width: 100%; white-space: normal; text-align: center; }

/* === 31. STAR RATING DISPLAY ================================== */
.star-rating-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: .75rem 0 1.25rem;
    flex-wrap: wrap;
}
.stars-display { color: #f59e0b; font-size: 1.125rem; letter-spacing: .1em; }
.rating-score { font-size: 1rem; font-weight: 800; color: var(--text); }
.rating-count { font-size: .875rem; color: var(--muted); }
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius-full);
    padding: .25rem .75rem;
    font-size: .8125rem;
    font-weight: 600;
    color: #92400e;
}

/* === 32. COOKIE CONSENT BANNER ================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8999;
    background: #fff;
    border-top: 2px solid var(--brand);
    box-shadow: 0 -4px 24px rgba(0,0,0,.12);
    padding: 1.125rem 1.5rem;
    animation: slideUp .3s ease both;
}
.cookie-banner--hiding { animation: slideDown .4s ease forwards; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes slideDown { from { transform: translateY(0); } to { transform: translateY(120%); } }
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { display: block; font-size: 1rem; margin-bottom: .25rem; color: var(--text); }
.cookie-text p { font-size: .875rem; color: var(--muted); margin: 0; }
.cookie-actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }
.cookie-link { font-size: .8125rem; color: var(--brand); text-decoration: underline; }
.cookie-link:hover { color: var(--brand-dark); }

/* === 33. WHATSAPP FLOATING BUTTON ============================= */
.whatsapp-btn {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 9000;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: all var(--transition-md);
    text-decoration: none;
}
.whatsapp-btn:hover {
    background: #1ebc59;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #fff;
    color: var(--text);
    font-size: .8125rem;
    font-weight: 600;
    padding: .375rem .75rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* === 34. FOOTER WIDE GRID ===================================== */
.footer-grid-wide {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
.footer-brand { max-width: 300px; }
.footer-col h4 {
    font-size: .8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.4);
    margin-bottom: .75rem;
}
.footer-col h4 + h4 { margin-top: 0; }

/* === 35. TOOLS PAGES ========================================== */
.tool-form-wrap {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 580px;
    margin: 0 auto;
}
.tool-result {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 580px;
    margin: 1.5rem auto 0;
}
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .625rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .9375rem;
}
.result-row:last-child { border-bottom: none; }
.progress-bar-wrap {
    background: var(--border);
    border-radius: var(--radius-full);
    height: 8px;
    overflow: hidden;
    margin: .375rem 0;
}
.progress-bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s ease;
}
.audit-item { margin-bottom: 1.25rem; }
.audit-item-header { display: flex; justify-content: space-between; font-size: .9375rem; margin-bottom: .375rem; }
.audit-tip { font-size: .8125rem; color: var(--muted); margin-top: .25rem; }
.tool-loader {
    text-align: center;
    padding: 2rem;
    color: var(--muted);
}
.tool-loader::after {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    margin: 1rem auto 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === 36. PAYMENT METHODS PAGE ================================= */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}
.payment-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all var(--transition-md);
}
.payment-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.payment-card-icon { font-size: 2.25rem; margin-bottom: .625rem; }
.payment-card-name { font-size: .9375rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.payment-card-desc { font-size: .8125rem; color: var(--muted); }

/* === 37. LEGAL PAGES ========================================== */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-size: 1.375rem; font-weight: 800; margin: 2rem 0 .75rem; color: var(--text); }
.legal-content h3 { font-size: 1.125rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: var(--text); }
.legal-content p { color: var(--text-2); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: var(--text-2); line-height: 1.8; margin-bottom: .375rem; }
.legal-content a { color: var(--brand); text-decoration: underline; }

/* === 38. TOOLS PAGES ========================================== */
.audit-items-grid { display: grid; gap: .875rem; }
.audit-item-preview {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
}
.audit-item-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .125rem; }

/* === 39. RESPONSIVE =========================================== */
@media (max-width: 1100px) {
    .footer-grid-wide { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; max-width: 100%; }
}
@media (max-width: 768px) {
    .footer-grid-wide { grid-template-columns: 1fr 1fr; }
    .whatsapp-btn { bottom: 5rem; right: 1rem; width: 46px; height: 46px; }
}
@media (max-width: 480px) {
    .footer-grid-wide { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: repeat(2, 1fr); }
}
.delay-1 { animation-delay: .08s; } .delay-2 { animation-delay: .16s; } .delay-3 { animation-delay: .24s; }

/* === 40. PACK PAGE ============================================ */
.is-selected-pack { border-color: var(--brand) !important; box-shadow: 0 0 0 3px rgba(122,74,247,.18); }
.is-selected-pack .current-price { color: var(--brand); }

/* === 41. TRUST BADGES BAR ===================================== */
.trust-badges-bar { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: .875rem 0; }
.trust-badges-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-badge {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .625rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    border-radius: var(--radius-lg);
    transition: background .15s, transform .15s;
}
.trust-badge:hover { background: var(--bg-alt); transform: translateY(-1px); }
.trust-badge-logo { flex-shrink: 0; border-radius: 4px; }
.trust-badge-info { display: flex; flex-direction: column; gap: .1rem; }
.trust-badge-stars { font-size: .875rem; color: #f59e0b; line-height: 1; }
.trust-badge-score { font-size: 1rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.trust-badge-label { font-size: .6875rem; color: var(--muted); line-height: 1; white-space: nowrap; }
.trust-badge-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
@media (max-width: 640px) {
    .trust-badges-inner { gap: 0; }
    .trust-badge { padding: .5rem .625rem; gap: .375rem; }
    .trust-badge-label { display: none; }
    .trust-badge-sep { height: 24px; }
    .trust-badge-score { font-size: .875rem; }
    .trust-badge-stars { font-size: .75rem; }
}
@media (max-width: 390px) {
    .trust-badge { padding: .375rem .375rem; gap: .25rem; }
    .trust-badge-logo { width: 16px; height: 16px; }
    .trust-badge-score { font-size: .8125rem; }
    .trust-badge-sep { display: none; }
}

/* === 41. ANNOUNCEMENT BAR ===================================== */
.announcement-bar {
    padding: .5rem 3rem .5rem 1rem;
    text-align: center;
    font-size: .875rem;
    font-weight: 600;
    position: relative;
    z-index: 210;
}
.announcement-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: .875rem; flex-wrap: wrap; }
.announcement-text { line-height: 1.4; }
.announcement-countdown { font-variant-numeric: tabular-nums; font-weight: 800; letter-spacing: .03em; background: rgba(0,0,0,.12); padding: .1rem .5rem; border-radius: 4px; }
.announcement-close { position: absolute; right: .875rem; top: 50%; transform: translateY(-50%); font-size: .75rem; opacity: .6; cursor: pointer; background: none; border: none; padding: .25rem .5rem; color: inherit; transition: opacity .15s; }
.announcement-close:hover { opacity: 1; }

/* === 41. HERO GRADIENT (OPTION C) ============================= */
.hero-gradient {
    position: relative;
    min-height: 580px;
    padding: 5.5rem 0 4.5rem;
    background-image: url('/img/hero.jpg');
    background-size: cover;
    background-position: center right;
    overflow: hidden;
}
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15,5,40,.92) 0%,
        rgba(15,5,40,.75) 35%,
        rgba(15,5,40,.35) 65%,
        rgba(15,5,40,.10) 100%
    );
    z-index: 0;
}
.hero-gradient-content { position: relative; z-index: 1; }
.hero-split-text { max-width: 590px; }
.hero-split-text .hero-eyebrow,
.hero-split-text h1,
.hero-split-text .hero-sub,
.hero-split-text .platform-chips,
.hero-split-text .hero-actions,
.hero-split-text .hero-trust,
.hero-split-text .star-rating-row { text-align: left; justify-content: flex-start; }
.hero-split-text h1 { font-size: clamp(2rem, 4.5vw, 3.125rem); text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.hero-split-text .hero-sub { text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.d-none-mobile { display: inline; }
@media (max-width: 768px) {
    .hero-gradient { min-height: 220px; padding: 0; background-position: center 25%; }
    .hero-gradient-overlay { background: linear-gradient(to bottom, rgba(15,5,40,.25) 0%, rgba(15,5,40,.55) 100%); }
    .hero-split-text { max-width: 100%; }
    .hero-split-text .hero-eyebrow,
    .hero-split-text h1,
    .hero-split-text .hero-sub,
    .hero-split-text .platform-chips,
    .hero-split-text .hero-actions,
    .hero-split-text .hero-trust,
    .hero-split-text .star-rating-row { text-align: center; justify-content: center; }
    .d-none-mobile { display: none; }
}

/* === 42. ACCESSIBILITY ========================================= */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--brand); color: #fff; padding: .5rem 1rem; border-radius: 0 0 8px 8px; font-weight: 700; font-size: .9rem; z-index: 9999; text-decoration: none; transition: top .15s; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2.5px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* === 43. SOCIAL PROOF TICKER ================================== */
.social-proof-ticker {
    position: fixed;
    bottom: 5.5rem;
    left: 1.25rem;
    background: var(--bg-card, #fff);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg, 12px);
    padding: .625rem 1rem;
    font-size: .8125rem;
    color: var(--text);
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    max-width: 280px;
    z-index: 150;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
}
.social-proof-ticker.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 480px) { .social-proof-ticker { display: none; } }

/* === 44. STICKY MOBILE CTA ==================================== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 180;
    padding: .75rem 1rem;
    background: var(--bg);
    border-top: 1.5px solid var(--border);
    box-shadow: 0 -4px 16px rgba(0,0,0,.12);
    transform: translateY(100%);
    transition: transform .35s ease;
}
.sticky-mobile-cta.visible { transform: translateY(0); }
@media (max-width: 768px) { .sticky-mobile-cta { display: block; } }

/* === 45. EXIT INTENT MODAL ==================================== */
.exit-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.exit-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); }
.exit-modal-box { position: relative; background: var(--bg); border-radius: var(--radius-xl, 20px); padding: 2.5rem 2rem; max-width: 420px; width: 100%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.3); z-index: 1; animation: modal-in .25s ease; }
@keyframes modal-in { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.exit-modal-close { position: absolute; top: 1rem; right: 1rem; background: var(--bg-alt); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: .875rem; color: var(--muted); display: grid; place-items: center; }
.exit-modal-close:hover { background: var(--border); }

/* === 46. TOAST SYSTEM ========================================= */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900; display: flex; flex-direction: column; gap: .625rem; pointer-events: none; }
.toast { background: var(--text); color: #fff; padding: .875rem 1.25rem; border-radius: var(--radius-lg, 12px); font-size: .875rem; font-weight: 500; max-width: 320px; box-shadow: 0 4px 20px rgba(0,0,0,.2); animation: toast-in .3s ease; pointer-events: auto; display: flex; align-items: center; gap: .625rem; }
.toast.success { background: #16a34a; }
.toast.error   { background: #dc2626; }
.toast.info    { background: var(--brand); }
@keyframes toast-in { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toast-out { to { transform: translateX(100%); opacity: 0; } }
.toast.hiding { animation: toast-out .3s ease forwards; }

/* === 47. COOKIE CATEGORIES ==================================== */
.cookie-categories { display: flex; gap: 1rem; flex-wrap: wrap; margin: .75rem 0; }
.cookie-cat { display: flex; align-items: center; gap: .375rem; font-size: .8125rem; cursor: pointer; }
.cookie-cat input { width: 14px; height: 14px; cursor: pointer; }
.cookie-cat input:disabled { opacity: .5; }
@media (max-width: 768px) {
    .cookie-categories { display: none; }
    #cookie-save-prefs { display: none; }
    .cookie-link { display: none; }
    .cookie-text p { display: none; }
    .cookie-banner { padding: .625rem 1rem; max-height: 72px; overflow: hidden; }
    .cookie-inner { flex-direction: row; align-items: center; gap: .75rem; flex-wrap: nowrap; }
    .cookie-actions { display: flex; align-items: center; gap: .5rem; flex-wrap: nowrap; flex-shrink: 0; }
}

/* === 48. 404 PAGE ============================================= */
.error-service-card { display: flex; align-items: center; gap: .5rem; background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: .875rem 1rem; font-size: .9rem; font-weight: 600; transition: all var(--transition); }
.error-service-card:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

/* === 49. HERO CONTENT BELOW (card, centered) ================== */
.hero-content-below { background: #f0eeff; padding: 3rem 0 3.5rem; }
.hero-below-wrap {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px rgba(122,74,247,.10), 0 1px 4px rgba(0,0,0,.06);
    padding: 3rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-eyebrow-dark { display: inline-flex; align-items: flex-start; gap: .375rem; padding: .375rem 1rem; background: rgba(122,74,247,.08); border: 1px solid rgba(122,74,247,.2); border-radius: var(--radius-full); font-size: .8125rem; font-weight: 600; color: var(--brand); margin-bottom: 1.375rem; text-align: center; }
.hero-eyebrow-dark svg { flex-shrink: 0; margin-top: .1rem; }
.hero-below-h1 { font-size: clamp(1.875rem, 4vw, 2.75rem); color: var(--text); line-height: 1.15; margin-bottom: 1rem; font-weight: 900; text-align: center; }
.hero-below-h1 em { color: var(--brand); font-style: normal; }
.hero-below-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.75rem; text-align: center; }
.hero-content-below .star-rating-row { justify-content: center; margin-bottom: 1.25rem; }
.hero-content-below .star-rating-row .rating-score { color: var(--text); }
.hero-content-below .star-rating-row .rating-count { color: var(--text-muted); }
.platform-chip-dark { background: rgba(0,0,0,.04); border: 1px solid rgba(0,0,0,.1); color: var(--text); }
.platform-chip-dark:hover { background: rgba(122,74,247,.08); border-color: var(--brand); color: var(--brand); }
.hero-content-below .platform-chips { justify-content: center; }
.hero-content-below .hero-actions { justify-content: center; }
.hero-trust-dark { border-top: 1px solid var(--border); width: 100%; justify-content: center; }
.hero-trust-dark .hero-trust-item strong { color: var(--brand); }
.hero-trust-dark .hero-trust-item span { color: var(--text-muted); }
.hero-content-below .btn-outline { background: transparent; border: 2px solid var(--brand); color: var(--brand); }
.hero-content-below .btn-outline:hover { background: var(--brand); color: #fff; }
@media (max-width: 768px) {
    .hero-content-below { padding: 1.25rem 0 2rem; }
    .hero-below-wrap { padding: 1.75rem 1.25rem 1.5rem; border-radius: 1rem; }
    .hero-below-h1 { font-size: clamp(1.625rem, 6vw, 2rem); }
    .hero-trust-dark { gap: 1rem; }
}
@media (max-width: 480px) {
    .cta-banner .btn { width: 100%; white-space: normal; line-height: 1.3; justify-content: center; }
    .cta-banner div[style] { flex-direction: column; align-items: stretch; }
}

/* === 50. NAV CART BUTTON ======================================= */
.nav-cart-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; color: var(--text); transition: background var(--transition); }
.nav-cart-btn:hover { background: var(--bg-alt); color: var(--brand); }
.nav-cart-badge { position: absolute; top: -3px; right: -3px; background: var(--brand); color: #fff; font-size: .625rem; font-weight: 800; min-width: 16px; height: 16px; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 3px; border: 2px solid var(--bg); }

/* === 51. CART PAGE ============================================= */
.cart-page { background: var(--bg-alt); min-height: 60vh; }
.cart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: .75rem; }
.cart-header h1 { font-size: 1.75rem; margin: 0; display: flex; align-items: center; gap: .625rem; }
.cart-count-pill { background: var(--brand); color: #fff; font-size: .75rem; font-weight: 800; padding: .125rem .5rem; border-radius: 999px; vertical-align: middle; }
.cart-empty { text-align: center; padding: 4rem 1rem; }
.cart-empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.cart-empty h2 { margin-bottom: .5rem; }
.cart-empty p { color: var(--text-muted); margin-bottom: 1.5rem; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: .75rem; }
.cart-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.125rem 1.25rem; display: flex; align-items: center; gap: 1rem; transition: border-color var(--transition); }
.cart-item:hover { border-color: var(--brand); }
.cart-item-icon { font-size: 1.75rem; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 1rem; color: var(--text); }
.cart-item-platform { font-size: .8125rem; color: var(--text-muted); margin-top: .125rem; }
.cart-item-delivery { font-size: .75rem; color: var(--text-muted); display: flex; align-items: center; gap: .25rem; margin-top: .25rem; }
.cart-item-badge { font-size: .6875rem; background: var(--brand); color: #fff; padding: .1875rem .5rem; border-radius: 4px; font-weight: 800; flex-shrink: 0; }
.cart-item-price { text-align: right; flex-shrink: 0; }
.cart-item-price strong { display: block; font-size: 1.125rem; font-weight: 800; color: var(--brand); }
.cart-item-price small { font-size: .75rem; color: var(--text-muted); }
.cart-item-remove-form { margin: 0; }
.cart-item-remove { background: none; border: none; cursor: pointer; color: var(--text-muted); padding: .375rem; border-radius: 6px; transition: all var(--transition); }
.cart-item-remove:hover { background: #fee2e2; color: #dc2626; }
.cart-summary { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 5rem; }
.cart-summary h3 { margin: 0 0 1rem; font-size: 1.125rem; }
.cart-summary-rows { display: flex; flex-direction: column; gap: .5rem; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: .875rem; color: var(--text-muted); }
.cart-summary-divider { border: none; border-top: 1.5px solid var(--border); margin: .75rem 0; }
.cart-summary-total { display: flex; justify-content: space-between; font-size: 1.125rem; font-weight: 700; color: var(--text); }
.cart-summary-usd { text-align: right; font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.cart-trust { display: flex; flex-direction: column; gap: .375rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.cart-trust div { display: flex; align-items: center; gap: .375rem; font-size: .8125rem; color: var(--text-muted); }
.btn-text-muted { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: .875rem; text-decoration: underline; padding: .25rem; width: 100%; }
.btn-text-muted:hover { color: #dc2626; }
.btn-text-link { font-size: .875rem; color: var(--brand); text-decoration: none; }
.btn-text-link:hover { text-decoration: underline; }
@media (max-width: 900px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
}

/* === 52. CHECKOUT PAGE ========================================= */
.checkout-page { background: var(--bg-alt); min-height: 70vh; }
.checkout-breadcrumb { margin-bottom: 1rem; }
.checkout-breadcrumb a { font-size: .875rem; color: var(--brand); text-decoration: none; }
.checkout-breadcrumb a:hover { text-decoration: underline; }
.checkout-title { font-size: 1.875rem; margin-bottom: 2rem; }
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.checkout-form { display: flex; flex-direction: column; gap: 1.5rem; }
.checkout-section { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.checkout-section-header { display: flex; align-items: center; gap: .875rem; margin-bottom: .5rem; }
.checkout-section-header h2 { margin: 0; font-size: 1.125rem; }
.checkout-step-num { background: var(--brand); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8125rem; font-weight: 800; flex-shrink: 0; }
.checkout-section-desc { font-size: .875rem; color: var(--text-muted); margin: 0 0 1.25rem; }
.checkout-profile-input { margin-bottom: 1.25rem; }
.checkout-profile-input:last-child { margin-bottom: 0; }
.checkout-platform-tag { background: var(--bg-alt); color: var(--text-muted); font-size: .75rem; font-weight: 600; padding: .125rem .5rem; border-radius: 4px; margin-left: .375rem; font-style: normal; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .75rem; color: var(--text-muted); margin: .25rem 0 0; }
.payment-options { display: flex; flex-direction: column; gap: .625rem; margin-top: .5rem; }
.payment-option { display: flex; align-items: center; gap: .875rem; padding: 1rem 1.25rem; border: 1.5px solid var(--border); border-radius: var(--radius-lg); cursor: pointer; transition: all var(--transition); }
.payment-option input[type=radio] { display: none; }
.payment-option-active { border-color: var(--brand); background: rgba(122,74,247,.04); }
.payment-option-soon { opacity: .55; cursor: not-allowed; }
.payment-option-icon { font-size: 1.375rem; flex-shrink: 0; }
.payment-option-body { flex: 1; }
.payment-option-body strong { display: block; font-size: .9375rem; }
.payment-option-body small { color: var(--text-muted); font-size: .8rem; }
.payment-option-check { color: var(--brand); font-weight: 900; font-size: 1.125rem; }
.payment-option-soon-badge { font-size: .6875rem; background: var(--bg-alt); color: var(--text-muted); padding: .1875rem .5rem; border-radius: 4px; font-weight: 700; white-space: nowrap; }
.checkout-submit { margin-top: .5rem; font-size: 1.0625rem; }
.checkout-legal { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: .5rem; }
.checkout-legal a { color: var(--brand); }
.checkout-summary { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 5rem; }
.checkout-summary h3 { margin: 0 0 1rem; font-size: 1.125rem; }
.checkout-summary-item { display: flex; align-items: center; gap: .625rem; padding: .625rem 0; border-bottom: 1px solid var(--border); }
.checkout-summary-emoji { font-size: 1.25rem; flex-shrink: 0; }
.checkout-summary-item-info { flex: 1; font-size: .875rem; line-height: 1.4; }
.checkout-summary-item-info small { color: var(--text-muted); display: block; }
.checkout-summary-item-price { font-weight: 700; font-size: .9375rem; white-space: nowrap; color: var(--brand); }
.checkout-summary-divider { border: none; border-top: 1.5px solid var(--border); margin: .75rem 0; }
.checkout-summary-total { display: flex; justify-content: space-between; font-size: 1.125rem; font-weight: 700; }
.checkout-summary-usd { text-align: right; font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.checkout-trust-list { display: flex; flex-direction: column; gap: .375rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.checkout-trust-item { display: flex; align-items: center; gap: .375rem; font-size: .8125rem; color: var(--text-muted); }
.checkout-summary .payment-badges { margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.alert-error { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; padding: .875rem 1rem; border-radius: var(--radius-lg); margin-bottom: 1.25rem; font-size: .9rem; }
@media (max-width: 960px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .form-row-2 { grid-template-columns: 1fr; }
}

/* === 53. ORDER CONFIRMATION ==================================== */
.confirmation-page { background: var(--bg-alt); min-height: 70vh; }
.confirmation-container { max-width: 700px; }
.confirmation-hero { text-align: center; padding: 2.5rem 0 2rem; }
.confirmation-checkmark { font-size: 3.5rem; margin-bottom: 1rem; }
.confirmation-hero h1 { font-size: 2rem; margin-bottom: .625rem; }
.confirmation-hero p { color: var(--text-muted); font-size: 1rem; }
.confirmation-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.75rem; }
.confirmation-card-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background: var(--bg-alt); border-bottom: 1px solid var(--border); font-weight: 700; }
.order-status-badge { font-size: .8125rem; font-weight: 700; padding: .25rem .75rem; border-radius: 999px; }
.status-pending    { background: #fef9c3; color: #854d0e; }
.status-paid       { background: #dbeafe; color: #1e40af; }
.status-processing { background: #ede9fe; color: #5b21b6; }
.status-completed  { background: #dcfce7; color: #166534; }
.status-cancelled  { background: #fee2e2; color: #991b1b; }
.confirmation-items { padding: 1.25rem; }
.confirmation-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.confirmation-item-info strong { display: block; font-size: .9375rem; }
.confirmation-item-info small { color: var(--text-muted); font-size: .8125rem; }
.confirmation-item-price { font-weight: 700; color: var(--brand); white-space: nowrap; }
.confirmation-total { display: flex; justify-content: space-between; font-size: 1.125rem; font-weight: 800; padding-top: .875rem; }
.confirmation-total strong { color: var(--brand); }
.confirmation-payment-info { display: flex; align-items: flex-start; gap: 1rem; background: #f0fdf4; border-top: 1px solid #bbf7d0; padding: 1.25rem; }
.confirmation-payment-icon { font-size: 1.75rem; flex-shrink: 0; }
.confirmation-payment-info strong { display: block; margin-bottom: .25rem; }
.confirmation-payment-info p { color: var(--text-muted); font-size: .875rem; margin: 0; }
.confirmation-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }
.confirmation-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.confirmation-trust-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.125rem; display: flex; align-items: flex-start; gap: .75rem; }
.confirmation-trust-item strong { display: block; font-size: .875rem; margin-bottom: .125rem; }
.confirmation-trust-item small { font-size: .75rem; color: var(--text-muted); }
@media (max-width: 640px) {
    .confirmation-trust { grid-template-columns: 1fr; }
    .confirmation-actions { flex-direction: column; }
}

/* === 54. ORDER TRACKING ======================================== */
.tracking-page { background: var(--bg-alt); min-height: 60vh; }
.tracking-container { max-width: 760px; }
.tracking-page h1 { font-size: 1.875rem; margin-bottom: .5rem; }
.tracking-desc { color: var(--text-muted); margin-bottom: 2rem; }
.tracking-form { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 2rem; }
.tracking-empty { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; color: var(--text-muted); }
.tracking-results { display: flex; flex-direction: column; gap: 1rem; }
.tracking-order-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.tracking-order-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.tracking-order-header strong { display: block; font-size: 1rem; }
.tracking-order-header small { color: var(--text-muted); font-size: .8rem; }
.tracking-order-item { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .75rem 1.25rem; border-bottom: 1px solid var(--border); font-size: .875rem; flex-wrap: wrap; }
.tracking-order-footer { display: flex; justify-content: space-between; align-items: center; padding: .875rem 1.25rem; font-size: .875rem; flex-wrap: wrap; gap: .5rem; }

/* === 55. PRICING CARD ACTIONS ================================== */
.pricing-card-actions { margin-top: auto; }
.pricing-card-actions form { margin: 0; }

/* === 56. CONTACT PAGE ========================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 2rem; align-items: start; margin-top: 2rem; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-channels { display: flex; flex-direction: column; gap: .875rem; }
.contact-channel-card { display: flex; align-items: center; gap: 1rem; padding: 1.125rem 1.25rem; border: 1.5px solid var(--border); border-radius: var(--radius-lg); text-decoration: none; color: var(--text); transition: border-color .2s, transform .15s; background: #fff; }
.contact-channel-card:hover { border-color: var(--brand); transform: translateY(-1px); }
.contact-channel-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-channel-wa    .contact-channel-icon { background: #dcfce7; color: #16a34a; }
.contact-channel-email .contact-channel-icon { background: var(--brand-bg); color: var(--brand); }
.contact-channel-orders .contact-channel-icon { background: #fef9c3; color: #854d0e; }
.contact-channel-title { font-weight: 700; font-size: .9375rem; }
.contact-channel-sub   { font-size: .8125rem; color: var(--text-muted); margin-top: .125rem; }
.contact-channel-arrow { margin-left: auto; color: var(--text-muted); flex-shrink: 0; }

.contact-form-wrap { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }
.contact-success { text-align: center; padding: 2rem 1rem; }
.form-error-banner { background: #fee2e2; border: 1px solid #fca5a5; border-radius: var(--radius-md); padding: .875rem 1rem; font-size: .875rem; color: #991b1b; }

/* === 57. TOOL PAGES (Verificar / Auditar) ====================== */
.tool-form-wrap { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; margin-bottom: 2rem; }
.tool-inputs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 1rem; }

/* Result header */
.tool-result-header { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 1.75rem 2rem; display: flex; align-items: center; gap: 1.5rem; }
.tool-result-score { font-size: 3.5rem; font-weight: 900; line-height: 1; flex-shrink: 0; }

/* Metric cards */
.tool-metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.tool-metric-card { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.125rem; text-align: center; }
.tool-metric-value { font-size: 1.875rem; font-weight: 900; line-height: 1.1; }
.tool-metric-label { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.tool-metric-sub { font-size: .8rem; color: var(--text-muted); margin-top: .125rem; }

/* Benchmark bar */
.tool-benchmark-wrap { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.progress-bar-wrap { position: relative; height: 10px; background: var(--border); border-radius: 999px; overflow: visible; }
.progress-bar-fill { position: absolute; left: 0; top: 0; height: 100%; border-radius: 999px; }

/* Recommendations */
.tool-recs-wrap { background: var(--bg-alt); border: 1.5px solid var(--border); border-left: 4px solid var(--brand); border-radius: var(--radius-lg); padding: 1.375rem 1.5rem; }
.tool-rec-item { padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.tool-rec-item:last-child { border-bottom: none; padding-bottom: 0; }

/* Methodology note */
.tool-note { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1rem 1.25rem; font-size: .8125rem; color: var(--text-muted); }

/* Info grid */
.tool-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.tool-info-card { background: var(--bg-alt); border-radius: var(--radius-xl); padding: 1.5rem; }

/* Audit checklist */
.audit-section { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; margin-bottom: 1.25rem; }
.audit-section-title { font-weight: 700; font-size: 1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.audit-section-icon { font-size: 1.25rem; }
.audit-check-label { display: flex; align-items: flex-start; gap: .75rem; cursor: pointer; padding: .625rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.audit-check-label:last-child { border-bottom: none; padding-bottom: 0; }
.audit-check-label input[type="checkbox"] { display: none; }
.audit-check-box { flex-shrink: 0; width: 20px; height: 20px; border: 2px solid var(--border); border-radius: 5px; margin-top: .1rem; background: #fff; transition: background .15s, border-color .15s; display: flex; align-items: center; justify-content: center; }
.audit-check-label input[type="checkbox"]:checked + .audit-check-box { background: var(--brand); border-color: var(--brand); }
.audit-check-label input[type="checkbox"]:checked + .audit-check-box::after { content: "✓"; color: #fff; font-size: 13px; font-weight: 700; line-height: 1; }
.audit-check-label:hover .audit-check-box { border-color: var(--brand); }

@media (max-width: 640px) {
    .tool-result-header { flex-direction: column; text-align: center; }
    .tool-result-score { font-size: 2.75rem; }
}

/* === 58. REVIEW SYSTEM =========================================*/
.review-star-selector { display: flex; gap: .5rem; flex-direction: row-reverse; justify-content: flex-end; }
.review-star-selector input { display: none; }
.review-star-selector label { font-size: 2rem; cursor: pointer; color: var(--border); transition: color .15s; }
.review-star-selector input:checked ~ label,
.review-star-selector label:hover,
.review-star-selector label:hover ~ label { color: #f59e0b; }

/* === PERFORMANCE =============================================== */
/* content-visibility for below-fold sections — defers rendering work */
.section:not(:first-of-type) { content-visibility: auto; contain-intrinsic-size: 0 500px; }

/* GPU-accelerated animations — promote to own compositor layer */
.pricing-card, .feature-card, .review-card { will-change: transform; }

/* Prevent layout shifts on all media */
img { max-width: 100%; height: auto; }
video { max-width: 100%; height: auto; }

