/* ============================================================
   INSTANT LOAN — standalone subdomain styles
   Domain: instantloan.mycashbridge.com
   Fully self-contained — no external CSS dependencies.
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --brand-lime:    #9AEF5E;
  --lime-soft:     #c8f7a8;
  --green-primary: #0a5e3a;
  --green-accent:  #0c7a4e;
  --green-deep:    #073d28;
  --green-house:   #e0fced;
  --aqua:          #e0fced;
  --aqua-deep:     #bff0db;
  --white:         #ffffff;
  --canvas:        #f2f0eb;
  --ink:           #000000;
  --text-strong:       rgba(0,0,0,0.87);
  --text-soft:         rgba(0,0,0,0.55);
  --text-on-aqua:      #0a5e3a;
  --text-on-aqua-soft: #3a6b56;
  --red:           #c82014;
  --tint-valid:    hsl(160 32% 87% / 33%);
  --tint-invalid:  hsl(4 82% 43% / 5%);
  --input-border:  #d6dbde;
  --hairline:      #e7e7e7;
  --font-sans:    'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --radius-card:   12px;
  --radius-pill:   50px;
  --shadow-card:   0 0 0 1px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.07), 0 6px 20px rgba(0,0,0,0.06);
  --shadow-nav:    0 1px 0 rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

/* ── Base Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--canvas);
  color: var(--text-strong);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--green-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: var(--font-sans); }
h1, h2, h3, h4, h5 { margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }

/* ── Layout ────────────────────────────────────────────────── */
.wrap    { max-width: 1180px; margin: 0 auto; padding-inline: 36px; }
.section { padding-block: 52px; }
.center  { text-align: center; }
.muted   { color: var(--text-soft); }

/* ── Typography ────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-primary);
  display: block;
}
.h-sec {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-strong);
}
.h-sec.green { color: var(--green-primary); }
.lead {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: all 0.18s ease;
  text-decoration: none;
  font-family: var(--font-sans);
}
.btn:active { transform: scale(0.96); }
.btn svg, .btn i { width: 16px; height: 16px; flex-shrink: 0; }
.btn-lg { padding: 13px 28px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-filled  { background: var(--brand-lime); color: var(--green-deep); border-color: var(--brand-lime); }
.btn-filled:hover  { background: #8fe650; text-decoration: none; }
.btn-outline { background: transparent; color: var(--green-accent); border-color: var(--green-accent); }
.btn-outline:hover { background: rgba(12,122,78,0.06); text-decoration: none; }
.btn-black   { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-black:hover   { background: #1a1a1a; text-decoration: none; }
.btn-ghost   { background: transparent; color: var(--text-soft); border-color: var(--hairline); }
.btn-ghost:hover   { border-color: #bbb; color: var(--text-strong); background: rgba(0,0,0,0.03); text-decoration: none; }
.btn-block { width: 100%; }

/* ── Pills ─────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.pill svg, .pill i { width: 13px; height: 13px; }
.pill-approved { background: hsl(160 32% 87% / 70%); color: var(--green-primary); }
.pill-lime     { background: var(--lime-soft); color: var(--green-deep); }

/* ── Generic Card ──────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
}

/* ── Notice Banner ─────────────────────────────────────────── */
.il-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 9px;
  background: var(--green-house);
  border: 1px solid var(--aqua-deep);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 16px;
  line-height: 1.45;
}
.il-notice i, .il-notice svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; }

/* ── Shared Section Bands ──────────────────────────────────── */
.band { background: var(--aqua); padding-block: 52px; }
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── How It Works Steps ────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 10px; }
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 11px;
  padding: 15px 16px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 2px 6px rgba(0,0,0,0.06);
}
.step-ic {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--brand-lime);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-ic i, .step-ic svg { width: 19px; height: 19px; color: var(--green-deep); }
.step b   { font-size: 14px; font-weight: 700; color: var(--text-strong); display: block; }
.step p   { font-size: 13px; color: var(--text-soft); margin: 3px 0 0; line-height: 1.5; }

