@charset "utf-8";
/* CSS Document */


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #F5A623;
    --gold-dark: #C4821A;
    --gold-light: #FFD580;
    --black: #0A0A0A;
    --off-black: #111111;
    --dark-card: #1A1A1A;
    --white: #FFFFFF;
    --gray: #AAAAAA;
    --green: #22C55E;
    --red: #EF4444;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(245,166,35,0.2);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-icon {
    width: 40px; height: 40px;
    background: var(--gold);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
  }
  .logo-icon svg { width: 24px; height: 24px; fill: var(--black); }
  .logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 22px; letter-spacing: 0.5px;
    color: var(--white); line-height: 1;
  }
  .logo-text span { color: var(--gold); }

  .nav-right { display: flex; align-items: center; gap: 20px; }
  .nav-trust {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--gray);
  }
  .nav-trust svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

  .nav-cta {
    background: var(--gold); color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 15px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 10px 22px; border: none; border-radius: 4px;
    cursor: pointer; text-decoration: none; transition: background 0.2s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* ── SOCIAL PROOF STRIP ── */
  .proof-strip {
    background: rgba(245,166,35,0.07);
    border-bottom: 1px solid rgba(245,166,35,0.15);
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .proof-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: #CCC;
  }
  .proof-item strong { color: var(--white); font-weight: 600; }
  .proof-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.12); }

  /* ── MEDIA STRIP ── */
  .media-strip {
    background: #0E0E0E;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }
  .media-strip-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-right: 32px;
    white-space: nowrap;
  }
  .media-logos {
    display: flex;
    align-items: center;
    gap: 0 36px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .media-logo {
    opacity: 0.28;
    filter: grayscale(100%) brightness(2);
    transition: opacity 0.25s;
    display: flex;
    align-items: center;
  }
  .media-logo:hover { opacity: 0.55; }
  .media-logo svg { display: block; }

  /* ── HERO ── */
  .hero {
    background: var(--black);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1100px; margin: 0 auto;
    /*padding: 26px 5% 0;*/
    padding: 30px 0 0;
    display: flex; flex-direction: column;
    gap: 20px; align-items: stretch;
  }

  .badge-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.4);
    color: var(--gold); font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
  }
  .badge-dot {
    width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: clamp(48px, 8vw, 88px);
    line-height: 0.9; text-transform: uppercase;
    letter-spacing: -1px; margin-bottom: 0;
  }
  .hero-headline .owed { color: var(--gold); }


  /* ── MULTI-STEP FORM CARD ── */
  .claim-card {
    background: var(--dark-card);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 12px;
    /*padding: 32px 30px;*/
    padding: 15px 0 32px;
    position: relative;
  }
  .claim-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 12px 12px 0 0;
  }

  .progress-wrap { margin-bottom: 24px; }
  .progress-header {
    display: flex;
    /*justify-content: space-between;*/
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  .progress-label {
    font-size: 12px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gold);
  }
  .progress-steps { display: flex; gap: 6px; }
  .prog-step {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    border: 2px solid rgba(255,255,255,0.15);
    color: #666; transition: all 0.3s;
  }
  .prog-step.active { border-color: var(--gold); color: var(--gold); }
  .prog-step.done { background: var(--gold); border-color: var(--gold); color: var(--black); }
  .progress-track {
    height: 4px; background: rgba(255,255,255,0.08);
    border-radius: 2px; overflow: hidden;
  }
  .progress-fill {
    height: 100%; background: var(--gold);
    border-radius: 2px; transition: width 0.4s ease;
  }

  .form-step { display: none; }
  .form-step.active { display: block; }

  .step-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 22px;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 4px;
  }
  .step-sub { font-size: 13px; color: var(--gray); margin-bottom: 20px; }

  .form-group { margin-bottom: 14px; }
  .form-label {
    display: block; font-size: 13px; font-weight: 600;
    color: #BBBBBB; margin-bottom: 6px; letter-spacing: 0.3px;
  }
  .form-input, .form-select {
    width: 100%; padding: 13px 16px;
    background: #262626;
    /*background: rgba(255, 255, 255, 0.05);*/
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Barlow', sans-serif; font-size: 15px;
    outline: none; transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .form-input:focus, .form-select:focus { border-color: var(--gold); }
  .form-input::placeholder { color: #666; }
  .form-select:valid option { background: #222; color: var(--white); }


/*ELIMINAR EL AUTOFILL DE CHROME Y EDGE*/
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-select:-webkit-autofill,
.form-select:-webkit-autofill:hover,
.form-select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--white) !important;
    -webkit-box-shadow: 0 0 0px 1000px #262626 inset !important;
    box-shadow: 0 0 0px 1000px #262626 inset !important;
    background-color: #262626 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: background-color 99999s ease-in-out 0s;
}


  .lender-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; margin-bottom: 14px;
  }
  .lender-btn {
    padding: 10px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px; color: #CCC;
    font-family: 'Barlow', sans-serif; font-size: 13px;
    cursor: pointer; text-align: left;
    transition: all 0.2s;
  }
  .lender-btn:hover { border-color: var(--gold); color: var(--white); }
  .lender-btn.selected { border-color: var(--gold); background: rgba(245,166,35,0.1); color: var(--white); }
  .other-lender-input { margin-top: 8px; }

  .type-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 14px; }
  .type-btn {
    padding: 12px 8px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px; color: #CCC;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 15px;
    cursor: pointer; text-align: center;
    transition: all 0.2s; text-transform: uppercase;
  }
  .type-btn:hover { border-color: var(--gold); color: var(--white); }
  .type-btn.selected { border-color: var(--gold); background: rgba(245,166,35,0.1); color: var(--white); }

  .next-btn, .submit-btn {
    width: 100%; padding: 10px;
    background: var(--gold); color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 19px;
    letter-spacing: 1px; text-transform: uppercase;
    border: none; border-radius: 6px; cursor: pointer;
    margin-top: 14px; display: flex;
    align-items: center; justify-content: center;
    gap: 10px; transition: background 0.2s, transform 0.1s;
  }
  .next-btn:hover, .submit-btn:hover { background: var(--gold-light); }
  .next-btn:active, .submit-btn:active { transform: scale(0.98); }
  .next-btn svg, .submit-btn svg { width: 18px; height: 18px; }

  .back-link {
    display: block; text-align: center; margin-top: 10px;
    font-size: 13px; color: #666; cursor: pointer;
    transition: color 0.2s; background: none; border: none;
  }
  .back-link:hover { color: var(--gray); }

