/* ===================== Modi G Kirana — Landing Site ===================== */

:root {
  color-scheme: light only;
  --red: #E8221B;
  --red-dark: #C21813;
  --red-light: #FFF0EF;
  --yellow: #F7CB3D;
  --yellow-dark: #E0AE1E;
  --navy: #1E2140;
  --ink: #21243B;
  --gray: #6B7080;
  --gray-light: #9A9EAE;
  --cream: #FFF8EF;
  --border: #EDE7DC;
  --white: #FFFFFF;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(30, 33, 64, 0.06);
  --shadow-md: 0 12px 32px rgba(30, 33, 64, 0.10);
  --shadow-red: 0 14px 30px rgba(232, 34, 27, 0.28);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

section { position: relative; }

.section-pad { padding: 96px 0; }

@media (max-width: 720px) {
  .section-pad { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--gray);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(232,34,27,0.35); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-outline:hover { border-color: var(--navy); transform: translateY(-3px); }

.btn-light {
  background: var(--white);
  color: var(--red);
}
.btn-light:hover { transform: translateY(-3px); }

/* ---------- Top notice bar ---------- */
.notice-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}
.notice-bar strong { color: var(--yellow); }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
}

.brand img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: 0.25s;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 24px 26px;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .nav-actions .btn-primary.desktop-only { display: none; }
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-badges, .hero-stats { justify-content: center; }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.14;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--red); }

.hero p.lead {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 30px;
}

@media (max-width: 900px) { .hero p.lead { margin-left: auto; margin-right: auto; } }

.hero-badges { display: flex; gap: 14px; margin-bottom: 34px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-stats .stat h3 { font-size: 1.5rem; color: var(--navy); font-weight: 700; }
.hero-stats .stat span { font-size: 0.85rem; color: var(--gray); }

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art .blob {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92%;
  height: 92%;
  background: radial-gradient(circle at 50% 40%, rgba(247,203,61,0.35), rgba(232,34,27,0.06) 70%);
  border-radius: 50%;
  filter: blur(6px);
  z-index: 0;
}
.hero-art img {
  position: relative;
  z-index: 1;
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 24px 40px rgba(30,33,64,0.18));
}

/* ---------- Store badges ---------- */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: 0.2s ease;
  position: relative;
}
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge .label { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .label small { font-size: 0.62rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.04em; }
.store-badge .label strong { font-size: 1rem; font-weight: 600; }
.store-badge .soon-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy);
  padding: 34px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.trust-item .ico {
  width: 42px; height: 42px;
  background: rgba(247,203,61,0.16);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
}
.trust-item span { font-size: 0.92rem; font-weight: 500; color: #E7E8F0; }

/* ---------- Feature cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: 0.25s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: transparent; }

.feature-card .ico {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.12rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 0.94rem; }

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 34px 24px 26px;
  text-align: center;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-red);
}
.step-card h3 { font-size: 1.02rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--gray); }

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 12px;
  text-align: center;
  transition: 0.25s ease;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: transparent; }
.cat-card .ico {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.cat-card span { font-size: 0.85rem; font-weight: 500; color: var(--ink); }

/* ---------- Payment section ---------- */
.pay-section { background: var(--cream); }
.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) { .pay-grid { grid-template-columns: 1fr; } }

.pay-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.pay-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.pay-row:last-child { border-bottom: none; }
.pay-row .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pay-row h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.pay-row p { font-size: 0.9rem; color: var(--gray); }
.pay-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red-light);
  color: var(--red-dark);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
}

/* ---------- Service area ---------- */
.area-section {
  background: var(--navy);
  color: var(--white);
}
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) { .area-grid { grid-template-columns: 1fr; text-align: center; } }
.area-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 16px; }
.area-section p { color: #C7C9DA; margin-bottom: 22px; max-width: 480px; }
@media (max-width: 860px) { .area-section p { margin-left: auto; margin-right: auto; } }

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(247,203,61,0.14);
  color: var(--yellow);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.area-map {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 44px 30px;
  text-align: center;
}
.area-map .pin {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 10px rgba(232,34,27,0.15);
}
.area-map h3 { font-size: 1.2rem; margin-bottom: 6px; }
.area-map span { color: #A6A9C0; font-size: 0.9rem; }

/* ---------- App download CTA ---------- */
.download-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 860px) {
  .download-section { grid-template-columns: 1fr; text-align: center; padding: 48px 26px; }
  .download-section .hero-badges { justify-content: center; }
}
.download-section h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 14px; font-weight: 700; }
.download-section p { color: rgba(255,255,255,0.9); margin-bottom: 28px; max-width: 460px; }
@media (max-width: 860px) { .download-section p { margin-left: auto; margin-right: auto; } }
.download-section .store-badge { background: rgba(255,255,255,0.12); }
.download-art { display: flex; justify-content: center; }
.download-art img { max-width: 220px; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25)); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
}
.faq-q .plus {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
  font-size: 1rem;
  line-height: 1;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--cream);
}
.faq-a p { padding: 0 24px 20px; color: var(--gray); font-size: 0.93rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 22px;
}
.contact-card .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--white);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-card h4 { font-size: 0.98rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--gray); }
.contact-card a:hover { color: var(--red); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.field input, .field textarea, .field select {
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.94rem;
  color: var(--ink);
  background: var(--cream);
  transition: 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.form-note { font-size: 0.82rem; color: var(--gray-light); margin-top: 4px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: #C7C9DA;
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 36px; }
.footer-brand span { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.footer-col p.desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-col h5 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 0.88rem; transition: 0.2s ease; }
.footer-col ul li a:hover { color: var(--yellow); }

.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s ease;
}
.social-row a:hover { background: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ===================== Legal / Policy pages ===================== */
.policy-hero {
  background: var(--cream);
  padding: 64px 0 44px;
  text-align: center;
}
.policy-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--navy); font-weight: 700; margin-bottom: 12px; }
.policy-hero p { color: var(--gray); }

.policy-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  padding: 60px 0 100px;
}
@media (max-width: 860px) { .policy-wrap { grid-template-columns: 1fr; } }

.policy-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 22px;
}
@media (max-width: 860px) { .policy-nav { position: static; } }
.policy-nav h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray); margin-bottom: 14px; }
.policy-nav ul li { margin-bottom: 10px; }
.policy-nav ul li a {
  font-size: 0.9rem;
  color: var(--ink);
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
}
.policy-nav ul li a:hover, .policy-nav ul li a.active { background: var(--white); color: var(--red); font-weight: 600; }

.policy-content h2 {
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  margin: 36px 0 14px;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--gray); margin-bottom: 14px; font-size: 0.98rem; }
.policy-content ul { margin: 0 0 14px 0; }
.policy-content ul li {
  color: var(--gray);
  font-size: 0.98rem;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.policy-content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
}
.policy-content strong { color: var(--navy); }
.policy-content .updated {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.policy-content .highlight-box {
  background: var(--cream);
  border-left: 3px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 20px 0;
}
.policy-content .highlight-box p:last-child { margin-bottom: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
