:root {
  --night-deep: #0e1136;
  --night-mid: #251a5c;
  --night-high: #4d2985;
  --gold: #ffc74d;
  --gold-deep: #ed9424;
  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.68);
  --text-3: rgba(255, 255, 255, 0.42);
  --card: rgba(255, 255, 255, 0.07);
  --stroke: rgba(255, 255, 255, 0.13);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Baloo Bhaijaan 2', system-ui, -apple-system, sans-serif;
  background: linear-gradient(160deg, var(--night-high) 0%, var(--night-mid) 38%, var(--night-deep) 100%) fixed;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}
.stars { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.stars i { position: absolute; background: #fff; border-radius: 50%; opacity: .25; animation: tw 3.4s ease-in-out infinite; }
@keyframes tw { 50% { opacity: .65; transform: scale(1.25);} }
main { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 0 22px; }
nav { display: flex; align-items: center; gap: 14px; padding: 22px 0; }
nav img { width: 46px; height: 46px; border-radius: 12px; }
nav .name { font-size: 1.5rem; font-weight: 700; letter-spacing: .5px; }
nav .lang { margin-inline-start: auto; color: var(--gold); text-decoration: none; font-weight: 600; border: 1px solid var(--stroke); padding: 7px 16px; border-radius: 999px; }
nav .lang:hover { background: var(--card); }
.hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; padding: 44px 0 70px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.15; font-weight: 800; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.sub { margin: 18px 0 28px; font-size: 1.15rem; color: var(--text-2); max-width: 34rem; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-block; padding: 14px 30px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 1.05rem; }
.btn.gold { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); color: #131029; box-shadow: 0 8px 26px rgba(237,148,36,.35); }
.btn.ghost { color: var(--text); border: 1px solid var(--stroke); background: var(--card); }
.soon { font-size: .85rem; color: var(--text-3); }
.phone { width: 100%; max-width: 330px; margin: 0 auto; display: block; border-radius: 38px; border: 1px solid var(--stroke); box-shadow: 0 30px 70px rgba(0,0,0,.55); }
section { padding: 56px 0; }
.kicker { color: var(--gold); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); font-weight: 800; margin: 6px 0 14px; }
.lead { color: var(--text-2); max-width: 46rem; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.card { background: var(--card); border: 1px solid var(--stroke); border-radius: 22px; padding: 24px; }
.card .num { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #131029; font-weight: 800; font-size: 1.1rem; margin-bottom: 14px; }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { color: var(--text-2); font-size: .95rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split img { width: 100%; border-radius: 26px; border: 1px solid var(--stroke); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badge { border: 1px solid var(--stroke); background: var(--card); color: var(--text-2); padding: 7px 15px; border-radius: 999px; font-size: .9rem; }
.badge b { color: var(--gold); font-weight: 700; }
ul.checks { list-style: none; margin-top: 18px; }
ul.checks li { padding-inline-start: 30px; position: relative; margin-bottom: 10px; color: var(--text-2); }
ul.checks li::before { content: '✦'; position: absolute; inset-inline-start: 0; color: var(--gold); }
.partner { background: linear-gradient(135deg, rgba(255,199,77,.12), rgba(255,255,255,.04)); border: 1px solid rgba(255,199,77,.3); border-radius: 26px; padding: 40px; }
footer { padding: 46px 0 60px; border-top: 1px solid var(--stroke); margin-top: 40px; color: var(--text-3); font-size: .92rem; }
footer .links { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 14px; }
footer a { color: var(--text-2); text-decoration: none; }
footer a:hover { color: var(--gold); }
.legal { max-width: 760px; margin: 0 auto; padding: 30px 22px 70px; }
.legal h1 { font-size: 2rem; margin: 20px 0; }
.legal h2 { font-size: 1.2rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--text-2); }
.legal ul { padding-inline-start: 22px; }
@media (max-width: 820px) {
  .hero, .split { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .hero { padding-top: 18px; }
  .phone { max-width: 260px; }
}
