ash

cat > /mnt/user-data/outputs/style.css << 'EOF'
/* ═══════════════════════════════════════════════════════
   WHP Golden Moments Scheme — style.css
   ═══════════════════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:       #8f4f58;
  --brand-dark:  #6e3340;
  --brand-light: #e8c4c8;
  --brand-pale:  #fdf5f6;
  --gold:        #c8962a;
  --gold-light:  #f0e8d0;
  --ink:         #1e1214;
  --ink-soft:    #4a2e34;
  --grey:        #6b7280;
  --bg:          #f9f0f1;
  --white:       #ffffff;
  --green:       #2a7a50;
  --orange:      #c87a00;
  --red:         #c0392b;
  --radius:      10px;
  --shadow:      0 2px 12px rgba(0,0,0,0.08);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; cursor: pointer; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }

/* ── HEADER ── */
#site-header {
  background: var(--ink);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }
.logo-title { font-size: 15px; font-weight: 700; color: #f9f0f1; line-height: 1.2; }
.logo-sub { font-size: 10px; color: var(--gold); letter-spacing: .08em; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
}

.header-nav a {
  color: #d1c4c6;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .15s;
}

.header-nav a:hover,
.header-nav a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .15s;
}
.btn-login:hover { opacity: .88; }

.header-user {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 6px 14px;
}
.header-user.show { display: flex; }
.user-info { display: flex; flex-direction: column; }
.user-name { font-size: 13px; font-weight: 600; color: #f9f0f1; }
.user-phone { font-size: 11px; color: var(--gold); }

.btn-logout {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #d1c4c6;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 12px;
  transition: background .15s;
}
.btn-logout:hover { background: rgba(255,255,255,0.1); }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── PAGE HEAD (enroll & myscheme) ── */
.page-head {
  background: var(--ink);
  padding: 24px;
  text-align: center;
}
.page-head h1 {
  font-size: 22px;
  font-weight: 700;
  color: #f9f0f1;
  margin-bottom: 4px;
}
.page-head p {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1e1214 0%, #3d1f28 50%, #1e1214 100%);
  padding: 64px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200,150,42,0.15) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.hero-tag {
  display: inline-block;
  background: rgba(200,150,42,0.2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(200,150,42,0.3);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 700;
  color: #f9f0f1;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero p { font-size: 16px; color: #c8b0b4; line-height: 1.7; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover { background: var(--brand-dark); }

.btn-outline {
  background: transparent;
  color: #f9f0f1;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── SECTIONS ── */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 24px;
}
.section-alt {
  background: var(--white);
  max-width: 100%;
  padding: 56px 0;
}
.section-alt .section-head,
.section-alt .bonus-table-wrap,
.section-alt .steps-grid,
.section-alt .faq-list,
.section-alt .table-wrap {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.section-head p { font-size: 15px; color: var(--grey); }
.gold-line { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 12px auto 0; }

/* ── PLANS ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--brand-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan-card.featured { border-color: var(--gold); }

.plan-header {
  background: var(--ink);
  padding: 20px;
  text-align: center;
}
.plan-months { font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; }
.plan-label { font-size: 12px; color: #c8b0b4; margin-top: 4px; }
.plan-popular {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: .06em;
  margin-top: 8px;
}
.plan-body { padding: 20px; }
.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0dce0;
  font-size: 13px;
  gap: 8px;
}
.plan-row:last-of-type { border-bottom: none; }
.plan-row span:first-child { color: var(--grey); }
.plan-row span:last-child { font-weight: 600; color: var(--ink); text-align: right; }
.plan-row .gold { color: var(--brand); }

.btn-plan {
  width: 100%;
  padding: 12px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: background .15s;
}
.btn-plan:hover { background: var(--brand-dark); }

/* ── BONUS TABLE ── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--brand-light);
}
.bonus-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bonus-table th {
  background: var(--ink);
  color: #f9f0f1;
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bonus-table td { padding: 14px 16px; border-bottom: 1px solid #f0dce0; }
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover td { background: var(--brand-pale); }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
}
.b60 { background: #fff8e6; color: #92600a; }
.b75 { background: #f0faf5; color: var(--green); }
.b100 { background: #e8f0fe; color: #1a56db; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.step-card { text-align: center; padding: 24px 16px; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-pale);
  border: 2px solid var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--grey); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--brand-light);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 12px;
}
.faq-q:hover { background: var(--brand-pale); }
.faq-icon { color: var(--brand); font-size: 18px; transition: transform .2s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 13px; color: var(--grey); line-height: 1.7; }
.faq-a.open { display: block; }

/* ── ENROLL LAYOUT ── */
.enroll-layout {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  align-items: start;
}
.enroll-sidebar { position: sticky; top: 80px; }

/* ── SUMMARY CARD ── */
.summary-card {
  background: var(--white);
  border: 1px solid var(--brand-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.summary-head {
  background: var(--ink);
  padding: 16px 20px;
}
.summary-head h3 { font-size: 15px; font-weight: 700; color: #f9f0f1; margin-bottom: 3px; }
.summary-head p { font-size: 11px; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }

.summary-body { padding: 14px 20px; }
.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0dce0;
  font-size: 13px;
  gap: 10px;
}
.sum-row:last-of-type { border-bottom: none; }
.sum-row span:first-child { color: var(--ink-soft); }
.sum-row span:last-child { font-weight: 700; color: var(--ink); text-align: right; font-size: 13px; }
.sum-total span:first-child { font-weight: 700; }
.sum-total .accent { color: var(--brand); font-size: 16px; }
.muted { color: var(--grey) !important; }

.gold-sep { border: none; border-top: 1.5px solid var(--gold); margin: 4px 0; }

.type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-pale);
  border: 1px solid var(--brand-light);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand);
  margin-top: 10px;
}

/* ── CALCULATOR ── */
.calc-controls {
  padding: 14px 20px;
  border-top: 1px solid #f0dce0;
}
.ctrl-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tenure-tabs { display: flex; gap: 6px; margin-bottom: 14px; }
.tenure-tab {
  flex: 1;
  padding: 8px 4px;
  border: 1px solid var(--brand-light);
  border-radius: 6px;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.t-num { font-size: 15px; font-weight: 700; display: block; }
.t-sub { font-size: 9px; color: var(--grey); display: block; }
.tenure-tab.active { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.tenure-tab.active .t-sub { color: var(--brand-light); }

.amt-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--brand-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.amt-input-wrap:focus-within { border-color: var(--brand); }
.amt-prefix {
  padding: 10px 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  background: var(--brand-pale);
  border-right: 1px solid var(--brand-light);
  flex-shrink: 0;
}
.amt-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  width: 100%;
}

#amt-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin-bottom: 4px;
  background: linear-gradient(to right, var(--brand) 0%, var(--brand) 2%, var(--brand-light) 2%, var(--brand-light) 100%);
  display: block;
}
#amt-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--brand);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(143,79,88,.25);
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--grey);
  margin-bottom: 10px;
}

.quick-amounts { display: flex; gap: 6px; flex-wrap: wrap; }
.quick-btn {
  padding: 7px 12px;
  border: 1px solid var(--brand-light);
  border-radius: 5px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
  position: relative;
}
.quick-btn:hover { background: var(--brand-pale); }
.quick-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.popular-tag {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ── FORM ── */
.enroll-form {
  background: var(--white);
  border: 1px solid var(--brand-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.form-section {
  padding: 18px 20px;
  border-bottom: 1px solid #f0dce0;
}
.form-section:last-child { border-bottom: none; }
.form-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.form-group { margin-bottom: 12px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--brand-light);
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--brand); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238f4f58' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* OTP */
.otp-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.otp-row input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--brand-light);
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .15s;
}
.otp-row input:focus { border-color: var(--brand); }
.otp-action-btn {
  padding: 0 16px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
  min-height: 44px;
}
.otp-action-btn:hover { background: var(--brand-dark); }
.otp-action-btn:disabled { background: #ccc; cursor: not-allowed; }

.field-msg { font-size: 11px; margin-top: 5px; min-height: 16px; }
.field-msg.ok { color: var(--green); }
.field-msg.err { color: var(--red); }

.resend-text { font-size: 11px; color: var(--grey); margin-top: 6px; }
.resend-text span { color: var(--brand); cursor: pointer; font-weight: 600; }
.resend-text span:hover { text-decoration: underline; }

.verified-badge {
  display: none;
  align-items: center;
  gap: 6px;
  background: #f0faf5;
  border: 1px solid #b8dfc8;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-top: 8px;
}
.verified-badge.show { display: flex; }

/* Payment options */
.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-option {
  border: 2px solid var(--brand-light);
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
  transition: all .15s;
  background: #fff;
  position: relative;
}
.pay-option:hover { border-color: var(--brand-dark); }
.pay-option.selected { border-color: var(--brand); background: var(--brand-pale); }
.pay-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  transition: all .15s;
}
.pay-option.selected .pay-check { background: var(--brand); border-color: var(--brand); color: #fff; }
.pay-icon { font-size: 20px; display: block; margin-bottom: 6px; }
.pay-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.pay-desc { font-size: 11px; color: var(--grey); line-height: 1.4; }

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .15s;
}
.btn-submit:hover { background: var(--brand-dark); }
.btn-submit:disabled { background: #ccc; cursor: not-allowed; }
.form-note { font-size: 11px; color: var(--grey); text-align: center; margin-top: 10px; line-height: 1.6; }

/* ── MY SCHEME ── */
.myscheme-wrap { max-width: 640px; margin: 0 auto; padding: 32px 20px 60px; }
.ms-login-card {
  background: var(--white);
  border: 1px solid var(--brand-light);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  text-align: center;
}
.ms-login-card h2 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.ms-login-card p { font-size: 13px; color: var(--grey); margin-bottom: 20px; }
.ms-login-card .form-group { text-align: left; max-width: 400px; margin: 0 auto 12px; }

/* Scheme card */
.scheme-card {
  background: var(--white);
  border: 1px solid var(--brand-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.scheme-card-header {
  background: var(--ink);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scheme-eid { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .08em; }
.scheme-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.status-active { background: rgba(200,150,42,.2); color: var(--gold); }
.status-complete { background: rgba(42,122,80,.2); color: #6bc986; }
.status-matured { background: rgba(42,122,80,.15); color: #4a9e6a; }

.scheme-body { padding: 18px 20px; }
.scheme-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.scheme-info-item {
  background: var(--brand-pale);
  border-radius: 6px;
  padding: 10px 12px;
}
.si-label { font-size: 10px; color: var(--grey); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 3px; }
.si-value { font-size: 14px; font-weight: 600; color: var(--ink); }
.si-value.green { color: var(--green); }
.si-value.orange { color: var(--orange); }

.coupon-box {
  background: #f0faf5;
  border: 1px solid #b8dfc8;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 12px;
  text-align: center;
}
.coupon-label { font-size: 10px; color: var(--grey); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.coupon-code { font-size: 22px; font-weight: 700; color: var(--green); letter-spacing: .12em; }
.coupon-note { font-size: 11px; color: var(--grey); margin-top: 4px; }

.months-label { font-size: 10px; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.months-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(48px, 1fr)); gap: 5px; }
.month-cell {
  border-radius: 5px;
  padding: 6px 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
}
.month-cell.paid { background: #f0faf5; color: var(--green); }
.month-cell.pending { background: #fff8e6; color: var(--orange); }
.month-cell.empty { background: #f5f5f5; color: #ccc; opacity: .5; }

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}
.modal-overlay.open { display: flex; align-items: center; justify-content: center; }
.modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 380px;
  width: 100%;
  overflow: hidden;
}
.modal-header {
  background: var(--ink);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h2 { font-size: 16px; font-weight: 700; color: #f9f0f1; margin: 0; }
.modal-close { background: none; border: none; color: var(--gold); font-size: 20px; cursor: pointer; }
.modal-body { padding: 22px; }
.modal-body .form-group { margin-bottom: 14px; }

/* ── THANK YOU ── */
.ty-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 20px 60px;
  text-align: center;
}
.ty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-pale);
  border: 2px solid var(--brand-light);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.ty-wrap h1 { font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ty-subtitle { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 32px; }
.ty-card {
  background: var(--white);
  border: 1px solid var(--brand-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  text-align: left;
}
.ty-card-header {
  background: var(--ink);
  padding: 13px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ty-card-title { font-size: 12px; font-weight: 700; color: var(--brand-light); letter-spacing: .07em; text-transform: uppercase; }
.ty-ref-num { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .1em; }
.ty-rows { padding: 4px 20px 8px; }
.ty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0dce0;
  font-size: 14px;
  gap: 12px;
}
.ty-row:last-of-type { border-bottom: none; }
.ty-row span:first-child { color: var(--ink-soft); }
.ty-row span:last-child { font-weight: 700; color: var(--ink); text-align: right; }
.ty-total span:first-child { font-weight: 700; }
.ty-total .accent { color: var(--brand); font-size: 16px; }
.ty-sep { margin: 4px 20px; }

.ty-steps {
  background: var(--brand-pale);
  border: 1px solid var(--brand-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  text-align: left;
}
.ty-steps-label { font-size: 10px; font-weight: 700; color: var(--grey); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.ty-step { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.ty-step:last-child { margin-bottom: 0; }
.ty-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ty-step-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.ty-step-desc { font-size: 12px; color: var(--grey); line-height: 1.5; }

.pay-note {
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 16px;
  text-align: left;
  font-size: 13px;
  line-height: 1.6;
}
.pay-note strong { display: block; margin-bottom: 4px; font-size: 14px; }
.upi-note { background: #e8f0fe; border: 1px solid #b8d0f8; color: #1a3a6e; }
.store-note { background: var(--brand-pale); border: 1px solid var(--brand-light); color: var(--brand-dark); }

.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px 20px;
}
.branch-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 0;
}
.branch-item.highlight { color: var(--brand); }

.ty-cta {
  display: inline-block;
  padding: 13px 32px;
  background: var(--brand);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 8px;
  cursor: pointer;
  border: none;
  transition: background .15s;
}
.ty-cta:hover { background: var(--brand-dark); }

/* ── FOOTER ── */
#site-footer {
  background: var(--ink);
  padding: 40px 24px 24px;
  margin-top: 60px;
}
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand h3 { font-size: 16px; font-weight: 700; color: #f9f0f1; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: #9ca3af; line-height: 1.6; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: #9ca3af; margin-bottom: 6px; cursor: pointer; transition: color .15s; }
.footer-col a:hover { color: #f9f0f1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: #6b7280; }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  background: var(--ink);
  color: #f9f0f1;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transform: translateY(80px);
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--green); }
.toast.error { border-left: 4px solid var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .enroll-layout { grid-template-columns: 1fr; }
  .enroll-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .pay-options { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .plans-grid { grid-template-columns: 1fr; }
  .scheme-info-grid { grid-template-columns: 1fr 1fr; }
  .branches-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 16px 56px; }
  .section { padding: 40px 16px; }
  .enroll-layout { padding: 16px 16px 40px; }
  .ty-wrap { padding: 32px 16px 40px; }
  .myscheme-wrap { padding: 24px 16px 40px; }
  .scheme-info-grid { grid-template-columns: 1fr; }
}