:root {
  --saffron: #f28a12;
  --saffron-soft: #fff0d8;
  --maroon: #8b130e;
  --maroon-dark: #4b0806;
  --gold: #d7a743;
  --green: #174f2a;
  --ink: #23140f;
  --muted: #765f4f;
  --paper: #fff8ec;
  --cream: #fffbf3;
  --line: rgba(139, 19, 14, 0.16);
  --shadow: 0 24px 80px rgba(76, 23, 4, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 138, 18, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(139, 19, 14, 0.12), transparent 30rem),
    linear-gradient(180deg, #fff7e8 0%, #fffdf8 48%, #fff5e3 100%);
  font-family:
    "Hind", "Kohinoor Devanagari", "Mangal", system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 236, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--maroon);
  font-size: 1.4rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #4f2b1e;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--saffron));
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff7e8;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--maroon);
}

.hero {
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(242, 138, 18, 0.13);
  filter: blur(2px);
}

.hero::before {
  left: -190px;
  top: 90px;
}

.hero::after {
  right: -210px;
  bottom: -120px;
  background: rgba(139, 19, 14, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1,
h2 {
  margin: 0;
  color: var(--maroon-dark);
  font-family: "Noto Serif Devanagari", "Kohinoor Devanagari", "Mangal", Georgia, serif;
  letter-spacing: -0.01em;
  line-height: 1.45;
  padding-top: 2px;
  padding-bottom: 2px;
}

.hero-copy h1 {
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(1.85rem, 3.1vw, 3.05rem);
}

h3 {
  color: var(--maroon);
  margin: 0 0 10px;
  font-family: "Noto Serif Devanagari", "Kohinoor Devanagari", "Mangal", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.3;
}

p {
  color: var(--muted);
  margin: 0;
}

.lead {
  margin-top: 24px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--saffron));
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

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

.btn.primary {
  color: #fff8e9;
  background: linear-gradient(135deg, var(--maroon), #bd2a12 48%, var(--saffron));
  box-shadow: 0 18px 42px rgba(139, 19, 14, 0.25);
}

.btn.secondary {
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(139, 19, 14, 0.2);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip span,
.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(215, 167, 67, 0.5);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.hero-card,
.quote-card,
.feature-card,
.mission-card,
.rules-card,
.scan-card,
.interest-form {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 236, 0.78)),
    var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  padding: 34px;
  text-align: center;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(215, 167, 67, 0.45);
  border-radius: 22px;
  pointer-events: none;
}

.hero-logo {
  width: min(360px, 90%);
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 28px rgba(80, 24, 10, 0.18));
}

.card-ribbon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff4d7;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  font-weight: 900;
  margin-bottom: 16px;
}

.two-col,
.resolve-grid,
.donate-grid,
.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.intro p + p {
  margin-top: 16px;
}

.quote-card {
  padding: 38px;
  position: relative;
  min-height: 280px;
}

.quote-mark {
  position: absolute;
  right: 30px;
  top: 0;
  color: rgba(139, 19, 14, 0.12);
  font-size: 9rem;
  line-height: 1;
}

.quote-card h3 {
  position: relative;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

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

.section-head .eyebrow {
  justify-content: center;
}

.section-head.compact {
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 30px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(76, 23, 4, 0.2);
}

.icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #fff6e4, #ffdca0);
  color: var(--maroon);
  font-size: 1.8rem;
}

.resolve {
  padding-top: 30px;
}

.resolve-grid {
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(139, 19, 14, 0.92), rgba(93, 10, 7, 0.92)),
    var(--maroon);
  box-shadow: var(--shadow);
}

.resolve h2,
.resolve h3,
.resolve p {
  color: #fff8e8;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.pill-row span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff4d7;
}

.mission-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tier {
  padding: 26px 18px;
  border: 1px solid rgba(139, 19, 14, 0.18);
  border-radius: 26px;
  background: rgba(255, 252, 246, 0.82);
  text-align: center;
  box-shadow: 0 18px 42px rgba(76, 23, 4, 0.09);
}

.tier.featured {
  background: linear-gradient(180deg, #fff7df, #fff);
  border-color: rgba(215, 167, 67, 0.8);
}

.tier-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(139, 19, 14, 0.1);
  border: 1.5px solid rgba(139, 19, 14, 0.2);
  color: #8b130e;
  font-size: 1.5rem;
}

.tier.featured .tier-icon {
  background: rgba(245, 166, 35, 0.15);
  border: 1.5px solid rgba(245, 166, 35, 0.35);
  color: #F5A623;
}

.tier strong {
  display: inline-flex;
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #8b130e;
  background: #F8F4FF;
  border: 1px solid rgba(139, 19, 14, 0.2);
  font-size: 1.15rem;
  font-weight: 700;
}

.tier.featured strong {
  color: #F5A623;
  background: #FFF9F0;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.monthly-note {
  margin: 24px auto 0;
  max-width: 760px;
  padding: 16px 20px;
  border: 1px solid rgba(139, 19, 14, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
  color: var(--maroon);
  font-weight: 800;
}

.rules-card {
  padding: 38px;
}

.rule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: rules;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rule-list li {
  position: relative;
  min-height: 88px;
  padding: 18px 18px 18px 64px;
  border-radius: 18px;
  background: rgba(255, 248, 236, 0.82);
  color: #43251b;
}

.rule-list li::before {
  counter-increment: rules;
  content: counter(rules);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff7e8;
  background: var(--maroon);
  font-weight: 900;
}

.donate {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 238, 204, 0.62)),
    var(--cream);
}

.donate-grid {
  align-items: stretch;
}

.donate-copy h2 {
  margin-bottom: 16px;
}

.account-card-wrapper {
  max-width: 760px;
  margin: 36px auto 0 auto;
}

.account-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  box-shadow: 0 20px 50px rgba(139, 19, 14, 0.22);
}

