/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page base */
body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f7fb;
    color: #111827;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

/* Top bar — ultra tight & aligned with hero */
.top-bar {
    display: flex;
    align-items: center;
    gap: 10px;          /* same tight spacing */
    padding-left: 12px; /* left alignment same */
    padding-top: 0;     /* TOP gap bilkul hata diya */
    margin-bottom: 0;   /* hero bilkul paas rahe */
}



/* Logo – premium visual weight */
.brand-logo {
    height: 88px;           /* Strong + big like hero text */
    width: auto;
    display: block;
    flex-shrink: 0;
}

/* Tagline – bold + modern + hero-style presence */
.tagline {
    font-size: 22px;         /* Big premium navbar text */
    font-weight: 600;        /* Strong + confident */
    color: #1f2937;          /* Hero heading tone */
    letter-spacing: -0.2px;
    margin-top: 2px;         /* Perfect alignment with logo */
}


/* Hero section */
.hero {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 32px;
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 28px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.06);
    margin-top: 0;  /* hero card ko top bar ke bilkul neeche le aaya */
}




/* Responsive: stack columns on small screens */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 560px;
    padding-right: 16px;
}

.hero-question {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 44px;
    line-height: 1.12;
    letter-spacing: -0.01em;   /* thoda soft spacing */
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 28px;       /* thoda extra breathing room */
}

.hero-subtext {
    font-size: 15px;
    line-height: 1.65;   /* thodi zyada readability */
    max-width: 585px;    /* thoda wide, reading easy */
    color: #4b5563;
    margin-top: 12px;
    margin-bottom: 16px; /* bullets se neat gap */
}



/* -------------------------------------- */
/*            HERO – BULLET LIST           */
/* -------------------------------------- */

.hero-bullets {
    list-style: none;
    margin-top: 16px;
    padding: 0;
}


.hero-bullets li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: #111827;
}


.hero-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 3px;          /* alignment jo abhi tumhe pasand hai, wahi rakha */
    font-size: 18px;
    line-height: 1;
    color: #3b82f6;    /* thoda softer modern blue */
}


/* CTAs */
.hero-ctas {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25); 
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

.btn-secondary {
    background: #e5e7eb;
    color: #111827;
    font-weight: 500; /* sirf secondary ko thoda soft feel dene ke liye */
}

.cta-note {
  font-size: 12px;
  color: #4b5563;
}

/* Safety line */
.hero-safety {
  margin-top: 6px;
  font-size: 13px;
  color: #374151;
}

/* Right-side visual – mini dashboard snapshot */
.hero-side {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

/* ============= HERO – NEW LIGHT DASHBOARD ============= */

.hero-dashboard {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* Main card */

.dash-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px 20px;
  width: 100%;
  max-width: 360px;
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.06),
    0 25px 55px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 13px;
}

/* Header */

.dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.dash-title {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.dash-sub {
  font-size: 11px;
  color: #6b7280;
}

.dash-badge {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ecfeff;
  color: #0f766e;
  border: 1px solid #67e8f9;
  white-space: nowrap;
}

/* Profit row */

.dash-profit {
  margin-top: 4px;
  margin-bottom: 12px;
}

.dash-amount {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
}

.dash-status {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}

.dash-status.good {
  background: #ecfdf3;
  color: #15803d;
}

.dash-change {
  font-size: 11px;
  color: #16a34a;
  margin-top: 2px;
}

.dash-divider {
  border: none;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin: 10px 0;
}

/* Metric grid */

.dash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.dash-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9ca3af;
}

.dash-value {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.dash-value.red {
  color: #b91c1c;
}

.dash-tag {
  font-size: 11px;
  color: #6b7280;
}

.dash-tag.neutral {
  color: #4b5563;
}

.dash-tag.alert {
  color: #c2410c;
}

/* Categories */

.dash-cats {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cat-row {
  display: grid;
  grid-template-columns: 1.2fr 2.4fr 0.6fr;
  align-items: center;
  gap: 6px;
}

.cat-label {
  font-size: 12px;
  color: #111827;
}

.cat-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.cat-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #2563eb);
}

.cat-val {
  font-size: 12px;
  font-weight: 500;
  text-align: right;
  color: #111827;
}

/* Footer */

.dash-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #6b7280;
}