/* ── Why Grid ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}
.why {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.05);
}
.why-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-house);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.why-ic i, .why-ic svg { width: 20px; height: 20px; color: var(--green-primary); }
.why b { font-size: 14px; font-weight: 700; color: var(--text-strong); display: block; line-height: 1.3; }
.why p { font-size: 13px; color: var(--text-soft); margin: 5px 0 0; line-height: 1.55; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; }
.qa  { border-bottom: 1px solid var(--hairline); }
.qa-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 15px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  line-height: 1.4;
}
.qa-q:hover { color: var(--green-primary); }
.chev { width: 17px; height: 17px; flex-shrink: 0; transition: transform 0.25s ease; color: var(--text-soft); }
.qa.open .chev { transform: rotate(180deg); }
.qa-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.qa-a-inner { padding: 0 0 16px; font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.qa-a-inner a { color: var(--green-accent); text-decoration: underline; }

/* ── Confetti ──────────────────────────────────────────────── */
@keyframes cbFall {
  0%   { opacity: 0; transform: translateY(-10px) rotate(0deg); }
  12%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(320px) rotate(420deg); }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.il-sn-nav {
  background: var(--white);
  box-shadow: var(--shadow-nav);
  position: sticky;
  top: 0;
  z-index: 100;
}
.il-sn-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 58px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.il-sn-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; }
.il-sn-logo img { height: 32px; width: auto; }
.il-sn-brand { display: flex; flex-direction: column; }
.il-sn-brand-name { font-size: 14px; font-weight: 800; color: var(--green-primary); letter-spacing: -0.01em; line-height: 1.1; }
.il-sn-brand-sub  { font-size: 10px; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.2; }
.il-sn-nav-actions { display: flex; align-items: center; gap: 8px; }
.il-sn-back {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.il-sn-back:hover { color: var(--green-accent); text-decoration: none; }
.il-sn-back i, .il-sn-back svg { width: 13px; height: 13px; }
@media (max-width: 520px) { .il-sn-back { display: none; } .il-sn-nav-inner { padding: 0 16px; } }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.il-sn-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 44px 0 0; }
.il-sn-footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
.il-sn-footer-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.il-sn-footer-logo img { height: 30px; }
.il-sn-footer-brand-name { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.il-sn-footer p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.52); margin: 0 0 12px; max-width: 380px; }
.il-sn-footer-col h5 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.42); margin: 0 0 12px; }
.il-sn-footer-col a  { display: block; font-size: 13px; color: rgba(255,255,255,0.68); text-decoration: none; margin-bottom: 8px; transition: color 0.18s; }
.il-sn-footer-col a:hover { color: var(--brand-lime); text-decoration: none; }
.il-sn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
  font-size: 11px;
  color: rgba(255,255,255,0.34);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.il-sn-footer-bottom a { color: rgba(255,255,255,0.34); text-decoration: underline; }
.il-sn-footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════════════════
   PAGE SHELL
   ═══════════════════════════════════════════════════════════════ */
.il-page { background: var(--canvas); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.il-hero {
  background: var(--green-primary);
  padding: 44px 0 68px;
  position: relative;
  overflow: hidden;
}
.il-hero::before {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -90px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(154,239,94,0.07);
  pointer-events: none;
}
.il-hero::after {
  content: "";
  position: absolute;
  left: -60px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(154,239,94,0.04);
  pointer-events: none;
}
.il-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.il-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(154,239,94,0.13);
  border: 1px solid rgba(154,239,94,0.30);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-lime);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.il-hero-badge i, .il-hero-badge svg { width: 13px; height: 13px; }
.il-hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.il-hero h1 span { color: var(--brand-lime); }
.il-hero p { font-size: 16px; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.6; }
.il-hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px;
  overflow: hidden;
}
.il-hero-stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 13px 10px;
  border-right: 1px solid rgba(255,255,255,0.09);
}
.il-hero-stat:last-child { border-right: none; }
.il-hero-stat b     { display: block; font-size: 18px; font-weight: 800; color: var(--brand-lime); letter-spacing: -0.02em; }
.il-hero-stat span  { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 600; margin-top: 2px; display: block; }

/* ═══════════════════════════════════════════════════════════════
   STEPPER CARD
   ═══════════════════════════════════════════════════════════════ */
.il-card-wrap {
  max-width: 620px;
  margin: -36px auto 0;
  padding: 0 16px 56px;
  position: relative;
  z-index: 10;
}
.il-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 4px 8px rgba(0,0,0,0.07), 0 14px 36px rgba(0,0,0,0.10);
  overflow: hidden;
}