.account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.account-info small {
  display: block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.account-info strong {
  display: block;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.copy-btn {
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--maroon-dark);
  background: #fff3d7;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tax-benefit-badge {
  margin-top: 20px;
  padding: 16px 24px;
  background: rgba(23, 79, 42, 0.08);
  border: 1px solid rgba(23, 79, 42, 0.2);
  border-radius: 18px;
  text-align: center;
  color: #174f2a;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.checkout-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(139, 19, 14, 0.12);
  box-shadow: 0 24px 68px rgba(76, 23, 4, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.checkout-header {
  text-align: center;
  margin-bottom: 5px;
}

.secure-badge {
  display: inline-flex;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #174f2a;
  background: #eaf6ed;
  border-radius: 999px;
  margin-bottom: 8px;
}

.checkout-header h3 {
  font-size: 1.5rem;
  color: var(--maroon-dark);
}

.payment-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fbf5e8;
  padding: 4px;
  border-radius: 14px;
}

.payment-tabs .tab-btn {
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 10px;
  font-weight: 800;
  color: var(--maroon);
  cursor: pointer;
  transition: all 0.25s ease;
}

.payment-tabs .tab-btn.active {
  background: var(--maroon);
  color: #fff8eb;
  box-shadow: 0 4px 12px rgba(139, 19, 14, 0.16);
}

.quick-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.quick-amounts .amount-btn {
  border: 1px solid rgba(139, 19, 14, 0.18);
  background: transparent;
  padding: 10px 4px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--maroon-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-amounts .amount-btn.active,
.quick-amounts .amount-btn:hover {
  background: #fff5e0;
  border-color: var(--saffron);
  color: var(--saffron);
  box-shadow: 0 4px 10px rgba(242, 138, 18, 0.12);
}

.custom-amount-input {
  position: relative;
  display: flex;
  align-items: center;
}

.custom-amount-input .currency-symbol {
  position: absolute;
  left: 18px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--maroon);
}

.custom-amount-input input {
  width: 100%;
  min-height: 54px;
  padding-left: 36px;
  border: 1px solid rgba(139, 19, 14, 0.18);
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--maroon-dark);
  background: #fffdfa;
  outline: none;
  box-sizing: border-box;
}

.custom-amount-input input:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(242, 138, 18, 0.16);
}

.checkout-btn {
  width: 100%;
  min-height: 52px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 30px rgba(139, 19, 14, 0.22);
}

.payment-partners {
  text-align: center;
  border-top: 1px dashed rgba(139, 19, 14, 0.12);
  padding-top: 14px;
  font-size: 0.85rem;
  color: var(--maroon);
  font-weight: 700;
}

.partner-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.partner-icon {
  background: #fff;
  border: 1px solid rgba(139, 19, 14, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--maroon-dark);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

/* Premium Payment Gateway Modal Styling */
.payment-gateway-modal {
  max-width: 480px !important;
  background: #fffdfa !important;
  border: 1px solid rgba(215, 167, 67, 0.2);
  padding: 24px !important;
}

.gateway-logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(139, 19, 14, 0.08);
  padding-bottom: 16px;
  margin-bottom: 18px;
  text-align: left;
}

.gateway-logo-area img {
  width: 50px !important;
  height: 50px !important;
  margin: 0 !important;
  object-fit: contain;
}

.gateway-logo-area h3 {
  font-size: 1.1rem;
  color: var(--maroon-dark);
  margin: 0;
}

.gateway-verified {
  display: inline-block;
  font-size: 0.75rem;
  color: #174f2a;
  font-weight: 800;
  margin-top: 2px;
}

.gateway-amount-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fbf5e8;
  padding: 12px 18px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.gateway-amount-display .label {
  font-size: 0.9rem;
  color: var(--maroon);
  font-weight: 700;
}

.gateway-amount-display .amount-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--maroon-dark);
}

.payment-methods h4 {
  font-size: 0.95rem;
  color: var(--maroon);
  margin-bottom: 10px;
  text-align: left;
  font-weight: 800;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.method-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(139, 19, 14, 0.12);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.method-option:hover {
  background: #fffdf6;
  border-color: var(--saffron);
}

.method-option.active {
  background: #fffdf5;
  border-color: var(--saffron);
  box-shadow: 0 4px 15px rgba(242, 138, 18, 0.08);
}

.method-option .icon {
  font-size: 1.6rem;
}

.method-option .text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.method-option .text strong {
  font-size: 0.95rem;
  color: var(--maroon-dark);
  display: block;
}

.method-option .text span {
  font-size: 0.75rem;
  color: #777;
  font-weight: 500;
  display: block;
  margin-top: 1px;
}

.method-option .chevron {
  font-size: 1.3rem;
  color: rgba(139, 19, 14, 0.3);
  font-weight: bold;
}

.method-details {
  display: none;
  animation: fadeIn 0.3s ease;
  margin-top: 14px;
}

.method-details.active {
  display: block;
}

#detailsUpi input,
#detailsNetbanking select {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1.5px solid rgba(139, 19, 14, 0.15);
  border-radius: 12px;
  outline: none;
  background: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  box-sizing: border-box;
}

#detailsUpi input:focus,
#detailsNetbanking select:focus {
  border-color: var(--saffron);
}

.card-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.card-form input {
  min-height: 46px;
  padding: 0 14px;
  border: 1.5px solid rgba(139, 19, 14, 0.15);
  border-radius: 12px;
  outline: none;
  font-size: 0.95rem;
  background: #fff;
  font-weight: 700;
  box-sizing: border-box;
}

.card-form input:focus {
  border-color: var(--saffron);
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gateway-pay-btn {
  width: 100%;
  min-height: 48px !important;
  margin-top: 12px !important;
  font-size: 1rem !important;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(139, 19, 14, 0.2) !important;
}

/* Spinner and Success Screen */
.processing-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(242, 138, 18, 0.16);
  border-top: 4px solid var(--saffron);
  border-radius: 50%;
  margin: 30px auto;
  animation: spin 0.8s linear infinite;
}

.success-icon-animated {
  width: 68px;
  height: 68px;
  background: #eaf6ed;
  color: #174f2a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 20px auto;
  box-shadow: 0 10px 25px rgba(23, 79, 66, 0.12);
  animation: scaleUp 0.3s cubic-bezier(0.18, 0.85, 0.26, 1) both;
}

.success-tx-info {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.receipt-box {
  background: #f6fbf7;
  border: 1px solid rgba(23, 79, 42, 0.12);
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 22px;
  text-align: left;
}

.receipt-box p {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin: 8px 0;
  color: #333;
}

.receipt-box p strong {
  color: #555;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes scaleUp {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

.join-grid {
  align-items: start;
}

.phone {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 11px 20px;
  border-radius: 999px;
  color: var(--maroon);
  background: #fff7e6;
  border: 1px solid rgba(139, 19, 14, 0.16);
  font-size: 1.15rem;
  font-weight: 900;
}

.interest-form {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.interest-form label {
  display: grid;
  gap: 8px;
  color: var(--maroon-dark);
  font-weight: 900;
}

.interest-form input,
.interest-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(139, 19, 14, 0.18);
  border-radius: 16px;
  padding: 0 15px;
  color: var(--ink);
  background: #fffdfa;
  outline: none;
}

.interest-form input:focus,
.interest-form select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(242, 138, 18, 0.16);
}

.brochures {
  padding-top: 30px;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 28px;
}

.brochure-grid a {
  display: grid;
  gap: 12px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(76, 23, 4, 0.1);
  transition: transform 0.25s ease;
}

.brochure-grid a:hover {
  transform: translateY(-5px);
}

.brochure-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
}

