:root{
  --bg:#0b1020;
  --bg-soft:#121a30;
  --panel:#121b34;
  --panel-2:#0f1630;
  --text:#f7f9ff;
  --muted:#b8c3df;
  --line:rgba(255,255,255,.12);
  --primary:#f9de00;
  --primary-2:#ff9f2f;
  --green:#25d366;
  --white:#fff;
  --danger:#ff5b5b;
  --shadow:0 20px 50px rgba(0,0,0,.28);
  --radius:22px;
  --max:1180px;
  --font:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1100px 600px at 15% 0%, rgba(249,222,0,.08), transparent 60%),
    radial-gradient(1000px 560px at 85% 10%, rgba(37,211,102,.10), transparent 60%),
    linear-gradient(180deg,#0b1020 0%,#0f1730 50%,#0a1226 100%);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}
.wrap{width:min(var(--max), calc(100% - 28px)); margin:0 auto}

.top-strip{
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(8,12,24,.78);
  backdrop-filter:blur(12px);
}
.top-strip__row{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.top-strip__items{
  display:flex; flex-wrap:wrap; gap:10px;
  color:var(--muted); font-size:12px; font-weight:800;
}
.top-strip__items span{
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.04);
}

.lang-switch{display:flex; gap:8px}
.lang-btn{
  min-width:44px; min-height:36px; border-radius:12px;
  border:1px solid var(--line); background:rgba(255,255,255,.05); color:var(--text);
  cursor:pointer; font-weight:900;
}
.lang-btn.is-active{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#0a1020; border-color:transparent;
}

.header{
  position:sticky; top:0; z-index:40;
  background:rgba(11,16,32,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__row{
  min-height:78px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:14px; height:14px; border-radius:5px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  box-shadow:0 0 0 8px rgba(249,222,0,.08);
}
.brand__title{display:block; font-size:18px}
.brand__sub{display:block; color:var(--muted); font-size:12px; font-weight:700}

.nav{display:none; gap:18px; color:var(--muted); font-weight:800}
.nav a:hover{color:var(--white)}
.header__cta{display:none; gap:10px}
.menu-toggle{
  min-width:46px; min-height:46px; border-radius:14px;
  border:1px solid var(--line); background:rgba(255,255,255,.05); color:var(--text);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:48px; padding:12px 18px; border-radius:999px; width:auto;
  border:1px solid rgba(255,255,255,.14); font-weight:900; cursor:pointer;
  background:rgba(255,255,255,.06); color:var(--text);
  transition:transform .12s ease, filter .2s ease, background .2s ease;
}
.btn:hover{filter:brightness(1.04)}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#0a1020; border-color:transparent;
  box-shadow:0 14px 28px rgba(249,222,0,.18);
}
.btn--ghost{background:rgba(255,255,255,.07)}
.btn--wa{
  background:rgba(37,211,102,.16); border-color:rgba(37,211,102,.34);
}
.btn--xl{min-height:56px; padding:15px 24px; font-size:15px}

.hero{padding:32px 0 22px}
.hero__grid{display:grid; grid-template-columns:1fr; gap:22px; align-items:center}
.eyebrow{
  display:inline-flex; padding:9px 13px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05);
  color:#fff1a8; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.06em;
}
h1{
  margin:16px 0 12px; font-size:clamp(34px,7vw,64px); line-height:1.02; letter-spacing:-1.3px;
}
h1 span{
  background:linear-gradient(90deg,var(--primary),#fff,#7dd3fc);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero__lead{
  max-width:720px; color:var(--muted); font-size:17px; line-height:1.7; font-weight:600;
}
.hero__trust{
  display:flex; flex-wrap:wrap; gap:10px; margin:18px 0;
}
.trust-pill{
  padding:10px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05); font-weight:800; color:var(--text); font-size:13px;
}
.hero__cta{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}
.hero__microcopy{margin-top:14px; color:var(--muted); font-size:13px; font-weight:700}
.stats{
  display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:22px;
}
.stat-card{
  padding:14px; border-radius:18px; border:1px solid rgba(255,255,255,.11);
  background:rgba(255,255,255,.05);
}
.stat-card strong{display:block; font-size:20px; margin-bottom:4px}
.stat-card span{color:var(--muted); font-size:13px; font-weight:700}

.hero-card{
  border-radius:26px; overflow:hidden; box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.1); background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.04));
}
.hero-card__body{padding:18px}
.hero-card__badge{
  display:inline-flex; margin-bottom:10px; padding:7px 10px; border-radius:999px;
  background:rgba(249,222,0,.16); color:#fff0a5; border:1px solid rgba(249,222,0,.24); font-size:12px; font-weight:900;
}
.hero-card h3{margin:0 0 10px; font-size:24px; line-height:1.2}
.hero-card p{margin:0 0 16px; color:var(--muted); line-height:1.65; font-weight:600}

