/* web/css/pmdan.css — PMDAN Membership Portal stylesheet */

/* ─── Variables ─────────────────────────────────────────────────── */
:root {
  --green-deep:   #0a3622;
  --green-mid:    #1a5c3a;
  --green-bright: #2d8f5e;
  --green-light:  #b6dfc9;
  --green-pale:   #e8f5ee;
  --gold:         #c8973a;
  --gold-light:   #f5e8c8;
  --cream:        #faf8f4;
  --ink:          #1a1a18;
  --muted:        #6b6b63;
  --border:       rgba(10,54,34,.12);
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(10,54,34,.08);
  --shadow-md:    0 8px 32px rgba(10,54,34,.12);
  --shadow-lg:    0 20px 60px rgba(10,54,34,.15);
  --radius:       12px;
  --radius-lg:    20px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: var(--green-bright); }
a:hover { color: var(--green-mid); }

/* ─── Container ─────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.container--narrow { max-width: 720px; }

/* ─── Navigation ────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,54,34,.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  border-bottom: 1px solid rgba(200,151,58,.3);
}
.nav-logo {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: .04em;
}
.nav-logo span { color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .875rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--green-deep) !important; padding: 8px 20px; border-radius: 6px; font-weight: 600 !important; transition: background .2s !important; }
.nav-cta:hover { background: #daa94a !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--green-deep); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,.35); color: var(--green-deep); }
.btn--outline { background: transparent; color: var(--green-deep); border: 1.5px solid var(--green-bright); }
.btn--outline:hover { background: var(--green-pale); color: var(--green-deep); }
.btn--sm { padding: 8px 16px; font-size: .85rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--plan { display: block; text-align: center; width: 100%; padding: 13px; background: var(--green-deep); color: var(--white) !important; border-radius: 8px; }
.btn--plan:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ─── Section commons ───────────────────────────────────────────── */
section { padding: 90px 0; }
.section-label { display: block; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--green-bright); font-weight: 600; margin-bottom: .75rem; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--green-deep); line-height: 1.15; margin-bottom: 1rem; }
.section-title--light { color: var(--white); }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 580px; line-height: 1.75; }
.section-sub--light { color: rgba(255,255,255,.65); }
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ─── Flash messages ────────────────────────────────────────────── */
.flash { padding: 1rem 5%; font-size: .95rem; font-weight: 500; border-bottom: 1px solid transparent; }
.flash--success { background: #d4edda; color: #155724; border-color: #c3e6cb; }
.flash--error   { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding: 130px 5% 80px;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 60%, #1d7a4a 100%);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(200,151,58,.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 800px; }
.hero__tag { display: inline-block; background: rgba(200,151,58,.18); border: 1px solid rgba(200,151,58,.4); color: var(--gold-light); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; padding: 6px 16px; border-radius: 100px; margin-bottom: 1.5rem; animation: fadeUp .7s ease both; }
.hero__heading { font-family: var(--font-heading); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 1.5rem; animation: fadeUp .7s .1s ease both; }
.hero__heading em { color: var(--gold); font-style: normal; }
.hero__sub { font-size: 1.15rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.75; animation: fadeUp .7s .2s ease both; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeUp .7s .3s ease both; }
.hero__stats { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: center; animation: fadeUp .7s .4s ease both; }
.hero__stat { background: rgba(255,255,255,.07); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1); padding: 20px 40px; text-align: center; }
.hero__stat:first-child { border-radius: var(--radius) 0 0 0; }
.hero__stat:last-child  { border-radius: 0 var(--radius) 0 0; }
.hero__stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.hero__stat-label  { font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: .05em; }

/* ─── PROCESS ───────────────────────────────────────────────────── */
.process-section { background: var(--green-deep); padding: 90px 5%; }
.process-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.process-step { position: relative; padding: 2rem 1.5rem 2rem 2rem; border-right: 1px solid rgba(255,255,255,.08); transition: background .3s; }
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(255,255,255,.04); }
.step-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: rgba(200,151,58,.25); line-height: 1; margin-bottom: 1rem; display: block; }
.step-icon { width: 48px; height: 48px; background: rgba(200,151,58,.15); border: 1px solid rgba(200,151,58,.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.5rem; }
.step-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.step-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.step-connector { position: absolute; right: -5px; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; background: var(--gold); border-radius: 50%; z-index: 2; }

/* ─── PLANS ─────────────────────────────────────────────────────── */
.plans-section { background: var(--cream); }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.plan-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.plan-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--green-bright); }
.plan-card--featured::before { background: var(--gold); }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-badge { display: inline-block; background: var(--green-pale); color: var(--green-mid); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 1.25rem; }
.plan-card--featured .plan-badge { background: var(--gold-light); color: #7a5a1a; }
.plan-name { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--green-deep); margin-bottom: .25rem; }
.plan-tagline { font-size: .875rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-price { margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.price-amount { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--green-deep); line-height: 1; display: block; }
.price-currency { font-size: 1.2rem; vertical-align: super; }
.price-period { font-size: .85rem; color: var(--muted); margin-top: .25rem; display: block; }
.plan-features { list-style: none; margin-bottom: 2rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; padding: 6px 0; }
.plan-features li::before { content: '✓'; color: var(--green-bright); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-card--featured .btn--plan { background: var(--gold); color: var(--green-deep) !important; }
.plan-card--featured .btn--plan:hover { background: #daa94a; }

/* ─── BENEFITS ──────────────────────────────────────────────────── */
.benefits-section { background: var(--green-pale); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.benefit-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; transition: box-shadow .25s, transform .25s; }
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-icon { width: 52px; height: 52px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.25rem; }
.benefit-title { font-size: 1rem; font-weight: 600; color: var(--green-deep); margin-bottom: .5rem; }
.benefit-desc { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ─── BANK ──────────────────────────────────────────────────────── */
.bank-section { background: var(--white); }
.bank-card { background: var(--green-deep); border-radius: var(--radius-lg); padding: 2.5rem 3rem; max-width: 700px; margin: 0 auto; position: relative; overflow: hidden; }
.bank-card__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.bank-chip { width: 50px; height: 36px; background: var(--gold); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.bank-card__title { font-family: var(--font-heading); font-size: 1.25rem; color: var(--white); font-weight: 600; }
.bank-card__sub { font-size: .8rem; color: rgba(255,255,255,.5); }
.bank-card__bank-name { margin-left: auto; font-size: .7rem; letter-spacing: .18em; color: rgba(255,255,255,.2); font-weight: 700; }
.bank-card__details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.bank-field label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); display: block; margin-bottom: 4px; }
.bank-field span { font-family: var(--font-heading); font-size: 1.15rem; color: var(--white); font-weight: 600; }
.bank-field--full { grid-column: 1 / -1; }
.bank-acct-num { font-family: var(--font-body) !important; font-size: 1.5rem !important; letter-spacing: .18em; color: var(--gold) !important; font-weight: 500 !important; }

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 900px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; padding: 1.1rem 1.25rem; font-family: var(--font-body); font-size: .9rem; font-weight: 600; color: var(--green-deep); background: none; border: none; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s; }
.faq-q:hover { background: var(--green-pale); }
.faq-chevron { font-size: .75rem; color: var(--green-bright); transition: transform .3s; flex-shrink: 0; }
.faq-item.faq-item--open .faq-chevron { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-a[hidden] { display: block !important; max-height: 0; }
.faq-item--open .faq-a { max-height: 300px; }
.faq-a__inner { padding: 0 1.25rem 1.25rem; font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ─── CTA BAND ──────────────────────────────────────────────────── */
.cta-band { background: var(--green-deep); padding: 60px 5%; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band__heading { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.cta-band__sub { color: rgba(255,255,255,.6); font-size: .95rem; }

/* ─── PAGE HERO (inner pages) ───────────────────────────────────── */
.page-hero { background: var(--green-deep); padding: 120px 0 60px; color: var(--white); }
.page-hero--sm { padding: 100px 0 50px; }
.page-hero .section-label { color: rgba(200,151,58,.9); }
.page-hero__title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.page-hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 600px; line-height: 1.75; }

/* ─── APPLY PROGRESS ────────────────────────────────────────────── */
.apply-progress { background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 5%; }
.progress-steps { list-style: none; display: flex; gap: 0; counter-reset: step; }
.progress-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.progress-step + .progress-step::before { content: ''; position: absolute; left: -50%; top: 16px; width: 100%; height: 2px; background: var(--border); z-index: 0; }
.progress-step--active + .progress-step::before, .progress-step + .progress-step--active::before { background: var(--green-bright); }
.progress-step__num { width: 32px; height: 32px; border-radius: 50%; background: var(--border); color: var(--muted); font-size: .85rem; font-weight: 600; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: background .2s, color .2s; }
.progress-step--active .progress-step__num { background: var(--green-bright); color: var(--white); }
.progress-step__label { font-size: .75rem; color: var(--muted); margin-top: 4px; }
.progress-step--active .progress-step__label { color: var(--green-deep); font-weight: 600; }

/* ─── APPLICATION FORM ──────────────────────────────────────────── */
.apply-section { background: var(--cream); padding: 60px 0 90px; }
.apply-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.apply-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 3rem; box-shadow: var(--shadow-md); }
.form-block { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.form-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.form-block--footer { border-bottom: none; }
.form-block__title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--green-deep); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; }
.form-block__num { width: 28px; height: 28px; background: var(--green-deep); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: .8rem; font-weight: 700; flex-shrink: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-col { display: flex; flex-direction: column; }
.form-col--full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: .8rem; font-weight: 600; color: var(--green-deep); letter-spacing: .03em; }
.field__input { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: .9rem; color: var(--ink); background: var(--cream); transition: border-color .2s, box-shadow .2s; outline: none; width: 100%; }
.field__input:focus { border-color: var(--green-bright); box-shadow: 0 0 0 3px rgba(45,143,94,.12); background: var(--white); }
.field__select { appearance: none; 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='%236b6b63' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.field__error { color: #c0392b; font-size: .8rem; font-style: italic; }
textarea.field__input { resize: vertical; min-height: 110px; }

/* Type selector */
.type-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.type-option { cursor: pointer; }
.type-option__radio { display: none; }
.type-option__body { display: block; border: 1.5px solid var(--border); border-radius: 8px; padding: 14px; text-align: center; transition: all .2s; background: var(--cream); }
.type-option__name { display: block; font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.type-option__price { display: block; font-size: .8rem; color: var(--muted); margin-bottom: 4px; }
.type-option__desc { display: block; font-size: .75rem; color: var(--muted); }
.type-option--selected .type-option__body, .type-option__radio:checked + .type-option__body { border-color: var(--green-bright); background: var(--green-pale); }
.type-option--selected .type-option__name { color: var(--green-deep); }

/* Payment reminder */
.payment-reminder { background: var(--gold-light); border: 1px solid rgba(200,151,58,.3); border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: 1.25rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.payment-reminder__text { font-size: .875rem; color: var(--ink); line-height: 1.6; }
.payment-reminder__link { font-size: .8rem; font-weight: 600; color: var(--green-bright); white-space: nowrap; }
.bank-mini { background: var(--green-pale); border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: 1.25rem; }
.bank-mini__list { display: grid; grid-template-columns: auto 1fr; gap: .4rem 1.5rem; font-size: .875rem; }
.bank-mini__list dt { color: var(--muted); font-weight: 600; }
.bank-mini__list dd { color: var(--ink); }
.bank-mini__acct { font-family: monospace; font-size: 1rem; letter-spacing: .1em; color: var(--green-deep); font-weight: 700; }

/* Upload area */
.upload-input { display: none; }
.upload-area { border: 2px dashed var(--border); border-radius: 8px; padding: 2rem; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; background: var(--cream); }
.upload-area:hover { border-color: var(--green-bright); background: var(--green-pale); }
.upload-area__icon { font-size: 2rem; margin-bottom: .5rem; }
.upload-area__text { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.upload-area__cta { color: var(--green-bright); font-weight: 600; }
.upload-area__filename { margin-top: .75rem; font-size: .8rem; color: var(--green-bright); font-weight: 600; }

/* Checkbox */
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-bottom: 1.5rem; }
.checkbox-field__input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; accent-color: var(--green-bright); }
.checkbox-field__label { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* Form actions */
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.form-secure { font-size: .8rem; color: var(--muted); }
.btn__arrow { transition: transform .2s; }
.btn--submit:hover .btn__arrow { transform: translateX(4px); }

/* Sidebar */
.apply-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 90px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.sidebar-card--track { background: var(--green-pale); border-color: var(--green-light); }
.sidebar-card__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--green-deep); margin-bottom: .75rem; }
.sidebar-card__body { font-size: .875rem; color: var(--muted); line-height: 1.7; margin-bottom: .75rem; }
.sidebar-steps { list-style: none; counter-reset: step; }
.sidebar-steps li { font-size: .875rem; color: var(--muted); padding: .4rem 0 .4rem 28px; position: relative; line-height: 1.5; }
.sidebar-steps li::before { content: counter(step); counter-increment: step; position: absolute; left: 0; top: .4rem; width: 18px; height: 18px; background: var(--green-deep); color: var(--white); border-radius: 50%; font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.track-form { display: flex; flex-direction: column; gap: .75rem; margin-top: .75rem; }

/* ─── SUCCESS PAGE ──────────────────────────────────────────────── */
.success-section { padding: 120px 0 90px; background: var(--cream); min-height: 100vh; display: flex; align-items: center; }
.success-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 3.5rem; text-align: center; box-shadow: var(--shadow-lg); }
.success-card__icon { font-size: 4rem; margin-bottom: 1.25rem; display: block; }
.success-card__title { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--green-deep); margin-bottom: .75rem; }
.success-card__body { font-size: .975rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.success-token { background: var(--green-pale); border: 1px solid var(--green-light); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem; }
.success-token__label { display: block; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-bright); font-weight: 600; margin-bottom: .5rem; }
.success-token__code { display: block; font-family: monospace; font-size: 1.6rem; letter-spacing: .2em; color: var(--green-deep); font-weight: 700; margin-bottom: .5rem; }
.success-token__note { font-size: .8rem; color: var(--muted); }
.success-card__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.success-card__email-note { font-size: .875rem; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ─── STATUS PAGE ───────────────────────────────────────────────── */
.status-section { padding: 100px 0 90px; background: var(--cream); }
.status-summary-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; margin-bottom: 2rem; box-shadow: var(--shadow-sm); }
.status-summary-card__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.status-summary-card__name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--green-deep); }
.status-summary-card__type { font-size: .875rem; color: var(--muted); }
.status-summary-card__meta { display: grid; grid-template-columns: auto 1fr; gap: .3rem 1.5rem; font-size: .875rem; }
.status-summary-card__meta dt { color: var(--muted); font-weight: 600; }
.status-summary-card__meta dd { color: var(--ink); }
.status-badge { display: inline-block; padding: 5px 14px; border-radius: 100px; font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.status--pending      { background: #fef9e7; color: #856404; }
.status--review       { background: #e8f4fd; color: #0c5460; }
.status--approved     { background: var(--green-pale); color: var(--green-mid); }
.status--rejected     { background: #fdf0f0; color: #721c24; }
.status-tracker { display: flex; gap: 0; margin-bottom: 2rem; }
.tracker-step { flex: 1; position: relative; }
.tracker-step__indicator { width: 36px; height: 36px; border-radius: 50%; background: var(--border); color: var(--muted); font-size: .85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; position: relative; z-index: 2; transition: background .2s, color .2s; }
.tracker-step--done .tracker-step__indicator   { background: var(--green-bright); color: var(--white); }
.tracker-step--active .tracker-step__indicator { background: var(--green-deep); color: var(--white); }
.tracker-step__line { position: absolute; top: 17px; left: 50%; right: -50%; height: 2px; background: var(--border); z-index: 1; }
.tracker-step__line--done { background: var(--green-bright); }
.tracker-step__content { text-align: center; }
.tracker-step__label { display: block; font-size: .85rem; font-weight: 600; color: var(--green-deep); }
.tracker-step__desc  { display: block; font-size: .75rem; color: var(--muted); line-height: 1.4; margin-top: 2px; }
.status-alert { border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.status-alert--success { background: var(--green-pale); border: 1px solid var(--green-light); }
.status-alert--danger  { background: #fdf0f0; border: 1px solid #f5c6cb; }
.status-alert strong { display: block; font-size: .95rem; color: var(--green-deep); margin-bottom: .25rem; }
.status-alert--danger strong { color: #721c24; }
.status-alert p { font-size: .875rem; color: var(--muted); line-height: 1.7; }
.status-actions { display: flex; gap: 1rem; }

/* ─── FOOTER ────────────────────────────────────────────────────── */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,.6); text-align: center; padding: 2.5rem 5%; font-size: .85rem; }
.footer-org  { font-weight: 600; color: var(--white); margin-bottom: .75rem; }
.footer-sub  { margin-bottom: .75rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1.5rem; }
.footer-links a { color: var(--gold-light); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ─── Animations ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.reveal--visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .apply-layout { grid-template-columns: 1fr; }
  .apply-sidebar { position: static; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; }
  .hero__stat { padding: 14px 24px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.nav-links--open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--green-deep); padding: 1rem 5%; border-top: 1px solid rgba(255,255,255,.1); gap: 1rem; z-index: 99; }
  .hero__heading { font-size: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .type-selector { grid-template-columns: 1fr; }
  .apply-form-wrap { padding: 1.75rem 1.25rem; }
  .bank-card { padding: 2rem 1.5rem; }
  .bank-card__details { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .plans-grid { grid-template-columns: 1fr; }
  .progress-steps { gap: 0; }
  .progress-step__label { display: none; }
}