.dash-arrow {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: #ecfdf3;
  color: #16a34a;
}

.dash-foot-text {
  line-height: 1.4;
}

/* Mobile spacing – hero dashboard */

@media (max-width: 800px) {
  .hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-dashboard {
    margin-top: 18px;
  }

  .dash-card {
    max-width: 100%;
  }
}


.hero-trend-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    background: rgba(22, 163, 74, 0.12);
    color: #4ade80;
}


/* ============================
   SECTION 02 – Problems We Solve
   ============================ */

.problems-section {
    max-width: 950px;
    margin: 60px auto;
    padding: 20px;
}

.problems-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.problems-intro {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.problems-list {
    list-style: none;
    padding-left: 0;
}

.problems-list li {
    margin-bottom: 25px;
}

.problems-list li b {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.problems-list li p {
    margin-top: 5px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}
/* ==============================
   SECTION 02 – Problems We Solve (Option C – infographic skeleton)
   ============================== */

.section {
    margin-top: 40px;
}

/* common inner width (baaki sections ke liye bhi ok) */
.section-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Section-02 wrapper (grey background + padding) ---- */

.section-problems {
    background: #F7F9FC;
    padding: 80px 0;
}

/* Heading + intro only for Section-02 */

/* --- Vertical Rhythm Polish (Micro-Step 6: Part 1) --- */

.section-problems .section-title {
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 20px;   /* was 16px */
    color: #111827;
}

.section-problems .section-intro {
    font-size: 15.2px;     /* small visual clarity bump */
    color: #4b5563;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 42px;   /* was 32px */
    text-align: center;
}

/* Problems list – card/grid skeleton */
.problem-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px; /* zara sa zyada space between cards */
}

/* Individual problem cards (white boxes) */
.problem-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.problem-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.06),
    0 22px 48px rgba(15, 23, 42, 0.12);
}

/* Card heading (problem title) */
.problem-title {
    font-size: 17px;          /* was 16.5px */
    font-weight: 700;
    color: #111827;
    line-height: 1.33;        /* slightly tighter */
    margin-bottom: 10px;      /* was 8px */
}

/* Card paragraph (description) */
.problem-text {
    font-size: 14.6px;        /* tiny visual clarity bump */
    color: #4b5563;
    line-height: 1.72;        /* was 1.75 (slightly tighter rhythm) */
    margin-top: 4px;          /* new — better spacing under title */
}

/* Last problem card centre me, full width */
.problem-item-wide {
    grid-column: 1 / -1;
    max-width: 720px;
    margin: 0 auto;
}

/* Desktop layout – 2 column grid (mobile pe 1 column) */
@media (min-width: 900px) {
    .problem-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* ============================== */
/* SECTION 03 – How Munafa Engine Works (FINAL POLISHED VERSION) */
/* ============================== */

.section-steps {
  background: #ffffff;
  padding: 80px 0;
}

.section-steps .section-title {
  font-size: 28px;
  line-height: 1.3;
  text-align: center;
  color: #111827;
  margin-bottom: 18px; 
}

.section-steps .section-intro {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

/* Steps grid layout */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Step cards */
.step-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.06),
    0 22px 48px rgba(15, 23, 42, 0.12);
}

/* STEP label */
.step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
}

/* Step title */
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 6px;
}

/* Tagline */
.step-tagline {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 10px;
}

