﻿/* ================================================================   RESET & BASE================================================================ */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }html  { scroll-behavior: smooth; font-size: 16px; }:root {    --primary:       #1A3D52;    --primary-dark:  #0D2B3B;    --orange:        #E86B3A;    --orange-h:      #CC5522;    --bg-hero:       #EAF0F6;    --bg-trust:      #D3E2EE;    --bg-section:    #EBF2F8;    --white:         #FFFFFF;    --txt-dark:      #1A2E3D;    --txt-mid:       #4B6170;    --txt-light:     #8A9EAA;    --border:        #CDD9E3;    --r-card:        18px;    --r-pill:        9999px;    --sh-sm:         0 2px 12px rgba(0,0,0,.06);    --sh-md:         0 8px 28px rgba(0,0,0,.10);    --sh-lg:         0 16px 48px rgba(0,0,0,.14);}body {    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;    color: var(--txt-dark);    background: var(--white);    line-height: 1.6;    -webkit-font-smoothing: antialiased;}img { max-width: 100%; display: block; }a   { text-decoration: none; color: inherit; }/* ================================================================   LAYOUT================================================================ */.container {    width: 100%;    max-width: 1280px;    margin: 0 auto;    padding: 0 48px;}.text-center { text-align: center; }/* ================================================================   BUTTON SYSTEM================================================================ */.btn {    display: inline-flex;    align-items: center;    justify-content: center;    gap: 10px;    border: none;    border-radius: var(--r-pill);    font-family: inherit;    font-weight: 700;    cursor: pointer;    white-space: nowrap;    transition: background .22s, transform .18s, box-shadow .22s;}.btn-orange {    background: var(--orange);    color: var(--white);    box-shadow: 0 6px 22px rgba(232,107,58,.36);}.btn-orange:hover  { background: var(--orange-h); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(232,107,58,.46); }.btn-orange:active { transform: translateY(-1px); }/* Sizes */.btn--nav  { padding: 13px 28px;  font-size: 15px;   }.btn--hero { padding: 14px 34px;  font-size: 16px;   }.btn--sec  { padding: 17px 40px;  font-size: 17px;   }.btn--cta  { padding: 20px 52px;  font-size: 18.5px; }.ico-phone { width: 18px; height: 18px; flex-shrink: 0; }/* ================================================================   HEADER================================================================ */.site-header {    position: sticky;    top: 0;    z-index: 500;    background: var(--white);    border-bottom: 1px solid rgba(0,0,0,.07);    box-shadow: var(--sh-sm);}.header-inner {    height: 76px;    display: flex;    align-items: center;    justify-content: space-between;}.logo {    display: flex;    align-items: center;    gap: 12px;}.logo-badge {    width: 44px;    height: 44px;    border-radius: 50%;    background: var(--primary);    color: var(--white);    font-size: 18px;    font-weight: 900;    display: flex;    align-items: center;    justify-content: center;    flex-shrink: 0;}.logo-name {    font-size: 22px;    font-weight: 700;    color: var(--primary);    letter-spacing: -0.5px;}/* ================================================================   HERO  —  TEXT LEFT  |  IMAGE RIGHT================================================================ */.hero {    background: #F2F6FA;    padding: 80px 0 90px;    overflow: hidden;}.hero-grid {    display: grid;    grid-template-columns: 1fr 1fr;    gap: 80px;    align-items: center;}.hero-content-col {    display: flex;    flex-direction: column;    justify-content: center;}.hero-heading {    font-size: 66px;    font-weight: 900;    line-height: 1.08;    color: #1A3D52;    letter-spacing: -2px;    margin-bottom: 22px;}.hero-heading .accent { color: #E86B3A; }.hero-body {    font-size: 17px;    color: #5A7080;    line-height: 1.78;    margin-bottom: 36px;    max-width: 480px;}.hero-perks {    margin-top: 18px;    font-size: 13px;    color: #6B8FA8;    display: flex;    flex-wrap: wrap;    align-items: center;    gap: 0;}.hero-perks span {    display: inline-flex;    align-items: center;}.hero-perks .dot {    margin: 0 8px;    color: #6B8FA8;    font-size: 11px;}.hero-img-col {    display: flex;    justify-content: flex-end;    align-items: center;}.hero-img-col img {    width: 100%;    max-width: 480px;    height: auto;    aspect-ratio: 1 / 1;    object-fit: cover;    object-position: center 15%;    border-radius: 22px;    display: block;    box-shadow: 0 10px 40px rgba(0,0,0,.13);}.hero-img-placeholder {    width: 100%;    max-width: 480px;    aspect-ratio: 1 / 1;    border-radius: 22px;    background: linear-gradient(150deg, #c8dce8, #a4bfcf 50%, #8fb0c6);    display: flex;    align-items: center;    justify-content: center;    color: rgba(255,255,255,.75);    font-size: 15px;    font-weight: 500;    box-shadow: 0 8px 32px rgba(0,0,0,.10);}/* ================================================================   TRUST BAR================================================================ */.trust-bar {    background: #E8F1F8;    padding: 30px 0;    border-top: 1px solid #D8E8F2;    border-bottom: 1px solid #D8E8F2;}.trust-grid {    display: grid;    grid-template-columns: repeat(4, 1fr);    gap: 16px;    align-items: center;}.trust-item {    display: flex;    align-items: center;    gap: 13px;    padding: 4px 0;}.trust-ico-wrap {    width: 44px;    height: 44px;    flex-shrink: 0;    border-radius: 10px;    background: #FFFFFF;    border: 1px solid #D8E6EF;    display: flex;    align-items: center;    justify-content: center;    box-shadow: 0 1px 4px rgba(0,0,0,.06);}.trust-item:first-child .trust-ico-wrap {    border-radius: 50%;}.trust-label strong,.trust-label span {    display: block;    font-size: 14.5px;    font-weight: 700;    color: #1A3D52;    line-height: 1.35;}@media (max-width: 1024px) {    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }}@media (max-width: 560px) {    .trust-grid { grid-template-columns: 1fr; gap: 14px; }}/* ================================================================   SHARED SECTION STYLES================================================================ */.section-tag {    font-size: 42px;    font-weight: 800;    color: var(--primary);    letter-spacing: -1px;    line-height: 1.18;}.sec-header {    margin-bottom: 58px;}/* ================================================================   FEATURES================================================================ */.features {    background: var(--white);    padding: 108px 0;}.features-grid {    display: grid;    grid-template-columns: repeat(3, 1fr);    gap: 28px;    margin-bottom: 60px;}.feat-card {    border: 1.5px solid var(--border);    border-radius: var(--r-card);    padding: 48px 40px 44px;    background: var(--white);    transition: box-shadow .3s, transform .3s, border-color .3s;}.feat-card:hover {    box-shadow: var(--sh-md);    transform: translateY(-6px);    border-color: #b4c8d6;}.feat-ico-ring {    width: 62px;    height: 62px;    border-radius: 50%;    background: #EBF3FA;    display: flex;    align-items: center;    justify-content: center;    margin-bottom: 26px;}.feat-ico-ring svg { width: 32px; height: 32px; }.feat-card h3 {    font-size: 19px;    font-weight: 700;    color: var(--primary);    margin-bottom: 12px;}.feat-card p {    font-size: 15.5px;    color: var(--txt-mid);    line-height: 1.72;}/* ================================================================   HOW IT WORKS================================================================ */.how-works {    background: var(--white);    padding: 108px 0;}.steps-row {    display: grid;    grid-template-columns: repeat(3, 1fr);    gap: 52px;    margin-bottom: 60px;}.step-item {    display: flex;    flex-direction: column;    align-items: center;    gap: 18px;    text-align: center;}.step-num {    width: 70px;    height: 70px;    border-radius: 50%;    background: var(--primary);    color: var(--white);    font-size: 26px;    font-weight: 800;    display: flex;    align-items: center;    justify-content: center;    flex-shrink: 0;    transition: transform .22s, box-shadow .22s;}.step-item:hover .step-num {    transform: scale(1.1);    box-shadow: 0 10px 28px rgba(26,61,82,.28);}.step-item h3 {    font-size: 18.5px;    font-weight: 700;    color: var(--primary);}.step-item p {    font-size: 15.5px;    color: var(--txt-mid);    line-height: 1.72;    max-width: 240px;}/* ================================================================   FORM SECTION================================================================ */.form-section { background: var(--bg-section); padding: 108px 0; }.form-section .sec-header { margin-bottom: 16px; }.form-lead {    font-size: 17px;    color: var(--txt-mid);    line-height: 1.72;    max-width: 560px;    margin: 0 auto 48px;    text-align: center;}.form-card {    max-width: 780px;    margin: 0 auto;    background: var(--white);    border-radius: var(--r-card);    padding: 60px 72px 68px;    box-shadow: var(--sh-md);}.form-grid {    display: grid;    grid-template-columns: 1fr 1fr;    gap: 22px;}.form-group { display: flex; flex-direction: column; gap: 7px; }.form-group.full { grid-column: 1 / -1; }.form-label {    font-size: 13px;    font-weight: 600;    color: var(--primary);    letter-spacing: 0.2px;}.form-label .req { color: var(--orange); margin-left: 2px; }.form-control {    width: 100%;    padding: 13px 18px;    font-family: inherit;    font-size: 15px;    color: var(--txt-dark);    background: var(--white);    border: 1.5px solid #B2C4D2;    border-radius: 11px;    outline: none;    transition: border-color .22s, box-shadow .22s, background .22s;    -webkit-appearance: none;    appearance: none;}.form-control::placeholder { color: #8FA8BC; font-size: 14px; }.form-control:hover        { border-color: #93ADBF; }.form-control:focus {    border-color: var(--primary);    box-shadow: 0 0 0 3px rgba(26,61,82,.09);    background: #FAFCFE;}select.form-control {    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A9EAA' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");    background-repeat: no-repeat;    background-position: right 16px center;    padding-right: 46px;    cursor: pointer;}.form-tcpa {    grid-column: 1 / -1;    display: flex;    align-items: flex-start;    gap: 13px;    padding: 18px 22px;    background: #F3F8FC;    border: 1px solid #D8E8F2;    border-radius: 11px;}.tcpa-chk {    width: 18px;    height: 18px;    flex-shrink: 0;    margin-top: 2px;    cursor: pointer;    accent-color: var(--primary);}.tcpa-text {    font-size: 12px;    color: var(--txt-dark);    line-height: 1.7;}.tcpa-text a {    color: var(--primary);    text-decoration: underline;    text-underline-offset: 2px;    transition: color .15s;}.tcpa-text a:hover { color: var(--orange); }.form-submit-wrap { grid-column: 1 / -1; }.btn-form {    width: 100%;    padding: 18px 24px;    font-size: 17px;    border-radius: 12px;    letter-spacing: 0.2px;}/* ================================================================   FINAL CTA================================================================ */.cta-band {    background: var(--primary);    padding: 108px 48px;    text-align: center;}.cta-band h2 {    font-size: 46px;    font-weight: 900;    color: var(--white);    line-height: 1.2;    letter-spacing: -1.2px;    max-width: 720px;    margin: 0 auto 18px;}.cta-band .cta-sub {    font-size: 18px;    color: rgba(255,255,255,.72);    margin-bottom: 40px;    line-height: 1.6;}.cta-band .cta-note {    margin-top: 22px;    font-size: 13.5px;    color: rgba(255,255,255,.42);}/* ================================================================   FOOTER================================================================ */.site-footer {    background: var(--bg-hero);    padding: 36px 0 28px;}.footer-legal {    font-size: 14px;    color: var(--txt-mid);    line-height: 1.75;    padding-bottom: 22px;    margin-bottom: 22px;    border-bottom: 1px solid var(--border);}.footer-row {    display: flex;    align-items: center;    justify-content: space-between;    flex-wrap: wrap;    gap: 10px;}.footer-copy { font-size: 14px; color: var(--txt-mid); }.footer-links { display: flex; gap: 24px; }.footer-links a {    font-size: 14px;    color: var(--txt-mid);    transition: color .15s;}.footer-links a:hover { color: var(--primary); }/* ================================================================   ANIMATIONS================================================================ */.h-anim {    opacity: 0;    transform: translateY(22px);    transition: opacity .7s cubic-bezier(.22,.61,.36,1),                transform .7s cubic-bezier(.22,.61,.36,1);}.h-anim.show   { opacity: 1; transform: none; }.h-anim.d1     { transition-delay: .14s; }.h-anim.d2     { transition-delay: .28s; }.h-anim.d3     { transition-delay: .42s; }.h-img-anim {    opacity: 0;    transform: translateX(32px);    transition: opacity .7s cubic-bezier(.22,.61,.36,1),                transform .7s cubic-bezier(.22,.61,.36,1);    transition-delay: .10s;}.h-img-anim.show { opacity: 1; transform: none; }.fu {    opacity: 0;    transform: translateY(30px);    transition: opacity .65s cubic-bezier(.22,.61,.36,1),                transform .65s cubic-bezier(.22,.61,.36,1);}.fu.on    { opacity: 1; transform: none; }.fu.d1    { transition-delay: .09s; }.fu.d2    { transition-delay: .18s; }.fu.d3    { transition-delay: .27s; }.sg > * {    opacity: 0;    transform: translateY(30px);    transition: opacity .6s cubic-bezier(.22,.61,.36,1),                transform .6s cubic-bezier(.22,.61,.36,1);}.sg.on > *:nth-child(1) { opacity:1; transform:none; transition-delay:.07s; }.sg.on > *:nth-child(2) { opacity:1; transform:none; transition-delay:.16s; }.sg.on > *:nth-child(3) { opacity:1; transform:none; transition-delay:.25s; }.sg.on > *:nth-child(4) { opacity:1; transform:none; transition-delay:.34s; }

/* ==========================
   FORM SECTION (lead-form)
========================== */
.lead-form-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.lead-form { width: 100%; }

.form-group input {
    width: 100%;
    height: 54px;
    border: 1.5px solid #B2C4D2;
    border-radius: 10px;
    padding: 0 18px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--txt-dark);
    background: var(--white);
    outline: none;
    transition: border-color .22s, box-shadow .22s;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,61,82,.09);
}

