:root{
  /* Soft 3D palette */
  --bg0:#070914;
  --bg1:#0b0f1a;
  --text:#eef2ff;
  --muted:rgba(238,242,255,.78);
  --muted2:rgba(238,242,255,.60);
  --line:rgba(238,242,255,.12);

  /* candy accents (soft) */
  --c1: rgba(140, 220, 255, .55);
  --c2: rgba(255, 170, 245, .45);
  --c3: rgba(255, 240, 170, .25);

  /* surfaces */
  --glass: rgba(255,255,255,.06);
  --glass2: rgba(255,255,255,.08);

  /* radii */
  --r1: 26px;
  --r2: 20px;
  --r3: 16px;

  /* shadows (soft 3D) */
  --shadow1: 0 18px 60px rgba(0,0,0,.45);
  --shadow2: 0 10px 30px rgba(0,0,0,.30);
  --inner: inset 0 1px 0 rgba(255,255,255,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(255,170,245,.16), transparent 60%),
    radial-gradient(900px 600px at 75% 25%, rgba(140,220,255,.18), transparent 60%),
    radial-gradient(900px 600px at 45% 85%, rgba(255,240,170,.10), transparent 65%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  color:var(--text);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed; inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 40% 20%, rgba(255,255,255,.05), transparent 60%),
    radial-gradient(1200px 700px at 70% 80%, rgba(255,255,255,.035), transparent 62%);
  filter: blur(8px);
  opacity:.9;
  z-index:-1;
}

a{color:inherit;text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto}

/* Accessibility */
.skip{
  position:absolute; left:-999px; top:10px;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
}
.skip:focus{left:10px; z-index:999}

/* Soft 3D surface utility */
.soft{
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--inner), var(--shadow2);
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(18px);
  background: rgba(7,9,20,.55);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; gap:12px; align-items:center;
  font-weight:900; letter-spacing:-.02em;
}
.brand__mark{
  position:relative;
  width:18px; height:18px;
  display:inline-block;
}
.brand__dot{
  position:absolute; inset:0;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,.10) 34%, transparent 35%),
              linear-gradient(135deg, rgba(140,220,255,.9), rgba(255,170,245,.85));
  box-shadow: 0 0 26px rgba(140,220,255,.25), 0 0 26px rgba(255,170,245,.18), var(--shadow2);
}
.brand__shine{
  position:absolute; inset:-8px;
  border-radius:999px;
  background: radial-gradient(closest-side, rgba(255,255,255,.10), transparent 72%);
  filter: blur(6px);
  opacity:.7;
}
.brand__text{font-size:18px}
.brand__muted{opacity:.75}
.brand--small .brand__text{font-size:16px}

.nav{display:flex; gap:10px; color:var(--muted)}
.nav a{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid transparent;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.nav a.is-active{
  background: linear-gradient(135deg, rgba(140,220,255,.14), rgba(255,170,245,.12));
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}

.header__cta{display:flex; align-items:center; gap:10px}

.burger{
  display:none;
  width:46px; height:42px; border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--inner);
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px; width:18px;
  background: rgba(255,255,255,.85);
  margin:5px auto;
  border-radius:2px;
}
.burger.is-open span:nth-child(1){transform: translateY(7px) rotate(45deg)}
.burger.is-open span:nth-child(2){opacity:0}
.burger.is-open span:nth-child(3){transform: translateY(-7px) rotate(-45deg)}
.burger span{transition: transform .18s ease, opacity .18s ease}

.mobile-nav{
  display:none;
  padding:12px 0 18px;
  border-top:1px solid rgba(255,255,255,.10);
}
.mobile-nav a{
  display:block;
  padding:12px 4%;
  color:var(--muted);
}
.mobile-nav a:hover{color:var(--text)}
.mobile-nav .btn{margin:10px 4% 0}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:800;
  letter-spacing:-.01em;
  box-shadow: var(--inner);
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
  user-select:none;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.20);
  box-shadow: var(--inner), 0 14px 40px rgba(0,0,0,.35);
}
.btn:active{transform: translateY(0)}
.btn--primary{
  border:1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), transparent 45%),
    linear-gradient(135deg, rgba(140,220,255,.22), rgba(255,170,245,.18));
  box-shadow: var(--inner), 0 20px 60px rgba(0,0,0,.40);
}
.btn--ghost{background: rgba(255,255,255,.04)}
.btn--small{padding:10px 14px; border-radius:999px; font-weight:900}
.btn--block{width:100%}

