/* ── Reset ───────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;text-size-adjust:100%}
address{font-style:normal}
ul{list-style:none}

/* ── Design Tokens ───────────────────────────────────────── */
:root{
  --primary:#0057a8;
  --primary-dark:#003d7a;
  --primary-light:rgba(0,87,168,.09);
  --cta:#08ae4c;
  --cta-dark:#068040;
  --cta-light:rgba(8,174,76,.09);
  --bg:#f4f7fb;
  --bg-alt:#edf2f8;
  --white:#fff;
  --text:#1a2c3e;
  --text-muted:rgba(26,44,62,.62);
  --text-light:rgba(26,44,62,.42);
  --border:rgba(26,44,62,.1);
  --radius:10px;
  --radius-btn:6px;
  --shadow-card:0 2px 16px rgba(0,87,168,.08);
  --max-w:1200px;
  --transition:.25s ease;
}

/* ── Base ────────────────────────────────────────────────── */
body{font-family:'Roboto',sans-serif;background:var(--bg);color:var(--text);font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:100%;max-width:var(--max-w);margin-inline:auto;padding-inline:24px}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary,.btn-outline{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-weight:700;font-size:15px;border-radius:var(--radius-btn);padding:13px 28px;cursor:pointer;white-space:nowrap;border:2px solid transparent;transition:background var(--transition),color var(--transition),border-color var(--transition),box-shadow var(--transition),transform var(--transition)}
.btn-primary{background:var(--cta);color:var(--white);border-color:var(--cta)}
.btn-primary:hover{background:var(--cta-dark);border-color:var(--cta-dark);transform:translateY(-1px);box-shadow:0 4px 16px rgba(8,174,76,.3)}
.btn-outline{background:transparent;color:var(--primary);border-color:var(--primary)}
.btn-outline:hover{background:var(--primary-light);transform:translateY(-1px)}
.btn-sm{font-size:14px;padding:9px 18px}
.btn-lg{font-size:17px;padding:15px 36px}