.form-group input::placeholder {
    color: #8FA8BC;
    font-size: 14px;
}

.full-width { grid-column: span 2; }

.consent-box { margin-top: 30px; }

.consent-box label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: var(--txt-dark);
}

.consent-box label a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    transition: color .18s;
}

.consent-box label a:hover { color: var(--orange-h); }

.consent-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 4px;
    accent-color: var(--primary);
}

.submit-wrapper {
    text-align: center;
    margin-top: 35px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    background: var(--orange);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 52px;
    border-radius: var(--r-pill);
    box-shadow: 0 6px 22px rgba(232,107,58,.36);
    transition: background .22s, transform .18s, box-shadow .22s;
}

.submit-btn:hover {
    background: var(--orange-h);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232,107,58,.46);
}

.submit-btn:active { transform: translateY(-1px); }

/* ==========================
   FORM SECTION — HEADER & TABS
========================== */
.lfs-header {
    text-align: center;
    margin-bottom: 36px;
}

.lfs-heading {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin: 0 0 14px;
}

.lfs-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--txt-mid);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

.lfs-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.lfs-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 168px;
    padding: 14px 32px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .22s, color .22s, border-color .22s,
                box-shadow .22s, transform .18s;
    outline: none;
}

.lfs-tab:hover:not(.active) {
    background: rgba(26,61,82,.06);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(26,61,82,.10);
}