/* ── Progress Bar ──────────────────────────────────────────── */
.il-progress { display: flex; padding: 18px 22px 0; gap: 5px; }
.il-progress-step { flex: 1; height: 3px; border-radius: 3px; background: var(--hairline); transition: background 0.35s ease; }
.il-progress-step.done   { background: var(--green-accent); }
.il-progress-step.active { background: var(--brand-lime); }

.il-step-label {
  display: flex;
  justify-content: space-between;
  padding: 7px 22px 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.il-step-label span.current { color: var(--green-primary); }

.il-body { padding: 22px 24px 26px; }
@media (max-width: 480px) { .il-body { padding: 18px 16px 22px; } }

.il-panel { display: none; }
.il-panel.active { display: block; animation: ilFadeIn 0.22s ease; }
@keyframes ilFadeIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }

.il-panel-head { margin-bottom: 18px; }
.il-panel-head h2 { font-size: 19px; font-weight: 700; color: var(--text-strong); margin: 0 0 5px; letter-spacing: -0.01em; }
.il-panel-head p  { font-size: 13px; color: var(--text-soft); margin: 0; line-height: 1.5; }

/* ── Form Fields ───────────────────────────────────────────── */
.il-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 13px; }
.il-label { font-size: 12px; font-weight: 700; color: var(--text-strong); }
.il-label .opt { font-weight: 500; color: var(--text-soft); font-size: 12px; }
.il-input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--input-border);
  border-radius: 9px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text-strong);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  outline: none;
  -webkit-appearance: none;
}
.il-input:focus   { border-color: var(--green-accent); box-shadow: 0 0 0 3px rgba(12,122,78,0.10); }
.il-input.valid   { border-color: var(--green-accent); background: var(--tint-valid); }
.il-input.invalid { border-color: var(--red); background: var(--tint-invalid); }

.il-input-prefix {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--input-border);
  border-radius: 9px;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
  background: var(--white);
}
.il-input-prefix:focus-within { border-color: var(--green-accent); box-shadow: 0 0 0 3px rgba(12,122,78,0.10); }
.il-input-prefix.valid   { border-color: var(--green-accent); background: var(--tint-valid); }
.il-input-prefix.invalid { border-color: var(--red); background: var(--tint-invalid); }
.il-prefix {
  padding: 11px 10px 11px 13px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-soft);
  background: transparent;
  white-space: nowrap;
  border-right: 1.5px solid var(--input-border);
  flex-shrink: 0;
}
.il-input-prefix .il-input { border: none; border-radius: 0; box-shadow: none; background: transparent; }
.il-input-prefix .il-input:focus,
.il-input-prefix .il-input.valid,
.il-input-prefix .il-input.invalid { box-shadow: none; background: transparent; }

.il-err { font-size: 11px; color: var(--red); font-weight: 700; display: none; }
.il-field.invalid .il-err { display: block; }
.il-field.invalid .il-input, .il-field.invalid .il-input-prefix { border-color: var(--red); }

.il-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .il-field-row { grid-template-columns: 1fr; } }

.il-amount-display { font-size: 26px; font-weight: 800; color: var(--green-primary); letter-spacing: -0.02em; margin-bottom: 7px; }
.il-range { width: 100%; height: 5px; border-radius: 5px; accent-color: var(--green-accent); cursor: pointer; margin: 4px 0 6px; display: block; }
.il-range-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-soft); font-weight: 600; }

.il-seg { display: flex; gap: 8px; }
.il-seg-opt {
  flex: 1;
  padding: 10px 8px;
  border: 1.5px solid var(--input-border);
  border-radius: 9px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.18s;
  user-select: none;
}
.il-seg-opt:hover { border-color: var(--green-accent); color: var(--green-accent); }
.il-seg-opt.sel   { border-color: var(--green-accent); background: var(--green-house); color: var(--green-primary); }

