:root{
  --bg:#0b0d14;
  --alt:#0f1220;
  --text:#e9ecff;
  --muted:#a8b0d6;
  --line:rgba(255,255,255,.10);
  --glass:rgba(255,255,255,.06);
  --brand:#7c5cff;
  --brand2:#2de2e6;
  --shadow: 0 12px 40px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 520px at 15% -10%, rgba(124,92,255,.38), transparent 55%),
    radial-gradient(800px 500px at 90% 0%, rgba(45,226,230,.20), transparent 55%),
    radial-gradient(700px 380px at 50% 110%, rgba(124,92,255,.12), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 18px}
.center{text-align:center}
.mt{margin-top:18px}
.tiny{font-size:12.5px}
.h3{font-size:20px;margin:0 0 10px}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,13,20,.62);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:66px; gap:14px;
}
.brand{display:flex; gap:10px; align-items:center}
.brand-mark{
  width:34px; height:34px; border-radius:11px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(124,92,255,.18);
  border:1px solid rgba(124,92,255,.35);
  font-weight:900; letter-spacing:.6px;
}
.brand-name{font-weight:900; letter-spacing:.2px}
.site-nav{display:flex; gap:16px; align-items:center}
.site-nav a{opacity:.92}
.site-nav a:hover{opacity:1}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding:8px 10px;
  border-radius:10px;
}

.hero{padding:64px 0 30px}
.hero-grid{display:grid; grid-template-columns:1.35fr .95fr; gap:22px; align-items:start}
.pill{
  display:inline-block;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
h1{font-size:44px;line-height:1.1;margin:12px 0}
.lead{color:var(--muted);font-size:18px;max-width:58ch}

.cta-row{display:flex; gap:12px; margin:18px 0 12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 16px;
  border-radius:12px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color:#08101a;
  font-weight:900;
  border:0;
  cursor:pointer;
  box-shadow: var(--shadow);
}
.btn:hover{filter:brightness(1.05)}
.btn-ghost{
  background: transparent;
  border:1px solid var(--line);
  color: var(--text);
  font-weight:800;
  box-shadow:none;
}
.btn-sm{padding:9px 12px;border-radius:11px;font-weight:900}
.btn-block{width:100%}

.glass{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow: var(--shadow);
}
.card{padding:18px}
.panel{padding:18px}
.notice{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(45,226,230,.22);
  background: rgba(45,226,230,.08);
  color: var(--muted);
}

.trust-row{display:flex; gap:12px; margin-top:14px; flex-wrap:wrap}
.trust-card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  min-width:130px;
  background: rgba(255,255,255,.02);
}
.trust-card strong{display:block;color:var(--text);font-size:18px}
.trust-card span{color:var(--muted);font-size:13px}

.section{padding:54px 0; border-top:1px solid var(--line)}
.section.alt{background: rgba(255,255,255,.03)}
.section-head{display:flex; align-items:end; justify-content:space-between; gap:18px; flex-wrap:wrap}
.section-head h2{margin:0; font-size:30px}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:16px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.grid4{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:18px}

.pkg{
  background: rgba(18,22,42,.7);
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
  position:relative;
}
.pkg.featured{outline:2px solid rgba(124,92,255,.6)}
.badge{
  position:absolute; top:14px; right:14px;
  background: rgba(124,92,255,.18);
  border:1px solid rgba(124,92,255,.35);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}
.price{font-size:28px; font-weight:950; margin:10px 0}
.price span{font-size:13px; color:var(--muted); font-weight:650; margin-left:8px}
.pkg ul{margin:10px 0 16px; padding-left:18px; color:var(--muted)}
.chip{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  background: rgba(45,226,230,.10);
  border:1px solid rgba(45,226,230,.18);
  font-size:12px;
  margin-left:10px;
  color: var(--text);
}
.pkg-block{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background: rgba(255,255,255,.02);
  margin:14px 0;
}
.price-row{
  display:flex; gap:12px; flex-wrap:wrap;
  margin:12px 0 14px;
}
.price-row > div{
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  min-width:210px;
  background: rgba(255,255,255,.02);
}
.price-row strong{display:block}
.price-row span{color:var(--muted)}