/* Text */
.step-text {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Bullet list */
.step-list {
  margin: 6px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* Desktop: 3 columns */
@media (min-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ---------------------------------------- */
/* SECTION 04 – WHAT YOU SEE EACH WEEK      */
/* ---------------------------------------- */

.section-outcomes {
  padding: 80px 0;
  background: #ffffff;
}

.section-outcomes .section-title {
  font-size: 30px;          /* thoda compact, par clear */
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #111827;           /* Q: dark, readable */
  margin-bottom: 8px;
}

/* OPTIONAL – Light divider line under Q */
.section-outcomes .section-title::after {
  content: "";
  display: block;
  width: 68px;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-outcomes .qa-answer {
  display: block;           /* A: wali line new line pe */
  margin-top: 8px;
  font-size: 18.5px;
  font-weight: 550;         /* thoda premium feel */
  color: #02c39a;           /* Munafa-style green */
}

/* Section intro text */
.section-outcomes .section-intro {
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.7;
  max-width: 760px;
  margin: 18px auto 40px;   /* upar Q/A se gap + centre */
  text-align: center;
}

/* Outcome cards grid */
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 28px;
}

/* Premium outcome cards */
.outcome-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(226, 230, 240, 0.5);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

/* Hover lift effect */
.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
  background: #f9fafb;
}

/* Outcome title */
.outcome-title {
  font-size: 18.5px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 10px;
}

/* Outcome description */
.outcome-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

/* Desktop – 3 column layout */
@media (min-width: 900px) {
  .outcome-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile – spacing & padding polish (Section 04) */
@media (max-width: 640px) {

  .section-outcomes {
    padding: 60px 16px;
  }

  .section-outcomes .section-title {
    font-size: 28px;
  }

  .section-outcomes .qa-answer {
    font-size: 18px;
    margin-top: 6px;
  }

  .section-outcomes .section-intro {
    margin: 16px auto 32px;
    padding: 0 4px;       /* halka side padding so text edge pe na aaye */
  }

  .outcome-grid {
    gap: 18px;
    margin-top: 22px;
  }

  .outcome-card {
    padding: 20px 18px 22px;
    border-radius: 16px;
  }
}

/* SECTION 05 – WHY BUSINESS OWNERS TRUST MUNAFA ENGINE */
.section-trust {
  padding: 80px 0;
  background: #ffffff;
}

.section-trust .section-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #111827;
  margin-bottom: 32px;
}

/* Trust cards grid */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

/* Premium trust cards */
.trust-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 24px 24px;
  border: 1px solid #e3e8f1;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background-color 0.22s ease;
}

/* Hover lift effect */
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  background: #f9fafb;
}

/* Card title */
.trust-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 10px;
}

/* Card body text */
.trust-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* Tablet – 2 columns */
@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile – spacing & readability (Section 05) */
@media (max-width: 640px) {
  .section-trust {
    padding: 60px 18px;
  }

  .section-trust .section-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 26px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }

  .trust-card {
    padding: 20px 18px 22px;
    border-radius: 16px;
  }

  .trust-title {
    font-size: 17px;
  }

  .trust-text {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* Desktop – 4 columns */
@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ================================ */
/*           SECTION 06 – CTA       */
/* ================================ */

.section-cta {
    padding: 90px 0;
    background: #f9fafe;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Card-style CTA container */
.cta-content {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 40px 34px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

/* Main CTA title */
.cta-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 14px;
}

/* Supporting line */
.cta-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 26px;
}

/* Primary button */
.cta-button {
    display: inline-block;
    padding: 15px 34px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    min-width: 230px;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
    transition: box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

/* Button hover */
.cta-button:hover {
    background: #1e4fc7;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.38);
    transform: translateY(-2px);
}

/* Small reassurance note */
.cta-note {
    margin-top: 16px;
    font-size: 13px;
    color: #64748b;
}

/* CTA – mobile spacing & readability */
@media (max-width: 640px) {
    .section-cta {
        padding: 70px 18px;
    }

    .cta-content {
        padding: 26px 20px 28px;
        border-radius: 18px;
    }

    .cta-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 14px 0;
    }

    .cta-note {
        font-size: 12.5px;
    }
}

/* =============================== */
/*          SECTION 07 – FAQ       */
/* =============================== */

.section-faq {
    padding: 90px 0;
    background: #ffffff;
}

.section-faq .section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-faq .section-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #111827;
    margin-bottom: 12px;
}

.section-faq .section-intro {
    font-size: 15.5px;
    line-height: 1.6;
    color: #64748b;
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

/* FAQ grid layout */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 26px;
    align-items: stretch;
}

