:root {
  --bg:#0f0b14;
  --surface:#191220;
  --muted:#b9a8c9;
  --text:#f7f3ff;
  --brand:#ff4d5e;
  --brand-2:#ff9aa2;
  --ok:#34d399;
  --warn:#f59e0b;
  --shadow:0 18px 60px rgba(0,0,0,.35);
}

* {
  box-sizing:border-box;
}

html,body {
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,system-ui,Segoe UI,Arial,sans-serif;
  line-height:1.6;
}

img {
  max-width:100%;
  display:block;
}

a {
  text-decoration:none;
  color:inherit;
}

.container {
  width:min(1120px,92vw);
  margin:0 auto;
}

header.site {
  position:sticky;
  top:0;
  background:rgba(15,11,20,.6);
  backdrop-filter:saturate(180%) blur(10px);
  z-index:50;
}

.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand {
  display:flex;
  align-items:center;
  font-weight:900;
  letter-spacing:.4px;
}

.brand svg {
  width:24px;
  height:24px;
  margin-right:10px;
}

.nav a {
  margin-left:20px;
  color:var(--muted);
  font-weight:600;
}
.nav a:hover {
  color:var(--text);
}

.hero {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
}

.hero-wrap {
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
  align-items:center;
}

.hero-wrap > div {
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  text-align:center;
}

.hero h1 {
  font-size:clamp(28px,4.2vw,48px);
  line-height:1.1;
  margin:0 0 10px;
}

.hero p {
  color:var(--muted);
  margin:0 0 16px;
  max-width:60ch;
}

.cta {
  display:inline-flex;           
  justify-content:center;
  align-items:center;
  background:var(--brand);
  color:#fff;
  font-weight:800;
  padding:14px 22px;
  border-radius:14px;
  box-shadow:var(--shadow);
  transition:transform .2s ease,background-color .2s ease;
  animation:pulse 2.2s infinite;
  text-align:center;
}
.cta:hover {
  transform:scale(1.05);
  background:#ff3b4e;
}
.cta:focus {
  outline:2px solid #fff;
  outline-offset:3px;
}

.hero-visual {
  max-width:min(520px,100%);
  justify-self:center;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-visual img {
  display:block;
  margin:0 auto;
  width:100%;
  max-width:420px;
  height:auto;
  border-radius:22px;
  box-shadow:var(--shadow);
}

@media (min-width: 900px) {
  .hero-wrap > div {
    grid-template-columns:1.1fr .9fr;
    grid-template-rows:auto auto auto;
    column-gap:48px;
    align-items:center;
    text-align:left;
  }

  .hero h1,
  .hero p,
  .hero .cta {
    grid-column:1;
  }

  .hero .hero-visual {
    grid-column:2;
    grid-row:1 / span 3;
    justify-self:end;
  }
}

.badges {
  display:flex;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}

.badge {
  font-size:.85rem;
  color:#0f0b14;
  background:#fff;
  border-radius:999px;
  padding:6px 10px;
}

.trust {
  padding:60px 0;
  background:linear-gradient(180deg,rgba(255,77,94,.08),transparent);
}

.kpis {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.kpi {
  background:var(--surface);
  padding:20px;
  border-radius:18px;
  text-align:center;
  box-shadow:var(--shadow);
}

.kpi strong {
  font-size:1.6rem;
}

.section {
  padding:80px 0;
}

.grid-3 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card {
  background:var(--surface);
  padding:22px;
  border-radius:18px;
  box-shadow:var(--shadow);
}

.card h3 {
  margin:6px 0 10px;
}

.reviews {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.review {
  background:#120d19;
  border:1px solid #2b2136;
  padding:18px;
  border-radius:16px;
}

.review .meta {
  color:var(--muted);
  font-size:.9rem;
  margin-bottom:8px;
}

.faq {
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:28px;
}

.faq details {
  background:var(--surface);
  padding:16px;
  border-radius:14px;
  box-shadow:var(--shadow);
}

.faq summary {
  cursor:pointer;
  font-weight:700;
  margin:-16px -16px 12px -16px;
  padding:16px;
  border-bottom:1px solid #2b2136;
}

.strip {
  padding:40px;
  border-radius:22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:linear-gradient(90deg,rgba(255,77,94,.15),rgba(255,154,162,.15));
}

footer.site {
  padding:40px 0;
  color:var(--muted);
}

footer .links {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

small.disclaimer {
  opacity:.8;
}

@media (max-width: 900px){
  .hero-wrap{grid-template-columns:1fr;gap:18px;text-align:center}
  .hero-visual{
    order:-1;
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .kpis{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:1fr}
  .reviews{grid-template-columns:1fr}
  .faq{grid-template-columns:1fr}
  .strip{flex-direction:column;text-align:center;gap:12px}
  .cta{padding:12px 18px}
}

@media (max-width: 480px){
  .hero{min-height:100vh}
  .hero-visual img{
    display:block;
    margin:0 auto;
    width:70vw;             
    max-width:300px;
    height:auto;
    border-radius:22px;
    box-shadow:var(--shadow);
  }
  .hero h1{font-size:clamp(22px,6vw,30px)}
  .hero p{font-size:.95rem}
  .badge{font-size:.78rem}
}

@keyframes pulse {
  0%{transform:scale(1);box-shadow:0 0 0 0 rgba(255,77,94,.45)}
  60%{transform:scale(1.05);box-shadow:0 0 0 22px rgba(255,77,94,0)}
  100%{transform:scale(1);box-shadow:0 0 0 0 rgba(255,77,94,0)}
}
