:root {
  --navy: #0e1c4e;
  --navy-light: #16266b;
  --orange: #f5a623;
  --orange-dark: #e08e0b;
  --cream: #fdf8ef;
  --cream-alt: #f6efe0;
  --ink: #1c2340;
  --muted: #5a6178;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(14, 28, 78, 0.08);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans Devanagari", "Noto Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(14, 28, 78, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 46px;
  height: 46px;
}
.brand-logo-sm { width: 32px; height: 32px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--orange-dark);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid rgba(14, 28, 78, 0.15);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
}
.lang-toggle .lang-sep { color: rgba(14,28,78,0.3); }
.lang-toggle .lang-option { padding: 2px 4px; opacity: 0.45; }
.lang-toggle .lang-option.active { opacity: 1; color: var(--orange-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.4);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #1eb959; }
.icon-wa { width: 20px; height: 20px; }

/* ---------- Icons ---------- */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon-heart-inline {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  color: var(--orange);
}

.icon-hero {
  width: 30px;
  height: 30px;
  color: var(--navy);
}

.icon-card {
  width: 26px;
  height: 26px;
}

.icon-doc {
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.icon-bell-inline {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
}

.icon-pin-inline {
  width: 14px;
  height: 14px;
  vertical-align: -1px;
  color: var(--orange);
}

.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-alt) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-location {
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 8px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 800;
}
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--orange); }

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-light);
  margin: 0 0 14px;
}

.hero-desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 56ch;
  margin: 0 0 26px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-banner {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow);
}
.trust-banner .icon-shield { width: 30px; height: 30px; flex: none; color: var(--orange); }
.trust-banner p { margin: 0; font-weight: 700; font-size: 1.05rem; }
.trust-banner p span { display: block; }

.hero-icons {
  display: flex;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  font-size: 1.6rem;
}

/* ---------- Sections ---------- */
.section { padding: 60px 0; }
.section-alt { background: var(--white); }

.section-title {
  text-align: center;
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 36px;
}

.grid { display: grid; gap: 22px; }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.align-top { align-items: start; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 28, 78, 0.06);
}

.card-icon {
  font-size: 1.9rem;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-alt);
  color: var(--orange-dark);
  font-weight: 800;
}

.card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 8px;
}

.card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Panels (who can join / documents / commitment) ---------- */
.panel {
  background: var(--cream-alt);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
}

.panel-dark {
  background: var(--navy);
  color: #fff;
}

.panel-title {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 18px;
  font-weight: 800;
}
.panel-dark .panel-title { color: #fff; }

.check-list, .doc-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.check-list li, .doc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
}

.tick {
  color: #1ea44a;
  font-weight: 800;
  flex: none;
}
.on-dark .tick { color: var(--orange); }

.doc-icon { font-size: 1.2rem; flex: none; }

.note {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}
.panel-dark .note { color: rgba(255,255,255,0.75); }

.verified-seal {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px dashed var(--orange);
}
.seal-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: none;
}
.verified-seal div strong { display: block; color: var(--navy); font-size: 0.95rem; }
.verified-seal div span { display: block; font-size: 0.8rem; color: var(--muted); }

.commit-quote {
  margin: 18px 0 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
}

/* ---------- Quote band ---------- */
.quote-band {
  background: var(--orange);
  padding: 34px 0;
}
.quote-inner {
  text-align: center;
}
.quote-inner p {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
}
.quote-inner .icon-heart-inline { margin-right: 8px; }
.hero-location .icon-heart-inline { margin-left: 6px; }
.quote-secondary {
  margin-top: 10px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.step {
  text-align: center;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.1rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.join-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.stay-tuned {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.badge-stay-tuned {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--navy);
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}
.footer-inner p { margin: 0; font-size: 0.9rem; }
.footer-whatsapp {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.footer-whatsapp:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 2rem; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .header-inner { justify-content: center; text-align: center; }
  .hero-icons { font-size: 1.3rem; }
}