.lfs-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 22px rgba(26,61,82,.22);
    transform: translateY(-1px);
}

.lfs-tab-ico {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Fade-slide in when tab switches */
@keyframes lfsFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lfs-form-wrap { animation: lfsFadeUp .32s cubic-bezier(.22,.61,.36,1) both; }

/* ================================================================
   RESPONSIVE — 1400px
================================================================ */
@media (max-width: 1400px) {
    .hero-heading           { font-size: 58px; }
    .hero                   { padding: 72px 0 80px; }
}

/* ================================================================
   RESPONSIVE — 1200px
================================================================ */
@media (max-width: 1200px) {
    .container              { padding: 0 36px; }
    .hero-heading           { font-size: 52px; letter-spacing: -1.8px; }
    .hero                   { padding: 64px 0 72px; }
    .hero-grid              { gap: 60px; }
    .section-tag            { font-size: 36px; }
    .cta-band h2            { font-size: 40px; }
    .features               { padding: 90px 0; }
    .how-works              { padding: 90px 0; }
    .form-section           { padding: 90px 0; }
    .lead-form-section      { padding: 90px 0; }
    .cta-band               { padding: 90px 40px; }
    .form-card              { padding: 52px 56px 58px; }
}

/* ================================================================
   RESPONSIVE — 1024px (tablet landscape)
================================================================ */
@media (max-width: 1024px) {
    .hero-heading           { font-size: 46px; letter-spacing: -1.4px; }
    .hero-grid              { gap: 48px; }
    .hero-body              { font-size: 16.5px; }
    .feat-card              { padding: 40px 32px; }
    .features-grid          { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .trust-grid             { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ================================================================
   RESPONSIVE — 860px (tablet portrait)
================================================================ */
@media (max-width: 860px) {
    .container              { padding: 0 24px; }

    /* Hero */
    .hero                   { padding: 0 0 56px; }
    .hero-grid              { grid-template-columns: 1fr; gap: 0; }
    .hero-content-col       { order: 2; padding: 36px 0 0; }
    .hero-img-col           { order: 1; }
    .hero-img-col img,
    .hero-img-placeholder   {
        max-width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: 0;
        object-position: center 20%;
    }
    .hero-heading           { font-size: 38px; letter-spacing: -1.2px; }
    .hero-body              { max-width: 100%; font-size: 16px; }

    /* Features */
    .features               { padding: 76px 0; }
    .features-grid          { grid-template-columns: 1fr; gap: 20px; }

    /* How it works */
    .how-works              { padding: 76px 0; }
    .steps-row              { grid-template-columns: 1fr; gap: 36px; }
    .step-item p            { max-width: 380px; }

    /* Section headings */
    .section-tag            { font-size: 30px; }
    .sec-header             { margin-bottom: 40px; }

    /* Form header & tabs */
    .lfs-heading            { font-size: 28px; }
    .lfs-tab                { min-width: 148px; padding: 13px 26px; }

    /* Form */
    .form-section           { padding: 76px 0; }
    .lead-form-section      { padding: 60px 0; }
    .form-card              { padding: 40px 32px 44px; }
    .form-grid              { grid-template-columns: 1fr; gap: 16px; }
    .form-group.full        { grid-column: 1; }
    .form-tcpa              { grid-column: 1; }
    .form-submit-wrap       { grid-column: 1; }
    .full-width             { grid-column: span 1; }

    /* CTA */
    .cta-band               { padding: 76px 24px; }
    .cta-band h2            { font-size: 30px; }
    .cta-band .cta-sub      { font-size: 16px; }

    /* Trust */
    .trust-grid             { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ================================================================
   RESPONSIVE — 640px (phone landscape / large phone)
================================================================ */
@media (max-width: 640px) {
    .container              { padding: 0 18px; }

    /* Header */
    .header-inner           { height: 62px; }
    .logo-name              { font-size: 18px; }
    .logo-badge             { width: 38px; height: 38px; font-size: 15px; }
    .btn--nav               { padding: 10px 14px; font-size: 13px; }

    /* Hero */
    .hero                   { padding: 0 0 44px; }
    .hero-heading           { font-size: 30px; letter-spacing: -0.8px; }
    .hero-body              { font-size: 15.5px; }
    .hero-content-col       { padding: 24px 0 0; }
    .btn--hero              { padding: 14px 26px; font-size: 15px; }

    /* Features */
    .features               { padding: 60px 0; }
    .feat-card              { padding: 32px 24px; }
    .feat-card h3           { font-size: 17px; }
    .feat-card p            { font-size: 14.5px; }

    /* How it works */
    .how-works              { padding: 60px 0; }
    .step-num               { width: 60px; height: 60px; font-size: 22px; }
    .step-item h3           { font-size: 16px; }
    .step-item p            { font-size: 14.5px; }

    /* Section headings */
    .section-tag            { font-size: 24px; }
    .sec-header             { margin-bottom: 30px; }

    /* Form header & tabs */
    .lfs-heading            { font-size: 22px; letter-spacing: -0.4px; }
    .lfs-desc               { font-size: 14.5px; }
    .lfs-header             { margin-bottom: 26px; }
    .lfs-tabs               { gap: 10px; margin-bottom: 28px; }
    .lfs-tab                { min-width: 0; flex: 1; max-width: 200px; padding: 12px 20px; font-size: 14px; }
    .lfs-tab-ico            { width: 16px; height: 16px; }

    /* Form */
    .form-section           { padding: 60px 0; }
    .lead-form-section      { padding: 48px 0; }
    .form-card              { padding: 28px 20px 32px; }
    .form-lead              { font-size: 15px; }
    .form-group input       { height: 50px; font-size: 14.5px; }
    .consent-box label      { font-size: 13px; line-height: 1.75; }
    .submit-btn             { width: 100%; font-size: 16px; padding: 15px 24px; }
    .btn-form               { font-size: 15px; padding: 15px 20px; }

    /* CTA */
    .cta-band               { padding: 60px 18px; }
    .cta-band h2            { font-size: 24px; letter-spacing: -0.5px; }
    .cta-band .cta-sub      { font-size: 15px; }
    .btn--cta               { padding: 15px 28px; font-size: 15.5px; }

    /* Trust */
    .trust-grid             { grid-template-columns: 1fr; gap: 12px; }
    .trust-label strong,
    .trust-label span       { font-size: 13.5px; }

    /* Footer */
    .footer-legal           { font-size: 13px; }
    .footer-copy            { font-size: 13px; }
    .footer-links a         { font-size: 13px; }
    .footer-row             { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ================================================================
   RESPONSIVE — 420px (small phone)
================================================================ */
@media (max-width: 420px) {
    .container              { padding: 0 14px; }
    .logo-badge             { width: 34px; height: 34px; font-size: 14px; }
    .logo-name              { font-size: 15px; }
    .btn--nav               { padding: 9px 10px; font-size: 11.5px; }
    .hero-heading           { font-size: 26px; }
    .section-tag            { font-size: 21px; }
    .form-card              { padding: 22px 14px 26px; }
    .cta-band h2            { font-size: 21px; }
    .footer-links           { gap: 16px; flex-wrap: wrap; }
}



.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
  
    width: auto;
    display: block;
}