:root{
  --bg:#0b0b12;
  --card:#121225;
  --text:#f4f6ff;
  --muted:rgba(244,246,255,.72);
  --line:rgba(255,255,255,.10);
  --brand:#5865F2;
  --brand2:#7b83ff;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius:22px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 30% -10%, rgba(88,101,242,.25), transparent 60%),
              radial-gradient(1000px 600px at 80% 0%, rgba(123,131,255,.18), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

.container{width:min(1120px, 92%); margin:0 auto}
code{background:rgba(255,255,255,.08); padding:2px 8px; border-radius:10px}

a{color:inherit;text-decoration:none}
.muted{color:var(--muted)}
.small{font-size:.92rem}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:999;
  backdrop-filter: blur(14px);
  background: rgba(11,11,18,.72);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; gap:12px; align-items:center}
.brand__logo{width:42px;height:42px;border-radius:14px; object-fit:cover; border:1px solid var(--line)}
.brand__name{
  font-weight: 900;
  font-size: 1.6rem;   /* 👈 size bigger */
  letter-spacing: .5px;
}


.nav{display:flex; gap:18px; align-items:center}
.nav a{
  font-weight:600; font-size:.95rem;
  padding:10px 12px; border-radius:12px;
  color:rgba(244,246,255,.86);
}
.nav a:hover{background:rgba(255,255,255,.06)}

.menuBtn{
  display:none; width:46px; height:44px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:14px;
}
.menuBtn span{display:block; height:2px; margin:7px 10px; background:rgba(244,246,255,.9)}

/* Hero */
.hero{padding:56px 0 24px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:center;
}
.badge{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:999px;
  color:rgba(244,246,255,.85);
  font-weight:700;
  font-size:.88rem;
}
h1{font-size: clamp(2rem, 3.8vw, 3.1rem); line-height:1.15; margin:12px 0 10px}
.lead{font-size:1.05rem; color:rgba(244,246,255,.78); max-width: 58ch}

.heroImg{
  width:100%;
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:rgba(255,255,255,.03);
}

/* Buttons */
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  font-weight:800;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border:0;
}
.btn.ghost{
  background: transparent;
  border:1px dashed rgba(255,255,255,.22);
}

/* Chips */
.chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.chips span{
  font-size:.9rem;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:rgba(244,246,255,.78);
}

/* Sections */
.section{padding:54px 0}
.section.alt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section h2{font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom:10px}
.section p{margin-bottom: 14px}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.card h3{margin-bottom:6px}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}
.gallery img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

/* Steps */
.steps{display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:14px}
.step{
  display:flex; gap:12px; align-items:flex-start;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.step span{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(88,101,242,.22);
  border:1px solid rgba(88,101,242,.35);
  font-weight:900;
}
.note{
  margin-top:16px;
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(88,101,242,.30);
  background: rgba(88,101,242,.10);
}

/* FAQ */
.faq details{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px 16px;
  margin:12px 0;
}
.faq summary{cursor:pointer; font-weight:900}
.faq p{margin-top:10px; color:rgba(244,246,255,.78)}

/* CTA box */
.ctaBox{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:22px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(88,101,242,.18), rgba(255,255,255,.03));
}

/* Footer */
.footer{
  margin-top: 10px;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.footer__grid{
  padding:42px 0;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
}
.footer__title{font-weight:1000; font-size:1.2rem; margin-bottom:8px}
.footer__head{font-weight:900; margin-bottom:10px}
.footer__links{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.footer__links a{color:rgba(244,246,255,.82)}
.footer__links a:hover{text-decoration:underline}
.footer__bottom{
  padding:16px 0;
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid var(--line);
  color:rgba(244,246,255,.75);
}
.toTop{padding:8px 12px; border-radius:12px; border:1px solid var(--line); background:rgba(255,255,255,.03)}
.mini{display:flex; gap:14px; flex-wrap:wrap; margin-top:10px}

.footer__contact{
  display:flex;
  flex-direction:column;
  gap:14px;
  color:rgba(244,246,255,.85);
}

.footer__contact a{
  text-decoration:none;
}

.highlight{
  color:#ffe600; /* yellow like screenshot */
  font-weight:700;
}

.highlight:hover{
  text-decoration:underline;
}

/* Responsive */
@media (max-width: 950px){
  .hero__grid{grid-template-columns: 1fr; }
  .cards{grid-template-columns: 1fr 1fr}
  .gallery{grid-template-columns: 1fr 1fr}
  .steps{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr}
  .ctaBox{flex-direction:column; align-items:flex-start}
  .nav{display:none; position:absolute; top:70px; right:4%; left:4%;
    flex-direction:column; gap:6px; padding:12px; border-radius:18px;
    border:1px solid var(--line); background: rgba(11,11,18,.92);
  }
  .nav.show{display:flex}
  .menuBtn{display:block}
}
@media (max-width: 560px){
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .gallery img{height:210px}
}