*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --primary:#5711EC;
  --primary-light:#7B3FF2;
  --primary-dark:#4009B8;
  --primary-glow:rgba(87,17,236,.15);
  --primary-glow-strong:rgba(87,17,236,.25);
  --bg:#ffffff;
  --bg-alt:#f8f7fc;
  --bg-dark:#0b0a1a;
  --bg-dark-alt:#13112a;
  --text:#1a1a2e;
  --text-secondary:#5a5a7a;
  --text-light:#ffffff;
  --border:#e8e6f0;
  --border-light:#f0eef5;
  --success:#10b981;
  --warning:#f59e0b;
  --gradient:linear-gradient(135deg,#5711EC 0%,#7B3FF2 50%,#9B6BF7 100%);
  --gradient-dark:linear-gradient(135deg,#1a0a3e 0%,#0b0a1a 100%);
  --shadow-sm:0 1px 3px rgba(0,0,0,.06);
  --shadow-md:0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:0 8px 30px rgba(0,0,0,.12);
  --shadow-primary:0 4px 20px rgba(87,17,236,.25);
  --radius:12px;
  --radius-lg:20px;
  --radius-full:9999px;
  --font:'Inter',system-ui,-apple-system,sans-serif;
  --font-heading:'Poppins','Inter',system-ui,sans-serif;
  --max-w:1200px;
  --transition:all .3s cubic-bezier(.4,0,.2,1);
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font);color:var(--text);background:var(--bg);line-height:1.7;-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit;transition:var(--transition)}
ul,ol{list-style:none}
h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);font-weight:700;line-height:1.2;color:var(--text)}
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 24px}
@media(min-width:768px){.container{padding:0 40px}}

/* ========== HEADER ========== */
.site-header{position:fixed;top:0;left:0;width:100%;z-index:1000;background:rgba(255,255,255,.92);backdrop-filter:blur(16px);border-bottom:1px solid var(--border-light);transition:var(--transition)}
.site-header.scrolled{box-shadow:var(--shadow-md)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px;gap:16px;position:relative}
.logo{display:flex;align-items:center;gap:10px;font-family:var(--font-heading);font-weight:800;font-size:1.35rem;color:var(--primary)}
.logo-img{height:36px;width:auto;display:block}
.logo-img-footer{filter:brightness(0) invert(1);height:32px}
.logo-icon{width:38px;height:38px;background:var(--gradient);border-radius:10px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:900;font-size:.9rem}
.nav-desktop{display:none;align-items:center;gap:32px}
.nav-desktop a{font-size:.925rem;font-weight:500;color:var(--text-secondary);transition:var(--transition)}
.nav-desktop a:hover{color:var(--primary)}
.nav-cta{display:inline-flex;align-items:center;gap:8px;padding:10px 24px;background:var(--primary);color:#fff!important;border-radius:var(--radius-full);font-weight:600;font-size:.9rem;transition:var(--transition);border:none;cursor:pointer}
.nav-cta:hover{background:var(--primary-light);transform:translateY(-1px);box-shadow:var(--shadow-primary)}
@media(min-width:960px){.nav-desktop{display:flex;position:absolute;left:50%;transform:translateX(-50%)}}
.hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none}
.hamburger span{display:block;width:24px;height:2.5px;background:var(--text);border-radius:2px;transition:var(--transition)}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
@media(min-width:960px){.hamburger{display:none}}

/* Mobile menu */
.mobile-menu{position:fixed;top:72px;left:0;width:100%;background:rgba(255,255,255,.98);backdrop-filter:blur(20px);padding:24px;display:flex;flex-direction:column;gap:8px;border-bottom:1px solid var(--border);transform:translateY(-110%);opacity:0;transition:var(--transition);z-index:999}
.mobile-menu.open{transform:translateY(0);opacity:1}
.mobile-menu a{display:block;padding:14px 16px;font-size:1rem;font-weight:500;color:var(--text);border-radius:var(--radius);transition:var(--transition)}
.mobile-menu a:hover{background:var(--bg-alt);color:var(--primary)}
.mobile-menu .nav-cta{justify-content:center;margin-top:8px}