.brochure-grid span {
  color: var(--maroon);
  font-weight: 900;
  text-align: center;
}

.floating-donate {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  color: #fff9ec;
  background: linear-gradient(135deg, var(--maroon), var(--saffron));
  box-shadow: 0 18px 48px rgba(139, 19, 14, 0.35);
  cursor: pointer;
  font-weight: 900;
}

.floating-donate span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 12, 8, 0.62);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(460px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 30px;
  border-radius: 28px;
  background: #fff8ec;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.modal-panel h2 {
  font-size: 2rem;
}

.modal-panel img {
  width: min(300px, 100%);
  margin: 20px auto;
  border-radius: 16px;
}

.modal-panel strong,
.modal-panel span {
  display: block;
}

.modal-panel .btn {
  margin-top: 20px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f4e4cc;
  color: var(--maroon);
  cursor: pointer;
  font-size: 1.5rem;
}

.footer {
  padding: 38px 0;
  background: var(--maroon-dark);
  color: #fff4dc;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.footer p,
.footer a,
.footer strong {
  color: #fff4dc;
}

.footer a {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
}

/* Premium motion and visual polish */

::selection {
  color: #fff8e9;
  background: var(--maroon);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: calc(var(--scroll, 0) * 100%);
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--saffron), var(--gold));
  box-shadow: 0 0 24px rgba(242, 138, 18, 0.65);
  transform-origin: left;
}

.site-header {
  transition:
    min-height 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 236, 0.94);
  box-shadow: 0 18px 50px rgba(76, 23, 4, 0.11);
}

.brand img {
  animation: logoFloat 5s ease-in-out infinite;
}

.hero-copy h1,
h2,
h3,
.brand strong {
  font-family:
    "Noto Serif Devanagari", "Kohinoor Devanagari", "Mangal", Georgia, serif;
  font-weight: 900;
}

.hero {
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(255, 246, 226, 0.96), rgba(255, 251, 244, 0.78)),
    radial-gradient(circle at 18% 20%, rgba(255, 198, 86, 0.28), transparent 22rem),
    radial-gradient(circle at 88% 28%, rgba(139, 19, 14, 0.16), transparent 24rem);
}

.hero-glow {
  position: absolute;
  inset: -20% -10%;
  z-index: -2;
  background:
    radial-gradient(circle at var(--mx, 30%) var(--my, 40%), rgba(242, 138, 18, 0.2), transparent 24rem),
    conic-gradient(from 180deg at 50% 50%, rgba(139, 19, 14, 0.08), rgba(242, 138, 18, 0.14), rgba(23, 79, 42, 0.08), rgba(139, 19, 14, 0.08));
  filter: blur(10px);
  animation: auroraDrift 14s ease-in-out infinite alternate;
}

.hero::before {
  animation: breathe 7s ease-in-out infinite;
}

.hero::after {
  animation: breathe 8s ease-in-out infinite reverse;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff8d7 0 20%, var(--saffron) 30% 64%, transparent 70%);
  opacity: 0.65;
  animation: particleRise 10s linear infinite;
}

.hero-particles span:nth-child(1) {
  left: 8%;
  bottom: -10%;
  animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
  left: 26%;
  bottom: -12%;
  animation-delay: 2s;
  animation-duration: 12s;
}

.hero-particles span:nth-child(3) {
  left: 54%;
  bottom: -8%;
  animation-delay: 4s;
  animation-duration: 9s;
}

.hero-particles span:nth-child(4) {
  left: 76%;
  bottom: -15%;
  animation-delay: 1.2s;
  animation-duration: 13s;
}

.hero-particles span:nth-child(5) {
  left: 91%;
  bottom: -9%;
  animation-delay: 5s;
  animation-duration: 11s;
}

.hero-copy h1 span {
  display: inline;
  color: transparent;
  background: linear-gradient(100deg, var(--maroon), #b62313 42%, var(--saffron));
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: none;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-actions,
.trust-strip,
.hero-stats {
  animation: heroReveal 0.9s cubic-bezier(0.18, 0.85, 0.26, 1) both;
}

.hero-copy h1 {
  animation-delay: 0.08s;
  text-wrap: balance;
}

.hero-copy .lead {
  animation-delay: 0.16s;
}

.hero-actions {
  animation-delay: 0.24s;
}

.trust-strip {
  animation-delay: 0.32s;
}

.hero-stats {
  animation-delay: 0.4s;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 720px;
}

.hero-stats article {
  padding: 18px;
  border: 1px solid rgba(139, 19, 14, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(76, 23, 4, 0.08);
}

.hero-stats strong {
  display: block;
  color: var(--maroon);
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-weight: 800;
}

.btn.primary {
  position: relative;
  overflow: hidden;
}

.btn.primary::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -40%;
  width: 34%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: buttonShine 3.4s ease-in-out infinite;
}

.hero-card {
  transform-style: preserve-3d;
  animation: cardEntrance 1s cubic-bezier(0.18, 0.85, 0.26, 1) 0.18s both;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 12% -42px;
  height: 80px;
  border-radius: 50%;
  background: rgba(139, 19, 14, 0.22);
  filter: blur(28px);
  z-index: -1;
}

.sacred-orbit {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(215, 167, 67, 0.25);
  border-radius: 50%;
  pointer-events: none;
  animation: orbitSpin 18s linear infinite;
}

.sacred-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 24px rgba(242, 138, 18, 0.85);
}

.sacred-orbit span:first-child {
  left: 12%;
  top: 14%;
}

.sacred-orbit span:last-child {
  right: 13%;
  bottom: 15%;
  background: var(--maroon);
}

.hero-logo {
  animation: logoPulse 5.5s ease-in-out infinite;
}

.devotion-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(139, 19, 14, 0.12);
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon), #b84a10);
  color: #fff2cc;
}

.devotion-marquee div {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 13px 0;
  font-family:
    "Noto Serif Devanagari", "Kohinoor Devanagari", "Mangal", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  animation: marquee 22s linear infinite;
}

.devotion-marquee span::after {
  content: "✦";
  margin-left: 42px;
  color: var(--gold);
}

.section {
  scroll-margin-top: 90px;
}

.section:not(.hero)::before {
  display: none;
}

.bg-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(80%) sepia(20%) hue-rotate(250deg);
}

.section {
  position: relative; /* ensure absolute watermark stays inside */
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.image-collage img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(76, 23, 4, 0.12);
  transition: transform 0.4s ease;
}

