:root{
  --bg:#ffffff;
  --panel:rgba(255,255,255,.92);
  --panel2:rgba(255,255,255,.80);
  --text:rgba(2,6,23,.92); /* slate-950-ish */
  --muted:rgba(2,6,23,.68);
  --line:rgba(2,6,23,.10);
  --brand1:#22c55e;
  --brand2:#06b6d4;
  --brand3:#a855f7;
  --warn:#f59e0b;
  --danger:#ef4444;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 12% 0%, rgba(34,197,94,.12), transparent 55%),
    radial-gradient(900px 700px at 90% 8%, rgba(6,182,212,.10), transparent 55%),
    radial-gradient(900px 600px at 70% 92%, rgba(168,85,247,.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 55%, #ffffff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans", "Noto Sans Devanagari", "Segoe UI Emoji";
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}

.container{max-width:1180px; padding:0 18px; margin:0 auto}
.grid{display:grid; gap:18px}
.row{display:flex; gap:14px; flex-wrap:wrap}
.spacer{height:26px}
.section{padding:54px 0}
.section.compact{padding:34px 0}

.chip{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid var(--line);
  background:rgba(2,6,23,.03);
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
.chip b{color:var(--text); font-weight:650}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(2,6,23,.12);
  background:rgba(255,255,255,.86);
  color:var(--text);
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.btn:hover{transform:translateY(-1px); background:#ffffff; border-color:rgba(2,6,23,.16)}
.btn.primary{
  border-color:rgba(6,182,212,.35);
  background:linear-gradient(135deg, rgba(34,197,94,.18), rgba(6,182,212,.14));
}
.btn.primary:hover{border-color:rgba(6,182,212,.50)}
.btn.ghost{background:transparent}
.btn.small{padding:9px 11px; border-radius:12px; font-size:14px}

.glass{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card{
  padding:18px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:22px;
}
.card.soft{background:rgba(2,6,23,.03)}
.card h3{margin:0 0 8px; font-size:18px}
.muted{color:var(--muted)}
.kpi{
  padding:14px 14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(2,6,23,.02);
}
.kpi .num{font-size:22px; font-weight:800; letter-spacing:.2px}
.kpi .lbl{font-size:13px; color:var(--muted)}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.78);
  border-bottom:1px solid rgba(2,6,23,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.infoStrip{
  border-bottom:1px solid rgba(2,6,23,.08);
  background:linear-gradient(90deg, rgba(34,197,94,.08), rgba(6,182,212,.06), rgba(168,85,247,.06));
}
.infoStripInner{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:8px 0;
  flex-wrap:nowrap;
  white-space:nowrap;
  overflow:hidden;
}
.infoItems{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:nowrap;
  white-space:nowrap;
  overflow:hidden;
  color:var(--muted);
  font-size:13px;
}
.infoItem{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(2,6,23,.08);
  background:rgba(255,255,255,.72);
}
.infoIcon{
  width:16px;
  height:16px;
  color:rgba(2,6,23,.74);
}
.infoItem a{color:inherit}
.infoItem a:hover{color:var(--text); text-decoration:underline}
.infoDot{
  width:8px; height:8px; border-radius:50%;
  background:linear-gradient(135deg, var(--brand1), var(--brand2));
}
.waLink{
  border-color:rgba(34,197,94,.20);
  background:rgba(34,197,94,.10);
}
.waLink .infoIcon{color:rgba(22,163,74,.90)}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.logo{
  width:40px; height:40px; border-radius:14px;
  background:
    radial-gradient(10px 10px at 30% 30%, rgba(255,255,255,.9), transparent 60%),
    linear-gradient(135deg, rgba(34,197,94,.95), rgba(6,182,212,.85), rgba(168,85,247,.70));
  box-shadow: 0 12px 40px rgba(34,197,94,.14);
  border:1px solid rgba(2,6,23,.10);
}
.brand .name{font-weight:900; letter-spacing:.2px}
.brand .tag{font-size:12px; color:var(--muted)}

.navlinks{
  display:flex; align-items:center; gap:8px;
  flex-wrap:wrap;
}
.navlinks a{
  padding:9px 11px; border-radius:12px;
  border:1px solid transparent;
  color:var(--muted);
}
.navlinks a:hover{color:var(--text); background:rgba(2,6,23,.03); border-color:rgba(2,6,23,.10)}
.navlinks a.active{color:var(--text); background:rgba(2,6,23,.04); border-color:rgba(2,6,23,.12)}

.hero{
  padding:26px 0 0;
}
.heroWrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}
.heroH{
  font-size:42px;
  line-height:1.12;
  margin:10px 0 10px;
  letter-spacing:-.5px;
}
.heroP{color:var(--muted); margin:0 0 16px; font-size:16px}
.gradText{
  background:linear-gradient(90deg, rgba(34,197,94,1), rgba(6,182,212,1), rgba(168,85,247,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.heroMedia{
  overflow:hidden;
  position:relative;
  padding:0;
}
.heroMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.95;
  transform:scale(1.02);
}
.heroMedia:after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.00), rgba(255,255,255,.45)),
    radial-gradient(600px 260px at 20% 10%, rgba(34,197,94,.18), transparent 55%);
}
.heroActions{display:flex; gap:10px; flex-wrap:wrap}
.heroKpis{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin-top:14px}

.mediaCard{
  overflow:hidden;
  display:grid;
  grid-template-columns: 1fr;
  min-height:280px;
}
.mediaCard .pad{padding:18px}
.mediaCard .imgWrap{position:relative}
.mediaCard .imgWrap img{height:240px; width:100%; object-fit:cover}
.mediaCard .imgWrap:after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.00), rgba(255,255,255,.55));
}

.stars{display:inline-flex; gap:3px; vertical-align:middle}
.star{width:16px; height:16px; fill:rgba(245,158,11,.95)}
.ratingLine{display:flex; align-items:center; justify-content:space-between; gap:10px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(2,6,23,.10);
  background:rgba(2,6,23,.03);
  padding:10px 12px;
  border-radius:16px;
}

.form{
  display:grid;
  gap:12px;
}
label{font-size:13px; color:var(--muted)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(2,6,23,.14);
  background:#ffffff;
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, select:focus, textarea:focus{border-color:rgba(6,182,212,.55); box-shadow:0 0 0 4px rgba(6,182,212,.10)}
.help{font-size:12px; color:var(--muted)}
.err{color:rgba(239,68,68,.98); font-size:12px; display:none}
.ok{color:rgba(34,197,94,.98); font-size:13px}
.two{display:grid; grid-template-columns:1fr 1fr; gap:12px}

.captchaBox{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:12px 12px;
  border-radius:16px;
  border:1px dashed rgba(2,6,23,.18);
  background:rgba(2,6,23,.02);
}
.captchaQ{font-weight:800; letter-spacing:.2px}

.footer{
  border-top:1px solid rgba(2,6,23,.10);
  background:rgba(255,255,255,.86);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:18px;
  padding:26px 0;
}
.footer small{color:var(--muted)}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.cookieBar{
  position:fixed; left:14px; right:14px; bottom:14px;
  z-index:80;
  display:none;
}
.cookieInner{
  padding:14px;
  display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
}
.cookieInner .txt{color:var(--muted); font-size:13px}
.cookieInner .txt b{color:var(--text)}

@media (max-width: 980px){
  .heroWrap{grid-template-columns:1fr}
  .heroH{font-size:36px}
  .heroKpis{grid-template-columns:1fr 1fr 1fr}
  .footerGrid{grid-template-columns:1fr; }
}
@media (max-width: 680px){
  .heroKpis{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
}