/* ── OTP Boxes ─────────────────────────────────────────────── */
.il-otp-boxes { display: flex; gap: 9px; margin: 16px 0; justify-content: center; }
.il-otp-box {
  width: 50px;
  height: 56px;
  border: 2px solid var(--input-border);
  border-radius: 10px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-strong);
  font-family: var(--font-sans);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.13s;
  outline: none;
  caret-color: var(--green-accent);
  -webkit-appearance: none;
}
.il-otp-box:focus       { border-color: var(--green-accent); box-shadow: 0 0 0 3px rgba(12,122,78,0.12); transform: scale(1.04); }
.il-otp-box.filled      { border-color: var(--green-accent); background: var(--green-house); }
.il-otp-box.error       { border-color: var(--red); background: var(--tint-invalid); animation: ilShake 0.4s ease; }
.il-otp-box.success-pop { animation: ilPop 0.3s ease; }
@keyframes ilShake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-5px)} 40%,80%{transform:translateX(5px)} }
@keyframes ilPop   { 0%{transform:scale(1)} 50%{transform:scale(1.12)} 100%{transform:scale(1)} }
@media (max-width: 380px) { .il-otp-box { width: 42px; height: 50px; font-size: 20px; } .il-otp-boxes { gap: 6px; } }

.il-otp-status { text-align: center; font-size: 13px; font-weight: 600; margin: 4px 0 6px; min-height: 20px; }
.il-otp-status.success { color: var(--green-accent); }
.il-otp-status.error   { color: var(--red); }
.il-otp-msg { text-align: center; font-size: 13px; color: var(--text-soft); margin-top: 10px; }
.il-otp-resend { color: var(--green-accent); font-weight: 700; background: none; border: none; cursor: pointer; font-size: 13px; font-family: var(--font-sans); padding: 0; text-decoration: underline; text-underline-offset: 2px; }
.il-otp-resend:disabled { color: var(--text-soft); text-decoration: none; cursor: default; }
.il-countdown { font-weight: 700; color: var(--text-soft); }

/* ── Loader ────────────────────────────────────────────────── */
.il-loader { text-align: center; padding: 26px 0; }
.il-loader-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 4px solid var(--hairline);
  border-top-color: var(--green-accent);
  animation: ilSpin 0.85s linear infinite;
  margin: 0 auto 16px;
}
@keyframes ilSpin { to { transform: rotate(360deg); } }
.il-loader-banks { display: flex; justify-content: center; gap: 8px; margin: 14px 0 8px; flex-wrap: wrap; }
.il-loader-bank {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--canvas);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
  animation: ilPulse 1.5s ease infinite;
}
.il-loader-bank:nth-child(2) { animation-delay: 0.2s; }
.il-loader-bank:nth-child(3) { animation-delay: 0.4s; }
.il-loader-bank:nth-child(4) { animation-delay: 0.6s; }
.il-loader-bank:nth-child(5) { animation-delay: 0.8s; }
@keyframes ilPulse { 0%,100%{opacity:0.55;transform:scale(1)} 50%{opacity:1;transform:scale(1.03)} }
.il-loader-bank-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-accent); }
.il-loader h3 { font-size: 17px; font-weight: 700; color: var(--text-strong); margin: 0 0 6px; }
.il-loader p  { font-size: 13px; color: var(--text-soft); margin: 0; }

/* ── Offer Cards ───────────────────────────────────────────── */
.il-offers-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 10px; flex-wrap: wrap; }
.il-offers-count  { font-size: 13px; color: var(--text-soft); font-weight: 600; }
.il-offers-count b { color: var(--green-primary); }

.il-offer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 460px;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: var(--hairline) transparent;
}
.il-offer-list::-webkit-scrollbar { width: 4px; }
.il-offer-list::-webkit-scrollbar-thumb { background: var(--hairline); border-radius: 4px; }

.il-offer-card {
  border: 2px solid var(--hairline);
  border-radius: 12px;
  padding: 15px 15px 13px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.13s;
  position: relative;
}
.il-offer-card:hover    { border-color: var(--green-accent); box-shadow: 0 3px 12px rgba(12,122,78,0.09); transform: translateY(-1px); }
.il-offer-card.selected { border-color: var(--green-accent); background: hsl(160 32% 97%); box-shadow: 0 0 0 3px rgba(12,122,78,0.11); }