/* Hero */
.hero{
  position:relative;
  padding:46px 0 26px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.hero__bg{
  position:absolute; inset:-260px -140px auto -140px;
  height:560px;
  background:
    radial-gradient(closest-side, rgba(140,220,255,.18), transparent 72%),
    radial-gradient(closest-side, rgba(255,170,245,.16), transparent 72%),
    radial-gradient(closest-side, rgba(255,240,170,.10), transparent 72%);
  filter: blur(18px);
  pointer-events:none;
  opacity:.95;
}
.hero__blob{
  position:absolute;
  width:520px; height:520px;
  border-radius: 40% 60% 55% 45% / 45% 55% 40% 60%;
  filter: blur(18px);
  opacity:.35;
  pointer-events:none;
}
.hero__blob--a{
  left:-220px; top:120px;
  background: radial-gradient(circle at 30% 30%, rgba(255,170,245,.45), rgba(140,220,255,.18), transparent 60%);
}
.hero__blob--b{
  right:-240px; top:-40px;
  background: radial-gradient(circle at 30% 30%, rgba(140,220,255,.45), rgba(255,240,170,.14), transparent 62%);
}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--muted);
  width:fit-content;
  box-shadow: var(--inner);
}
.pill__spark{
  width:26px; height:26px; border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 45%),
    linear-gradient(135deg, rgba(140,220,255,.22), rgba(255,170,245,.18));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--inner);
}

.handle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-left:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--inner);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.90);
  vertical-align: middle;
  white-space: nowrap;
  cursor:pointer;
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.handle__arrow{opacity:.75; font-weight:950; transform: translateY(-.5px)}
.handle:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.20);
  box-shadow: var(--inner), 0 14px 40px rgba(0,0,0,.35);
}
.handle:active{transform: translateY(0)}
.handle:focus-visible{
  outline: none;
  box-shadow: 0 0 0 2px rgba(140,220,255,.22), 0 0 0 6px rgba(255,170,245,.10), var(--inner);
}

.h1{
  margin:16px 0 12px;
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing:-.045em;
  line-height: 1.08;
}
.h1__grad{
  background: linear-gradient(90deg, rgba(140,220,255,1), rgba(255,170,245,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 16px;
  line-height:1.75;
  max-width: 70ch;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin: 14px 0 16px}

.trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top: 14px;
}
.trust__item{
  display:flex; gap:12px;
  padding:14px;
  border-radius: var(--r2);
  transition: transform .16s ease, box-shadow .16s ease;
}
.trust__item:hover{
  transform: translateY(-2px);
  box-shadow: var(--inner), 0 18px 50px rgba(0,0,0,.35);
}
.trust__icon{
  width:38px;height:38px;border-radius:18px;
  box-shadow: var(--inner);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.28), transparent 45%),
    linear-gradient(135deg, rgba(140,220,255,.18), rgba(255,170,245,.14));
  position:relative;
}
.trust__title{font-weight:900; letter-spacing:-.02em}
.trust__text{color:var(--muted2); font-size:13px; margin-top:3px}

.note{margin:12px 0 0; color: var(--muted2); font-size:12px; line-height:1.55}

