/* ============================================================
   Alprovid — Service landing pages (static, SEO-first)
   Self-contained styles, dark brand theme.
   ============================================================ */
:root{
  --bg:#0A0A0F; --bg2:#101018; --card:#14141d; --line:#23232e;
  --txt:#ECECF2; --muted:#A6A6B4; --accent:#FF6B35; --accent-soft:#ff8c5e;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--bg); color:var(--txt);
  font-family:'Heebo',system-ui,Arial,sans-serif; line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--accent); text-decoration:none}
a:hover{color:var(--accent-soft)}
.wrap{max-width:860px; margin:0 auto; padding:0 22px}

/* Header / nav */
.lp-nav{position:sticky; top:0; z-index:10; background:rgba(10,10,15,.85); backdrop-filter:blur(10px); border-bottom:1px solid var(--line)}
.lp-nav .wrap{display:flex; align-items:center; justify-content:space-between; height:62px}
.lp-brand{display:flex; align-items:center; gap:10px; font-weight:800; color:var(--txt)}
.lp-brand .logo{width:30px; height:30px; border-radius:50%; background:#14B8A6; color:#0A0A0F; display:grid; place-items:center; font-weight:900}
.lp-nav-links{display:flex; gap:18px; font-size:15px}
.lp-nav-links a{color:var(--muted)}
.lp-nav-links a:hover{color:var(--txt)}

/* Hero */
.lp-hero{padding:72px 0 28px; text-align:center}
.lp-eyebrow{display:inline-block; font-size:13px; letter-spacing:.04em; color:var(--accent); background:rgba(255,107,53,.1); border:1px solid rgba(255,107,53,.25); padding:6px 14px; border-radius:999px; margin-bottom:18px}
.lp-hero h1{font-size:clamp(30px,5.4vw,50px); font-weight:900; line-height:1.1; letter-spacing:-.02em; margin:0 0 16px}
.lp-hero p{font-size:clamp(17px,2.2vw,20px); color:var(--muted); max-width:640px; margin:0 auto 26px}

/* Buttons */
.btn{display:inline-flex; align-items:center; gap:9px; font-weight:700; border-radius:12px; padding:14px 24px; font-size:16px; transition:transform .2s ease, box-shadow .2s ease}
.btn-primary{background:var(--accent); color:#0A0A0F}
.btn-primary:hover{color:#0A0A0F; transform:translateY(-2px); box-shadow:0 14px 30px -12px rgba(255,107,53,.7)}
.btn-ghost{border:1px solid var(--line); color:var(--txt)}
.btn-ghost:hover{color:var(--txt); border-color:var(--accent)}
.lp-cta-row{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}

/* Sections */
section.lp{padding:38px 0; border-top:1px solid var(--line)}
.lp h2{font-size:clamp(23px,3.2vw,32px); font-weight:800; margin:0 0 18px; letter-spacing:-.01em}
.lp p{color:#cfcfda; margin:0 0 14px}
.lp ul{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.lp ul li{position:relative; padding-inline-start:26px; color:#cfcfda}
.lp ul li::before{content:""; position:absolute; inset-inline-start:4px; top:11px; width:8px; height:8px; border-radius:50%; background:var(--accent)}

/* Cards */
.cards{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:14px}
.cardx{background:var(--card); border:1px solid var(--line); border-radius:16px; padding:20px}
.cardx h3{margin:0 0 6px; font-size:18px}
.cardx p{margin:0; color:var(--muted); font-size:15px}

/* Trust / logos */
.trust{display:flex; flex-wrap:wrap; gap:10px 18px; align-items:center; color:var(--muted); font-size:15px}
.trust b{color:var(--txt)}

/* Reviews */
.quote{background:var(--card); border:1px solid var(--line); border-radius:16px; padding:20px; margin:0 0 12px}
.quote .stars{color:var(--accent); letter-spacing:2px; margin-bottom:6px}
.quote p{margin:0 0 8px; color:#e3e3ec}
.quote .who{color:var(--muted); font-size:14px}

/* FAQ */
.faq details{border:1px solid var(--line); border-radius:12px; padding:4px 16px; margin-bottom:10px; background:var(--bg2)}
.faq summary{cursor:pointer; font-weight:700; padding:12px 0; list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+"; float:left; color:var(--accent); font-weight:800}
.faq details[open] summary::after{content:"–"}
.faq details p{padding:0 0 12px; color:var(--muted)}

/* CTA band */
.cta-band{text-align:center; padding:46px 0}
.cta-band h2{margin-bottom:10px}
.cta-band p{color:var(--muted); margin-bottom:22px}

/* Footer */
.lp-foot{border-top:1px solid var(--line); padding:30px 0 60px; text-align:center; color:var(--muted); font-size:14px}
.lp-foot a{color:var(--muted)}
.lp-foot .links{margin-bottom:10px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap}