.il-offer-tag {
  position: absolute;
  top: -1px;
  left: 14px;
  background: var(--brand-lime);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 0 0 7px 7px;
}
.il-offer-top { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.il-offer-logo {
  width: 50px;
  height: 33px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid var(--hairline);
  padding: 3px 5px;
  background: #fff;
}
.il-offer-logo-fallback {
  width: 50px;
  height: 33px;
  border-radius: 6px;
  background: var(--lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--green-primary);
  flex-shrink: 0;
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}
.il-offer-bank-info { flex: 1; min-width: 0; }
.il-offer-bank-name { font-size: 14px; font-weight: 700; color: var(--text-strong); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.il-offer-bank-type { font-size: 11px; color: var(--text-soft); font-weight: 600; display: block; margin-top: 1px; }
.il-offer-select-radio {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 2px solid var(--input-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s;
}
.il-offer-card.selected .il-offer-select-radio { border-color: var(--green-accent); background: var(--green-accent); }
.il-offer-card.selected .il-offer-select-radio::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff; }

.il-offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; border-top: 1px solid var(--hairline); padding-top: 10px; }
.il-offer-stat { text-align: center; padding: 8px 5px; border-radius: 7px; background: var(--canvas); }
.il-offer-stat-primary { background: var(--green-house); }
.il-offer-stat-primary .v { color: var(--green-primary); }
.il-offer-stat .v { font-size: 13px; font-weight: 800; color: var(--text-strong); letter-spacing: -0.01em; display: block; line-height: 1.2; }
.il-offer-stat .k { font-size: 10px; color: var(--text-soft); font-weight: 600; display: block; margin-top: 2px; }
.il-offer-details { display: flex; gap: 12px; margin: 8px 0 10px; flex-wrap: wrap; }
.il-offer-detail-item { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-soft); font-weight: 600; }
.il-offer-detail-item i, .il-offer-detail-item svg { width: 12px; height: 12px; color: var(--green-accent); }
.il-offer-cta { margin-top: 2px; }
.il-offer-cta .btn { width: 100%; }
@media (max-width: 420px) { .il-offer-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Selected Bank Summary ─────────────────────────────────── */
.il-selected-bank {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--canvas);
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1.5px solid var(--hairline);
}
.il-selected-bank-logo { width: 46px; height: 30px; object-fit: contain; border-radius: 5px; flex-shrink: 0; }
.il-selected-bank-info { flex: 1; min-width: 0; }
.il-selected-bank-name { font-size: 13px; font-weight: 700; color: var(--text-strong); display: block; }
.il-selected-bank-meta { font-size: 12px; color: var(--text-soft); font-weight: 600; display: block; margin-top: 2px; }
.il-change-btn { font-size: 12px; font-weight: 700; color: var(--green-accent); background: none; border: none; cursor: pointer; font-family: var(--font-sans); padding: 0; text-decoration: underline; text-underline-offset: 2px; }

/* ── Consent Step ──────────────────────────────────────────── */
.il-consent-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.il-consent-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 13px;
  border: 1.5px solid var(--hairline);
  border-radius: 10px;
  background: var(--canvas);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}