.logo-proof{padding:8px 0 0}
.logo-proof p{
  margin:0; padding:14px 16px; text-align:center;
  color:var(--muted); font-weight:800;
  border:1px solid rgba(255,255,255,.08); border-radius:18px; background:rgba(255,255,255,.04);
}

.section{padding:64px 0}
.section--light{
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section--dark{background:rgba(9,13,26,.46)}
.section--gallery{padding-top:46px}
.section-head{
  display:grid; gap:12px; margin-bottom:24px;
}
.section-head h2{margin:8px 0 0; font-size:clamp(28px,5vw,44px); letter-spacing:-.8px}
.section-head p{margin:0; color:var(--muted); line-height:1.7; max-width:720px; font-weight:600}

.feature-grid{
  display:grid; grid-template-columns:1fr; gap:16px;
}
.feature-card{
  padding:18px; border-radius:22px; border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.05); box-shadow:0 12px 24px rgba(0,0,0,.12);
}
.feature-card img{border-radius:16px; margin-bottom:14px}
.feature-card h3{margin:0 0 8px; font-size:21px}
.feature-card p{margin:0; color:var(--muted); line-height:1.7; font-weight:600}

.split-banner{
  display:grid; grid-template-columns:1fr; gap:24px; align-items:center;
  padding:22px; border-radius:28px; border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
}
.steps{display:grid; gap:14px; margin-top:18px}
.step{
  display:grid; grid-template-columns:48px 1fr; gap:14px; align-items:flex-start;
  padding:14px; border-radius:18px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
}
.step span{
  width:48px; height:48px; border-radius:16px; display:grid; place-items:center;
  background:linear-gradient(135deg,var(--primary),var(--primary-2)); color:#0a1020; font-weight:900;
}
.step h3{margin:2px 0 6px; font-size:18px}
.step p{margin:0; color:var(--muted); line-height:1.65; font-weight:600}
.split-banner__visual img{border-radius:20px; box-shadow:var(--shadow)}

.plan-tabs{display:flex; gap:10px; margin-bottom:20px}
.tab-btn{
  min-height:46px; padding:12px 16px; border-radius:14px; cursor:pointer;
  border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05); color:var(--text); font-weight:900;
}
.tab-btn.is-active{background:linear-gradient(135deg,var(--primary),var(--primary-2)); color:#0a1020; border-color:transparent}
.tab-panel{display:none}
.tab-panel.is-active{display:block}

.pricing-grid{
  display:grid; grid-template-columns:1fr; gap:16px;
}
.pricing-grid--three{grid-template-columns:1fr}
.price-card{
  position:relative; padding:54px 18px 18px; border-radius:24px;
  border:1px solid rgba(255,255,255,.1); background:rgba(255,255,255,.05); box-shadow:0 14px 30px rgba(0,0,0,.13);
}
.price-card--featured{
  border:2px solid rgba(249,222,0,.35);
  background:
    radial-gradient(500px 220px at 20% 0%, rgba(249,222,0,.12), transparent 58%),
    rgba(255,255,255,.06);
}
.price-card--trial{
  border-color:rgba(37,211,102,.26);
  background:
    radial-gradient(460px 220px at 20% 0%, rgba(37,211,102,.12), transparent 58%),
    rgba(255,255,255,.05);
}
.price-card__badge{
  position:absolute; top:14px; right:14px; padding:7px 10px; border-radius:999px;
  font-size:12px; font-weight:900; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
}
.price-card h3{margin:0 0 6px; font-size:24px}
.price{font-size:34px; font-weight:900; margin-bottom:6px}
.price-sub{color:var(--muted); line-height:1.6; font-weight:600; margin:0 0 12px}
.price-card ul{margin:0 0 18px; padding-left:18px; color:var(--muted); line-height:1.75; font-weight:600}
.price-card li{margin-bottom:6px}

.cta-banner{
  margin-top:20px; padding:18px; border-radius:22px;
  border:1px solid rgba(255,255,255,.1); background:rgba(255,255,255,.05);
  display:grid; gap:14px;
}
.cta-banner h3{margin:0 0 6px; font-size:24px}
.cta-banner p{margin:0; color:var(--muted); line-height:1.65; font-weight:600}

.gallery-grid{
  display:grid; grid-template-columns:1fr; gap:16px;
}
.gallery-grid img{
  border-radius:22px; border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04); box-shadow:var(--shadow);
}