/* Icons */
.i::after{
  content:"";
  position:absolute; inset:0;
  display:block;
  background-repeat:no-repeat;
  background-position:center;
  background-size: 20px 20px;
  opacity:.95;
}
.i--bolt::after{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13 2L3 14h7l-1 8 12-14h-7l-1-6z' stroke='white' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");}
.i--star::after{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2l2.9 6.5 7.1.7-5.4 4.7 1.6 7-6.2-3.6-6.2 3.6 1.6-7L2 9.2l7.1-.7L12 2z' stroke='white' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");}
.i--shield::after{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2l8 4v6c0 5-3.4 9.4-8 10-4.6-.6-8-5-8-10V6l8-4z' stroke='white' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");}

/* Service icons */
.card__icon{
  width:46px;height:46px;border-radius:20px;
  box-shadow: var(--inner);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.30), transparent 45%),
    linear-gradient(135deg, rgba(140,220,255,.18), rgba(255,170,245,.14));
  position:relative;
  flex: 0 0 auto;
}
.i--insta::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5z' stroke='white' stroke-width='1.8'/%3E%3Cpath d='M12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8z' stroke='white' stroke-width='1.8'/%3E%3Cpath d='M17.5 6.5h.01' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");}
.i--tiktok::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14 3v11.2a3.8 3.8 0 1 1-3-3.7' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 6c1.2 2 3 3.4 5.5 3.4v-3.4c-1.2 0-2.3-.5-3-1.4V3' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.i--tg::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 3L2 12l7 3 3 7 9-19z' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.i--yt::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 8.5c0-2-2-3-4-3H7C5 5.5 3 6.5 3 8.5v7c0 2 2 3 4 3h10c2 0 4-1 4-3v-7z' stroke='white' stroke-width='1.8'/%3E%3Cpath d='M11 10l4 2-4 2v-4z' fill='white'/%3E%3C/svg%3E");}
.i--reviews::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v8z' stroke='white' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M8 9h8M8 13h6' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");}
.i--puzzle::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 3h6v4a2 2 0 1 1 4 0v4h-4v4h4v4H9v-4a2 2 0 1 1-4 0v-4h4V7H5V3h4z' stroke='white' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");}
.i--x::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 1200 1227' fill='none'%3E%3Cpath d='M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z' fill='white'/%3E%3C/svg%3E");
  background-size: 18px 18px;
}

/* Visual */
.hero__visual{position:relative}
.visual-card{
  position:relative;
  border-radius: var(--r1);
  overflow:hidden;
  transform: translateZ(0);
}
.visual-card__frame{
  position:absolute; inset:10px;
  border-radius: calc(var(--r1) - 10px);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  pointer-events:none;
  z-index:2;
}
.visual-card__img{
  width:100%;
  height: 430px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.02);
}
.visual-card__badge{
  position:absolute; left:14px; bottom:14px;
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(10,12,22,.45);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--inner);
  color: rgba(255,255,255,.92);
  z-index:3;
}
.badge-dot{
  width:10px;height:10px;border-radius:50%;
  background: linear-gradient(135deg, rgba(140,220,255,1), rgba(255,170,245,1));
  box-shadow: 0 0 18px rgba(140,220,255,.22);
}

.visual-mini{
  position:absolute;
  right:16px;
  bottom:16px;
  width:min(320px, calc(100% - 32px));
  padding:14px 14px 12px;
  border-radius: var(--r2);
  z-index:4;
  background: rgba(10,12,22,.55);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--inner), 0 18px 50px rgba(0,0,0,.35);
}
.mini__title{font-weight:950; margin-bottom:10px; letter-spacing:-.02em}
.mini__rows{display:grid; gap:8px}
.mini__row{display:flex; justify-content:space-between; color:rgba(255,255,255,.92); font-weight:800}
.mini__muted{color:var(--muted2); font-weight:700}
.mini__hint{margin-top:10px; color:var(--muted2); font-size:12px}

/* Sections */
.section{padding:64px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section__head{margin-bottom:18px}
.h2{
  margin:0 0 8px;
  letter-spacing:-.03em;
  font-size: clamp(26px, 3vw, 34px);
}
.sub{margin:0; color:var(--muted); line-height:1.75; max-width: 82ch}

/* Breadcrumb UI */
.breadcrumb{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color: var(--muted2);
  font-weight: 800;
}
.breadcrumb a{
  color: rgba(255,255,255,.88);
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--inner);
}
.breadcrumb a:hover{background: rgba(255,255,255,.07)}
.breadcrumb .crumb{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* Chips */
.networks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 18px;
}
.chip{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:rgba(255,255,255,.88);
  cursor:pointer;
  font-weight:900;
  letter-spacing:-.01em;
  box-shadow: var(--inner);
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}
.chip:hover{transform: translateY(-1px); background: rgba(255,255,255,.08)}
.chip.is-active{
  border-color: rgba(255,255,255,.18);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.16), transparent 45%),
    linear-gradient(135deg, rgba(140,220,255,.14), rgba(255,170,245,.12));
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.card{
  position: relative;
  padding:16px;
  padding-bottom: 74px;
  border-radius: var(--r1);
  transition: transform .16s ease, box-shadow .16s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--inner), 0 22px 60px rgba(0,0,0,.40);
}
.card__top{display:flex; gap:12px; align-items:center}
.card__title{margin:0; font-size:18px; letter-spacing:-.02em}
.card__muted{color:var(--muted2); font-size:13px; margin-top:3px}
.card__list{margin:14px 0 14px; padding-left:18px; color:var(--muted); line-height:1.65}
.card__bottom{
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 8px;
}
.card__bottom > *{min-width:0}
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.86);
  font-weight:900;
  font-size:12px;
  box-shadow: var(--inner);
}