.steps{display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:18px}
.step{
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  background: rgba(255,255,255,.02);
}
.step span{
  display:inline-flex; width:34px; height:34px;
  border-radius:10px;
  align-items:center; justify-content:center;
  background: rgba(45,226,230,.14);
  border:1px solid rgba(45,226,230,.22);
  font-weight:950;
}
.step h4{margin:10px 0 6px}
.step p{margin:0;color:var(--muted)}

.check{list-style:none; padding:0; margin:12px 0 0}
.check li{margin:8px 0; padding-left:26px; position:relative; color:var(--muted)}
.check li::before{content:"✓"; position:absolute; left:0; top:0; color:var(--brand2); font-weight:950}

.timeline{list-style:none; padding:0; margin:10px 0}
.timeline li{margin:10px 0; color:var(--muted); padding-left:12px; border-left:2px solid rgba(124,92,255,.35)}
.timeline strong{color:var(--text)}

.faq details{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px 16px;
  margin:10px 0;
  background: rgba(255,255,255,.02);
}
.faq summary{cursor:pointer; font-weight:900}
.faq p{color:var(--muted); margin:10px 0 0}

.gallery-strip{
  display:grid;
  grid-template-columns:repeat(8,1fr);
  gap:10px;
  margin-top:18px;
}
.gallery-strip img{
  width:100%;
  height:96px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.filter-row{display:flex; gap:10px; flex-wrap:wrap; margin:6px 0 16px}
.chip-btn{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--text);
  cursor:pointer;
  font-weight:800;
}
.chip-btn.is-active{
  border-color: rgba(45,226,230,.35);
  background: rgba(45,226,230,.10);
}

.masonry{
  columns: 3 240px;
  column-gap: 14px;
}
.m-item{
  break-inside: avoid;
  margin: 0 0 14px;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background: rgba(255,255,255,.02);
}
.m-item img{width:100%; display:block}
.m-item figcaption{padding:10px 12px}

.form{
  padding:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.form label{display:flex; flex-direction:column; gap:6px; font-weight:850}
.form input,.form select,.form textarea{
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}
.form input:focus,.form select:focus,.form textarea:focus{border-color: rgba(124,92,255,.6)}
.form .full{grid-column:1 / -1}
.fieldset{
  grid-column:1 / -1;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
}
.fieldset legend{padding:0 6px; color: var(--muted); font-weight:900}
.checkline{display:flex; gap:10px; align-items:center; margin:8px 0; color: var(--muted); font-weight:750}
.summary{
  grid-column:1 / -1;
  border:1px solid rgba(45,226,230,.22);
  background: rgba(45,226,230,.06);
  border-radius:14px;
  padding:12px 14px;
}
.summary .row{display:flex; justify-content:space-between; gap:12px; margin:6px 0}
.summary .total{font-size:18px}
.btn-row{display:grid; grid-template-columns:1fr 1fr; gap:10px}

.page-hero{padding:34px 0 10px}
.site-footer{padding:28px 0; border-top:1px solid var(--line); background: rgba(0,0,0,.25)}
.footer-grid{display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:16px}
.footer-grid h4{margin:0 0 10px}
.footer-bottom{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-top:12px}

@media (max-width: 980px){
  h1{font-size:36px}
  .hero-grid{grid-template-columns:1fr}
  .grid4{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .masonry{columns: 2 240px}
  .site-nav{display:none}
  .nav-toggle{display:inline-flex}
  .site-nav.is-open{
    display:flex; flex-direction:column; align-items:flex-start;
    position:absolute; right:18px; top:66px;
    background: rgba(11,13,20,.95);
    border:1px solid var(--line);
    border-radius:14px;
    padding:14px;
    gap:12px;
    width:min(260px, calc(100vw - 36px));
  }
}
@media (max-width: 520px){
  .grid2{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid4{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .form{grid-template-columns:1fr}
  .btn-row{grid-template-columns:1fr}
  .gallery-strip{grid-template-columns:repeat(4,1fr)}
  .masonry{columns: 1 240px}
}