.image-collage img:first-child {
  transform: translateY(30px);
}

.image-collage img:hover {
  transform: scale(1.03);
}

.image-collage img:first-child:hover {
  transform: translateY(30px) scale(1.03);
}

.section-head h2,
.intro h2,
.donate h2,
.join h2 {
  text-wrap: balance;
}

.feature-card,
.tier,
.brochure-grid a,
.quote-card,
.rules-card,
.mission-card,
.scan-card,
.interest-form,
.account-card,
.journey-line article {
  will-change: transform;
}

.feature-card,
.tier,
.brochure-grid a,
.quote-card,
.rules-card,
.mission-card,
.scan-card,
.interest-form,
.account-card {
  backdrop-filter: blur(14px);
}

.feature-card::before,
.tier::before,
.quote-card::before,
.rules-card::before,
.scan-card::before,
.interest-form::before,
.journey-line article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.85), rgba(215, 167, 67, 0.32), rgba(139, 19, 14, 0.12));
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.feature-card,
.tier,
.journey-line article {
  position: relative;
  overflow: hidden;
}

.quote-card,
.rules-card,
.scan-card,
.interest-form {
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.tier::after,
.journey-line article::after {
  content: "";
  position: absolute;
  inset: -70% -30% auto auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(242, 138, 18, 0.14);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.feature-card:hover::after,
.tier:hover::after,
.journey-line article:hover::after {
  opacity: 0.9;
  transform: translate(-18px, 26px) scale(1.3);
}

.feature-card:hover,
.tier:hover,
.brochure-grid a:hover,
.phone:hover {
  transform: translateY(-8px);
}

.journey {
  padding-top: 40px;
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.journey-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--maroon), transparent);
  opacity: 0.42;
}

.journey-line article {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 248, 236, 0.72)),
    var(--paper);
  box-shadow: 0 22px 70px rgba(76, 23, 4, 0.1);
}

.journey-line article > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff5da;
  background: linear-gradient(135deg, var(--maroon), var(--saffron));
  box-shadow: 0 12px 30px rgba(139, 19, 14, 0.24);
  font-family: Georgia, serif;
  font-weight: 900;
}

.floating-donate {
  animation: floatCta 3s ease-in-out infinite;
}

.modal.is-open .modal-panel {
  animation: modalIn 0.28s cubic-bezier(0.18, 0.85, 0.26, 1) both;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.18, 0.85, 0.26, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal[data-animate="left"] {
  transform: translate3d(-38px, 0, 0) scale(0.985);
}

.reveal[data-animate="right"] {
  transform: translate3d(38px, 0, 0) scale(0.985);
}

.reveal.is-visible[data-animate="left"],
.reveal.is-visible[data-animate="right"] {
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(8deg) rotateY(-8deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) rotateY(0) scale(1);
  }
}

@keyframes auroraDrift {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1);
  }
  to {
    transform: translate3d(2%, 1%, 0) rotate(7deg) scale(1.04);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@keyframes particleRise {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.8);
  }
  18% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) translateX(80px) scale(1.4);
  }
}

