/* ──────────────── TOKENS ──────────────── */
:root {
  --ink:      #0b0f1a;
  --paper:    #f5f3ee;
  --accent:   #e84c2b;
  --accent2:  #1a6bff;
  --muted:    #7a7a8a;
  --card-bg:  #ffffff;
  --border:   rgba(11,15,26,.10);
  --radius:   18px;
  --mono:     'Noto Sans Devanagari', sans-serif;
  --display:  'Noto Sans Devanagari', sans-serif;
  --deva:     'Noto Sans Devanagari', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--display);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* ──────────────── TOPBAR ──────────────── */
#topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--ink);
  color: #fff;
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 48px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .03em;
}
#topbar a { color: var(--accent); text-decoration: none; }
.topbar-socials a {
  color: #fff; margin-left: 14px; text-decoration: none;
  transition: color .2s;
}
.topbar-socials a:hover { color: var(--accent); }

/* ──────────────── HEADER / NAV ──────────────── */
header {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 999;
  background: rgba(245,243,238,.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 66px;
}
.logo {
  font-family: var(--display);
  font-size: 22px; font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); display: inline-block; }
nav { display: flex; align-items: center; gap: 6px; }
nav a {
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--ink); text-decoration: none;
  padding: 6px 14px; border-radius: 100px;
  transition: background .2s, color .2s;
}
nav a:hover, nav a.active { background: var(--ink); color: #fff; }
nav .btn-pay {
  background: var(--accent); color: #fff !important;
  padding: 8px 20px; border-radius: 100px;
}
nav .btn-pay:hover { background: #c93d22; }
nav .btn-reg {
  background: var(--accent2); color: #fff !important;
  padding: 8px 20px; border-radius: 100px;
}
nav .btn-reg:hover { background: #1253cc; }

/* ──────────────── HERO ──────────────── */
#hero {
  min-height: 100vh;
  padding-top: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.hero-left {
  padding: 60px 60px 60px 80px;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero-tag::before { content:''; width:6px; height:6px; border-radius:50%; background:#fff; }
h1.hero-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}
h1.hero-title span { color: var(--accent); }
.hero-marathi {
  font-family: var(--deva);
  font-size: 19px; font-weight: 600;
  color: var(--muted); margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(11,15,26,.18);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(11,15,26,.22); }
.btn-outline {
  background: transparent; color: var(--ink);
  font-size: 14px; font-weight: 700;
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; letter-spacing: .02em;
  border: 2px solid var(--ink);
  transition: background .2s, color .2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* Hero right – graphic panel */
.hero-right {
  background: var(--ink);
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.1);
}
.orbit-ring:nth-child(1) { width:200px; height:200px; animation: spin 12s linear infinite; }
.orbit-ring:nth-child(2) { width:340px; height:340px; animation: spin 18s linear infinite reverse; }
.orbit-ring:nth-child(3) { width:480px; height:480px; animation: spin 28s linear infinite; }
.orbit-ring:nth-child(4) { width:620px; height:620px; animation: spin 40s linear infinite reverse; }
.orbit-dot {
  position: absolute; width: 10px; height: 10px;
  border-radius: 50%; background: var(--accent);
  top: -5px; left: 50%; transform: translateX(-50%);
}
.orbit-center {
  position: relative; z-index: 10;
  text-align: center; color: #fff;
}
.orbit-center .big-num {
  font-size: 90px; font-weight: 800; line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #fff 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.orbit-center p { font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,.5); margin-top: 8px; }
.stat-pills {
  position: absolute; bottom: 48px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 12px; z-index: 10;
}
.stat-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 10px 22px;
  color: #fff; font-size: 12px; font-family: var(--mono);
  text-align: center;
}
.stat-pill strong { display: block; font-size: 20px; font-weight: 700; color: var(--accent); }

@keyframes spin { to { transform: rotate(360deg); } }

/* ──────────────── SECTION WRAPPER ──────────────── */
section { padding: 100px 80px; }
.section-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-family: var(--deva); font-size: 16px; color: var(--muted);
  max-width: 600px; line-height: 1.7; margin-bottom: 56px;
}

/* ──────────────── WHY US ──────────────── */
#why-us { background: var(--ink); color: #fff; }
#why-us .section-title { color: #fff; }
#why-us .section-label { color: var(--accent); }
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 36px;
  transition: background .3s, transform .3s;
}
.why-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.why-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.why-card p { font-family: var(--deva); font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ──────────────── ABOUT ──────────────── */
#about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-video {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 80px rgba(11,15,26,.15);
  aspect-ratio: 16/9;
}
.about-video iframe { width:100%; height:100%; border:none; display:block; }
.about-info h3 { font-size: 32px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 18px; }
.about-info p { font-family: var(--deva); font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.about-badge {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; margin-bottom: 16px;
}
.about-badge-icon {
  min-width: 44px; height: 44px; border-radius: 12px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.about-badge h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.about-badge p { font-size: 13px; color: var(--muted); margin: 0; font-family: var(--deva); }

/* ──────────────── SERVICES ──────────────── */
#services { background: #fff; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.service-card::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(232,76,43,.05), transparent);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { border-color: var(--accent); box-shadow: 0 8px 40px rgba(232,76,43,.1); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card .s-num {
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  letter-spacing: .1em; margin-bottom: 18px;
}
.service-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-family: var(--deva); font-size: 14px; color: var(--muted); line-height: 1.7; }
.service-icon { font-size: 36px; margin-bottom: 16px; }

/* ──────────────── PRICING ──────────────── */
#pricing { background: var(--paper); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 880px; margin: 0 auto; }
.pricing-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 44px;
  position: relative; transition: box-shadow .3s, transform .3s;
}
.pricing-card:hover { box-shadow: 0 16px 60px rgba(11,15,26,.1); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 48px rgba(232,76,43,.12);
}
.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
}
.plan-name { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.plan-users {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  margin-bottom: 28px;
}
.plan-features { list-style: none; margin-bottom: 36px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '✓'; color: var(--accent); font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(232,76,43,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}
.btn-purchase {
  display: block; text-align: center; width: 100%;
  background: var(--ink); color: #fff;
  font-weight: 700; font-size: 14px; letter-spacing: .02em;
  padding: 14px; border-radius: 100px; text-decoration: none;
  transition: background .2s;
}
.btn-purchase:hover { background: #232838; }
.pricing-card.featured .btn-purchase { background: var(--accent); }
.pricing-card.featured .btn-purchase:hover { background: #c93d22; }

/* ──────────────── FAQ ──────────────── */
#faq { background: #fff; }
.faq-list { max-width: 760px; }
details {
  border-bottom: 1.5px solid var(--border); padding: 20px 0;
}
details:first-child { border-top: 1.5px solid var(--border); }
summary {
  font-size: 16px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+'; font-size: 22px; font-weight: 400;
  color: var(--accent); flex-shrink: 0;
  transition: transform .3s;
}
details[open] summary::after { content: '−'; }
details p {
  font-family: var(--deva); font-size: 14px; color: var(--muted);
  line-height: 1.75; padding-top: 14px;
}

/* ──────────────── FOOTER ──────────────── */
footer {
  background: var(--ink); color: #fff;
  padding: 72px 80px 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 56px;
}
.footer-logo {
  font-size: 22px; font-weight: 800; letter-spacing: -.02em;
  margin-bottom: 14px; color: #fff;
}
.footer-tagline {
  font-family: var(--deva); font-size: 13px;
  color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 20px;
}
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: rgba(255,255,255,.55);
  margin-bottom: 8px; font-family: var(--mono);
}
.footer-contact-item span:first-child { color: var(--accent); flex-shrink: 0; }
footer h5 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; color: rgba(255,255,255,.4); }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 14px; transition: color .2s; }
footer ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,.3);
}

/* ──────────────── CONTACT FORM ──────────────── */
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-family: var(--display); font-size: 14px;
  background: #fff; color: var(--ink);
  transition: border-color .2s;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; }

/* ──────────────── ALERTS ──────────────── */
.alert { padding: 14px 20px; border-radius: 12px; margin-bottom: 24px; font-size: 14px; }
.alert-success { background: #d4f4dd; color: #1a6b35; border: 1px solid #a8e6b8; }
.alert-error   { background: #fde8e4; color: #a33020; border: 1px solid #f5b8ae; }

/* ──────────────── SCROLL ANIMATION ──────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vw; min-height: 300px; }
  .hero-left { padding: 40px 24px 40px 24px; }
  .about-grid, .why-grid, .services-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  section { padding: 64px 24px; }
  header { padding: 0 20px; }
  #topbar { padding: 8px 20px; font-size: 11px; }
  nav { display: none; }
}
