@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Hind+Siliguri:wght@400;500;600;700&display=swap');

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── VARIABLES ─── */
:root {
  --orange: #F97316;
  --orange-light: #FFF3E8;
  --orange-dark: #EA6C0A;
  --cream: #FAF9F7;
  --dark: #1A1A1A;
  --muted: #9CA3AF;
  --white: #FFFFFF;
  --border: #F3F4F6;
  --green: #16A34A;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 60px;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249,115,22,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-text { font-size: 20px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: white; border: none;
  padding: 10px 24px; border-radius: 50px; font-size: 14px;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block;
  font-family: 'Sora', sans-serif;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; border: none; background: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: all 0.3s;
}
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(250,249,247,0.97);
  backdrop-filter: blur(16px);
  flex-direction: column; align-items: center;
  justify-content: center; gap: 32px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  text-decoration: none; color: var(--dark);
  font-size: 20px; font-weight: 600; transition: color 0.2s;
}
.mobile-nav-overlay a:hover { color: var(--orange); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 28px; background: none; border: none; cursor: pointer;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white; padding: 14px 32px;
  border-radius: 50px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.2s; border: none;
  cursor: pointer; font-family: 'Sora', sans-serif;
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249,115,22,0.3);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--dark); padding: 14px 32px;
  border-radius: 50px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  border: 1.5px solid #E5E7EB; cursor: pointer;
  font-family: 'Sora', sans-serif;
}
.btn-secondary:hover {
  border-color: var(--orange); color: var(--orange);
  transform: translateY(-2px);
}