@keyframes buttonShine {
  0%,
  42% {
    transform: translateX(0) rotate(18deg);
  }
  72%,
  100% {
    transform: translateX(420%) rotate(18deg);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.025);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatCta {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hero-stats,
  .journey-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-line::before {
    display: none;
  }

  .devotion-marquee div {
    animation-duration: 18s;
  }
}

@media (max-width: 640px) {
  .hero-stats,
  .journey-line {
    grid-template-columns: 1fr;
  }

  .hero-stats article,
  .journey-line article {
    padding: 18px;
  }

  .devotion-marquee div {
    gap: 28px;
    font-size: 1rem;
  }

  .devotion-marquee span::after {
    margin-left: 28px;
  }
}

/* Designer feedback refinements: cleaner Hindi typography and calmer scale */

body {
  font-size: 16px;
  letter-spacing: 0;
}

p {
  font-weight: 500;
}

.nav-links {
  font-size: 0.96rem;
  font-weight: 700;
}

.brand strong {
  font-size: 1.25rem;
  font-weight: 800;
}

.brand small {
  font-size: 0.74rem;
  font-weight: 600;
}

.hero {
  min-height: auto;
  padding: 86px 0 74px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
  gap: 46px;
}

.hero-copy h1 {
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.012em;
}

.hero-copy h1 span {
  font-weight: 800;
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.045em;
  margin-bottom: 12px;
}

.hero-actions,
.contact-actions {
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  padding: 11px 21px;
  font-size: 0.98rem;
}

.trust-strip {
  margin-top: 24px;
}

.trust-strip span,
.pill-row span {
  min-height: 34px;
  padding: 7px 14px;
  font-size: 0.94rem;
}

.hero-stats {
  max-width: 620px;
  gap: 12px;
  margin-top: 22px;
}

.hero-stats article {
  padding: 14px 15px;
  border-radius: 18px;
}

.hero-stats strong {
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
}

.hero-stats span {
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-card {
  padding: 28px;
}

.hero-logo {
  width: min(310px, 86%);
}

.card-ribbon {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 9px 15px;
}

.hero-card p {
  font-size: 0.96rem;
}

.section {
  padding: 78px 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-head p,
.intro p,
.quote-card p,
.feature-card p,
.mission-card p,
.rule-list li,
.donate-copy p,
.join p,
.journey-line p {
  font-size: 1rem;
  line-height: 1.75;
}

h3 {
  font-size: 1.22rem;
}

.quote-card h3 {
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
  line-height: 1.24;
}

.feature-card,
.tier,
.journey-line article {
  padding: 24px;
}

.tier h3 {
  font-size: 1.16rem;
}

.tier strong {
  font-size: 1.02rem;
}

.monthly-note {
  font-size: 0.98rem;
}

.account-card strong {
  font-size: 1rem;
}

.floating-donate {
  min-height: 50px;
  padding: 10px 16px;
  font-size: 0.96rem;
}

@media (max-width: 980px) {
  .hero {
    padding: 70px 0 58px;
  }

  .hero-copy h1 {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: clamp(2.02rem, 10.6vw, 3.05rem);
    line-height: 1.18;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
    line-height: 1.18;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .resolve-grid,
  .donate-grid,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .tiers,
  .brochure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rule-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 66px 0;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand small {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .hero-card,
  .quote-card,
  .rules-card,
  .resolve-grid,
  .interest-form {
    padding: 24px;
    border-radius: 22px;
  }

  .feature-grid,
  .tiers,
  .brochure-grid {
    grid-template-columns: 1fr;
  }

  .monthly-note {
    border-radius: 22px;
  }

  .account-card {
    grid-template-columns: 1fr;
  }

  .copy-btn {
    justify-self: start;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-donate {
    right: 14px;
    bottom: 14px;
    padding: 10px 14px;
  }

  /* Checkout card & Payment gateway responsive styling */
  .checkout-card {
    padding: 20px;
    border-radius: 22px;
    gap: 16px;
  }

  .quick-amounts {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .payment-gateway-modal {
    padding: 16px !important;
    width: calc(100% - 20px) !important;
    max-height: calc(100vh - 20px) !important;
  }

  .gateway-logo-area {
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 12px;
  }

  .gateway-logo-area img {
    width: 42px !important;
    height: 42px !important;
  }

  .gateway-logo-area h3 {
    font-size: 0.95rem;
  }

  .gateway-amount-display {
    padding: 8px 14px;
    margin-bottom: 12px;
  }

  .gateway-amount-display .amount-value {
    font-size: 1.25rem;
  }

  .method-option {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .method-option .icon {
    font-size: 1.35rem;
  }

  .method-option .text strong {
    font-size: 0.85rem;
  }

  .method-option .text span {
    font-size: 0.7rem;
  }

  .receipt-box {
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
}

/* Jainism premium touch and Vector SVG styles */
.line-icon {
  width: 28px;
  height: 28px;
  stroke: var(--saffron);
  display: block;
  transition: transform 0.3s ease;
}

.feature-card:hover .line-icon {
  transform: scale(1.15) rotate(-5deg);
}

.jain-svg-icon {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  display: block;
}

.tier.featured .jain-svg-icon {
  stroke: var(--gold);
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 248, 0.82);
  z-index: 1;
}

.hero-bg-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: bgFadeInOut 14s ease-in-out infinite;
  z-index: 0;
}

.hero-bg-slider .slide-1 {
  animation-delay: 0s;
}

.hero-bg-slider .slide-2 {
  animation-delay: 7s;
}

@keyframes bgFadeInOut {
  0% { opacity: 0; }
  15% { opacity: 1; }
  35% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 0; }
}

/* =====================================================================
   MOBILE REDESIGN — screens ≤ 768px
   All 10 fixes. Desktop layout (min-width: 769px) is UNTOUCHED.
   Color identity: #8b130e (purple), #F5A623 (amber), #1A1A2E (text)
   ===================================================================== */

/* ── Global mobile scroll & overflow ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

@media (max-width: 980px) {
  body {
    overflow-x: hidden;
  }

  /* ── Global section & button spacing on mobile ── */
  .section {
    padding: 54px 0 !important;
    overflow-x: hidden;
  }

  .shell {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 24px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .btn {
    min-height: 52px !important;
    padding: 14px 28px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  /* ── Global heading sizes ── */
  h1, h2 {
    font-size: clamp(22px, 6vw, 28px) !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    letter-spacing: 0 !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  h3 {
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    letter-spacing: 0 !important;
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    letter-spacing: 0 !important;
  }

  /* ═══════════════════════════════════════════════
     FIX 1 — NAVBAR (Mobile)
  ═══════════════════════════════════════════════ */

  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 200 !important;
    background: rgba(255, 248, 236, 0.97) !important;
    backdrop-filter: blur(18px) !important;
  }

  .nav {
    min-height: 70px !important;
    max-height: 70px !important;
    padding: 0 20px !important;
    gap: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .brand {
    gap: 12px !important;
    min-width: 0 !important;
    flex-shrink: 1 !important;
    display: flex !important;
    align-items: center !important;
  }

  .brand img {
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
  }

  .brand strong {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    color: #8b130e !important;
    padding: 2px 0 !important;
    display: inline-block !important;
  }

  .brand small {
    display: none !important;
  }

  /* Backdrop overlay when sidebar is open */
  body::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(26, 12, 12, 0.5) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
    z-index: 180 !important;
  }

  body.nav-open::after {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Hamburger toggle — 44×44px tap target */
  .nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border: none !important;
    border-radius: 10px !important;
    background: rgba(139, 19, 14, 0.08) !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
  }

  .nav-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    margin: 0 auto !important;
    background: #8b130e !important;
    border-radius: 2px !important;
    transition: all 0.25s ease !important;
  }

  /* Right-hand side sliding sidebar menu */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 290px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 24px 0 32px !important;
    background: #8b130e !important;
    border-bottom: none !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25) !important;
    transform: translateX(110%) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 190 !important;
    overflow-y: auto !important;
  }

  /* Logo at start top of sidebar */
  .nav-links::before {
    content: "" !important;
    display: block !important;
    width: 90px !important;
    height: 90px !important;
    margin: 40px auto 30px !important;
    background: #ffffff url('assets/anukampa-logo.png?v=2') no-repeat center !important;
    background-size: 65px !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
  }

  body.nav-open .nav-links {
    transform: translateX(0) !important;
  }

  .nav-links a {
    display: flex !important;
    align-items: center !important;
    height: 52px !important;
    padding: 0 28px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    letter-spacing: 0.02em !important;
    transition: background 0.2s ease !important;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .nav-links a:last-child {
    border-bottom: none !important;
  }

  .nav-links a::after {
    display: none !important;
  }

  /* Donate CTA at bottom of overlay */
  .nav-links-donate-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 20px 20px 0 !important;
    height: 48px !important;
    background: #F5A623 !important;
    color: #1A1A2E !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2) !important;
  }

  /* Close X button inside overlay */
  .nav-close-btn {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 191 !important;
    width: 36px !important;
    height: 36px !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: none !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 18px !important;
    cursor: pointer !important;
    line-height: 1 !important;
  }

  body.nav-open .nav-close-btn {
    display: flex !important;
  }

  /* ═══════════════════════════════════════════════
     FIX 2 — HERO SECTION (Mobile)
  ═══════════════════════════════════════════════ */

  .hero {
    min-height: calc(100vh - 70px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 36px 24px !important;
    text-align: center !important;
    align-items: center !important;
    position: relative !important;
    z-index: 2 !important;
  }

  /* Hide logo card on mobile — wastes space */
  .hero-card {
    display: none !important;
  }

  .hero-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* Pill badge above headline */
  .hero-pill-badge {
    display: inline-flex !important;
    align-items: center !important;
    margin-bottom: 14px !important;
    padding: 6px 16px !important;
    background: rgba(139, 19, 14, 0.08) !important;
    border: 1px solid rgba(139, 19, 14, 0.2) !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    color: #8b130e !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    text-align: center !important;
  }

  /* Eyebrow becomes the pill badge on mobile — hide old one */
  .hero-copy .eyebrow {
    display: none !important;
  }

  .hero-copy h1 {
    font-size: clamp(26px, 7vw, 32px) !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    color: #1A1A2E !important;
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 0 14px 0 !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .hero-copy h1 span {
    display: inline-block !important;
    padding: 2px 0 6px !important;
    line-height: 1.45 !important;
    color: transparent !important;
    background: linear-gradient(100deg, #8b130e, #f28a12) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
  }

  .hero-copy .lead {
    font-size: 15px !important;
    color: #4A4A6A !important;
    line-height: 1.7 !important;
    max-width: 340px !important;
    margin: 0 auto 24px !important;
    text-align: center !important;
  }

  /* CTA buttons — stacked full width */
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin-top: 0 !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    max-width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
  }

  .hero-actions .btn.primary {
    background: linear-gradient(135deg, #8b130e, #bd2a12 48%, #f28a12) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(139, 19, 14, 0.3) !important;
    border: none !important;
  }

  .hero-actions .btn.secondary {
    background: transparent !important;
    border: 1.5px solid #8b130e !important;
    color: #8b130e !important;
    box-shadow: none !important;
  }

  /* Trust chips — 3 in a row */
  .trust-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 16px !important;
  }

  .trust-strip span {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 12px !important;
    color: #4A4A6A !important;
    padding: 5px 10px !important;
    min-height: auto !important;
    border: none !important;
    background: transparent !important;
    font-weight: 500 !important;
  }

  /* Hero stats — keep compact 3-col layout */
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 20px !important;
    max-width: 100% !important;
  }

  .hero-stats article {
    padding: 10px 8px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(139, 19, 14, 0.12) !important;
    background: rgba(248, 244, 255, 0.8) !important;
    text-align: center !important;
  }

  .hero-stats strong {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #8b130e !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  .hero-stats span {
    display: block !important;
    font-size: 11px !important;
    color: #4A4A6A !important;
    margin-top: 3px !important;
    line-height: 1.3 !important;
  }

  /* ═══════════════════════════════════════════════
     FIX 3 — MARQUEE STRIP
  ═══════════════════════════════════════════════ */

  .devotion-marquee {
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    overflow: hidden !important;
    background: #8b130e !important;
    border-block: none !important;
    display: flex !important;
    align-items: center !important;
  }

  .devotion-marquee div {
    display: flex !important;
    width: max-content !important;
    gap: 32px !important;
    padding: 0 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    animation: marquee 20s linear infinite !important;
    white-space: nowrap !important;
    font-family: "Hind", sans-serif !important;
  }

  .devotion-marquee span::after {
    content: "✦" !important;
    margin-left: 32px !important;
    color: rgba(245, 166, 35, 0.7) !important;
  }

  /* Image collage mobile adjustments */
  .image-collage {
    gap: 12px !important;
    margin-top: 20px !important;
  }
  .image-collage img {
    height: 160px !important;
    border-radius: 14px !important;
  }
  .image-collage img:first-child {
    transform: translateY(16px) !important;
  }
  .image-collage img:first-child:hover {
    transform: translateY(16px) scale(1.03) !important;
  }

  /* ═══════════════════════════════════════════════
     FIX 4 — ABOUT SECTION
  ═══════════════════════════════════════════════ */

  .intro.section, .section.intro {
    padding: 48px 0 !important;
  }

  .two-col {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .intro .eyebrow {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #F5A623 !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .intro .eyebrow::before {
    display: none !important;
  }

  .intro h2 {
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #1A1A2E !important;
    margin-bottom: 12px !important;
  }

  .intro p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #4A4A6A !important;
  }

  .intro p + p {
    margin-top: 12px !important;
  }

  /* Quote block — amber left border */
  .quote-card {
    border-left: 3px solid #F5A623 !important;
    padding: 16px 20px !important;
    background: #FFF9F0 !important;
    border-radius: 0 12px 12px 0 !important;
    min-height: auto !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .quote-card::before {
    display: none !important;
  }

  .quote-card h3 {
    font-size: 16px !important;
    font-style: italic !important;
    font-weight: 600 !important;
    color: #1A1A2E !important;
    line-height: 1.55 !important;
    margin-bottom: 8px !important;
  }

  .quote-card p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #4A4A6A !important;
  }

  .quote-mark {
    display: none !important;
  }

  /* ═══════════════════════════════════════════════
     FIX 5 — WORK AREAS (3 cards, single column)
  ═══════════════════════════════════════════════ */

  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .feature-card {
    width: 100% !important;
    background: #F8F4FF !important;
    border: 1px solid rgba(139, 19, 14, 0.12) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .feature-card::before,
  .feature-card::after {
    display: none !important;
  }

  .feature-card .icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 50% !important;
    background: #8b130e !important;
    color: #fff !important;
    display: grid !important;
    place-items: center !important;
    margin-bottom: 12px !important;
    font-size: 1.3rem !important;
    flex-shrink: 0 !important;
  }

  .feature-card .line-icon {
    width: 24px !important;
    height: 24px !important;
    stroke: #fff !important;
  }

  .feature-card h3 {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #1A1A2E !important;
    margin: 0 0 6px 0 !important;
  }

  .feature-card p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #4A4A6A !important;
    margin: 0 !important;
  }

  /* ═══════════════════════════════════════════════
     FIX 6 — HOW IT WORKS / JOURNEY (Vertical timeline)
  ═══════════════════════════════════════════════ */

  .journey-line {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    position: relative !important;
  }

  .journey-line::before {
    display: none !important;
  }

  /* Vertical connecting line */
  .journey-line::after {
    content: "" !important;
    position: absolute !important;
    left: 19px !important;
    top: 40px !important;
    width: 2px !important;
    height: calc(100% - 40px) !important;
    background: linear-gradient(180deg, #8b130e, rgba(139, 19, 14, 0.08)) !important;
    z-index: 0 !important;
  }

  .journey-line article {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 0 0 28px 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .journey-line article::before,
  .journey-line article::after {
    display: none !important;
  }

  .journey-line article > span {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    background: #8b130e !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    display: grid !important;
    place-items: center !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 0 4px rgba(139, 19, 14, 0.12) !important;
    font-family: "Hind", sans-serif !important;
  }

  .journey-line article h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1A1A2E !important;
    margin: 0 0 4px 0 !important;
  }

  .journey-line article p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #4A4A6A !important;
    margin: 0 !important;
  }

  /* Remove big decorative "01 02 03 04" background numbers */
  .section:not(.hero)::before {
    display: none !important;
  }

  /* ═══════════════════════════════════════════════
     RESOLVE / PLEDGE section
  ═══════════════════════════════════════════════ */

  .resolve-grid {
    grid-template-columns: 1fr !important;
    padding: 24px 20px !important;
    border-radius: 16px !important;
    gap: 16px !important;
  }

  .mission-card {
    padding: 16px !important;
    border-radius: 12px !important;
  }

  .pill-row {
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 12px !important;
  }

  .pill-row span {
    font-size: 13px !important;
    padding: 6px 14px !important;
    min-height: auto !important;
  }

  /* ═══════════════════════════════════════════════
     FIX 7 — MEMBERSHIP TIER CARDS (Single column)
  ═══════════════════════════════════════════════ */

  .tiers {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .tier {
    width: 100% !important;
    border-radius: 16px !important;
    padding: 20px 24px !important;
    text-align: left !important;
    height: auto !important;
    position: relative !important;
  }

  .tier::before,
  .tier::after {
    display: none !important;
  }

  /* शिरोमणि संरक्षक — dark premium card */
  .tier.featured {
    background: #1A1A2E !important;
    border: 2px solid #F5A623 !important;
    color: #fff !important;
  }

  .tier.featured h3 {
    color: #fff !important;
  }

  .tier.featured .tier-icon {
    background: rgba(245, 166, 35, 0.2) !important;
    border: 1px solid #F5A623 !important;
  }

  .tier.featured .jain-svg-icon {
    stroke: #F5A623 !important;
  }

  .tier.featured strong {
    background: transparent !important;
    color: #F5A623 !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: block !important;
    margin-top: 8px !important;
  }

  /* परम संरक्षक */
  .tier:nth-child(2) {
    background: #8b130e !important;
    border: none !important;
    color: #fff !important;
  }

  .tier:nth-child(2) h3 {
    color: #fff !important;
  }

  .tier:nth-child(2) .tier-icon {
    background: rgba(255, 255, 255, 0.15) !important;
  }

  .tier:nth-child(2) .jain-svg-icon {
    stroke: #fff !important;
  }

  .tier:nth-child(2) strong {
    background: transparent !important;
    color: #fff !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: block !important;
    margin-top: 8px !important;
  }

  /* संरक्षक */
  .tier:nth-child(3) {
    background: #F8F4FF !important;
    border: 1.5px solid #8b130e !important;
    color: #1A1A2E !important;
  }

  .tier:nth-child(3) h3 {
    color: #1A1A2E !important;
  }

  .tier:nth-child(3) strong {
    background: transparent !important;
    color: #8b130e !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: block !important;
    margin-top: 8px !important;
  }

  /* सदस्य */
  .tier:nth-child(4) {
    background: #fff !important;
    border: 1px solid rgba(139, 19, 14, 0.2) !important;
    color: #1A1A2E !important;
  }

  .tier:nth-child(4) h3 {
    color: #1A1A2E !important;
  }

  .tier:nth-child(4) strong {
    background: transparent !important;
    color: #8b130e !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: block !important;
    margin-top: 8px !important;
  }

  .tier:nth-child(3) .tier-icon {
    background: rgba(139, 19, 14, 0.1) !important;
  }
  .tier:nth-child(3) .jain-svg-icon {
    stroke: #8b130e !important;
  }

  .tier:nth-child(4) .tier-icon {
    background: rgba(139, 19, 14, 0.05) !important;
  }
  .tier:nth-child(4) .jain-svg-icon {
    stroke: #8b130e !important;
  }

  .tier-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    margin: 0 0 12px 0 !important;
    display: grid !important;
    place-items: center !important;
  }

  .tier h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.3 !important;
  }

  .jain-svg-icon {
    width: 22px !important;
    height: 22px !important;
  }

  /* Monthly badge */
  .monthly-note {
    width: 100% !important;
    background: #F5A623 !important;
    color: #1A1A2E !important;
    text-align: center !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-top: 16px !important;
    border: none !important;
    padding: 0 16px !important;
  }

  /* ── RULES section ── */
  .rules-card {
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .rule-list {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .rule-list li {
    padding: 14px 14px 14px 52px !important;
    min-height: auto !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #1A1A2E !important;
  }

  .rule-list li::before {
    left: 14px !important;
    top: 14px !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 13px !important;
    background: #8b130e !important;
  }

  /* ═══════════════════════════════════════════════
     FIX 8 — DONATION SECTION
  ═══════════════════════════════════════════════ */

  .donate-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .donate-copy h2 {
    margin-bottom: 12px !important;
  }

  .donate-copy p {
    font-size: 15px !important;
    line-height: 1.8 !important;
  }

  /* Bank details — each row full-width card */
  .account-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-top: 20px !important;
  }

  .account-card > div {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 52px !important;
    background: #F8F4FF !important;
    border-radius: 10px !important;
    padding: 0 16px !important;
    margin-bottom: 8px !important;
    border-bottom: none !important;
  }

  .account-card small {
    font-size: 12px !important;
    color: #4A4A6A !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    display: block !important;
    line-height: 1.2 !important;
  }

  .account-card strong {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1A1A2E !important;
    display: block !important;
    font-family: monospace !important;
    line-height: 1.2 !important;
  }

  .copy-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    background: rgba(139, 19, 14, 0.1) !important;
    color: #8b130e !important;
    flex-shrink: 0 !important;
  }

  /* Quick-select amount buttons — 2×2 grid */
  .quick-amounts {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .quick-amounts .amount-btn {
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    background: #F8F4FF !important;
    border: 1.5px solid rgba(139, 19, 14, 0.2) !important;
    color: #1A1A2E !important;
    transition: all 0.2s ease !important;
  }

  .quick-amounts .amount-btn.active,
  .quick-amounts .amount-btn:hover {
    background: #8b130e !important;
    color: #fff !important;
    border-color: #8b130e !important;
    box-shadow: none !important;
  }

  /* Custom amount input */
  .custom-amount-input input {
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    border: 1.5px solid rgba(139, 19, 14, 0.3) !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1A1A2E !important;
    background: #fff !important;
    padding-left: 38px !important;
    box-sizing: border-box !important;
  }

  .custom-amount-input input:focus {
    border-color: #8b130e !important;
    box-shadow: 0 0 0 3px rgba(139, 19, 14, 0.1) !important;
    outline: none !important;
  }

  .custom-amount-input .currency-symbol {
    font-size: 18px !important;
    color: #8b130e !important;
    font-weight: 700 !important;
    left: 14px !important;
  }

  /* Main payment CTA button */
  .checkout-btn {
    width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    background: #8b130e !important;
    color: #fff !important;
    border-radius: 14px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 20px rgba(139, 19, 14, 0.3) !important;
    border: none !important;
  }

  .checkout-card {
    padding: 20px !important;
    border-radius: 16px !important;
    gap: 16px !important;
  }

  .checkout-header h3 {
    font-size: 17px !important;
    color: #1A1A2E !important;
  }

  .payment-tabs {
    border-radius: 12px !important;
  }

  .payment-tabs .tab-btn {
    font-size: 14px !important;
    border-radius: 8px !important;
    padding: 10px !important;
  }

  /* Payment gateway modal */
  .payment-gateway-modal {
    padding: 16px !important;
    width: calc(100% - 20px) !important;
    max-height: calc(100dvh - 20px) !important;
    border-radius: 18px !important;
  }

  .modal-panel {
    width: calc(100% - 20px) !important;
    max-height: calc(100dvh - 20px) !important;
    border-radius: 18px !important;
    padding: 20px !important;
  }

  .gateway-logo-area { gap: 10px !important; padding-bottom: 12px !important; margin-bottom: 14px !important; }
  .gateway-logo-area img { width: 42px !important; height: 42px !important; }
  .gateway-logo-area h3 { font-size: 0.95rem !important; }
  .gateway-amount-display { padding: 10px 14px !important; margin-bottom: 14px !important; border-radius: 12px !important; }
  .gateway-amount-display .amount-value { font-size: 1.3rem !important; }

  .method-option {
    padding: 12px !important;
    gap: 12px !important;
    border-radius: 12px !important;
    min-height: 52px !important;
  }

  /* ═══════════════════════════════════════════════
     FIX 9 — BROCHURE TILES (Single column, horizontal)
  ═══════════════════════════════════════════════ */

  .brochure-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .brochure-grid a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    height: 72px !important;
    padding: 12px 16px !important;
    border-radius: 14px !important;
    background: #fff !important;
    border: 1px solid rgba(139, 19, 14, 0.12) !important;
    box-shadow: none !important;
    text-decoration: none !important;
    position: relative !important;
    transition: transform 0.2s ease !important;
  }

  .brochure-grid a:hover {
    transform: none !important;
  }

  .brochure-grid img {
    width: 60px !important;
    min-width: 60px !important;
    height: 60px !important;
    object-fit: cover !important;
    object-position: top !important;
    border-radius: 8px !important;
    aspect-ratio: auto !important;
    flex-shrink: 0 !important;
  }

  .brochure-grid span {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #1A1A2E !important;
    text-align: left !important;
    flex: 1 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
  }

  /* Arrow indicator */
  .brochure-grid a::after {
    content: "›" !important;
    font-size: 20px !important;
    color: #8b130e !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    font-weight: 700 !important;
  }

  /* ═══════════════════════════════════════════════
     FIX 10 — CONTACT FORM
  ═══════════════════════════════════════════════ */

  .join-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* All form inputs — 52px, 16px font prevents iOS zoom */
  .interest-form {
    padding: 20px !important;
    border-radius: 16px !important;
    gap: 16px !important;
    display: grid !important;
  }

  .interest-form label {
    display: grid !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1A1A2E !important;
  }

  .interest-form input,
  .interest-form select {
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    border: 1.5px solid #E0D4F5 !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
    font-size: 16px !important; /* 16px prevents iOS Safari auto-zoom */
    color: #1A1A2E !important;
    background: #fff !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }

  .interest-form input:focus,
  .interest-form select:focus {
    border-color: #8b130e !important;
    box-shadow: 0 0 0 3px rgba(139, 19, 14, 0.1) !important;
    outline: none !important;
  }

  /* WhatsApp submit button */
  .interest-form .btn {
    width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    background: #25D366 !important;
    color: #fff !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3) !important;
  }

  /* Phone numbers — full-width tappable rows */
  .contact-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 16px !important;
  }

  .phone {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    background: #F8F4FF !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0 20px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1A1A2E !important;
    box-sizing: border-box !important;
  }

  .phone::after {
    content: "📞" !important;
    font-size: 18px !important;
  }

  /* ═══════════════════════════════════════════════
     SECTION HEAD — universal mobile
  ═══════════════════════════════════════════════ */

  .section-head {
    text-align: center !important;
    margin-bottom: 24px !important;
  }

  .section-head h2 {
    font-size: clamp(22px, 6vw, 28px) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #1A1A2E !important;
  }

  .section-head p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #4A4A6A !important;
    margin-top: 10px !important;
  }

  .section-head.compact {
    margin-bottom: 16px !important;
  }

  .eyebrow {
    font-size: 11px !important;
    gap: 6px !important;
    margin-bottom: 8px !important;
    letter-spacing: 1.5px !important;
    color: #F5A623 !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .eyebrow::before {
    display: none !important;
  }

  /* ═══════════════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════════════ */

  .footer {
    padding: 28px 0 !important;
  }

  .footer-grid {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }

  .footer img {
    width: 60px !important;
    height: 60px !important;
  }

  .footer p,
  .footer a {
    font-size: 14px !important;
  }

  .footer a {
    display: block !important;
    margin-top: 4px !important;
  }

  /* ═══════════════════════════════════════════════
     FLOATING DONATE BUTTON
  ═══════════════════════════════════════════════ */

  .floating-donate {
    right: 14px !important;
    bottom: 14px !important;
    font-size: 14px !important;
    min-height: 48px !important;
    padding: 11px 16px !important;
  }

  /* ═══════════════════════════════════════════════
     IMAGE SAFETY
  ═══════════════════════════════════════════════ */

  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* ── Phone ≤ 480px — extra tightening ── */
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .hero-stats article {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 14px !important;
    text-align: left !important;
  }

  .hero-stats strong {
    font-size: 14px !important;
    margin: 0 !important;
  }

  .hero-stats span {
    font-size: 12px !important;
    margin: 0 !important;
    text-align: right !important;
  }

  .nav {
    padding: 0 24px !important;
  }
}

/* ── Small phone ≤ 380px ── */
@media (max-width: 380px) {
  .brand strong {
    font-size: 0.85rem !important;
  }

  .hero-copy h1 {
    font-size: 24px !important;
  }

  .monthly-note {
    font-size: 13px !important;
    height: auto !important;
    min-height: 48px !important;
    padding: 10px 14px !important;
  }

  .rule-list li {
    font-size: 13px !important;
    padding-left: 46px !important;
  }

  .checkout-card {
    padding: 16px !important;
  }

  .quick-amounts .amount-btn {
    height: 48px !important;
    font-size: 15px !important;
  }

  .phone {
    font-size: 15px !important;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Final navigation guard: keep mobile close button out of desktop layout */
.nav-close-btn {
  display: none !important;
}

@media (max-width: 980px) {
  body.nav-open .nav-close-btn {
    display: flex !important;
  }
}
