:root {
  --ink: #171a18;
  --ink-2: #242824;
  --paper: #f7f8f4;
  --white: #ffffff;
  --lime: #f4ff35;
  --lime-soft: #efffb2;
  --muted: #687069;
  --line: #dfe3dd;
  --danger: #8a2f2f;
  --danger-bg: #fff0ed;
  --shadow: 0 24px 70px rgba(23, 26, 24, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.lang-hi {
  font-family: "Noto Sans Devanagari", "Nirmala UI", Mangal, Inter, ui-sans-serif, system-ui, sans-serif;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
::selection { background: var(--lime); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 92px 0; }
.section--tight { padding: 62px 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--lime { background: var(--lime); }
.section--white { background: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(244, 255, 53, 0.18);
}
.section--lime .eyebrow::before { background: var(--ink); box-shadow: 0 0 0 6px rgba(23,26,24,.12); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.65rem, 7vw, 6.1rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.1rem, 4.5vw, 4.4rem); margin-bottom: 22px; }
h3 { font-size: clamp(1.2rem, 2.3vw, 1.65rem); margin-bottom: 12px; }
p { color: var(--muted); }
.section--dark p { color: #b8c0b9; }
.section--lime p { color: #333833; }
.lead { max-width: 720px; font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.text-center { text-align: center; }
.text-center .lead { margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(23,26,24,.08);
  background: rgba(247, 248, 244, 0.88);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.27rem;
}
.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: var(--lime);
  font-weight: 950;
}
.brand small {
  display: block;
  margin-left: 1px;
  font-size: .58rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
}
.main-nav a:hover { opacity: .62; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: var(--white);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: .2s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: var(--white); box-shadow: 0 12px 30px rgba(23,26,24,.15); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--ghost { background: transparent; border-color: rgba(23,26,24,.2); }
.btn--white { background: var(--white); color: var(--ink); }
.btn svg { width: 18px; height: 18px; }

.hero {
  position: relative;
  overflow: clip;
  padding: 70px 0 62px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -12%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,255,53,.35), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 28px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 span { position: relative; display: inline-block; }
.hero-copy h1 span::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: .03em;
  height: .18em;
  border-radius: 999px;
  background: var(--lime);
  z-index: -1;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 26px; }
.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  max-width: 600px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(23,26,24,.06);
  font-size: .9rem;
  color: var(--muted);
}
.hero-note svg { flex: 0 0 auto; margin-top: 2px; }
.hero-art { position: relative; }
.hero-art img { width: 100%; filter: drop-shadow(0 20px 55px rgba(23,26,24,.1)); }

.trust-strip { padding: 0 0 50px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(23,26,24,.06);
}
.trust-item { padding: 23px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: clamp(1.35rem, 2.6vw, 2rem); letter-spacing: -.04em; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.visual-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.visual-card img { width: 100%; }

.feature-list { display: grid; gap: 12px; margin: 28px 0 0; }
.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.feature-item:last-child { border-bottom: 0; }
.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--lime);
}
.icon-box svg { width: 22px; height: 22px; }
.feature-item p { margin: 3px 0 0; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
.card-grid--two { grid-template-columns: 1fr 1fr; }
.info-card {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(23,26,24,.08); }
.info-card .icon-box { margin-bottom: 28px; }
.info-card p { margin-bottom: 0; }
.section--dark .info-card { background: var(--ink-2); border-color: #353b36; }
.section--dark .info-card .icon-box { background: var(--lime); color: var(--ink); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.step {
  position: relative;
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(23,26,24,.12);
}
.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-weight: 900;
}
.step p { margin-bottom: 0; }

.comparison-wrap {
  overflow-x: auto;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}
.comparison { width: 100%; min-width: 690px; border-collapse: collapse; }
.comparison th, .comparison td { padding: 20px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.comparison th { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; background: #f0f2ed; }
.comparison tr:last-child td { border-bottom: 0; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  background: var(--lime-soft);
}
.badge--warn { background: #fff1d6; }

.risk-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 24px;
  margin-top: 34px;
  border-radius: 20px;
  border: 1px solid #efb6aa;
  background: var(--danger-bg);
}
.risk-box strong { display: block; margin-bottom: 5px; }
.risk-box p { margin: 0; color: #6c3831; }
.risk-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--danger);
  background: #ffd9d1;
}

.faq-list { max-width: 900px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 23px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}
.faq-question span:last-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  transition: transform .2s ease;
}
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 46px 22px 0; }
.faq-answer p { margin-bottom: 0; }
.faq-answer.is-open { display: block; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 32px;
  background: var(--lime);
  color: var(--ink);
}
.cta-panel p { margin-bottom: 0; color: #353b35; }

.site-footer { padding: 58px 0 32px; background: #101310; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 46px; }
.footer-brand p { max-width: 540px; color: #aeb6af; }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links a { color: #d9dfda; text-decoration: none; }
.footer-links a:hover { color: var(--lime); }
.footer-title { margin-bottom: 13px; font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; color: #8f988f; }
.footer-disclosure {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #2b302c;
  color: #929b93;
  font-size: .82rem;
}
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 22px; color: #788178; font-size: .8rem; }

.mobile-only { display: none; }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; gap: 8px; }
  .main-nav a { padding: 11px 8px; }
  .menu-toggle { display: block; }
  .header-actions .btn { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 780px; }
  .hero-art { max-width: 760px; margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .section--tight { padding: 48px 0; }
  .header-inner { min-height: 68px; }
  .brand small { display: none; }
  .lang-switch { padding: 9px 11px; font-size: .86rem; }
  .hero { padding-top: 46px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.25rem); }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 18px 16px; }
  .card-grid, .card-grid--two, .steps { grid-template-columns: 1fr; }
  .info-card { min-height: auto; }
  .cta-panel { grid-template-columns: 1fr; padding: 28px; }
  .cta-panel .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .risk-box { grid-template-columns: 1fr; }
  .faq-answer { padding-right: 0; }
  .mobile-only { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