/* Floating CTA pill */
.card__cta{
  position:absolute;
  right:14px;
  bottom:14px;
  height:44px;
  min-width: 148px;
  padding: 0 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.22), transparent 45%),
    linear-gradient(135deg, rgba(140,220,255,.20), rgba(255,170,245,.16));
  box-shadow: var(--inner), 0 18px 50px rgba(0,0,0,.38);
  font-weight:950;
  letter-spacing:-.01em;
  color: rgba(255,255,255,.95);
  user-select:none;
  white-space: nowrap;
  transition: box-shadow .16s ease, border-color .16s ease, filter .16s ease, background .16s ease;
  transform: translateZ(0);
  overflow:hidden;
}
.card__cta::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  transform: translateX(-120%);
  opacity:.75;
  pointer-events:none;
}
.card__cta .cta__arrow{opacity:.8; font-weight:950; transform: translateY(-.5px)}
.card:hover .card__cta{
  border-color: rgba(255,255,255,.22);
  box-shadow: var(--inner), 0 22px 60px rgba(0,0,0,.45);
  filter: saturate(1.05);
}
.card:hover .card__cta::before{
  transform: translateX(120%);
  transition: transform .55s ease;
}
.card__cta:focus-visible{
  outline:none;
  box-shadow: 0 0 0 2px rgba(140,220,255,.22), 0 0 0 6px rgba(255,170,245,.10), var(--inner), 0 18px 50px rgba(0,0,0,.40);
}

/* SEO block */
.seo{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--r1);
}
.seo__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top: 10px;
}
.seo p{margin:0; color:var(--muted); line-height:1.75}
.seo h3{margin:0 0 10px; letter-spacing:-.02em}
.klist{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}
.links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 12px;
}
.linkpill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: var(--inner);
  color: rgba(255,255,255,.9);
  font-weight: 900;
}
.linkpill:hover{background: rgba(255,255,255,.08)}

/* CTA lines etc (same as before) */
.cta-line{
  margin-top:16px;
  padding:16px;
  border-radius: var(--r1);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.cta-line__title{font-weight:950; letter-spacing:-.02em}
.cta-line__text{color:var(--muted2); font-size:13px; margin-top:3px}

/* Topup / panel / how / faq / footer (kept from previous) */
.topup{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-top: 18px;
}
.topup__btn{
  position:relative;
  text-align:left;
  padding:14px;
  border-radius: var(--r1);
  cursor:pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.topup__btn:hover{transform: translateY(-2px); box-shadow: var(--inner), 0 18px 50px rgba(0,0,0,.35);}
.topup__btn.is-popular{
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.16), transparent 45%),
    linear-gradient(135deg, rgba(140,220,255,.16), rgba(255,170,245,.12));
  border-color: rgba(255,255,255,.18);
}
.topup__btn.is-selected{border-color: rgba(255,255,255,.22); box-shadow: var(--inner), 0 22px 60px rgba(0,0,0,.42);}
.topup__btn.is-selected::after{
  content:"✓";
  position:absolute;
  right:12px; bottom:12px;
  width:28px;height:28px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-weight:950;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--inner);
}
.topup__rub{display:block; font-weight:950; font-size:18px; letter-spacing:-.01em}
.topup__stars{display:block; margin-top:6px; color:var(--muted2); font-weight:800}
.topup__badge{
  position:absolute; right:12px; top:12px;
  font-size:12px; font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,12,22,.35);
  box-shadow: var(--inner);
}