.il-consent-item:hover  { border-color: var(--green-accent); }
.il-consent-item.checked { border-color: var(--green-accent); background: var(--green-house); }
.il-consent-check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--input-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all 0.18s;
}
.il-consent-item.checked .il-consent-check { background: var(--green-accent); border-color: var(--green-accent); }
.il-consent-check i, .il-consent-check svg { width: 12px; height: 12px; color: #fff; display: none; }
.il-consent-item.checked .il-consent-check i,
.il-consent-item.checked .il-consent-check svg { display: block; }
.il-consent-text { font-size: 13px; color: var(--text-strong); line-height: 1.5; }
.il-consent-text a { color: var(--green-accent); text-decoration: underline; text-underline-offset: 2px; }
.il-consent-err { font-size: 12px; color: var(--red); font-weight: 600; display: none; padding: 0 2px 12px; }
.il-consent-err.show { display: block; }

/* ── Success Screen ────────────────────────────────────────── */
.il-success { text-align: center; padding: 8px 0 4px; }
.il-success-anim {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--brand-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  animation: ilBounceIn 0.5s cubic-bezier(0.32,2.32,0.61,0.27);
}
.il-success-anim i, .il-success-anim svg { width: 32px; height: 32px; color: var(--green-deep); stroke-width: 3; }
@keyframes ilBounceIn { from { transform: scale(0.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.il-success h2 { font-size: 21px; font-weight: 700; color: var(--text-strong); margin: 0 0 6px; }
.il-success p  { font-size: 13px; color: var(--text-soft); margin: 0 0 18px; line-height: 1.6; }

.il-app-id-card { background: var(--aqua); border-radius: 11px; padding: 14px 16px; margin-bottom: 14px; text-align: left; }
.il-app-id-card .il-aid-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-on-aqua-soft); display: block; margin-bottom: 3px; }
.il-app-id-card .il-aid-value { font-size: 19px; font-weight: 800; color: var(--green-primary); letter-spacing: 0.04em; display: block; font-family: 'Courier New', monospace; }

.il-app-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.il-app-meta-item { background: var(--canvas); border-radius: 9px; padding: 10px 12px; text-align: left; }
.il-app-meta-item .label { font-size: 10px; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 2px; }
.il-app-meta-item .value { font-size: 13px; font-weight: 700; color: var(--text-strong); display: block; }
@media (max-width: 400px) { .il-app-meta { grid-template-columns: 1fr; } }

.il-next-steps { text-align: left; background: var(--canvas); border-radius: 10px; padding: 13px 15px; margin-bottom: 16px; }
.il-next-steps h4 { font-size: 11px; font-weight: 800; color: var(--green-primary); margin: 0 0 9px; text-transform: uppercase; letter-spacing: 0.1em; }
.il-next-step { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-strong); line-height: 1.5; margin-bottom: 6px; }
.il-next-step:last-child { margin-bottom: 0; }
.il-step-num { width: 20px; height: 20px; border-radius: 50%; background: var(--brand-lime); color: var(--green-deep); font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* ── Button Rows ───────────────────────────────────────────── */
.il-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.il-actions-row { display: flex; gap: 8px; }
.il-actions-row .btn { flex: 1; }

/* ── Trust Row ─────────────────────────────────────────────── */
.il-trust-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}
.il-trust-item { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--text-soft); }
.il-trust-item i, .il-trust-item svg { width: 12px; height: 12px; color: var(--green-accent); }

/* ── Button Loading Spinner ────────────────────────────────── */
.il-btn-spin { display: none; }
button.loading .il-btn-label { display: none; }
button.loading .il-btn-spin {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  animation: ilSpin 0.7s linear infinite;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════════
   TRACK PAGE
   ═══════════════════════════════════════════════════════════════ */
.il-track-form-card { background: var(--white); border-radius: 13px; box-shadow: var(--shadow-card); padding: 24px; margin-bottom: 20px; }
.il-timeline { display: flex; flex-direction: column; }
.il-timeline-item { display: flex; gap: 12px; padding-bottom: 18px; }
.il-timeline-item:last-child { padding-bottom: 0; }
.il-timeline-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 26px; }
.il-timeline-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--hairline);
  border: 2px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.il-timeline-dot.done   { background: var(--green-accent); border-color: var(--green-accent); }
.il-timeline-dot.active { background: var(--brand-lime); border-color: var(--brand-lime); }
.il-timeline-dot i, .il-timeline-dot svg { width: 13px; height: 13px; color: #fff; }
.il-timeline-line { flex: 1; width: 2px; background: var(--hairline); margin-top: 2px; min-height: 18px; }
.il-timeline-item:last-child .il-timeline-line { display: none; }
.il-timeline-content { flex: 1; padding-bottom: 2px; }
.il-timeline-label { font-size: 14px; font-weight: 700; color: var(--text-strong); }
.il-timeline-date  { font-size: 12px; color: var(--text-soft); font-weight: 600; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 840px) {
  .two { grid-template-columns: 1fr; gap: 28px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wrap { padding-inline: 16px; }
  .section { padding-block: 36px; }
  .band { padding-block: 36px; }
  .h-sec { font-size: 26px; }
  .il-hero { padding: 32px 0 56px; }
  .il-hero h1 { font-size: 26px; }
  .il-hero p  { font-size: 14px; }
  .il-hero-stat { min-width: 80px; padding: 11px 8px; }
  .il-hero-stat b { font-size: 15px; }
  .il-card-wrap { padding: 0 12px 44px; }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
  .il-sn-footer-grid { grid-template-columns: 1fr; gap: 22px; }
}