/* 7th (last) FAQ ko alag row me centre me lana */
.faq-item:last-child {
    grid-column: 1 / -1;     /* poori row cover kare */
    justify-self: center;    /* row ke beech me aaye */
    max-width: 620px;        /* thoda slim card, optional */
}

/* Single FAQ item */
.faq-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* Question line */
.faq-question {
    font-size: 15.5px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

/* Answer body */
.faq-answer {
    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;
}

/* Mobile responsive fix – 7th item centre bhi rahe + proper width */
@media (max-width: 900px) {

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item:last-child {
        grid-column: auto;
        justify-self: stretch;
        max-width: none;
    }

    .section-faq {
        padding: 70px 0;
    }
}


/* SECTION 08 – CONTACT / FORM */

.section-contact {
  padding: 80px 0 100px;
  background: #f5f7fb;
}

.section-contact-inner {
    max-width: 880px;
    margin: 0 auto;         /* NEW – centre align full contact block */
}


.contact-text {
  text-align: center;
  margin-bottom: 32px;
}

.contact-text .section-kicker {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  margin-bottom: 8px;
}

.section-contact h2 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 8px;
  color: #0f172a;
}

.section-contact .section-subtitle {
  font-size: 15px;
  color: #4b5563;
}

/* Form layout */

.contact-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 32px 32px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
    margin-top: 28px;       /* NEW – text block aur form ke beech thoda gap */
}


.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form .form-center {
    grid-column: 1 / -1;       /* full row capture */
    width: 50%;                /* smaller width */
    justify-self: center;      /* center align */
}

.contact-form .form-full {
  grid-column: 1 / -1;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.contact-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  color: #111827;
  background-color: #ffffff;
}

.contact-form input::placeholder {
  color: #9ca3af;
}

.contact-form input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Button + notes */

.form-btn {
  grid-column: 1 / -1;
  justify-self: flex-start;
  margin-top: 8px;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

/* Mobile responsive */

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-btn {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }
}

/* =========================
   SECTION 09 – FOOTER
   ========================= */

.site-footer {
  margin-top: 60px;
  padding: 40px 0 28px;
  background: #f3f6ff;
  border-top: 1px solid #e0e6f5;
  font-size: 14px;
  color: #4a5568;
}

.site-footer .footer-grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand .logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.footer-tagline {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
}

.footer-links h4,
.footer-note h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.footer-links p,
.footer-note p {
  margin: 2px 0;
  line-height: 1.5;
}

.site-footer a {
  color: #2563eb;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #e0e6f5;
  margin-top: 28px;
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

/* Footer – mobile layout */
@media (max-width: 768px) {
  .site-footer .footer-grid {
    flex-direction: column;
    gap: 24px;
  }
}




/* === Section 01 – Hero typography refinement === */

.hero-question {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: #0b1120;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
    max-width: 40rem;
}

.hero-subtext {
    font-size: 16px;
    color: #4b5563;
    max-width: 40rem;
    margin-bottom: 22px;
}

.hero-bullets {
    margin: 0 0 24px;
    padding-left: 1.1rem;
}

.hero-bullets li {
    font-size: 15px;
    color: #111827;
    margin-bottom: 6px;
}



/* === Section 01 – CTA buttons (desktop) === */

.hero {
    padding-top: 96px;
    padding-bottom: 96px;
}

/* Hero ke andar jitne main buttons/links hain unko premium bana do */
.hero a,
.hero button {
    display: block;
    width: 100%;
    max-width: 520px;
    text-align: center;
    padding: 16px 24px;
    border-radius: 9999px;           /* full pill shape */
    font-size: 15px;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease,
        background 0.12s ease,
        color 0.12s ease;
}

/* Pehla CTA – main blue button */
.hero a:first-of-type,
.hero button:first-of-type {
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.hero a:first-of-type:hover,
.hero button:first-of-type:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}

/* Doosra CTA – soft secondary button */
.hero a:nth-of-type(2),
.hero button:nth-of-type(2) {
    margin-top: 12px;
    background: #e5e7eb;
    color: #111827;
    box-shadow: none;
}

.hero a:nth-of-type(2):hover,
.hero button:nth-of-type(2):hover {
    background: #d4d4d8;
}