/* ─── SECTION COMMONS ─── */
.section-tag {
  display: inline-block; background: var(--orange-light);
  color: var(--orange); padding: 6px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 700; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.section-title {
  font-size: clamp(32px,5vw,52px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-sub {
  font-size: 17px; color: var(--muted);
  max-width: 520px; line-height: 1.7; margin-bottom: 48px;
}

/* ─── FEATURE ICON BOX ─── */
.feature-icon-box {
  width: 52px; height: 52px;
  background: var(--orange-light);
  border: 1.5px solid var(--orange); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-box svg {
  width: 24px; height: 24px;
  stroke: var(--orange); fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ─── FOOTER ─── */
footer { background: var(--dark); padding: 60px 60px 32px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.4);
  margin-top: 12px; line-height: 1.7; max-width: 240px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 14px; margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px; display: flex; align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-legal a {
  font-size: 13px; color: rgba(255,255,255,0.25);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--orange); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  position: relative; overflow: hidden; gap: 40px;
}
.hero-right { display: flex; justify-content: center; align-items: center; position: relative; z-index: 1; padding-right: 40px; }


/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 140px 60px 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--cream) 60%);
}
.page-hero-breadcrumb {
  font-size: 13px; color: var(--muted); margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: var(--orange); text-decoration: none; }
.page-hero h1 {
  font-size: clamp(36px,6vw,60px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.1; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero-sub {
  font-size: 18px; color: var(--muted);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* ─── FEATURES SECTION ─── */
.features-section { background: white; padding: 100px 60px; }
.features-section-inner { max-width: 1100px; margin: 0 auto; }
.features-section-header { text-align: center; margin-bottom: 64px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.feat-card {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.3);
}
.feat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── ALTERNATING FEATURE SECTIONS ─── */
.alt-section { padding: 80px 60px; }
.alt-section.cream { background: var(--cream); }
.alt-section.white { background: white; }
.alt-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 80px;
}
.alt-inner.reverse { flex-direction: row-reverse; }
.alt-text { flex: 1; min-width: 0; }
.alt-text h2 {
  font-size: clamp(28px,4vw,44px); font-weight: 800;
  letter-spacing: -1px; line-height: 1.2; margin-bottom: 16px;
}
.alt-text h2 span { color: var(--orange); }
.alt-text p {
  font-size: 16px; color: var(--muted); line-height: 1.8;
  margin-bottom: 28px;
}
.alt-img {
  flex: 1; display: flex; justify-content: center; min-width: 0;
}
.checklist { list-style: none; }
.checklist li {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.check-icon {
  width: 32px; height: 32px; background: var(--orange-light);
  border: 1.5px solid var(--orange); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-icon svg {
  width: 14px; height: 14px; stroke: var(--orange);
  fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.checklist li span { font-size: 15px; color: var(--dark); font-weight: 500; }

/* ─── HOW IT WORKS — HOMEPAGE STEPS ─── */
.steps-section { background: white; padding: 100px 60px; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 32px; max-width: 960px; margin: 0 auto;
}
.step-card {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px; text-align: center;
}
.step-num {
  width: 56px; height: 56px; background: var(--orange);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 22px; font-weight: 800;
  color: white; margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── TIMELINE (how-it-works page) ─── */
.timeline-wrap {
  max-width: 800px; margin: 0 auto;
  padding: 80px 60px; position: relative;
}
.timeline-wrap::before {
  content: ''; position: absolute;
  left: 99px; top: 80px; bottom: 80px; width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--orange-light));
}
.timeline-step {
  display: flex; gap: 40px; padding-bottom: 64px; position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  width: 80px; height: 80px; background: var(--orange);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 28px; font-weight: 800;
  color: white; flex-shrink: 0; position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}
.timeline-content { flex: 1; padding-top: 16px; }
.timeline-content h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.timeline-content p  { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.timeline-img {
  width: 200px; border-radius: 20px; display: block;
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--orange); padding: 24px 60px;
  display: flex; justify-content: center;
}
.stat-item {
  padding: 0 40px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 28px; font-weight: 800; color: white; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; margin-top: 2px; }

/* ─── VIDEO SECTION ─── */
.video-section { background: var(--dark); padding: 100px 60px; text-align: center; }
.video-section .section-tag { background: rgba(249,115,22,0.15); color: var(--orange); }
.video-section h2 { font-size: clamp(32px,5vw,52px); font-weight: 800; letter-spacing: -1.5px; color: white; margin-bottom: 16px; }
.video-section h2 span { color: var(--orange); }
.video-section > p { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 48px; max-width: 520px; margin-left: auto; margin-right: auto; }
.video-wrap {
  max-width: 800px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* ─── DARK CTA SECTION ─── */
.cta-section {
  background: var(--dark); padding: 100px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-blob {
  position: absolute; width: 500px; height: 500px;
  background: var(--orange); border-radius: 50%;
  filter: blur(120px); opacity: 0.07;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-section .section-tag { background: rgba(249,115,22,0.15); color: var(--orange); position: relative; }
.cta-section h2 {
  font-size: clamp(36px,5vw,56px); font-weight: 800;
  letter-spacing: -2px; color: white; margin-bottom: 16px;
  position: relative;
}
.cta-section h2 span { color: var(--orange); }
.cta-section > p {
  font-size: 17px; color: rgba(255,255,255,0.5);
  margin-bottom: 40px; position: relative;
}
.cta-coming { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 16px; position: relative; }

/* ─── CONTACT ─── */
.contact-grid {
  padding: 80px 60px; max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
}
.contact-card {
  background: white; border-radius: 16px; padding: 24px;
  border: 1px solid var(--border); display: flex;
  gap: 16px; margin-bottom: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit;
}
.contact-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(249,115,22,0.08);
}
.contact-icon {
  width: 44px; height: 44px; background: var(--orange-light);
  border: 1.5px solid var(--orange); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--dark); }
a.contact-card .contact-value { color: var(--orange); }
.contact-form-card {
  background: white; border-radius: 20px; padding: 40px;
  border: 1px solid var(--border);
}
.contact-form-card h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.contact-form-card > p { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-family: 'Sora', sans-serif; font-size: 14px;
  color: var(--dark); background: var(--cream);
  outline: none; resize: none; transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: white; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}

/* ─── FAQ ─── */
.faq-section { background: white; padding: 80px 60px; }
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-q {
  font-size: 16px; font-weight: 700; cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; user-select: none;
}
.faq-q svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.8; margin-top: 14px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
  gap: 28px;
  max-width: 1100px; margin: 0 auto; padding: 60px;
}
.blog-card {
  background: white; border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.blog-card-img {
  height: 180px; background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img svg { width: 48px; height: 48px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.blog-card-body { padding: 24px; }
.blog-card-tag { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-card-title { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.blog-card-meta { font-size: 12px; color: var(--muted); }
.blog-card-coming { opacity: 0.5; pointer-events: none; cursor: default; }

/* ─── PRIVACY / PROSE ─── */
.prose-wrap {
  max-width: 720px; margin: 0 auto; padding: 140px 40px 80px;
}
.prose-wrap h1 { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.prose-date { font-size: 13px; color: var(--muted); margin-bottom: 48px; }
.prose-wrap h2 {
  font-size: 20px; font-weight: 700; margin: 40px 0 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--orange-light);
}
.prose-wrap p, .prose-wrap li { font-size: 15px; color: #4B5563; line-height: 1.85; }
.prose-wrap ul { padding-left: 24px; margin: 12px 0; }
.prose-wrap li { margin-bottom: 8px; }
.prose-wrap a { color: var(--orange); text-decoration: none; }
.prose-wrap a:hover { text-decoration: underline; }
.prose-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ─── ARTICLE PAGE ─── */
.article-hero { padding: 140px 60px 60px; background: linear-gradient(135deg, var(--orange-light) 0%, var(--cream) 60%); }
.article-tag { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.article-hero h1 { font-size: clamp(28px,5vw,48px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 16px; max-width: 700px; }
.article-meta { font-size: 13px; color: var(--muted); }
.article-body {
  max-width: 740px; margin: 0 auto; padding: 60px 40px 100px;
}
.article-body h2 { font-size: 24px; font-weight: 800; margin: 40px 0 14px; letter-spacing: -0.5px; }
.article-body h3 { font-size: 19px; font-weight: 700; margin: 28px 0 10px; }
.article-body p  { font-size: 16px; color: #374151; line-height: 1.9; margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 28px; margin-bottom: 20px; }
.article-body li { font-size: 16px; color: #374151; line-height: 1.9; margin-bottom: 8px; }
.article-body strong { color: var(--dark); }
.article-body a { color: var(--orange); }
.article-callout {
  background: var(--orange-light); border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 28px 0;
  font-size: 15px; color: var(--dark); line-height: 1.8;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr !important; padding: 100px 20px 60px !important; text-align: center; }
  .hero-right { display: none !important; }
  .hero-bullets li { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .features-section { padding: 80px 20px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }

  .alt-section { padding: 60px 20px; }
  .alt-inner, .alt-inner.reverse { flex-direction: column !important; gap: 40px; }
  .alt-inner img { width: 220px; margin: 0 auto; }

  .steps-section { padding: 80px 20px; }
  .steps-grid { grid-template-columns: 1fr; }

  .stats-bar { padding: 20px; flex-wrap: wrap; gap: 16px; }
  .stat-item { border-right: none; padding: 0 16px; }

  .video-section { padding: 80px 20px; }

  .faq-section { padding: 60px 20px; }

  .timeline-wrap { padding: 60px 20px; }
  .timeline-wrap::before { left: 39px; }

  .contact-grid { grid-template-columns: 1fr; padding: 60px 20px; gap: 32px; }

  .blog-grid { padding: 40px 20px; }

  .cta-section { padding: 80px 20px; }

  .prose-wrap { padding: 120px 20px 60px; }

  .page-hero { padding: 120px 20px 60px; }

  .article-hero { padding: 120px 20px 40px; }
  .article-body { padding: 40px 20px 80px; }

  footer { padding: 48px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