.reviews-grid{
  display:grid; grid-template-columns:1fr; gap:16px;
}
.review-card{
  padding:18px; border-radius:22px; border:1px solid rgba(255,255,255,.1); background:rgba(255,255,255,.05);
}
.stars{font-size:18px; color:#ffd447; margin-bottom:12px}
.review-card p{margin:0 0 12px; color:var(--muted); line-height:1.7; font-weight:600}
.review-card strong{font-size:14px}

.faq-wrap{display:grid; gap:22px}
.faq-list details{
  padding:16px 18px; border-radius:18px; border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.05); margin-bottom:12px;
}
.faq-list summary{cursor:pointer; font-weight:800; font-size:17px}
.faq-list p{margin:12px 0 0; color:var(--muted); line-height:1.7; font-weight:600}

.final-cta{padding-bottom:100px}
.final-cta__box{
  padding:24px; border-radius:28px;
  border:1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(700px 280px at 15% 0%, rgba(249,222,0,.10), transparent 58%),
    radial-gradient(700px 280px at 85% 0%, rgba(37,211,102,.10), transparent 58%),
    rgba(255,255,255,.05);
  display:grid; gap:18px;
}
.final-cta__box h2{margin:8px 0 10px; font-size:clamp(28px,5vw,42px)}
.final-cta__box p{margin:0; color:var(--muted); line-height:1.7; font-weight:600}
.final-cta__actions{display:flex; flex-wrap:wrap; gap:12px}

.floating-bar{
  position:fixed; left:12px; right:12px; bottom:12px; z-index:50;
  display:grid; grid-template-columns:1fr 1fr; gap:10px; padding:10px;
  border-radius:22px; border:1px solid rgba(255,255,255,.12);
  background:rgba(10,14,28,.94); backdrop-filter:blur(14px); box-shadow:0 18px 34px rgba(0,0,0,.28);
}
.floating-bar .btn{width:100%; min-height:52px}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0 94px; background:rgba(6,10,20,.45);
}
.footer__grid{
  display:grid; gap:18px; align-items:start;
}
.footer__copy{color:var(--muted); line-height:1.7; font-weight:600}
.footer__links{display:flex; flex-wrap:wrap; gap:14px; color:var(--muted); font-weight:800}
.footer-brand{margin-bottom:12px}

@media (min-width:760px){
  .wrap{width:min(var(--max), calc(100% - 42px))}
  .hero{padding-top:48px}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid--three{grid-template-columns:repeat(3,1fr)}
  .reviews-grid{grid-template-columns:repeat(3,1fr)}
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
  .cta-banner{grid-template-columns:1fr auto; align-items:center}
  .footer__grid{grid-template-columns:1.1fr .9fr auto}
}
@media (min-width:980px){
  .menu-toggle{display:none}
  .nav,.header__cta{display:flex}
  .hero__grid{grid-template-columns:1.05fr .95fr}
  .split-banner{grid-template-columns:1.08fr .92fr}
  .stats{grid-template-columns:repeat(4,1fr)}
}
@media (max-width:979px){
  .nav,.header__cta{display:none}
}
