.application-hp{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}

/* ─── SUMMARY STRIP ─── */
.summary-strip { margin-top:0; position:relative; z-index:4; padding:42px 48px 0; background:var(--cream); }
.summary-shell { max-width:1200px; margin:0 auto; background:rgba(255,255,255,.88); border:1px solid rgba(255,255,255,.72); box-shadow:0 18px 50px rgba(10,14,26,.08); backdrop-filter:blur(10px); border-radius:24px; padding:20px; display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.summary-item { padding:18px; border-radius:18px; background:#f8fafc; border:1px solid rgba(10,14,26,.06); transition:.24s ease; }
.summary-item:hover { transform:translateY(-4px); border-color:rgba(204,85,0,.18); box-shadow:var(--shadow-card); }
.summary-item h4 { font-size:15px; color:var(--ink); margin-bottom:8px; }
.summary-item p { font-size:14px; line-height:1.65; color:var(--muted); }

/* ─── APPLICATION FORM ─── */
.section { padding:40px 48px 96px; }
.apply-wrap { max-width:1200px; margin:0 auto; }
.apply-card { background:rgba(255,255,255,.92); border:1px solid rgba(255,255,255,.70); border-radius:var(--radius-xl); box-shadow:var(--shadow-elevated); backdrop-filter:blur(12px); padding:30px; position:relative; overflow:hidden; }
.apply-card::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--brand),var(--brand-light)); }
.step-top { display:flex; justify-content:space-between; align-items:flex-start; gap:16px; flex-wrap:wrap; margin-bottom:24px; }
.step-top h3 { font-size:28px; line-height:1.15; color:var(--ink); margin-bottom:8px; letter-spacing:-.03em; }
.step-top p { font-size:15px; line-height:1.7; color:var(--muted); max-width:58ch; }
.step-badge { padding:10px 14px; border-radius:999px; font-size:12px; font-weight:800; color:var(--brand); background:rgba(204,85,0,.08); border:1px solid rgba(204,85,0,.16); white-space:nowrap; }
.progress-wrap { margin-bottom:26px; }
.progress-row { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-bottom:14px; }
.progress-pill { border-radius:16px; border:1px solid rgba(10,14,26,.08); background:#f8fafc; padding:14px; transition:.25s ease; }
.progress-pill small { display:block; font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:#94a3b8; margin-bottom:6px; }
.progress-pill span { display:block; font-size:14px; font-weight:700; color:#475569; line-height:1.45; }
.progress-pill.active { background:rgba(204,85,0,.06); border-color:rgba(204,85,0,.18); }
.progress-pill.active small, .progress-pill.active span { color:var(--brand); }
.progress-pill.done { background:rgba(57,164,138,.08); border-color:rgba(57,164,138,.18); }
.progress-pill.done small, .progress-pill.done span { color:#047857; }
.progress-bar { height:8px; border-radius:999px; background:#edf2f7; overflow:hidden; }
.progress-fill { height:100%; width:25%; border-radius:999px; background:linear-gradient(90deg,var(--brand),var(--brand-light)); transition:width .28s ease; }
.step-panel { display:none; }
.step-panel.active { display:block; animation:fadeUp .28s ease; }
@keyframes fadeUp { from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);} }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.step2-grid { grid-template-columns:repeat(12,minmax(0,1fr)); column-gap:18px; row-gap:18px; }
.step2-grid > .field { min-width:0; }
.step2-grid .form-subsection-title { grid-column:1/-1; }
.step2-grid #field_firstName,
.step2-grid #field_lastName,
.step2-grid #field_cellphone { grid-column:span 4; }
.step2-grid #field_email,
.step2-grid #field_confirmEmail,
.step2-grid #field_password,
.step2-grid #field_confirmPassword,
.step2-grid #field_address,
.step2-grid #field_deliveryAddress,
.step2-grid #field_idUpload,
.step2-grid #field_proofOfAddressUpload { grid-column:span 6; }
.step2-grid #field_identificationType { grid-column:span 4; }
.step2-grid #field_idNumber { grid-column:span 8; }
.step2-grid #field_passportCountry,
.step2-grid #field_passportExpiry { grid-column:span 6; }
.step2-grid #field_sameDeliveryAddress,
.step2-grid #field_popiaConsent { grid-column:1/-1; }
.form-subsection-title { display:flex; align-items:center; gap:12px; padding-top:22px; margin-top:4px; border-top:1px solid #e8edf3; }
.form-subsection-title.first { padding-top:0; margin-top:0; border-top:0; }
.form-subsection-icon { width:38px; height:38px; flex:0 0 38px; display:grid; place-items:center; border-radius:12px; color:var(--brand); background:rgba(204,85,0,.08); border:1px solid rgba(204,85,0,.12); }
.form-subsection-title h4 { color:var(--ink); font-size:16px; line-height:1.35; margin-bottom:2px; }
.form-subsection-title p { color:var(--muted); font-size:13px; line-height:1.55; }
.form-grid-spaced { margin-top:18px; }
.optional-label { color:#94a3b8; }
.eft-bank-details { display:none; }
.field { display:flex; flex-direction:column; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-size:12px; font-weight:800; color:#64748b; text-transform:uppercase; letter-spacing:.06em; }
.required { color:var(--brand); }
.field input, .field textarea, .field select { width:100%; min-height:54px; border-radius:16px; border:1px solid #d7e0eb; background:#f8fafc; padding:14px 16px; font-size:15px; font-weight:500; color:var(--ink); transition:.22s ease; outline:none; }
.field textarea { resize:vertical; min-height:110px; }
.field input:hover, .field textarea:hover, .field select:hover { border-color:#c8d4e3; background:#fff; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:rgba(204,85,0,.58); background:#fff; box-shadow:0 0 0 4px rgba(204,85,0,.10); }
.input-note, .file-preview, .strength-text { font-size:12px; color:#64748b; line-height:1.6; }
.input-warning { display:none; padding:9px 11px; border-radius:10px; color:#9a3412; background:#fff7ed; border:1px solid #fed7aa; font-size:12px; font-weight:700; line-height:1.45; }
.input-warning.show { display:block; }
.password-shell { position:relative; }
.toggle-eye { position:absolute; right:14px; top:50%; transform:translateY(-50%); color:#94a3b8; cursor:pointer; z-index:2; }
.password-shell input { padding-right:46px; }
.checkbox-row { display:flex; align-items:flex-start; gap:10px; padding:14px 16px; border-radius:16px; background:#f8fafc; border:1px solid #e5e7eb; }
.checkbox-row input[type="checkbox"] { width:18px; height:18px; margin-top:2px; accent-color:var(--brand); min-height:auto; box-shadow:none; }
.checkbox-row label { font-size:14px; font-weight:500; color:#334155; text-transform:none; letter-spacing:0; line-height:1.7; }
.checkbox-row label a { color:var(--brand); font-weight:800; text-decoration:underline; text-underline-offset:2px; }
.trust-note { margin-top:14px; font-size:13px; color:#64748b; line-height:1.7; display:flex; align-items:center; gap:8px; }
.trust-note i { color:var(--green); }

.plan-radio-card.selected{
    border-color:var(--brand);
    background:#fff7ed;
    box-shadow:0 12px 28px rgba(204,85,0,.12);
}
.plan-radio-card input[type="radio"]{
    width:18px;
    height:18px;
    accent-color:var(--brand);
    margin:0;
    position:static;
    opacity:1;
    pointer-events:auto;
}

.plan-tag { padding:8px 12px; border-radius:999px; font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; background:#f8fafc; border:1px solid #e5e7eb; color:#475569; white-space:nowrap; }
.conditional-wrap { margin-top:18px; display:none; }
.conditional-wrap.active { display:block; animation:fadeUp .24s ease; }
.summary-grid, .payment-grid { display:grid; gap:16px; }
.review-summary-grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr); gap:16px; align-items:stretch; }
.review-summary-grid > .summary-card { height:100%; display:flex; flex-direction:column; }
.review-summary-heading { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.review-summary-heading h4 { margin:0 0 2px; font-size:18px; }
.review-summary-heading p { color:var(--muted); font-size:13px; line-height:1.55; }
.review-summary-grid .summary-list strong { max-width:60%; white-space:normal; text-align:right; overflow-wrap:anywhere; }
.review-private-note { display:flex; align-items:center; gap:8px; margin-top:16px; padding:12px 14px; border-radius:14px; color:#475569; background:#f1f5f9; font-size:12px; line-height:1.55; }
.review-private-note i { color:var(--green); }
.review-order-card .summary-total { margin-top:auto; }
.summary-card, .payment-card, .payment-mini { border:1px solid #e5e7eb; background:linear-gradient(180deg,#fff 0%,#f8fafc 100%); border-radius:22px; padding:22px; box-shadow:var(--shadow-card); }
.summary-card h4, .payment-card h4 { font-size:20px; color:var(--ink); margin-bottom:14px; }
.summary-list { display:grid; gap:10px; }
.summary-list div { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; border-bottom:1px solid #eef2f7; padding-bottom:10px; font-size:14px; color:#334155; }
.summary-list div:last-child { border-bottom:0; padding-bottom:0; }
.summary-list strong { color:var(--ink); white-space:nowrap; }
.summary-total { margin-top:16px; border-top:1px solid #e5e7eb; padding-top:16px; display:flex; justify-content:space-between; gap:16px; align-items:center; }
.summary-total span { font-size:14px; color:#64748b; line-height:1.6; }
.summary-total strong { font-size:32px; color:var(--brand); letter-spacing:-.04em; }
.notice { margin-top:14px; padding:16px 18px; border-radius:16px; background:#fff7ed; border:1px solid rgba(204,85,0,.16); font-size:14px; line-height:1.75; color:#7c2d12; }
.payment-card p, .payment-mini p { font-size:14px; line-height:1.75; color:#64748b; margin-bottom:14px; }
.button-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:26px; }
.button-row .btn, .button-row .btn-outline, .button-row .btn-primary { min-height:52px; padding-left:18px; padding-right:18px; }

/* FulTank primary action emphasis */
#toStep2{
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:#fff;
  border:0;
  box-shadow:0 14px 30px rgba(204,85,0,0.22);
}

#toStep2:hover{
  background:var(--brand-dark);
  transform:translateY(-1px);
  box-shadow:0 18px 38px rgba(204,85,0,0.30);
}

.hidden { display:none !important; }
.error-text { font-size:12px; color:var(--danger); margin-top:4px; display:none; }
.field.error input, .field.error textarea, .field.error select { border-color:rgba(220,38,38,.45); box-shadow:0 0 0 4px rgba(220,38,38,.08); background:#fff; }
.field.error .checkbox-row { border-color:rgba(220,38,38,.45); box-shadow:0 0 0 4px rgba(220,38,38,.08); background:#fff; }
.field.error .error-text { display:block; }
.submitting-note { margin-top:14px; font-size:13px; color:var(--muted); display:none; }

/* ─── ANIMATIONS ─── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.show { opacity:1; transform:translateY(0); }
.reveal-2 { transition-delay:.10s; }

/* ─── RESPONSIVE ─── */
@media (max-width:1180px) { .summary-shell { grid-template-columns:1fr 1fr; } }
@media (max-width:1100px) { }
@media (max-width:900px) {
.hero-copy { margin:0 auto; }
  .hero-copy h1 { max-width:100%; }
  .hero-copy p { margin-left:auto; margin-right:auto; }
  .hero-actions, .hero-trust { justify-content:center; } .summary-strip { padding:0 28px; }
  .summary-shell { grid-template-columns:1fr 1fr; }
  .section { padding:58px 28px 86px; }
  .form-grid,
.hero-card-grid{
  grid-template-columns:1fr;
}

  .step2-grid > .field,
  .step2-grid > .form-subsection-title{
    grid-column:1/-1 !important;
  }

  .review-summary-grid{
    grid-template-columns:1fr;
  }

.progress-row{
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:6px;
}

.progress-pill{
  padding:10px 6px;
  border-radius:12px;
  text-align:center;
}

.progress-pill small{
  font-size:9px;
  margin-bottom:0;
}

.progress-pill span{
  display:none;
}

  .package-grid{
    grid-template-columns:1fr;
  }

  .package-card{
    min-height:auto;
  }
}
@media (max-width:900px){

    .payment-option-grid{
        grid-template-columns:1fr;
    }

}
@media (max-width:600px) {
.hero-copy h1 { font-size:2.55rem; }
  .hero-copy p { font-size:15px; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width:100%; } .preview-card { padding:20px; }
  .summary-strip { padding:0 20px; }
  .summary-shell { grid-template-columns:1fr; }
  .section { padding:48px 20px 76px; }
  .apply-card { padding:22px; border-radius:24px; }
  .step-top h3 { font-size:24px; }
  .summary-total { flex-direction:column; align-items:flex-start; }
  .review-summary-grid .summary-list div { flex-direction:column; gap:4px; }
  .review-summary-grid .summary-list strong { max-width:100%; text-align:left; }
  .button-row .btn, .button-row .btn-outline, .button-row .btn-primary { width:100%; } }

/* STEP 1 PACKAGE SELECTOR */

.plan-radio-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.plan-radio-card{
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid #e5e7eb;
  background:#fff;
  border-radius:16px;
  padding:16px;
  cursor:pointer;
  transition:.2s ease;
}

.plan-radio-card input{
  width:18px;
  height:18px;
  accent-color:var(--brand);
}

.plan-radio-card span{
  font-weight:800;
  color:var(--ink);
}

.plan-radio-card strong{
  margin-left:auto;
  color:var(--brand);
  font-size:13px;
}

.plan-radio-card.selected{
  border-color:var(--brand);
  background:#fff7ed;
  box-shadow:0 12px 28px rgba(204,85,0,.12);
}
.plan-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background:#fff7ed;
  color:var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  flex-shrink:0;
}

.plan-content{
  display:flex;
  flex-direction:column;
}

.plan-content span{
  font-weight:700;
  color:var(--ink);
}

.plan-tag{
  margin-left:auto;
  padding:6px 12px;
  border-radius:999px;
  background:#f8fafc;
  color:#475569;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
}
@media(max-width:900px){
  .plan-radio-grid{
    grid-template-columns:1fr;
  }
}


/* STEP 4 PAYMENT LAYOUT */
.step4-layout{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

.step4-layout > #paymentResultPanel,
.step4-layout > .payment-method-list{
  width:100%;
  height:100%;
}

.payment-method-list{
  display:flex;
  flex-direction:column;
  border:1px solid #e5e7eb;
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow-card);
}

.payment-method-title{
  padding:18px 20px;
  border-bottom:1px solid #e5e7eb;
  font-size:15px;
  color:#334155;
}

.payment-row{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 20px;
  border-bottom:1px solid #eef2f7;
  cursor:pointer;
  transition:.2s ease;
}

.payment-row:last-child{ border-bottom:0; }

.payment-row:hover{
  background:#fff7ed;
}

.payment-row input{
  width:20px;
  height:20px;
  accent-color:var(--brand);
}

.payment-row-content h4{
  font-size:17px;
  color:var(--ink);
  margin-bottom:4px;
}

.payment-row-content p{
  font-size:13px;
  color:#64748b;
  line-height:1.5;
}

.payment-actions{
  margin-top:auto;
  padding:18px 20px;
  background:#f8fafc;
}

#eftBankDetails{
  margin-top:14px;
}

@media(max-width:900px){
  .step4-layout{
    grid-template-columns:1fr;
  }
}

/* FulTank application message modal */
body.application-modal-open { overflow:hidden; }
.application-modal[hidden] { display:none; }
.application-modal {
  position:fixed;
  inset:0;
  z-index:20000;
  display:grid;
  place-items:center;
  padding:24px;
}
.application-modal-backdrop {
  position:absolute;
  inset:0;
  background:rgba(10,14,26,.68);
  backdrop-filter:blur(7px);
}
.application-modal-card {
  position:relative;
  z-index:1;
  width:min(100%,500px);
  padding:30px;
  border-radius:24px;
  border:1px solid rgba(204,85,0,.18);
  background:#fff;
  box-shadow:0 30px 90px rgba(10,14,26,.28);
  text-align:center;
  animation:applicationModalIn .22s ease-out;
}
@keyframes applicationModalIn {
  from { opacity:0; transform:translateY(12px) scale(.98); }
  to { opacity:1; transform:translateY(0) scale(1); }
}
.application-modal-close {
  position:absolute;
  top:16px;
  right:16px;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:12px;
  background:#f8fafc;
  color:#64748b;
  cursor:pointer;
}
.application-modal-close:hover { background:#fff1e8; color:var(--brand); }
.application-modal-logo { width:150px; height:auto; margin:0 auto 22px; }
.application-modal-icon {
  width:58px;
  height:58px;
  margin:0 auto 14px;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:var(--brand);
  background:#fff1e8;
  font-size:24px;
}
.application-modal[data-type="success"] .application-modal-icon { color:#047857; background:#ecfdf5; }
.application-modal[data-type="error"] .application-modal-icon { color:#b91c1c; background:#fef2f2; }
.application-modal-card h3 { margin:0 0 12px; color:var(--ink); font-size:25px; line-height:1.2; }
.application-modal-card #applicationModalMessage { margin:0 auto; max-width:42ch; color:#5b6678; font-size:15px; line-height:1.7; }
.application-modal-action {
  display:flex;
  width:fit-content;
  min-width:150px;
  margin:24px auto 0;
  align-items:center;
  justify-content:center;
}
@media(max-width:560px){
  .application-modal { padding:16px; }
  .application-modal-card { padding:26px 20px 22px; border-radius:20px; }
  .application-modal-logo { width:130px; }
  .application-modal-card h3 { font-size:22px; }
}