/*mensaje de error*/
.message.error{
    color:#ff0000;
    text-align: center;
    padding:10px 16px;
    animation:borderGlow 0.5s;
}

@keyframes borderGlow{
    from{
        opacity:0.5;
        transform:translateY(-15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


.checkbox-line a,
.clear-signature a,
.search-link a{
    /*color:#ffffff;*/
    color: var(--gold);
}
.checkbox-line a:hover,
.clear-signature a:hover,
.search-link a:hover{
   /* color:#FFD580; */
    color:var(--gold-light);
}
/************************************** NEW FORM ******************************************/
.back-btn {
    padding: 8px 10px 10px 8px; margin-top: 14px;
    background: transparent; color: var(--gold);
    font-size: 32px; font-weight: 700;
    border: 2px solid var(--gold); border-radius: 6px;
    cursor: pointer; line-height: 1;
}
.back-btn:hover {
    transition: all 0.2s;
    background: var(--gold);
    color: var(--black);
}
.back-btn:out {
    transition: all 0.2s;
    background: transparent;
    color: var(--gold):
}
h2 {
    font-family:'Barlow Condensed',sans-serif;
    font-weight:900; font-size:32px;
    line-height: normal;
    text-transform:uppercase;
    letter-spacing:0.5px;
    margin-bottom:4px;
    text-align: center;
}

/* CONTAINER */
.answer-options {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 20px;
}

/* BUTTONS */
.answer-option {
    width: 150px;
    height: 130px;
    background: rgba(245, 165, 27, 0.08);
    border: 2px solid rgba(245, 165, 27, 0.45);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* HOVER */
.answer-option:hover {
    background: #f5a51b;
    border-color: #f5a51b;
    transform: translateY(-2px);
}

/* ICON */
.answer-option .icon {
    font-size: 48px;
    line-height: 1;
    color: #f5a51b;
    margin-bottom: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
}

/* TEXT */
.answer-option .text {
    font-size: 30px;
    font-weight: 700;
    color: #f5a51b;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

/* HOVER */
.answer-option:hover .icon,
.answer-option:hover .text {
    color: #111;
}

.answer-option.activo {
    background: #f5a51b;
    border-color: #f5a51b;
}

.answer-option.activo .icon,
.answer-option.activo .text {
    color: #111;
}

section.step p{
    line-height:normal;
    text-align:center;
    padding-top:20px;
    padding-bottom:20px;
}

.step .actions{
    padding-top:20px;
    /*padding-bottom:20px;*/
    padding-bottom:10px;
}

/* INPUT DATE */
input[type="date"] {
    background: #1f1f1f;
    color: #fff;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 14px;
}

/* TEXT PLACEHOLDER */
input[type="date"]::-webkit-datetime-edit {
    color: #fff;
}

/* ICON CALENDAR */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 1;
    cursor: pointer;
}

/* QUITAR FONDO AZUL AL HACER FOCUS */
input[type="date"]:focus {
    outline: none;
    border-color: #f5a51b;
    box-shadow: 0 0 0 2px rgba(245,165,27,.2);
}

canvas {
    border:solid thin #444;
    width:100%;
    max-height:200px
}

.form-input-sms {
    width: 50px;
    padding: 10px;
    margin: 10px 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 40px;
    font-weight: 900;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    text-align:center;
}
.form-input-sms:focus { border-color: var(--gold); }


/*******************************************************************************/



  .form-disclaimer {
    font-size: 11px; color: #999;
    text-align: center; margin-top: 14px; line-height: 1.5;
  }

  .trust-row {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 14px; padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; color: var(--gray);
  }
  .trust-item svg { width: 13px; height: 13px; fill: var(--green); }

  .form-success { display: none; text-align: center; padding: 20px 0; }
  .success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(34,197,94,0.15);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .success-icon svg { width: 32px; height: 32px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .success-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 28px; text-transform: uppercase; margin-bottom: 10px;
  }
  .success-sub { font-size: 15px; color: #999; line-height: 1.6; }

  /* ── SECTIONS ── */
  section { padding: 0 5%; }

  .section-label {
    font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: clamp(38px, 5vw, 58px);
    text-transform: uppercase; line-height: 1; margin-bottom: 16px;
  }
  .section-sub { font-size: 17px; color: #AAAAAA; max-width: 560px; line-height: 1.65; }

  .steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2px; margin-top: 52px;
  }
  .step-card {
    background: var(--dark-card); padding: 36px 28px;
    position: relative; overflow: hidden; transition: background 0.3s;
  }
  .step-card:first-child { border-radius: 10px 0 0 10px; }
  .step-card:last-child { border-radius: 0 10px 10px 0; }
  .step-card:hover { background: #222; }
  .step-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px; background: var(--gold);
    transition: width 0.4s ease;
  }
  .step-card:hover::after { width: 100%; }
  .step-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 72px;
    color: rgba(245,166,35,0.12); line-height: 1;
    position: absolute; top: 16px; right: 20px;
  }
  .step-icon {
    width: 48px; height: 48px; background: rgba(245,166,35,0.12);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; margin-bottom: 20px;
  }
  .step-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 20px; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 10px;
  }
  .step-desc { font-size: 14px; color: #999; line-height: 1.6; }

  /* ── ELIGIBILITY ── */
  .eligibility-section { background: var(--off-black); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .eligibility-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .checklist { margin-top: 36px; }
  .check-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .check-item:last-child { border-bottom: none; }
  .check-circle { width: 28px; height: 28px; background: rgba(34,197,94,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .check-circle svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .check-text { font-size: 15px; color: #CCC; }
  .check-text strong { color: var(--white); font-weight: 600; }

  .amount-card { background: var(--dark-card); border: 1px solid rgba(245,166,35,0.25); border-radius: 12px; padding: 40px; text-align: center; }
  .amount-card .eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
  .big-amount { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 88px; color: var(--white); line-height: 1; letter-spacing: -2px; }
  .big-amount span { color: var(--gold); }
  .amount-sub { font-size: 15px; color: #999; margin-top: 12px; margin-bottom: 28px; }
  .amount-cta { display: inline-block; background: var(--gold); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 18px; letter-spacing: 1px; text-transform: uppercase; padding: 14px 32px; border-radius: 6px; text-decoration: none; transition: background 0.2s; }
  .amount-cta:hover { background: var(--gold-light); }

  /* ── FAQ ── */
  .faq-section { background: var(--off-black); }
  .faq-inner { max-width: 760px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
  .faq-question { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 19px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-transform: uppercase; letter-spacing: 0.3px; transition: color 0.2s; }
  .faq-question:hover { color: var(--gold); }
  .faq-toggle { width: 24px; height: 24px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; color: var(--gold); transition: transform 0.3s; }
  .faq-answer { font-size: 15px; color: #999; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
  .faq-item.open .faq-answer { max-height: 300px; padding-top: 16px; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); border-color: var(--gold); }

  /* ── BOTTOM CTA ── */
  .bottom-cta { background: var(--gold); padding: 80px 5%; text-align: center; }
  .bottom-cta h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(42px, 6vw, 72px); text-transform: uppercase; color: var(--black); line-height: 0.95; margin-bottom: 20px; letter-spacing: -0.5px; }
  .bottom-cta p { font-size: 17px; color: rgba(0,0,0,0.65); max-width: 500px; margin: 0 auto 36px; line-height: 1.6; }
  .bottom-cta-btn { display: inline-block; background: var(--black); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 22px; letter-spacing: 1px; text-transform: uppercase; padding: 18px 48px; border-radius: 6px; text-decoration: none; transition: background 0.2s; }
  .bottom-cta-btn:hover { background: #222; }

  /* ── FOOTER ── */
  .footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 24px; flex-wrap: wrap; }
  .footer-links a { font-size: 13px; color: #666; text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }

  /* ── MOBILE STICKY CTA ── */
  .mobile-sticky {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--black); border-top: 2px solid var(--gold);
    padding: 14px 5%; z-index: 500;
  }
  .mobile-sticky a {
    display: block; background: var(--gold); color: var(--black);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: 19px; letter-spacing: 1px; text-transform: uppercase;
    text-align: center; padding: 14px; border-radius: 6px;
    text-decoration: none;
  }
  .mobile-sticky-sub { font-size: 12px; color: #666; text-align: center; margin-top: 6px; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .step-card:first-child { border-radius: 10px 10px 0 0; }
    .step-card:last-child { border-radius: 0 0 10px 10px; }
    .eligibility-inner { grid-template-columns: 1fr; }
    .proof-strip { gap: 0 20px; }
    .proof-divider { display: none; }
    section { padding: 20px 5% !important; }
    .eligibility-inner { gap: 40px; }
    .columns-selling-reasons { padding:12px !important; }
    .faq-inner div { margin-bottom:0px !important; }
    .faq-inner .section-label { margin-bottom:10px !important; }
    .bottom-cta{ padding:40px 5% }
}
  @media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; }
    .step-card:first-child { border-radius: 10px 10px 0 0; }
    .step-card:last-child { border-radius: 0 0 10px 10px; }
    .nav-trust { display: none; }
    .mobile-sticky { display: block; }
    body { padding-bottom: 90px; }
    .lender-grid { grid-template-columns: 1fr; }
    .type-grid { grid-template-columns: 1fr 1fr; }   
    .media-strip { padding: 15px 5% 5px; }
    .media-strip-label { margin-right: 0; margin-bottom:5px; }
    .eligibility-inner { gap: 20px; }  
    .three { grid-template-columns:1fr !important; }
    .form-select { width:40%; display:block } 
    .section-sms { padding:20px 3px !important; }
    .form-input-sms{ width:35px; }
  }