/* ========== HERO ========== */
.hero{position:relative;padding:140px 0 100px;background:url('/assets/images/hero-bg.webp') center center/cover no-repeat;overflow:hidden;min-height:85vh;display:flex;align-items:center}
.hero::before{content:'';position:absolute;inset:0;background:rgba(10,5,30,0.72);z-index:0}
.hero>.container{position:relative;z-index:1}
.hero::after{content:'';position:absolute;bottom:0;left:0;width:100%;height:120px;background:linear-gradient(to top,var(--bg),transparent)}
.hero-content{position:relative;z-index:2;text-align:center;max-width:800px;margin:0 auto}
.hero-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 20px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius-full);color:rgba(255,255,255,.85);font-size:.85rem;font-weight:500;margin-bottom:28px;backdrop-filter:blur(8px)}
.hero-badge-dot{width:8px;height:8px;background:var(--success);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.hero h1{font-size:clamp(2.2rem,5.5vw,3.8rem);color:#fff;margin-bottom:24px;letter-spacing:-.02em}
.hero h1 .accent{background:linear-gradient(135deg,#a78bfa,#c4b5fd);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-desc{font-size:clamp(1rem,2vw,1.2rem);color:rgba(255,255,255,.7);max-width:600px;margin:0 auto 40px;line-height:1.8}
.hero-btns{display:flex;flex-wrap:wrap;gap:16px;justify-content:center}
.btn-primary{display:inline-flex;align-items:center;gap:10px;padding:16px 36px;background:var(--primary);color:#fff;border-radius:var(--radius-full);font-weight:600;font-size:1rem;border:none;cursor:pointer;transition:var(--transition);font-family:var(--font)}
.btn-primary:hover{background:var(--primary-light);transform:translateY(-2px);box-shadow:var(--shadow-primary)}
.btn-outline{display:inline-flex;align-items:center;gap:10px;padding:16px 36px;background:transparent;color:#fff;border:2px solid rgba(255,255,255,.2);border-radius:var(--radius-full);font-weight:600;font-size:1rem;cursor:pointer;transition:var(--transition);font-family:var(--font)}
.btn-outline:hover{border-color:rgba(255,255,255,.5);background:rgba(255,255,255,.05)}
.hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:60px;position:relative;z-index:2}
.hero-stat{text-align:center}
.hero-stat-num{font-size:clamp(1.8rem,3vw,2.4rem);font-weight:800;color:#fff;font-family:var(--font-heading)}
.hero-stat-label{font-size:.85rem;color:rgba(255,255,255,.55);margin-top:4px}

/* ========== TRUST BAR ========== */
.trust-bar{padding:48px 0;background:var(--bg-alt);border-bottom:1px solid var(--border-light)}
.trust-items{display:flex;flex-wrap:wrap;justify-content:center;gap:32px 48px;align-items:center}
.trust-item{display:flex;align-items:center;gap:10px;font-size:.9rem;color:var(--text-secondary);font-weight:500}
.trust-item svg{width:22px;height:22px;color:var(--primary);flex-shrink:0}

/* ========== SECTION COMMON ========== */
.section{padding:100px 0}
.section-alt{background:var(--bg-alt)}
.section-header{text-align:center;max-width:680px;margin:0 auto 60px}
.section-label{display:inline-flex;align-items:center;gap:6px;padding:6px 16px;background:var(--primary-glow);color:var(--primary);border-radius:var(--radius-full);font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;margin-bottom:16px}
.section-header h2{font-size:clamp(1.8rem,3.5vw,2.6rem);margin-bottom:16px;letter-spacing:-.01em}
.section-header p{font-size:1.05rem;color:var(--text-secondary);line-height:1.8}

/* ========== FEATURES ========== */
.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.feature-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-lg);padding:36px 28px;transition:var(--transition);position:relative;overflow:hidden}
.feature-card::before{content:'';position:absolute;top:0;left:0;width:100%;height:3px;background:var(--gradient);opacity:0;transition:var(--transition)}
.feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:transparent}
.feature-card:hover::before{opacity:1}
.feature-icon{width:56px;height:56px;background:var(--primary-glow);border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.feature-icon svg{width:26px;height:26px;color:var(--primary)}
.feature-card h3{font-size:1.15rem;margin-bottom:10px}
.feature-card p{font-size:.925rem;color:var(--text-secondary);line-height:1.7}

/* ========== HOW IT WORKS ========== */
.steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:32px;counter-reset:step}
.step-card{text-align:center;padding:32px 24px;position:relative;border:1px solid #AA06DD;border-radius:15px;margin:6px;background:var(--bg)}
.step-num{width:52px;height:52px;background:var(--gradient);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:1.2rem;margin:0 auto 20px;font-family:var(--font-heading)}
.step-card h3{font-size:1.1rem;margin-bottom:10px}
.step-card p{font-size:.9rem;color:var(--text-secondary);line-height:1.7}
.step-connector{display:none}
@media(min-width:768px){
  .step-connector{display:block;position:absolute;top:48px;right:-16px;width:32px;height:2px;background:var(--border)}
  .step-card:last-child .step-connector{display:none}
}

/* ========== PRICING ========== */
.pricing-section{background:#0f0f1e;padding:80px 0}
.pricing-section-header{text-align:center;max-width:700px;margin:0 auto 4rem}
.pricing-badge-label{display:inline-block;background:rgba(255,107,53,.1);color:var(--primary);padding:.25rem 1rem;border-radius:9999px;font-size:.875rem;font-weight:600;margin-bottom:1rem;text-transform:uppercase;letter-spacing:1px}
.pricing-section-title{font-size:clamp(2rem,4vw,3rem);font-weight:800;margin-bottom:1rem;color:#e8e8f0}
.pricing-highlight{background:linear-gradient(135deg,#a78bfa,#c4b5fd);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.pricing-section-desc{font-size:1.125rem;color:#9ca3b4;line-height:1.7}
.pricing-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;max-width:1300px;margin:0 auto}
.p-card{position:relative;background:#1a1a30;padding:2rem 2rem 1.5rem;border-radius:1.5rem;border:2px solid rgba(107,90,237,.2);transition:all .3s ease;box-shadow:0 4px 20px rgba(0,0,0,.08)}
.p-card:hover{transform:translateY(-5px);box-shadow:0 20px 40px rgba(87,17,236,.15);border-color:rgba(87,17,236,.3)}
.p-card-popular{background:linear-gradient(135deg,#5711EC 0%,#7c3aed 100%);border-color:#5711EC;box-shadow:0 10px 40px rgba(87,17,236,.35);transform:scale(1.03);padding-top:calc(2rem + 12px)}
.p-card-popular:hover{transform:scale(1.03) translateY(-5px);border-color:#5711EC}
.p-card-best{padding-top:calc(2rem + 12px);border-color:var(--primary);background:linear-gradient(180deg,rgba(87,17,236,.03) 0%,#1a1a30 100%)}
.p-popular-badge,.p-best-badge{position:absolute;top:-1px;left:50%;transform:translateX(-50%);padding:8px 24px;border-radius:0 0 12px 12px;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:1.2px;white-space:nowrap;z-index:2}
.p-popular-badge{background:linear-gradient(135deg,#ff6b35,#f7c948);color:#1a1a2e;box-shadow:0 4px 15px rgba(255,107,53,.4)}
.p-best-badge{background:linear-gradient(135deg,#00c9a7,#00d4ff);color:#1a1a2e;box-shadow:0 4px 15px rgba(0,201,167,.3)}
.p-card-icon{display:flex;align-items:center;justify-content:center;width:56px;height:56px;margin:0 auto 1rem;border-radius:50%;background:rgba(87,17,236,.1);color:var(--primary)}
.p-card-icon svg{stroke:var(--primary)}
.p-card-popular .p-card-icon{background:rgba(255,255,255,.15)}
.p-card-popular .p-card-icon svg{stroke:#fff}
.p-card-header{text-align:center;margin-bottom:1.5rem}
.p-card-title{font-size:1.25rem;font-weight:700;color:#e8e8f0;margin-bottom:.25rem;letter-spacing:-.3px}
.p-card-subtitle{color:#9ca3b4;font-size:.875rem;font-weight:600;background:rgba(87,17,236,.08);display:inline-block;padding:4px 14px;border-radius:9999px;margin-top:.25rem}
.p-card-popular .p-card-title,.p-card-popular .p-card-subtitle,.p-card-popular .p-amount,.p-card-popular .p-period,.p-card-popular .p-features li{color:#fff}
.p-card-popular .p-currency{color:rgba(255,255,255,.9)}
.p-card-popular .p-card-subtitle{background:rgba(255,255,255,.15)}
.p-card-popular .p-features svg{stroke:#fff}
.p-card-popular .p-card-price{border-bottom-color:rgba(255,255,255,.2)}
.p-card-price{text-align:center;margin-bottom:2rem;padding-bottom:2rem;border-bottom:1px solid rgba(107,90,237,.2)}
.p-currency{font-size:1.5rem;font-weight:600;color:var(--primary);vertical-align:top}
.p-amount{font-size:3rem;font-weight:800;color:#e8e8f0;line-height:1}
.p-period{color:#9ca3b4;font-size:.875rem}
.p-features{margin-bottom:2rem;list-style:none;padding:0}
.p-features li{display:flex;align-items:center;gap:.5rem;padding:.5rem 0;color:#9ca3b4;font-size:.875rem}
.p-features svg{width:18px;height:18px;stroke:#10b981;flex-shrink:0}
.p-btn{display:inline-flex;align-items:center;justify-content:center;width:100%;padding:.75rem 1.5rem;border-radius:.5rem;font-weight:600;font-size:.875rem;background:#fff;color:var(--primary);border:none;cursor:pointer;transition:all .2s ease;text-decoration:none}
.p-btn:hover{background:#f0eef8;transform:translateY(-2px)}
.p-card-popular .p-btn{background:#fff;color:var(--primary)}
.p-btn-details{display:inline-flex;align-items:center;justify-content:center;width:100%;padding:.6rem 1.5rem;border-radius:.5rem;font-weight:500;font-size:.85rem;background:transparent;color:rgba(255,255,255,.7);border:1px solid rgba(255,255,255,.2);cursor:pointer;transition:all .2s ease;text-decoration:none;margin-top:8px}
.p-btn-details:hover{color:#fff;border-color:rgba(255,255,255,.5)}
.p-card-popular .p-btn:hover{background:#f0eef8}
.pricing-guarantee{display:flex;align-items:center;gap:1.5rem;background:#1a1a30;padding:2rem;border-radius:1rem;border:1px solid rgba(107,90,237,.2);margin-top:4rem;max-width:600px;margin-left:auto;margin-right:auto}
.guarantee-icon{width:60px;height:60px;display:flex;align-items:center;justify-content:center;background:rgba(16,185,129,.1);border-radius:1rem;flex-shrink:0}
.guarantee-icon svg{width:28px;height:28px;stroke:#10b981}
.guarantee-content h4{font-size:1.125rem;font-weight:700;margin-bottom:.25rem;color:#e8e8f0}
.guarantee-content p{color:#9ca3b4;font-size:.875rem}
@media(max-width:1024px){.pricing-cards{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.pricing-cards{grid-template-columns:1fr}.p-card-popular{transform:scale(1)}.p-card-popular:hover{transform:translateY(-5px)}}

/* ========== N1 EN FRANCE SECTION ========== */
.n1-section{background:#fff;padding:50px 0 60px;margin-top:30px}
.n1-section .section-header{margin-bottom:40px}
.n1-section .section-header h2{text-transform:uppercase;font-family:'Inter',sans-serif;font-size:clamp(1.4rem,3.5vw,2.3rem);font-weight:800;letter-spacing:.01em;color:#000;line-height:1.35}
.n1-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;align-items:start}
@media(max-width:960px){.n1-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.n1-grid{grid-template-columns:1fr}}
.n1-card{text-align:center;padding:24px 20px;border:1px solid #AA06DD;border-radius:15px;margin:6px}
.n1-icon{width:auto;height:auto;margin:0 auto 16px;display:flex;align-items:center;justify-content:center}
.n1-icon img{width:80px;height:auto;object-fit:contain}
.n1-card h3{font-size:1.05rem;margin-bottom:15px;font-weight:700;color:#000}
.n1-card p{font-size:.9rem;color:#000;line-height:1.7}

/* ========== COMPATIBILITY V2 ========== */
.compat-v2-section{background:linear-gradient(135deg,#1a0533 0%,#0f0f1e 50%,#1e0b4d 100%);padding:0}
.compat-v2-inner{display:block;width:100%;max-width:1200px;padding:60px 20px;margin:0 auto;font-family:'Inter',sans-serif;box-sizing:border-box;border-radius:40px}
.compat-v2-header{text-align:center;margin-bottom:50px}
.compat-v2-header h2{font-size:clamp(1.8rem,4vw,2.5rem);font-weight:800;color:#fff;margin-bottom:15px;letter-spacing:-.04em}
.compat-v2-highlight{background:linear-gradient(90deg,#ff8a4c 0%,#a855f7 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;display:inline-block}
.compat-v2-header p{color:#d1d5db;font-size:1rem;line-height:1.6;max-width:700px;margin:0 auto}
.devices-v2-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:20px;margin-top:40px}
.device-v2-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:24px;padding:30px;display:flex;align-items:center;gap:20px;text-align:left;transition:all .3s ease;backdrop-filter:blur(10px)}
.device-v2-card:hover{background:rgba(255,255,255,.1);border-color:#ff8a4c;transform:translateX(10px)}
.device-v2-icon{flex-shrink:0}
.device-v2-icon svg{width:40px;height:40px;fill:#fff;display:block}
.device-v2-info h4{margin:0 0 6px;font-size:1.15rem;font-weight:700;color:#fff}
.device-v2-info p{margin:0;color:#d1d5db;font-size:.9rem;line-height:1.4}
.compat-v2-footer{margin-top:50px;padding:30px;border-radius:20px;background:rgba(255,255,255,.03);text-align:center;color:#fff;font-size:.95rem;line-height:1.6}
@media(max-width:768px){.devices-v2-grid{grid-template-columns:1fr}.device-v2-card{padding:20px}.compat-v2-header h2{font-size:1.8rem}}

/* ========== INSTALLATION GUIDE ========== */
.install-layout{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.install-text h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:16px;color:var(--text);line-height:1.3}
.install-intro{font-size:1rem;color:var(--text-secondary);line-height:1.7;margin-bottom:32px}
.install-step{margin-bottom:28px;padding-left:20px;border-left:3px solid var(--primary)}
.install-step h3{font-size:1.05rem;font-weight:700;color:var(--text);margin-bottom:8px}
.install-step p{font-size:.925rem;color:var(--text-secondary);line-height:1.75}
.install-step strong{color:var(--text)}
.install-image{display:flex;align-items:flex-start;justify-content:center;position:sticky;top:100px}
.install-image img{width:100%;max-width:480px;height:auto;border-radius:20px;box-shadow:0 20px 60px rgba(0,0,0,.12)}
@media(max-width:860px){.install-layout{grid-template-columns:1fr}.install-image{order:-1;margin-bottom:24px;position:static}.install-image img{max-width:400px;margin:0 auto}}

/* ========== INFO SECTION ========== */
.info-section{background:#0f0f1e;padding:80px 0}
.info-header{text-align:center;max-width:700px;margin:0 auto 4rem}
.info-title{font-size:clamp(2rem,4vw,3rem);font-weight:800;margin-bottom:1rem;color:#e8e8f0}
.info-highlight{background:linear-gradient(135deg,#a78bfa,#c4b5fd);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.info-desc{font-size:1.125rem;color:#9ca3b4;line-height:1.7}
.info-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;max-width:960px;margin:0 auto}
.info-grid .info-card:last-child{grid-column:1 / -1;max-width:480px;justify-self:center}
.info-card{background:#1a1a30;border-radius:1.5rem;padding:2rem;border:1px solid rgba(107,90,237,.2);box-shadow:0 2px 12px rgba(0,0,0,.04);text-align:center;transition:all .3s ease}
.info-card:hover{box-shadow:0 8px 30px rgba(87,17,236,.1);transform:translateY(-3px)}
.info-number{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,#5711EC,#7c3aed);color:#fff;font-size:1.125rem;font-weight:800;margin-bottom:1rem}
.info-card h3{font-size:1.125rem;font-weight:700;color:#e8e8f0;margin-bottom:1rem;line-height:1.4}
.info-card p{color:#9ca3b4;font-size:1rem;line-height:1.7;margin-bottom:.5rem}
.info-card p:last-child{margin-bottom:0}
.info-devices{list-style:none;padding:0;margin:1rem 0;display:inline-flex;flex-direction:column;gap:.5rem;text-align:left}
.info-devices li{display:flex;align-items:center;gap:.5rem;color:#e8e8f0;font-size:.875rem;font-weight:500}
.info-devices li svg{flex-shrink:0;stroke:var(--primary)}
@media(max-width:768px){.info-grid{grid-template-columns:1fr}.info-grid .info-card:last-child{max-width:100%}}

/* ========== REVIEWS ========== */
.reviews-section{background:#0f0f1e;padding:80px 0}
.reviews-section .section-header h2{color:#e8e8f0}
.reviews-section .section-header p{color:#9ca3b4}
.reviews-grid-v2{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.review-card-v2{background:#1a1a30;border-radius:16px;padding:2rem;border:1px solid rgba(107,90,237,.15);transition:all .3s ease}
.review-card-v2:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.2)}
.user-meta-v2{display:flex;align-items:center;gap:12px;margin-bottom:1rem}
.user-avatar-v2{width:48px;height:48px;border-radius:50%;object-fit:cover;border:2px solid rgba(107,90,237,.3)}
.user-name-v2{display:block;font-weight:700;font-size:1rem;color:#e8e8f0}
.review-platform-v2{display:block;font-size:.75rem;color:#9ca3b4;margin-top:2px}
.stars-v2{color:#facc15;font-size:20px;letter-spacing:2px;margin-bottom:.75rem}
.review-content-v2{font-size:.9rem;color:#9ca3b4;line-height:1.7;margin-bottom:1rem;font-style:italic}
.google-badge-v2{display:flex;align-items:center;gap:8px;padding-top:.75rem;border-top:1px solid rgba(107,90,237,.1)}
.google-logo-v2{height:18px;width:auto}
.review-time-v2{font-size:.75rem;color:#9ca3b4}
@media(max-width:960px){.reviews-grid-v2{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.reviews-grid-v2{grid-template-columns:1fr}}

/* ========== FAQ ========== */
.faq-list{max-width:780px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:var(--transition)}
.faq-item.active{border-color:var(--primary);box-shadow:0 2px 12px var(--primary-glow)}
.faq-question{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 24px;cursor:pointer;font-weight:600;font-size:1rem;background:none;border:none;width:100%;text-align:left;color:var(--text);font-family:var(--font);transition:var(--transition)}
.faq-question:hover{color:var(--primary)}
.faq-question svg{width:20px;height:20px;flex-shrink:0;transition:transform .3s ease;color:var(--primary)}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .3s ease}
.faq-answer-inner{padding:0 24px 20px;font-size:.925rem;color:var(--text-secondary);line-height:1.8}
.faq-item.active .faq-answer{max-height:400px}

/* ========== EEAT / TRUST ========== */
.eeat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px}
.eeat-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px 24px;text-align:center;transition:var(--transition)}
.eeat-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.eeat-icon{width:60px;height:60px;background:var(--primary-glow);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.eeat-icon svg{width:28px;height:28px;color:var(--primary)}
.eeat-card h3{font-size:1.05rem;margin-bottom:8px}
.eeat-card p{font-size:.875rem;color:var(--text-secondary);line-height:1.7}

/* ========== CTA SECTION ========== */
.cta-section{padding:100px 0;background:var(--gradient-dark);position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 50% 50%,rgba(87,17,236,.3),transparent 70%)}
.cta-content{position:relative;z-index:2;text-align:center;max-width:600px;margin:0 auto}
.cta-content h2{font-size:clamp(1.8rem,3.5vw,2.6rem);color:#fff;margin-bottom:16px}
.cta-content p{font-size:1.05rem;color:rgba(255,255,255,.7);margin-bottom:36px;line-height:1.8}

/* ========== FOOTER ========== */
.site-footer{background:var(--bg-dark);color:rgba(255,255,255,.7);padding:60px 0 0}
.footer-grid{display:grid;grid-template-columns:1fr;gap:40px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.08)}
@media(min-width:768px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr}}
.footer-brand p{font-size:.9rem;line-height:1.8;margin-top:16px;max-width:320px}
.footer-col h4{color:#fff;font-size:.9rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;margin-bottom:16px}
.footer-col a{display:block;padding:4px 0;font-size:.875rem;color:rgba(255,255,255,.6);transition:var(--transition)}
.footer-col a:hover{color:var(--primary-light)}
.footer-bottom{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:16px;padding:24px 0;font-size:.8rem;color:rgba(255,255,255,.4)}

/* ========== WHATSAPP FLOAT ========== */
.wa-float{position:fixed;bottom:28px;right:28px;z-index:998;width:60px;height:60px;background:#25d366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.4);transition:var(--transition);cursor:pointer}
.wa-float:hover{transform:scale(1.08);box-shadow:0 6px 28px rgba(37,211,102,.5)}
.wa-float svg{width:32px;height:32px;color:#fff}

/* ========== COOKIE CONSENT ========== */
.cookie-banner{position:fixed;bottom:0;left:0;width:100%;background:var(--bg-dark);color:rgba(255,255,255,.85);padding:20px 0;z-index:9999;transform:translateY(100%);transition:transform .4s ease;border-top:1px solid rgba(255,255,255,.08)}
.cookie-banner.show{transform:translateY(0)}
.cookie-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px}
.cookie-inner p{font-size:.875rem;line-height:1.6;flex:1;min-width:240px}
.cookie-inner a{color:var(--primary-light);text-decoration:underline}
.cookie-btns{display:flex;gap:12px;flex-shrink:0}
.cookie-accept{padding:10px 28px;background:var(--primary);color:#fff;border:none;border-radius:var(--radius-full);font-weight:600;font-size:.875rem;cursor:pointer;transition:var(--transition);font-family:var(--font)}
.cookie-accept:hover{background:var(--primary-light)}
.cookie-reject{padding:10px 28px;background:transparent;color:rgba(255,255,255,.7);border:1px solid rgba(255,255,255,.2);border-radius:var(--radius-full);font-weight:500;font-size:.875rem;cursor:pointer;transition:var(--transition);font-family:var(--font)}
.cookie-reject:hover{border-color:rgba(255,255,255,.4)}

/* ========== BLOG PAGE ========== */
.page-header{padding:140px 0 60px;background:var(--bg-alt);text-align:center}
.page-header h1{font-size:clamp(2rem,4vw,3rem);margin-bottom:12px}
.page-header p{font-size:1.05rem;color:var(--text-secondary)}
.blog-empty{padding:80px 0;text-align:center}
.blog-empty-icon{width:80px;height:80px;background:var(--primary-glow);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 24px}
.blog-empty-icon svg{width:36px;height:36px;color:var(--primary)}
.blog-empty h2{font-size:1.4rem;margin-bottom:12px}
.blog-empty p{font-size:1rem;color:var(--text-secondary);max-width:480px;margin:0 auto}

/* ========== BLOG ARTICLE ========== */
.blog-article{max-width:800px;margin:0 auto;padding:0 20px 60px}
.blog-article h1{font-size:clamp(1.8rem,3.5vw,2.5rem);line-height:1.3;margin-bottom:16px;color:var(--text)}
.blog-article .article-meta{display:flex;align-items:center;gap:16px;font-size:.85rem;color:var(--text-secondary);margin-bottom:32px;flex-wrap:wrap}
.blog-article .article-meta span{display:flex;align-items:center;gap:6px}
.blog-article h2{font-size:1.5rem;font-weight:700;margin:40px 0 16px;color:var(--text);line-height:1.4}
.blog-article h3{font-size:1.2rem;font-weight:600;margin:28px 0 12px;color:var(--text)}
.blog-article p{font-size:1.05rem;line-height:1.8;color:var(--text-secondary);margin-bottom:16px}
.blog-article ul,.blog-article ol{margin:16px 0;padding-left:24px}
.blog-article li{font-size:1.05rem;line-height:1.8;color:var(--text-secondary);margin-bottom:8px}
.blog-article strong{color:var(--text);font-weight:600}
.blog-article a{color:var(--primary);font-weight:500;text-decoration:underline}
.blog-article a:hover{opacity:.8}
.blog-article img{width:100%;height:auto;border-radius:12px;margin:24px 0;box-shadow:0 4px 20px rgba(0,0,0,.08)}
.blog-article figcaption{text-align:center;font-size:.85rem;color:var(--text-secondary);margin-top:-16px;margin-bottom:24px}
.blog-article figure{margin:24px 0}
.blog-article figure img{margin-bottom:8px}
.blog-article blockquote{border-left:3px solid var(--primary);padding:12px 20px;margin:24px 0;background:var(--bg-alt);border-radius:0 8px 8px 0}
.blog-article blockquote p{margin-bottom:0;font-style:italic}
.blog-article .article-faq{margin-top:48px}
.blog-article .article-faq h2{margin-bottom:24px}
.blog-article .faq-item{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;margin-bottom:8px}
.blog-article .faq-question{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 20px;cursor:pointer;font-weight:600;font-size:.95rem;background:none;border:none;width:100%;text-align:left;color:var(--text);font-family:var(--font)}
.blog-article .faq-question svg{flex-shrink:0;width:20px;height:20px;transition:transform .3s ease}
.blog-article .faq-item.active .faq-question svg{transform:rotate(45deg)}
.blog-article .faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease}
.blog-article .faq-item.active .faq-answer{max-height:500px}
.blog-article .faq-answer div{padding:0 20px 16px;font-size:.95rem;line-height:1.7;color:var(--text-secondary)}
.blog-article .article-cta{background:linear-gradient(135deg,var(--primary),#7c3aed);border-radius:16px;padding:32px;text-align:center;margin:40px 0}
.blog-article .article-cta h3{color:#fff;margin:0 0 8px}
.blog-article .article-cta p{color:rgba(255,255,255,.85);margin-bottom:16px}
.blog-article .article-cta a{display:inline-flex;align-items:center;gap:8px;background:#fff;color:var(--primary);padding:12px 28px;border-radius:50px;font-weight:600;text-decoration:none;transition:all .3s ease}
.blog-article .article-cta a:hover{opacity:.9;transform:translateY(-2px)}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:24px}
.blog-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:all .3s ease}
.blog-card:hover{box-shadow:0 8px 30px rgba(87,17,236,.08);transform:translateY(-3px)}
.blog-card img{width:100%;height:200px;object-fit:cover}
.blog-card-body{padding:20px}
.blog-card-body h3{font-size:1.05rem;font-weight:700;margin-bottom:8px;line-height:1.4}
.blog-card-body h3 a{color:var(--text);text-decoration:none}
.blog-card-body h3 a:hover{color:var(--primary)}
.blog-card-body p{font-size:.9rem;color:var(--text-secondary);line-height:1.6;margin-bottom:12px}
.blog-card-meta{font-size:.8rem;color:var(--text-secondary)}

/* ========== BREADCRUMB ========== */
.breadcrumb{padding:12px 0;font-size:.85rem;color:var(--text-secondary)}
.breadcrumb a{color:var(--primary);font-weight:500}
.breadcrumb span{margin:0 8px;opacity:.5}

/* ========== ANIMATIONS ========== */
.fade-in{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}
@media(prefers-reduced-motion:reduce){.fade-in{opacity:1;transform:none;transition:none}}

/* ========== RESPONSIVE ========== */
@media(max-width:767px){
  .hero{padding:120px 0 80px;min-height:auto}
  .hero-stats{grid-template-columns:1fr;gap:16px}
  .section{padding:64px 0}
  .pricing-grid{grid-template-columns:1fr}
  .footer-grid{text-align:center}
  .footer-brand p{margin:12px auto 0}
  .footer-bottom{justify-content:center;text-align:center;flex-direction:column}
}

/* ========== PRODUCT PAGES ========== */
.breadcrumb-bar{background:var(--bg-alt);padding:12px 0;border-bottom:1px solid var(--border)}
.breadcrumb-list{display:flex;align-items:center;gap:0;list-style:none;padding:0;margin:0;font-size:.85rem}
.breadcrumb-list li{color:var(--text-secondary)}
.breadcrumb-list a{color:var(--text-secondary);text-decoration:none;transition:color .2s}
.breadcrumb-list a:hover{color:var(--primary)}
.breadcrumb-separator{margin:0 10px;color:var(--border);font-size:.75rem}
.breadcrumb-current{color:var(--text);font-weight:500}
.product-page{padding:48px 0 60px}
.product-layout{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.product-gallery{position:sticky;top:100px}
.product-image-main{background:#0f0f1e;border-radius:16px;overflow:hidden;border:1px solid rgba(107,90,237,.15)}
.product-image-main img{width:100%;height:auto;display:block}
.product-badges-row{display:flex;gap:10px;margin-top:16px;flex-wrap:wrap}
.product-tag{display:inline-flex;align-items:center;padding:6px 16px;background:rgba(87,17,236,.1);color:var(--primary);border:1px solid rgba(87,17,236,.2);border-radius:var(--radius-full);font-size:.8rem;font-weight:600}
.product-info{display:flex;flex-direction:column}
.product-badge{display:inline-block;padding:6px 16px;background:rgba(87,17,236,.1);color:var(--primary);border-radius:var(--radius-full);font-size:.8rem;font-weight:600;margin-bottom:12px;width:fit-content}
.product-title{font-family:var(--font-heading);font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;color:var(--text);line-height:1.3;margin-bottom:8px}
.product-title .highlight{color:var(--primary)}
.product-subtitle{font-size:1rem;color:var(--text-secondary);margin-bottom:24px;line-height:1.6}
.product-price-box{display:flex;align-items:baseline;gap:4px;margin-bottom:24px;padding:20px 24px;background:linear-gradient(135deg,rgba(87,17,236,.08),rgba(124,58,237,.05));border:1px solid rgba(87,17,236,.15);border-radius:12px}
.product-price-amount{font-size:2.5rem;font-weight:800;color:var(--primary);font-family:var(--font-heading)}
.product-price-period{font-size:1rem;color:var(--text-secondary);font-weight:500}
.product-description{margin-bottom:24px}
.product-description p{font-size:.95rem;line-height:1.8;color:var(--text-secondary)}
.product-description strong{color:var(--text)}
.product-features{list-style:none;padding:0;margin:0 0 28px;display:grid;grid-template-columns:1fr;gap:10px}
.product-features li{display:flex;align-items:center;gap:10px;font-size:.9rem;color:var(--text-secondary);padding:8px 0}
.product-features li svg{width:20px;height:20px;stroke:#10b981;flex-shrink:0}
.product-features li strong{color:var(--text)}
.product-cta{display:inline-flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:16px 32px;background:var(--gradient);color:#fff;border:none;border-radius:12px;font-size:1.05rem;font-weight:700;cursor:pointer;transition:all .3s ease;text-decoration:none;font-family:var(--font)}
.product-cta:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(87,17,236,.35)}
.product-cta svg{width:22px;height:22px}
.product-trust{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:20px}
.product-trust .trust-item{display:flex;flex-direction:column;align-items:center;gap:6px;padding:12px;background:var(--bg-alt);border:1px solid var(--border);border-radius:10px;text-align:center}
.product-trust .trust-item svg{width:20px;height:20px;stroke:var(--primary)}
.product-trust .trust-item span{font-size:.75rem;font-weight:500;color:var(--text-secondary)}
.product-details-section{margin-top:64px;padding-top:48px;border-top:1px solid var(--border)}
.product-details-section h2{font-family:var(--font-heading);font-size:clamp(1.4rem,2.5vw,1.8rem);font-weight:700;color:var(--text);margin-bottom:32px;text-align:center}
.product-details-section .highlight{color:var(--primary)}
.product-details-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.product-detail-card{background:var(--bg-alt);border:1px solid var(--border);border-radius:12px;padding:28px;transition:all .3s ease}
.product-detail-card:hover{border-color:rgba(87,17,236,.3);transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.06)}
.product-detail-card h3{font-size:1.05rem;font-weight:700;color:var(--text);margin-bottom:10px;font-family:var(--font-heading)}
.product-detail-card p{font-size:.9rem;line-height:1.7;color:var(--text-secondary)}
.product-detail-card p strong{color:var(--text)}
.product-other-plans{margin-top:48px;text-align:center}
.product-other-plans h2{font-family:var(--font-heading);font-size:clamp(1.4rem,2.5vw,1.8rem);font-weight:700;color:var(--text);margin-bottom:32px}
.product-other-plans .highlight{color:var(--primary)}
.product-plans-row{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;max-width:700px;margin:0 auto}
.product-plan-link{display:flex;flex-direction:column;align-items:center;padding:28px;background:var(--bg-alt);border:1px solid var(--border);border-radius:12px;text-decoration:none;transition:all .3s ease}
.product-plan-link:hover{border-color:rgba(87,17,236,.3);transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.06)}
.product-plan-link h3{font-size:1.1rem;font-weight:700;color:var(--text);margin-bottom:4px}
.product-plan-link .plan-price{font-size:1.5rem;font-weight:800;color:var(--primary);margin-bottom:8px}
.product-plan-link span:last-child{font-size:.85rem;color:var(--text-secondary)}
@media(max-width:768px){
.product-layout{grid-template-columns:1fr;gap:32px}
.product-gallery{position:static}
.product-details-grid{grid-template-columns:1fr}
.product-trust{grid-template-columns:1fr}
.product-plans-row{grid-template-columns:1fr}
}