/* ── Header ──────────────────────────────────────────────── */
#header{position:fixed;top:0;left:0;right:0;z-index:100;background:var(--white);border-bottom:1px solid var(--border);transition:box-shadow var(--transition)}
#header.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.08)}
.header__inner{max-width:var(--max-w);margin-inline:auto;padding-inline:24px;height:72px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center}
.logo{justify-self:start}
.logo img{height:40px;width:auto;max-width:none}
.logo-dark{display:none}
/* Bare / transparent header (freescan & cart) — distraction-free, no menu */
#header.header--bare{background:transparent;border-bottom-color:transparent;box-shadow:none}
.header--bare .header__inner{grid-template-columns:1fr;justify-items:start}
/* At top: always white logo over the dark scan bg (form stays light, bg stays dark) */
#header.header--bare:not(.scrolled) .logo-light{display:none}
#header.header--bare:not(.scrolled) .logo-dark{display:block}
/* On scroll: solid themed header + theme-default logo */
#header.header--bare.scrolled{background:var(--white);border-bottom:1px solid var(--border);box-shadow:0 2px 20px rgba(0,0,0,.08)}
[data-theme="dark"] #header.header--bare.scrolled{background:#1a1a1a;border-bottom-color:#2e2e2e}
#nav-menu{justify-self:center}
.nav-list{display:flex;gap:4px}
.nav-list a{font-weight:600;font-size:14px;color:var(--text);padding:7px 14px;border-radius:5px;transition:color var(--transition),background var(--transition)}
.nav-list a:hover{color:var(--cta);background:var(--cta-light)}
.nav-actions{display:flex;gap:10px;align-items:center;justify-self:end}
/* Header accent is green (not blue) — beats inline critical .btn-outline */
.nav-actions .btn-outline,.nav-mobile-ctas .btn-outline{color:var(--cta);border-color:var(--cta)}
.nav-actions .btn-outline:hover,.nav-mobile-ctas .btn-outline:hover{background:var(--cta-light)}
.nav-mobile-ctas{display:none}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:10px;min-width:44px;min-height:44px;align-items:center;justify-content:center;justify-self:end;border-radius:6px;transition:background var(--transition)}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--text);border-radius:2px;transition:transform var(--transition),opacity var(--transition)}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ── Hero ────────────────────────────────────────────────── */
.hero{background:#0f0f0f url(/assets/v5/hero-bg.webp) no-repeat center center;background-size:cover;padding-top:calc(72px + 56px);padding-bottom:56px;color:var(--white);overflow:hidden}
.hero__container{display:grid;grid-template-columns:1fr 562px;gap:48px;align-items:center}
.hero__headline{font-size:clamp(32px,3.8vw,52px);font-weight:800;line-height:1.08;margin-bottom:18px;color:var(--white)}
.hero__sub{font-size:18px;color:rgba(255,255,255,.82);line-height:1.55;margin-bottom:32px;max-width:520px}
.hero__actions{display:flex;gap:24px;flex-wrap:wrap;align-items:center;margin-bottom:40px}
/* Main CTA enlarged ~25% over btn-lg (specificity beats inline critical .btn-lg) */
.hero__actions .hero__cta{font-size:21px;padding:19px 45px}
.tp-button{display:inline-flex;align-items:center;flex-shrink:0}
.tp-button img{width:154px;height:auto;display:block}
.hero__stats{display:flex;gap:24px;border-top:1px solid rgba(255,255,255,.18);padding-top:32px;list-style:none}
.hero__stat{flex:1;text-align:center}
.hero__stat img{width:40px;height:40px;margin:0 auto 14px;display:block;object-fit:contain}
.hero__stat span{display:block;font-size:14px;text-align:center;color:rgba(255,255,255,.82);line-height:1.4}
/* Hero badge (styles from removemenow.com) */
.hero-badge{width:270px;margin:0 0 22px auto}
.hero-badge-top{font-size:18px;font-weight:500;padding:10px 0 10px 12px;border-left:3px solid #CD3432;color:var(--white)}
.hero-badge-bottom{font-size:14px;color:#b2b2b2;margin-top:10px}
.hero__visual img{width:562px;max-width:100%;height:auto;display:block}

/* ── Section header ──────────────────────────────────────── */
.section-header{text-align:center;margin-bottom:52px}
.section-header h2{font-size:clamp(26px,3vw,38px);font-weight:800;color:var(--text);margin-bottom:12px}
.section-header p{font-size:17px;color:var(--text-muted);max-width:580px;margin-inline:auto;line-height:1.55}

/* ── How It Works ────────────────────────────────────────── */
.hiw{padding:80px 0;background:var(--white)}
.hiw__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.hiw__card{text-align:center;padding:37px 24px 28px;border-radius:6px;border:1px solid #E4E4E4;background:rgba(255,255,255,0);box-shadow:0 4px 14px 0 #D8D8D8;transition:box-shadow var(--transition),transform var(--transition)}
.hiw__card:hover{transform:translateY(-3px)}
.hiw__icon{width:88px;height:88px;background:#e8f2f9;border-radius:9999px;display:flex;align-items:center;justify-content:center;margin:0 auto 22px;overflow:hidden}
.hiw__icon img{width:56px;height:56px;object-fit:contain}
.hiw__card h3{font-size:20px;font-weight:700;margin-bottom:6px;color:#1f5b80}
.hiw__card p{font-size:14px;color:#7e8085;line-height:1.5}
.hiw__dots{display:none}

/* ── Benefits (How We Protect You Online) ────────────────── */
.benefits{padding:80px 0;background:var(--white)}
.benefits__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.benefit-card{background:var(--white);border:1px solid #E4E4E4;border-radius:6px;padding:24px;box-shadow:0 4px 14px 0 #D8D8D8;transition:box-shadow var(--transition),transform var(--transition)}
.benefit-card:hover{transform:translateY(-2px)}
.benefit-card__head{display:flex;gap:14px;align-items:center;margin-bottom:14px}
.benefit-card__icon{width:44px;height:44px;flex-shrink:0;background:#e8f2f9;border-radius:8px;display:flex;align-items:center;justify-content:center}
.benefit-card__icon img{width:24px;height:24px;object-fit:contain}
.benefit-card h3{font-size:16px;font-weight:700;color:var(--text);line-height:1.25}
.benefit-card p{font-size:14px;color:#7e8085;line-height:1.55}
.benefits__dots{display:none}

/* ── Why RemoveMe (stats cards) ──────────────────────────── */
.why{padding:80px 0;background:var(--white)}
.why__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:980px;margin-inline:auto}
.why__card{background:var(--white);border:1px solid #E4E4E4;border-radius:6px;box-shadow:0 4px 14px 0 #D8D8D8;padding:40px 28px;text-align:center}
.why__num{font-size:clamp(40px,5vw,56px);font-weight:900;line-height:1;margin-bottom:12px;color:var(--text)}
.why__label{font-size:15px;color:#7e8085;max-width:240px;margin-inline:auto;line-height:1.45}
.why__dots{display:none}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq{padding:80px 0;background:var(--white)}
.faq__list{max-width:780px;margin-inline:auto}
.faq__item{border-bottom:1px solid var(--border)}
.faq__btn{width:100%;display:flex;justify-content:space-between;align-items:center;gap:16px;background:none;border:none;padding:20px 0;font-size:16px;font-weight:600;color:var(--text);text-align:left;cursor:pointer;transition:color var(--transition)}
.faq__btn:hover,.faq__btn.open{color:var(--primary)}
.faq__icon{flex-shrink:0;width:24px;height:24px;background:#f0f1f3;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:background var(--transition),transform var(--transition)}
.faq__btn.open .faq__icon{background:#e2e5e9;transform:rotate(45deg)}
.faq__icon svg{width:12px;height:12px;stroke:#8a929c;transition:stroke var(--transition)}
.faq__btn.open .faq__icon svg{stroke:#5b636d}
.faq__answer{overflow:hidden;max-height:0;transition:max-height .35s ease}
.faq__answer.open{max-height:600px}
.faq__answer p{padding-bottom:20px;font-size:15px;color:var(--text-muted);line-height:1.65}

/* ── iolo trust ──────────────────────────────────────────── */
.iolo-proof{padding:72px 0;background:#f3f5f7;text-align:center}
.iolo-proof__logo{display:flex;align-items:center;justify-content:center;gap:8px;margin-bottom:24px}
.iolo-proof__mark{height:52px;width:auto;max-width:none}
.iolo-proof__wordmark{height:30px;width:auto;max-width:none}
.iolo-proof__headline{font-weight:800;font-size:clamp(26px,3vw,38px);color:var(--text);text-align:center;margin-bottom:14px;line-height:1.2}
.iolo-proof__sub{font-weight:600;font-size:clamp(15px,1.5vw,18px);color:var(--text);text-align:center;max-width:620px;margin:0 auto 30px;line-height:1.5}
.iolo-proof__badges{display:flex;align-items:center;justify-content:center;gap:40px;flex-wrap:wrap;margin-bottom:30px}
.iolo-proof__badge{display:flex;align-items:center;gap:8px;font-size:14px;color:#4a5565}
.iolo-proof__badge-icon{width:20px;height:20px;object-fit:contain;flex-shrink:0}
.iolo-proof__pcmag{display:flex;justify-content:center}
.iolo-proof__pcmag-img{height:56px;width:auto}

/* ── Footer (simplified) ─────────────────────────────────── */
.footer{background:var(--white);border-top:1px solid var(--border);padding:28px 24px;text-align:center}
.footer__links{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap;margin-bottom:12px}
.footer__links a{font-size:14px;color:var(--text-muted);transition:color var(--transition)}
.footer__links a:hover{color:var(--primary)}
.footer__sep{color:var(--border);font-size:13px}
.footer__copy{font-size:13px;color:var(--text-light)}

/* ── Slider pagination dots (shared) ─────────────────────── */
.slider-dot{width:8px;height:8px;padding:0;border:none;border-radius:50%;background:#cfd6dd;cursor:pointer;transition:background .25s ease,width .25s ease}
.slider-dot.active{background:#1f5b80;width:22px;border-radius:4px}

/* ── Reveal animations ───────────────────────────────────── */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:none}

/* ── freescan page (dark, single column — Figma) ─────────── */
.scan-page{display:flex;flex-direction:column}
.scan-page__body{flex:1;background:#0f0f0f url(/assets/v5/hero-bg.webp) no-repeat center center;background-size:cover;display:flex;align-items:flex-start;justify-content:center;padding:120px 20px 56px}
.scan-page__inner{width:100%;max-width:460px;text-align:center}
.scan-title{font-size:clamp(26px,3vw,34px);font-weight:800;color:var(--white);line-height:1.15;margin-bottom:10px}
.scan-subtitle{font-size:15px;color:rgba(255,255,255,.72);margin-bottom:26px}

/* Scan card (dark) */
.scan-card{background:#1b1d23;border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:28px 24px;text-align:left}
.scan-card__intro{font-size:14px;color:rgba(255,255,255,.7);text-align:center;line-height:1.5;margin-bottom:22px}
.scan-card__title{font-size:21px;font-weight:800;color:var(--white);margin-bottom:6px;text-align:center}
.scan-card__sub{font-size:14px;color:rgba(255,255,255,.65);margin-bottom:24px;line-height:1.5;text-align:center}
.scan-step{display:none}
.scan-step.active{display:block}

/* Form (dark inputs) */
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form-field{display:flex;flex-direction:column;gap:5px;margin-bottom:12px}
.form-field input{padding:13px 14px;border:1px solid rgba(255,255,255,.14);border-radius:7px;font-size:15px;font-family:inherit;color:var(--white);background:rgba(255,255,255,.08);transition:border-color var(--transition),box-shadow var(--transition);width:100%;-webkit-appearance:none;appearance:none}
.form-field input::placeholder{color:rgba(255,255,255,.55)}
.form-field input:focus{outline:none;border-color:var(--cta);box-shadow:0 0 0 3px rgba(8,174,76,.18)}
.form-field.has-error input{border-color:#ff6b6b}
.form-field__err{font-size:12px;color:#ff8a8a;margin-top:2px;display:none}
.form-field.has-error .form-field__err{display:block}
.form-submit{width:100%;margin-top:6px;padding:15px;font-size:16px;border-radius:8px}

/* Terms & Conditions expandable */
.scan-terms{margin-top:16px;position:relative}
.scan-terms__toggle{width:100%;display:flex;align-items:center;justify-content:center;gap:8px;background:none;border:none;cursor:pointer;font-family:inherit;font-size:13px;font-weight:600;color:rgba(255,255,255,.8);padding:4px}
.scan-terms__chev{width:12px;height:12px;flex-shrink:0;transition:transform var(--transition)}
.scan-terms__toggle[aria-expanded="true"] .scan-terms__chev{transform:rotate(180deg)}
/* Popover overlay so expanding doesn't push the content below */
.scan-terms__body{position:absolute;left:0;right:0;top:calc(100% + 8px);z-index:30;background:#1b1d23;border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:14px 16px;box-shadow:0 14px 34px rgba(0,0,0,.5);opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .25s ease,transform .25s ease,visibility .25s}
.scan-terms__body.open{opacity:1;visibility:visible;transform:none}
.scan-terms__body p{font-size:12px;color:rgba(255,255,255,.72);line-height:1.6}
.scan-terms__body a{color:#3fa3dc;text-decoration:underline}

/* Trustpilot */
.scan-trustpilot{display:inline-block;margin-top:26px}
.scan-trustpilot img{width:200px;height:auto;display:block;margin:0 auto}

/* Scanning (in progress) */
.scan-alert{background:#ffe3e3;border-radius:10px;padding:14px 18px;text-align:center;color:#c62828;font-weight:600;font-size:14px;line-height:1.45;margin-bottom:16px}
.scan-current{text-align:center;font-size:15px;color:var(--white);margin-bottom:16px}
.scan-progress-bar{height:8px;background:rgba(255,255,255,.12);border-radius:4px;overflow:hidden;margin-bottom:8px}
.scan-progress-fill{height:100%;background:#8a8a8a;border-radius:4px;transition:width .4s ease;width:0%}
[data-theme="light"] .scan-progress-fill{background:#0057a8}
.scan-progress-labels{display:flex;justify-content:space-between;align-items:center;gap:8px;font-size:12px;color:rgba(255,255,255,.5);margin-bottom:20px}
.scan-progress-mid{text-align:center;flex:1;line-height:1.3}
.scan-cta{width:100%;justify-content:center;padding:15px;font-size:15px;border-radius:8px;margin-bottom:18px}
.scan-showmore{width:100%;display:flex;align-items:center;justify-content:center;gap:8px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:8px;padding:13px;color:rgba(255,255,255,.85);font-family:inherit;font-size:14px;font-weight:600;cursor:pointer;margin-top:14px}
.scan-showmore svg{width:12px;height:12px}
.scan-showmore[hidden]{display:none}

/* Results summary */
.scan-summary{text-align:center}
.scan-summary__found{font-size:17px;color:var(--white);font-weight:600;line-height:1.4;margin-bottom:10px}
.scan-summary__found .num{color:#ff6b6b;font-weight:800}
.scan-summary__risk{font-size:14px;color:rgba(255,255,255,.72);line-height:1.5;margin-bottom:18px}
.scan-summary__risk .risk{color:#ff6b6b;font-weight:700}
.scan-summary{text-align:center;margin-bottom:18px}
.scan-summary .scan-cta{margin-bottom:0}
.results-cards{display:flex;flex-direction:column;gap:14px}
.results-cards:not(:empty)+.scan-showmore{margin-top:14px}

/* Broker record card (scanning + results) */
.broker-card{background:#15161b;border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:16px 18px 6px;text-align:left}
.broker-card__head{display:flex;align-items:center;justify-content:space-between;gap:8px;padding-bottom:12px;border-bottom:1px solid rgba(255,255,255,.08)}
.broker-card__site{display:flex;align-items:center;gap:9px;font-weight:600;color:var(--white);font-size:15px}
.broker-card__site svg{width:20px;height:20px;flex-shrink:0}
.broker-card__badge{font-size:13px;font-weight:600;color:#ff6b6b;white-space:nowrap}
.broker-card__rows{padding-top:12px}
.broker-row{display:flex;align-items:center;gap:12px;padding:6px 0;font-size:14px}
.broker-row .k{color:rgba(255,255,255,.55);width:108px;flex-shrink:0}
.broker-row .v{color:var(--white);font-weight:600}
.broker-card__chev{display:flex;align-items:center;justify-content:center;width:100%;padding:8px 0 6px;background:none;border:none;cursor:pointer}
.broker-card__chev svg{width:14px;height:14px;stroke:rgba(255,255,255,.5);transition:transform .25s ease}
.broker-card__chev[aria-expanded="true"] svg{transform:rotate(180deg)}
.broker-card__detail{padding-top:12px;border-top:1px solid rgba(255,255,255,.08);margin-top:2px}
.broker-detail__label{font-size:12px;font-weight:600;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:.04em;margin:14px 0 6px}
.broker-detail__label:first-child{margin-top:0}
.broker-detail__expose{list-style:none;padding:0;margin:0}
.broker-detail__expose li{display:flex;align-items:center;gap:8px;font-size:14px;color:#e8e8e8;padding:4px 0}
.broker-detail__expose li svg{width:16px;height:16px;flex-shrink:0}
.broker-detail__risks{list-style:disc;padding-left:18px;margin:0}
.broker-detail__risks li{font-size:14px;color:#e8e8e8;padding:3px 0}
/* Trustpilot logo variant (dark theme uses white svg, light uses black) */
.scan-trustpilot .tp-on-light{display:none}

/* ── Scan flow — LIGHT theme: keep the dark hero bg, only the cards/form go light ── */
[data-theme="light"] .scan-card__title,[data-theme="light"] .scan-current,[data-theme="light"] .scan-summary__found,[data-theme="light"] .broker-card__site,[data-theme="light"] .broker-row .v{color:var(--text)}
[data-theme="light"] .scan-card__intro,[data-theme="light"] .scan-card__sub,[data-theme="light"] .scan-summary__risk,[data-theme="light"] .broker-row .k,[data-theme="light"] .scan-terms__body p{color:var(--text-muted)}
[data-theme="light"] .scan-card,[data-theme="light"] .broker-card{background:var(--white);border-color:var(--border)}
[data-theme="light"] .scan-terms__body{background:var(--white);border-color:var(--border);box-shadow:0 12px 30px rgba(0,0,0,.18)}
[data-theme="light"] .form-field input{color:var(--text);background:var(--white);border-color:var(--border)}
[data-theme="light"] .form-field input::placeholder{color:var(--text-light)}
[data-theme="light"] .broker-card__head{border-bottom-color:var(--border)}
[data-theme="light"] .broker-card__chev svg{stroke:var(--text-light)}
[data-theme="light"] .broker-card__detail{border-top-color:var(--border)}
[data-theme="light"] .broker-detail__label{color:var(--text-muted)}
[data-theme="light"] .broker-detail__expose li,[data-theme="light"] .broker-detail__risks li{color:var(--text)}
[data-theme="light"] .scan-progress-bar{background:#e2e6ea}
[data-theme="light"] .scan-progress-labels{color:var(--text-light)}
[data-theme="light"] .scan-showmore{background:#f0f1f3;border-color:var(--border);color:var(--text)}

/* ── Cart / checkout ─────────────────────────────────────── */
.header--checkout .header__inner{display:flex;justify-content:space-between}
.cart-secure{display:inline-flex;align-items:center;gap:7px;font-size:14px;font-weight:600;color:var(--text)}
.cart-secure svg{width:16px;height:16px}
.cart-page{padding-top:24px;background:#fff}
.cart{max-width:1000px;margin:0 auto;padding:28px 20px 8px}
.cart-grid{display:flex;flex-direction:column;gap:20px}
.cart-col{display:flex;flex-direction:column;gap:16px;min-width:0}
/* Figma box: 1px #e5e5e5 border, 4px radius */
.cart-card{background:#fff;border:1px solid var(--border);border-radius:4px;padding:18px}
/* order summary */
.cart-sum__top{display:flex;justify-content:space-between;align-items:flex-start;gap:16px}
.cart-sum__plan{font-size:clamp(14px,4.3vw,18px);font-weight:800;color:#1a1a1a;line-height:1.25;white-space:nowrap;min-width:0}
.cart-sum__price{text-align:right;flex-shrink:0;min-width:0;overflow:hidden}
.cart-sum__price b{display:block;font-size:clamp(14px,4.3vw,18px);font-weight:800;color:#1a1a1a;line-height:1.25;white-space:nowrap}
.cart-sum__price span{display:block;font-size:clamp(11px,3.3vw,14px);font-weight:500;color:#8a8a8a;margin-top:2px;white-space:nowrap}
.cart-sum__divider{height:1px;background:var(--border);margin:14px 0}
.cart-toggle{width:100%;display:flex;align-items:center;justify-content:center;gap:8px;background:none;border:none;cursor:pointer;font-family:inherit;font-size:15px;font-weight:500;color:#333;padding:4px}
.cart-toggle svg{width:13px;height:13px;flex-shrink:0;transition:transform var(--transition)}
.cart-toggle[aria-expanded="true"] svg{transform:rotate(180deg)}
.cart-collapse{overflow:hidden;max-height:0;transition:max-height .35s ease}
.cart-collapse.open{max-height:600px}
.cart-incl__list{display:flex;flex-direction:column;gap:10px;padding:14px 0 2px}
.cart-incl__item{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:var(--text)}
.cart-incl__item svg{width:18px;height:18px;flex-shrink:0;stroke:var(--cta)}
.cart-line{display:flex;justify-content:space-between;font-size:14px;color:var(--text-muted);padding:3px 0}
.cart-total{display:flex;justify-content:space-between;font-size:17px;font-weight:800;color:var(--text)}
.cart-renew{font-size:13px;color:#797979;text-align:center;margin-top:14px}
/* payment buttons */
.pay-btn{width:100%;display:flex;align-items:center;justify-content:center;gap:4px;height:48px;border-radius:4px;cursor:pointer;border:none;margin-bottom:12px;font-family:inherit}
.pay-paypal{background:#ffc439}
.pay-paypal img{height:18px;width:auto}
.pay-applepay{background:#fff;border:2px solid #000;color:#000;font-size:20px;font-weight:500;gap:3px}
.pay-applepay svg{width:17px;height:20px;margin-bottom:2px}
.pay-or{display:flex;align-items:center;gap:12px;color:#333;font-size:15px;font-weight:500;margin:10px 0 14px}
.pay-or::before,.pay-or::after{content:"";flex:1;height:1px;background:var(--border)}
/* card choice + form */
.pay-choice{border-radius:4px;overflow:hidden;margin-bottom:18px}
.pay-choice__head{width:100%;display:flex;align-items:center;gap:11px;background:#e6e6e6;border:1px solid #d3d3d3;padding:14px;cursor:pointer;font-family:inherit}
.pay-radio{width:18px;height:18px;border-radius:50%;background:#fff;border:1px solid #c4c4c4;flex-shrink:0;position:relative;transition:border-color var(--transition)}
.pay-choice.selected .pay-radio{border:6px solid #060606}
.pay-choice__label{font-size:14px;color:#000;flex:1;text-align:left}
.pay-brands{display:flex;gap:5px;align-items:center}
.pay-brands img{height:24px;width:38px;display:block}
.pay-form{display:flex;flex-direction:column;gap:14px;background:rgba(0,0,0,.04);border:1px solid #f6f6f6;border-top:none;padding:14px;max-height:0;overflow:hidden;padding-top:0;padding-bottom:0;transition:max-height .3s ease,padding .3s ease}
.pay-choice.selected .pay-form{max-height:340px;padding-top:14px;padding-bottom:14px}
.pay-form__row{display:flex;gap:14px}
.pay-form__row .pay-field{flex:1;min-width:0}
.pay-form__row--3 .pay-field:nth-child(1),.pay-form__row--3 .pay-field:nth-child(2){flex:0 0 86px}
.pay-field{height:40px;border:1px solid #dedede;border-radius:4px;background:#fff;padding:0 11px;font-family:inherit;font-size:15px;color:var(--text);width:100%}
.pay-field::placeholder{color:rgba(0,0,0,.6)}
.pay-field:focus{outline:none;border-color:var(--cta)}
/* terms — extra spacing as in Figma */
.cart-terms__toggle{margin-top:32px;margin-bottom:10px;color:#8A8A8A}
.cart-terms__text{font-size:12px;color:#8A8A8A;line-height:1.6;padding:6px 0 4px;text-align:center}
.cart-terms__text a{color:var(--primary);text-decoration:underline}
.cart-submit{width:100%;justify-content:center;padding:15px;font-size:18px;font-weight:600;border-radius:4px;margin-top:16px}
/* trust strip */
.cart-trust{padding:8px 0 4px}
.cart-guarantee{display:flex;align-items:center;justify-content:center;gap:8px;font-size:15px;font-weight:500;color:#333;margin:8px 0 20px}
.cart-guarantee svg{width:18px;height:20px;stroke:#333}
.cart-badges-img{height:auto;width:min(440px,92%);margin:0 auto 24px;filter:saturate(0)}
.cart-trustpilot{display:flex;justify-content:center;margin-bottom:8px}
.cart-trustpilot img{width:180px;height:auto}
/* testimonials slider */
.cart-testi{text-align:center;padding:24px 0 8px;max-width:520px;margin:0 auto;margin-bottom:48px}
.cart-testi h2{font-size:clamp(20px,3vw,24px);font-weight:600;color:#000;margin-bottom:24px}
.testi-track{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.testi-track::-webkit-scrollbar{display:none}
.testi-card{flex:0 0 85%;scroll-snap-align:center;background:#fff;border-radius:10px;box-shadow:0 9px 7.5px rgba(0,0,0,.05);border:1px solid #ededed;padding:24px;display:flex;gap:16px;text-align:left}
.testi-card>img{width:64px;height:64px;border-radius:50%;flex-shrink:0;object-fit:cover;border:4px solid #e7e7e7}
.testi-quote{font-size:42px;color:#cd3432;line-height:.5;font-family:Georgia,serif;height:22px;font-weight:700}
.testi-text{font-size:15px;color:#000;line-height:1.45;margin-bottom:8px}
.testi-name{font-size:15px;color:#000}
.testi-dots{display:flex;justify-content:center;gap:8px;margin-top:20px}
/* Desktop: testimonials as a static row (no slider) */
@media(min-width:769px){
  .cart-testi{max-width:1080px}
  .testi-track{overflow:visible}
  .testi-card{flex:1}
  .testi-dots{display:none}
}
/* customer support */
.cart-support{display:flex;align-items:center;gap:12px;text-align:left}
.cart-support__icon{width:18px;height:18px;flex-shrink:0}
.cart-support__title{display:block;font-size:18px;font-weight:700;color:#333;line-height:1.2}
.cart-support__phone{display:block;font-size:18px;color:#2c2e30}
.cart-support__phone .num{font-weight:600}
.cart-support__phone .badge{color:#cd3432;font-weight:700}
.cart-support--mobile{background:#f6f6f6;justify-content:center;gap:12px;padding:20px 24px;margin:8px 20px 32px;border-radius:8px;max-width:1000px}
/* Mobile customer support — Figma style: grey icon/labels, black underlined phone */
.cart-support--mobile .cart-support__icon{fill:#8a8a8a}
.cart-support--mobile .cart-support__title{color:#8a8a8a;font-weight:600;font-size:16px}
.cart-support--mobile .cart-support__phone{color:#8a8a8a;font-size:16px}
.cart-support--mobile .cart-support__phone .num{color:#1a1a1a;font-weight:700;text-decoration:underline}
.cart-support--mobile .cart-support__phone .badge{color:#8a8a8a;font-weight:400}
.cart-support--desktop{display:none}
.cart-support__qr{width:60px;height:60px;border-radius:4px;flex-shrink:0}
/* cart dark mode */
[data-theme="dark"] .cart-page{background:#0f0f0f}
[data-theme="dark"] .cart-card{background:#1b1d23;border-color:#2e2e2e}
[data-theme="dark"] .cart-sum__plan,[data-theme="dark"] .cart-sum__price b,[data-theme="dark"] .cart-total,[data-theme="dark"] .cart-toggle,[data-theme="dark"] .cart-incl__item,[data-theme="dark"] .pay-choice__label,[data-theme="dark"] .cart-guarantee,[data-theme="dark"] .cart-secure,[data-theme="dark"] .cart-support__title,[data-theme="dark"] .cart-support__phone{color:#e8e8e8}
[data-theme="dark"] .cart-sum__divider{background:#2e2e2e}
[data-theme="dark"] .cart-guarantee svg{stroke:#e8e8e8}
[data-theme="dark"] .testi-card{background:#1b1d23;border-color:#2e2e2e}
[data-theme="dark"] .testi-text,[data-theme="dark"] .testi-name,[data-theme="dark"] .cart-testi h2{color:#e8e8e8}
[data-theme="dark"] .pay-choice__head{background:#23252b;border-color:#3a3a3a}
[data-theme="dark"] .pay-choice__label{color:#e8e8e8}
[data-theme="dark"] .pay-form{background:rgba(255,255,255,.04);border-color:#2e2e2e}
[data-theme="dark"] .pay-field{background:#15161b;border-color:#3a3a3a;color:#e8e8e8}
[data-theme="dark"] .pay-field::placeholder{color:rgba(255,255,255,.5)}
[data-theme="dark"] .pay-applepay{background:#000;border-color:#fff;color:#fff}
[data-theme="dark"] .cart-support--mobile{background:#15161b}
[data-theme="dark"] .cart-guarantee,[data-theme="dark"] .pay-or{color:#cfcfcf}
/* desktop 2-column: payment left, details right; support under details */
@media(min-width:880px){
  .cart-grid{flex-direction:row;align-items:flex-start;gap:24px}
  .cart-col{flex:1}
  .cart-col-pay{order:0}
  .cart-col-details{order:1}
  .cart-support--desktop{display:flex;align-items:center;gap:14px;padding:18px 0;width:fit-content;margin-inline:auto}
  .cart-support--mobile{display:none}
  .cart-support--desktop .cart-support__title{font-size:22px;font-weight:700;color:#999}
  .cart-support--desktop .cart-support__phone{font-size:22px}
  .cart-support--desktop .cart-support__phone .num{font-size:22px;font-weight:700;color:#2c2e30}
  .cart-support--desktop .cart-support__phone .badge{font-size:22px;font-weight:700;color:#999}
}

/* ── Responsive ──────────────────────────────────────────── */
@media(max-width:1024px){
  /* Nav → hamburger */
  .header__inner{grid-template-columns:1fr auto}
  .hero__container{grid-template-columns:1fr}
  #nav-menu{display:none}
  .nav-actions{display:none}
  .nav-toggle{display:flex;justify-self:end}
  #nav-menu.open{display:block;position:absolute;top:72px;left:0;right:0;width:100%;background:var(--white);border-top:1px solid var(--border);box-shadow:0 8px 20px rgba(0,0,0,.1);padding:8px 20px 16px;z-index:99}
  #nav-menu.open .nav-list{display:flex;flex-direction:column;gap:4px}
  #nav-menu.open .nav-mobile-ctas{display:flex;flex-direction:column;gap:10px;margin-top:16px}
  /* Hero → simplified, centered, no visual, no stats */
  .hero{padding-top:calc(72px + 30px);padding-bottom:40px;text-align:center}
  .hero__stats,.hero__visual{display:none}
  .hero__sub{margin-inline:auto}
  .hero__actions{flex-direction:column;align-items:center;gap:18px;margin-bottom:0}
  .tp-button{margin:0 auto}
  /* Transparent header over dark hero (index.html only); solid on scroll */
  #header.header--hero:not(.scrolled){background:transparent;border-bottom-color:transparent;box-shadow:none}
  #header.header--hero:not(.scrolled) .logo-light{display:none}
  #header.header--hero:not(.scrolled) .logo-dark{display:block}
  #header.header--hero:not(.scrolled) .nav-toggle span{background:#fff}
  /* Sections → horizontal slider with pagination dots */
  .hiw__grid,.benefits__grid,.why__grid{display:flex;grid-template-columns:none;overflow-x:auto;scroll-snap-type:x mandatory;gap:16px;padding:6px 2px;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;scrollbar-width:none}
  .hiw__grid::-webkit-scrollbar,.benefits__grid::-webkit-scrollbar,.why__grid::-webkit-scrollbar{display:none}
  .hiw__card,.benefit-card,.why__card{flex:0 0 82%;scroll-snap-align:center}
  .hiw__grid .reveal,.benefits__grid .reveal,.why__grid .reveal{opacity:1;transform:none}
  .hiw__dots,.benefits__dots,.why__dots{display:flex;justify-content:center;gap:8px;margin-top:22px}
  .iolo-proof__badges{flex-direction:column;gap:14px}
}
@media(max-width:768px){
  .scan-card{padding:24px 20px}
  .scan-page__body{padding:104px 16px 56px}
  /* Sticky CTA bar — only appears once the inline CTA scrolls out of view (above) */
  .sticky-cta{position:fixed;left:0;right:0;bottom:0;z-index:60;padding:12px 14px calc(12px + env(safe-area-inset-bottom));display:none}
  .sticky-cta.show{display:block}
  .sticky-cta .btn-primary{width:100%;justify-content:center;padding:15px;font-size:16px;border-radius:8px;box-shadow:0 8px 30px rgba(0,0,0,.4)}
}
@media(min-width:769px){.sticky-cta{display:none!important}}
@media(max-width:374px){
  .cart-sum__plan,.cart-sum__price b{font-size:3.8vw}
  .cart-sum__price span{font-size:2.9vw}
  .cart-total{font-size:4vw}
}

/* ===== Auth wall (preview password gate) ===== */
#auth-wall{position:fixed;inset:0;background:rgba(0,0,0,.6);backdrop-filter:blur(6px);display:flex;align-items:center;justify-content:center;z-index:9999;transition:opacity .3s}
.auth-box{background:#fff;border-radius:12px;padding:40px 36px;width:360px;max-width:calc(100% - 32px);box-shadow:0 20px 60px rgba(0,0,0,.25);display:flex;flex-direction:column;gap:12px}
.auth-box__logo{font-size:22px;font-weight:700;color:var(--primary);margin-bottom:4px}
.auth-box__sub{font-size:13px;color:var(--text-muted);margin-bottom:8px}
.auth-box label{font-size:13px;font-weight:600;color:var(--text);margin-bottom:-6px}
.auth-box input{border:1px solid var(--border);border-radius:6px;padding:10px 12px;font-size:14px;width:100%;outline:none;transition:border-color .2s}
.auth-box input:focus{border-color:var(--primary)}
.auth-box button#auth-submit{background:var(--primary);color:#fff;border:none;border-radius:6px;padding:12px;font-size:15px;font-weight:600;cursor:pointer;margin-top:4px;transition:opacity .2s}
.auth-box button#auth-submit:hover{opacity:.88}
.auth-error{font-size:13px;color:#d33;text-align:center;display:none}
.auth-error.show{display:block}

/* ===== Dark mode (driven by [data-theme=dark] on <html>; set by the
   inline head script from URL ?theme= / localStorage / OS — mirrors removemenow.com) ===== */
[data-theme="dark"] body{background:#0f0f0f;color:#e8e8e8}
/* Header / nav */
[data-theme="dark"] #header{background:#1a1a1a;border-bottom-color:#2e2e2e}
[data-theme="dark"] #header.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.5)}
[data-theme="dark"] .logo-light{display:none}
[data-theme="dark"] .logo-dark{display:block}
[data-theme="dark"] .nav-list a{color:#e8e8e8}
[data-theme="dark"] .nav-list a:hover{color:#fff;background:rgba(255,255,255,.07)}
[data-theme="dark"] .nav-toggle span{background:#e8e8e8}
[data-theme="dark"] #nav-menu.open{background:#1a1a1a;border-top-color:#2e2e2e;box-shadow:0 8px 20px rgba(0,0,0,.5)}
/* Outline button (nav Sign Up Now) → green, as on live site.
   Scoped to nav (specificity beats inline critical .btn-outline; leaves hero buttons untouched) */
[data-theme="dark"] .nav-actions .btn-outline,[data-theme="dark"] .nav-mobile-ctas .btn-outline{background:#1a1a1a;color:#08ae4c;border-color:#08ae4c}
[data-theme="dark"] .nav-actions .btn-outline:hover,[data-theme="dark"] .nav-mobile-ctas .btn-outline:hover{background:#0f2016}
/* Section headers */
[data-theme="dark"] .section-header h2{color:#fff}
[data-theme="dark"] .section-header p{color:#b0b0b0}
/* How It Works */
[data-theme="dark"] .hiw{background:#0f0f0f}
[data-theme="dark"] .hiw__card{background:#282828;border:1px solid #2e2e2e;box-shadow:0 4px 14px rgba(0,0,0,.4)}
[data-theme="dark"] .hiw__icon{background:#10222e}
[data-theme="dark"] .hiw__icon img{filter:brightness(1.9) saturate(1.15)}
[data-theme="dark"] .hiw__card h3{color:#3fa3dc}
[data-theme="dark"] .hiw__card p{color:#a0a8b0}
/* Shared slider dots */
[data-theme="dark"] .slider-dot{background:#3a3a3a}
[data-theme="dark"] .slider-dot.active{background:#3fa3dc}
/* Benefits */
[data-theme="dark"] .benefits{background:#0f0f0f}
[data-theme="dark"] .benefit-card{background:#282828;border-color:#2e2e2e;box-shadow:0 4px 14px rgba(0,0,0,.4)}
[data-theme="dark"] .benefit-card:hover{box-shadow:0 6px 28px rgba(0,0,0,.5)}
[data-theme="dark"] .benefit-card__icon{background:#10222e}
[data-theme="dark"] .benefit-card__icon img{filter:brightness(1.9) saturate(1.15)}
[data-theme="dark"] .benefit-card h3{color:#e8e8e8}
[data-theme="dark"] .benefit-card p{color:#a0a0a0}
/* Why RemoveMe */
[data-theme="dark"] .why{background:#0f0f0f}
[data-theme="dark"] .why__card{background:#282828;border-color:#2e2e2e;box-shadow:0 4px 14px rgba(0,0,0,.4)}
[data-theme="dark"] .why__num{color:#fff}
[data-theme="dark"] .why__label{color:#a0a0a0}
/* iolo trust */
[data-theme="dark"] .iolo-proof{background:#151515}
[data-theme="dark"] .iolo-proof__headline{color:#fff}
[data-theme="dark"] .iolo-proof__sub{color:#cfcfcf}
[data-theme="dark"] .iolo-proof__badge{color:#b0b0b0}
[data-theme="dark"] .iolo-proof__wordmark{filter:brightness(0) invert(1)}
/* Footer */
[data-theme="dark"] .footer{background:#0f0f0f;border-top-color:#2e2e2e}
[data-theme="dark"] .footer__links a{color:#b0b0b0}
[data-theme="dark"] .footer__links a:hover{color:#fff}
[data-theme="dark"] .footer__copy{color:#777}
[data-theme="dark"] .footer__sep{color:#444}
/* FAQ */
[data-theme="dark"] .faq{background:#0f0f0f}
[data-theme="dark"] .faq__item{border-bottom-color:#2e2e2e}
[data-theme="dark"] .faq__btn{color:#e8e8e8}
[data-theme="dark"] .faq__answer p{color:#b0b0b0}
[data-theme="dark"] .faq__icon{background:#2a2a2a}
[data-theme="dark"] .faq__btn.open .faq__icon{background:#3a3a3a}
[data-theme="dark"] .faq__icon svg{stroke:#9aa1aa}
[data-theme="dark"] .faq__btn.open .faq__icon svg{stroke:#c4c9d0}
@media(min-width:1920px){
  :root{--max-w:clamp(1440px,80vw,2000px)}
  .header__inner{height:88px;padding-inline:40px}
  .container{padding-inline:40px}
  .logo img{height:48px}
  .hero{padding-top:calc(88px + 72px);padding-bottom:72px}
}
@media(min-width:3840px){
  :root{--max-w:clamp(2000px,80vw,3200px)}
  .header__inner{height:100px;padding-inline:56px}
  .container{padding-inline:56px}
  .logo img{height:56px}
  .hero{padding-top:calc(100px + 88px);padding-bottom:88px}
}
