:root {
  --navy: #0b0b3c;
  --navy-2: #141448;
  --navy-3: #1f1f5f;
  --gold: #c79b3b;
  --gold-soft: #e8c56c;
  --slate: #616380;
  --text: #111222;
  --card: #ffffff;
  --muted: #f5f6fb;
  --shadow: 0 20px 40px rgba(11, 11, 60, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #f7f8ff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.top-strip {
  background: #101035;
  color: #d8defc;
  font-size: 0.9rem;
  padding: 0.4rem 0;
}

.strip-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.strip-links,
.strip-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.text-link {
  color: #d8defc;
  opacity: 0.9;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 11, 60, 0.9);
  backdrop-filter: blur(14px);
  color: #eef0ff;
  padding: 0.75rem 0;
  box-shadow: 0 10px 30px rgba(11, 11, 60, 0.25);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
}

.brand-tag {
  font-size: 0.75rem;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.35rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  gap: 0.35rem;
}

.nav-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lang-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.toggle-btn {
  background: transparent;
  border: none;
  color: #f6f7ff;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-weight: 600;
}

.toggle-btn.active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, #e07153, #f39c5c);
  color: #fff;
  box-shadow: 0 14px 32px rgba(240, 113, 83, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f7f7ff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.btn.outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(11, 11, 60, 0.2);
}

.btn.outline:hover {
  border-color: var(--navy);
}

.hero {
  background: radial-gradient(circle at 30% 40%, rgba(231, 183, 95, 0.18), rgba(11, 11, 60, 0) 35%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.08), rgba(11, 11, 60, 0) 32%),
    linear-gradient(135deg, #0b0b3c, #16163f 50%, #0d0d31);
  color: #f8f9ff;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 0%, rgba(255, 170, 110, 0.25), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 2.5rem;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin: 0.35rem 0 0.6rem;
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.hero-copy .lede {
  color: #d4d8f6;
  margin: 0 0 1.4rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.contact-inline {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 520px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-blob {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 20% 30%, rgba(231, 183, 95, 0.35), rgba(199, 155, 59, 0) 45%),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.18), rgba(199, 155, 59, 0) 55%),
    linear-gradient(135deg, #e07153, #c62552);
  border-radius: 38% 62% 56% 44% / 48% 34% 66% 52%;
  filter: drop-shadow(0 24px 50px rgba(198, 37, 82, 0.35));
  position: absolute;
  z-index: 0;
  opacity: 0.9;
}

.hero-image {
  width: min(420px, 70vw);
  border-radius: 32px;
  box-shadow: var(--shadow);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: 10%;
  left: -6%;
  background: #0e0e2d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 14px 28px rgba(11, 11, 60, 0.35);
}

.hero-badge img {
  width: 40px;
  height: 40px;
}

.badge-label {
  margin: 0;
  color: #d4d8f6;
  font-size: 0.9rem;
}

.badge-value {
  margin: 0;
  font-weight: 700;
}

.section {
  padding: 4rem 0;
}

.section.light {
  background: #f8f9ff;
}

.section.muted {
  background: #f1f3fb;
}

.section.gradient {
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(120deg, #0c0c36, #1c1c52);
  color: #f5f7ff;
  position: relative;
}

.section.gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 25%, rgba(255, 199, 134, 0.35), transparent 45%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0.3rem 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.section-subtitle {
  color: #5d6079;
  margin: 0;
}

.section.gradient .section-subtitle {
  color: #d8dcff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--card);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 16px 30px rgba(11, 11, 60, 0.08);
  border: 1px solid rgba(11, 11, 60, 0.06);
}

.card h3 {
  margin: 0.2rem 0;
}

.card p {
  margin: 0.3rem 0 0.6rem;
  color: #51546e;
}

.card.inset {
  background: rgba(255, 255, 255, 0.06);
  color: #f4f6ff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.card.inset.alt {
  background: rgba(11, 11, 60, 0.35);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.story-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(11, 11, 60, 0.08);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 4px;
}

.list-title {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}

.mini-title {
  margin: 0.2rem 0;
  font-weight: 700;
  color: var(--navy);
}

.card.compact {
  padding: 1.1rem 1.2rem;
}

.section.muted .card,
.section.light .card {
  color: var(--text);
}

.steps {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.2rem;
  border-radius: 14px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(231, 183, 95, 0.18);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.assurance {
  color: #d8dcff;
  margin: 0.6rem 0 0;
}

.expect {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.35rem;
}

.expect li::before {
  content: '• ';
  color: var(--gold);
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.faq-item {
  background: #fff;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(11, 11, 60, 0.08);
}

.faq-item h3 {
  margin: 0 0 0.35rem;
}

.checklist .dot {
  margin-top: 6px;
}

.cta-panel {
  display: grid;
  gap: 0.4rem;
}

.section.cta {
  background: radial-gradient(circle at 20% 40%, rgba(199, 155, 59, 0.14), transparent 35%),
    linear-gradient(120deg, #10103a, #1a1a54);
  color: #f5f6ff;
}

.cta-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  align-items: center;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-actions.stack {
  flex-direction: column;
  align-items: flex-start;
}

.footer {
  background: #080822;
  color: #d6daf8;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.8rem;
  padding-bottom: 2rem;
}

.footer h4 {
  margin: 0 0 0.6rem;
  color: #f7f8ff;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.footer a {
  color: #d6daf8;
  opacity: 0.85;
}

.footer a:hover {
  color: #fff;
}

.footer-copy {
  color: #c9cfef;
  margin: 0.6rem 0 0.4rem;
}

.footer-meta {
  color: #9ca2d1;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  margin-top: 1rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1.1rem;
}

.lang {
  display: none;
}

body.lang-en .lang-en {
  display: initial;
}

body.lang-hi .lang-hi {
  display: initial;
}

.pill,
.eyebrow,
.badge-label,
.section-subtitle,
.footer-meta,
.mini-title {
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .nav-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .nav-links {
    justify-content: flex-start;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-visual {
    order: -1;
  }
}

@media (max-width: 600px) {
  .strip-grid,
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-badge {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 0.8rem;
  }
  .list li {
    grid-template-columns: 1fr;
  }
  .step {
    grid-template-columns: 1fr;
  }
}