.panel{
  margin-top: 16px;
  padding:16px;
  border-radius: var(--r1);
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  align-items:start;
}
.h3{margin:0 0 10px; letter-spacing:-.02em}
.steps{margin:0; padding-left:18px; color:var(--muted); line-height:1.75}
.panel__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}

.receipt{border-radius: var(--r1); padding:16px;}
.receipt__head{display:flex; justify-content:space-between; align-items:center; margin-bottom:10px}
.receipt__title{font-weight:950; letter-spacing:-.02em}
.receipt__pill{
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.9);
  font-weight:900; font-size:12px;
  box-shadow: var(--inner);
}
.receipt__row{display:flex; justify-content:space-between; padding:10px 0; border-top:1px dashed rgba(255,255,255,.12); color:rgba(255,255,255,.92)}
.receipt__hint{color:var(--muted2); font-size:12px; line-height:1.55; margin:10px 0 12px}

.how{display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:14px; margin-top: 18px;}
.how__item{padding:16px; border-radius: var(--r1); display:flex; gap:12px; transition: transform .16s ease, box-shadow .16s ease;}
.how__item:hover{transform: translateY(-2px); box-shadow: var(--inner), 0 22px 60px rgba(0,0,0,.38);}
.how__num{
  width:42px;height:42px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  font-weight:950;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.25), transparent 45%),
    linear-gradient(135deg, rgba(140,220,255,.16), rgba(255,170,245,.12));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--inner);
}
.how__body p{margin:0; color:var(--muted); line-height:1.7}

.big-cta{
  margin-top:16px;
  padding:18px;
  border-radius: var(--r1);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.14), transparent 45%),
    linear-gradient(135deg, rgba(140,220,255,.12), rgba(255,170,245,.10));
}
.big-cta__title{margin:0; font-weight:950; letter-spacing:-.02em}
.big-cta__text{margin:6px 0 0; color:rgba(255,255,255,.86); line-height:1.6}

.faq{display:grid; gap:12px; margin-top:18px}
.faq__item{border-radius: var(--r1); padding:14px 16px; transition: transform .16s ease, box-shadow .16s ease;}
.faq__item:hover{transform: translateY(-1px); box-shadow: var(--inner), 0 18px 50px rgba(0,0,0,.34);}
.faq__item summary{cursor:pointer; font-weight:950; letter-spacing:-.01em}
.faq__item p{margin:10px 0 0; color:var(--muted); line-height:1.7}

.footer-cta{margin-top:16px}
.footer-cta__hint{margin-top:10px; color:var(--muted2); text-align:center}

.footer{padding:22px 0; border-top:1px solid rgba(255,255,255,.08); background: rgba(7,9,20,.55);}
.footer__inner{display:flex; justify-content:space-between; align-items:flex-start; gap:12px}
.footer__muted{color:var(--muted2); font-size:13px; margin-top:8px; line-height:1.6}
.footer__sep{opacity:.5; margin:0 8px}
.footer__right{display:flex; gap:14px; color:var(--muted)}
.footer__right a{padding:8px 10px; border-radius:999px}
.footer__right a:hover{color:var(--text); background: rgba(255,255,255,.06)}

/* Reveal */
.reveal{opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease;}
.reveal.is-in{opacity: 1; transform: translateY(0);}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{transition:none !important; animation:none !important}
  .reveal{opacity:1; transform:none}
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; gap:18px}
  .visual-card__img{height: 380px}
  .visual-mini{position:relative; right:auto; bottom:auto; width:100%; margin-top:12px}
  .cards{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .topup{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .panel{grid-template-columns: 1fr}
  .how{grid-template-columns: 1fr}
  .trust{grid-template-columns: 1fr}
  .seo__grid{grid-template-columns: 1fr}
  .footer__inner{flex-direction:column}
}
@media (max-width: 760px){
  .nav{display:none}
  .burger{display:inline-block}
  .mobile-nav.is-open{display:block}
  .cta-line{flex-direction:column; align-items:stretch}
  .big-cta{flex-direction:column; align-items:stretch}
}
@media (max-width: 520px){
  .handle{display:block; margin:12px 0 0; width: fit-content;}
  .card{padding-bottom: 86px;}
  .card__cta{
    left:14px;
    right:14px;
    min-width: 0;
    width: auto;
  }
  .card__bottom{justify-content:flex-start;}
}
