  :root {
                --cr-red: #f5333f;
                --cr-red-dark: #d42a35;
                --cr-blue: #011e41;
                --cr-dark: #323232;
                --cr-gray: #ededed;
                --cr-muted: #636363;
                --cr-white: #ffffff;
                --shadow-lg: 0 20px 48px rgba(1,30,65,0.1);
                --shadow-md: 0 10px 30px rgba(1,30,65,0.07);
                --max: 1380px;
                --transition: 220ms ease;
            }

            * {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }

            html {
                scroll-behavior: smooth;
            }

            body {
                font-family: "Montserrat", Arial, Helvetica, sans-serif;
                color: var(--cr-dark);
                background: #fff;
                -webkit-font-smoothing: antialiased;
                text-rendering: optimizeLegibility;
                line-height: 1.6;
            }

            a {
                color: inherit;
                text-decoration: none;
            }

            img {
                display: block;
                max-width: 100%;
            }

            button, input {
                font-family: inherit;
            }

            .container {
                width: min(var(--max), calc(100% - 0px));
                margin: 0 auto;
            }

            .page {
                overflow: hidden;
            }

            .topbar {
                position: absolute;
                top: 17px;
                left: 0;
                right: 0;
                z-index: 50;
            }

            .topbar-inner {
                min-height: 78px;
                display: flex;
                align-items: center;
                justify-content: flex-start;
            }

            .logo-block {
                display: inline-flex;
                align-items: center;
                background: var(--cr-white);
                border-radius: 0px;
                overflow: hidden;
                box-shadow: 0 8px 22px rgba(0,0,0,0.14);
            }


            .logo-img {
                width: 154px;
                height: auto;
                padding: 13px 16px;
            }

            .hero {
                position: relative;
                min-height: 100vh;
                min-height: 100svh;
                display: flex;
                align-items: center;
                overflow: hidden;
            }

            .hero-bg {
                position: absolute;
                inset: 0;
                z-index: 0;
                background: url('fondo_dsk.jpg') center / cover no-repeat, var(--cr-blue);
            }

            .hero-bg::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(90deg, rgba(1,30,65,0.86) 0%, rgba(1,30,65,0.58) 27%, rgba(1,30,65,0.04) 47%, rgba(1,30,65,0.28) 65%, rgba(1,30,65,0.84) 100% ), linear-gradient(180deg, rgba(1,30,65,0.42) 0%, rgba(0,0,0,0) 32%, rgba(0,0,0,0) 64%, rgba(1,30,65,0.58) 100% );
            }

            .hero-content {
                position: relative;
                z-index: 2;
                width: 100%;
                padding: 112px 0 62px;
            }

            .hero-layout {
                display: grid;
                grid-template-columns: minmax(380px, 510px) 442px;
                justify-content: space-between;
                gap: 150px;
                align-items: center;
            }

            .hero-copy {
                color: var(--cr-white);
            }

            .eyebrow {
                display: inline-flex;
                align-items: center;
                gap: 9px;
                padding: 8px 16px;
                border-radius: 999px;
                background: rgba(255,255,255,0.1);
                border: 1px solid rgba(255,255,255,0.18);
                color: rgba(255,255,255,0.9);
                text-transform: uppercase;
                letter-spacing: 0.1em;
                font-size: 11px;
                font-weight: 800;
                backdrop-filter: blur(8px);
            }

            .eyebrow::before {
                content: "";
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: var(--cr-red);
                box-shadow: 0 0 0 4px rgba(245,51,63,0.3);
                flex: 0 0 auto;
            }

            .hero h1 {
                margin: 24px 0 20px;
                font-size: clamp(42px, 5.3vw, 70px);
                line-height: 0.96;
                letter-spacing: -0.055em;
                font-weight: 900;
                max-width: 560px;
            }

            .highlight {
                color: var(--cr-red);
            }

            .hero-lead {
                max-width: 505px;
                color: rgba(255, 255, 255, 1);
                font-size: clamp(16px, 1.5vw, 18px);
                line-height: 1.48;
                font-weight: 500;
            }

            .hero-lead-first,
            .hero-lead-extra,
            .hero-lead-extra span {
                display: block;
            }

            .hero-lead-extra {
                margin-top: 22px;
            }

            .hero-lead-extra span + span {
                   margin-top: 22px;
            }

            .hero-text-arrow {
                display: none;
            }

            .btn-primary, .submit-btn {
                min-height: 54px;
                padding: 0 32px;
                border-radius: 999px;
                border: 0;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 15px;
                font-weight: 800;
                line-height: 1;
                cursor: pointer;
                background: var(--cr-red);
                color: var(--cr-white);
                box-shadow: 0 16px 38px rgba(245,51,63,0.28);
                transition: all var(--transition);
                gap: 10px;
            }

            
            .btn-primary svg {
                width: 18px;
                height: 18px;
                flex: 0 0 auto;
            }

            .hero-stats {
                margin-top: 42px;
                display: flex;
                gap: 24px;
            }

            .hero-stat {
                display: flex;
                flex-direction: column;
            }

            .hero-stat strong {
                font-size: 28px;
                font-weight: 900;
                letter-spacing: -0.03em;
                line-height: 1;
            }

           .hero-stat span {
                margin-top: 4px;
                font-size: 12px;
                font-weight: 700;
                color: rgba(255, 255, 255, 1);
                text-transform: uppercase;
                letter-spacing: 0.04em;
                line-height: 16px;
                width: 81%;
            }

            .form-panel {
                background: rgba(255,255,255,0.97);
                border-radius: 24px;
                box-shadow: 0 32px 80px rgba(0,0,0,0.25);
                overflow: hidden;
                backdrop-filter: blur(20px);
    margin-top: -20px;

            }

            .form-panel::before {
                content: "";
                display: block;
                height: 5px;
                background: linear-gradient(90deg, var(--cr-red), #ff6b73, var(--cr-red));
            }

            .form-inner {
                padding: 19px 26px 31px;
            }

            .form-tag {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 3px;
                color: var(--cr-red);
                text-transform: uppercase;
                letter-spacing: 0.08em;
                font-size: 13.5px;
                font-weight: 900;
            }

            .form-tag::before {
                content: "";
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: var(--cr-red);
            }

            .form-title {
                margin: 0 0 8px;
                font-size: 29px;
                line-height: 1.12;
                letter-spacing: -0.045em;
                font-weight: 900;
                color: var(--cr-blue);
            }

            .form-subtitle {
                margin: 0 0 20px;
                color: var(--cr-muted);
                font-size: 16px;
                line-height: 1.3;
                font-weight: 500;
                width: 85%;
            }

            .form-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .field {
                display: grid;
                gap: 5px;
            }

            .field.full {
                grid-column: 1 / -1;
            }

            label {
                font-size: 11.5px;
                font-weight: 800;
                color: var(--cr-blue);
                letter-spacing: 0.01em;
            }

            input {
                width: 100%;
                height: 48px;
                border-radius: 12px;
                border: 1.5px solid #ddd8d4;
                background: #faf9f8;
                font-size: 14px;
                color: var(--cr-dark);
                padding: 0 14px;
                outline: none;
                transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
            }



            input::placeholder {
                color: #b5ada7;
            }

            .submit-btn {
                width: 100%;
                min-height: 52px;
                margin-top: 4px;
            }

            .privacy-checks + .field .submit-btn {
                margin-top: 2px;
            }

            .form-legal {
                margin: 14px 0 0;
                font-size: 10.5px;
                line-height: 1.45;
                color: #9a9a9a;
            }

            .form-legal a {
                color: var(--cr-red);
                text-decoration: underline;
                text-underline-offset: 2px;
            }

            .privacy-checks {
                grid-column: 1 / -1;
                display: grid;
                gap: 11px;
                margin-top: 2px;
                font-size: 0.7em;
                line-height: 1.2em;

    margin-bottom: 13px;
            }

            .check-row {
                display: grid;
                grid-template-columns: 22px 1fr;
                gap: 12px;
                align-items: flex-start;
                color: var(--cr-blue);
                font-size: 10.5px;
                line-height: 1.35;
                font-weight: 500;
            }

            .check-row input[type="checkbox"] {
                width: 22px;
                height: 22px;
                min-width: 22px;
                border-radius: 4px;
                border: 1px solid #b9b9b9;
                background: #ededed;
                padding: 0;
                margin: 0;
                appearance: none;
                -webkit-appearance: none;
                cursor: pointer;
                position: relative;
                box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
            }

            .check-row input[type="checkbox"]:checked {
                background: var(--cr-red);
                border-color: var(--cr-red);
            }

            .check-row input[type="checkbox"]:checked::after {
                content: "";
                position: absolute;
                left: 7px;
                top: 3px;
                width: 6px;
                height: 11px;
                border: solid #fff;
                border-width: 0 2px 2px 0;
                transform: rotate(45deg);
            }

            .check-row a {
                color: var(--cr-blue);
                text-decoration: underline;
                text-underline-offset: 2px;
            }

            .form-legal {
                display: none;
            }

            /* --- Validaci&oacute;n iLead --- */
            
            input.input-error {
                border-color: var(--cr-red) !important;
                box-shadow: 0 0 0 4px rgba(245,51,63,0.1) !important;
            }

            .mobile-hero-cta {
                display: none;
            }

            .lightbox-overlay {
                display: flex;
                position: fixed;
                inset: 0;
                z-index: 200;
                background: rgba(1,30,65,0.55);
                backdrop-filter: blur(10px);
                align-items: center;
                justify-content: center;
                padding: 20px;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 420ms ease, visibility 0s linear 420ms;
            }

            .lightbox-overlay.is-open {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transition: opacity 420ms ease, visibility 0s linear 0s;
            }

            .lightbox-box {
                position: relative;
                width: 100%;
                max-width: 440px;
                max-height: calc(100vh - 40px);
                max-height: calc(100svh - 40px);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                border-radius: 24px;
                background: #fff;
                box-shadow: 0 40px 100px rgba(0,0,0,0.35);
                opacity: 0;
                transform: translateY(22px) scale(0.96);
                transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
            }

            .lightbox-overlay.is-open .lightbox-box {
                opacity: 1;
                transform: translateY(0) scale(1);
            }

            .lightbox-close {
                position: absolute;
                top: 12px;
                right: 12px;
                z-index: 30;
                display: flex;
                justify-content: flex-end;
                padding: 0;
                margin: 0;
                background: transparent;
                height: 40px;
                pointer-events: none;
            }

            .lightbox-close button {
                width: 40px;
                height: 40px;
                pointer-events: auto;
                border-radius: 50%;
                border: 0;
                background: var(--cr-gray);
                color: var(--cr-blue);
                font-size: 20px;
                font-weight: 700;
                cursor: pointer;
                display: grid;
                place-items: center;
                transition: all var(--transition);
            }

            .lightbox-close button:hover {
                background: var(--cr-red);
                color: #fff;
            }

            .lightbox-form {
                padding: 0;
            }

            .lightbox-form .form-title {
                font-size: 24px;
            }

            .lightbox-form .form-tag,
            .lightbox-form .form-title,
            .lightbox-form .form-subtitle {
            }

            .lightbox-form .form-panel {
                box-shadow: none;
                border-radius: 0 0 24px 24px;
                background: transparent;
                backdrop-filter: none;
            }

            .lightbox-form .form-inner {
                padding: 18px 24px 28px;
            }

            .lightbox-form .form-grid {
                grid-template-columns: 1fr;
            }

            .lightbox-form .field.full {
                grid-column: auto;
            }

            .lightbox-box .lightbox-close {
                position: absolute !important;
            }

            .lightbox-box .lightbox-form .form-inner {
                padding-top: 9px !important;
            }

            .section {
                padding: 90px 0;
            }

            #labor {
                background: #fff;
                padding-bottom: 106px;
            }

            .section-heading {
                display: block;
                width: 100%;
                max-width: 1120px;
                margin-bottom: 46px;
            }

            .section-heading > div {
                max-width: 900px;
            }

            .section-heading .section-copy {
                max-width: 1060px;
                padding-top: 0;
                margin-top: 24px;
                font-size: 18px;
                line-height: 1.68;
            }

            .section-kicker {
                margin: 0 0 10px;
                color: var(--cr-red);
                text-transform: uppercase;
                letter-spacing: 0.1em;
                font-size: 12px;
                font-weight: 900;
            }

            h2 {
                margin: 0;
                font-size: clamp(30px, 3.8vw, 50px);
                line-height: 1.04;
                letter-spacing: -0.05em;
                font-weight: 900;
                color: var(--cr-blue);
            }

            .section-copy {
                margin: 0;
                color: var(--cr-muted);
                font-size: 16px;
                line-height: 1.7;
                font-weight: 500;
            }

            .feature-grid {
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 16px;
            }

            .feature-card {
                position: relative;
                padding: 28px 24px;
                border-radius: 22px;
                background: #fff;
                border: 1px solid #ece8e5;
                box-shadow: var(--shadow-md);
                transition: all 300ms ease;
                overflow: hidden;
            }

            .feature-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 20px 50px rgba(1,30,65,0.1);
            }

            .feature-card::after {
                content: "";
                position: absolute;
                right: -30px;
                bottom: -30px;
                width: 100px;
                height: 100px;
                border-radius: 50%;
                background: rgba(245,51,63,0.04);
            }

            .feature-icon {
                width: 48px;
                height: 48px;
                border-radius: 14px;
                background: rgba(245,51,63,0.08);
                display: grid;
                place-items: center;
                color: var(--cr-red);
                font-size: 18px;
                font-weight: 900;
                margin-bottom: 20px;
            }

            .feature-card h3 {
                position: relative;
                z-index: 2;
                margin: 0 0 10px;
                font-size: 19px;
                line-height: 1.1;
                letter-spacing: -0.035em;
                color: var(--cr-blue);
            }

            .feature-card p {
                position: relative;
                z-index: 2;
                margin: 0;
                color: var(--cr-muted);
                font-size: 14px;
                line-height: 1.6;
                font-weight: 500;
            }

            .how-section {
                background:#fdeff0;
            }

            .steps-wrap {
                display: grid;
                grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
                gap: 24px;
                align-items: stretch;
            }

            .story-card {
                border-radius: 28px;
                padding: 38px;
                background: var(--cr-red);
                color: var(--cr-white);
                box-shadow: 0 24px 60px rgba(245,51,63,0.22);
                position: relative;
                overflow: hidden;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .story-card::after {
                content: "";
                position: absolute;
                right: -100px;
                bottom: -110px;
                width: 280px;
                height: 280px;
                border-radius: 50%;
                border: 60px solid rgba(255,255,255,0.1);
            }

            .story-card h2, .story-card p, .story-card a {
                position: relative;
                z-index: 2;
            }

            .story-card h2 {
                color: var(--cr-white);
                font-size: clamp(26px, 2.8vw, 38px);
            }

            .story-card p {
                margin: 18px 0 0;
                max-width: 480px;
                color: rgba(255,255,255,0.84);
                font-size: 15.5px;
                line-height: 1.65;
                font-weight: 500;
            }

            .btn-white {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                margin-top: 26px;
                min-height: 50px;
                padding: 0 28px;
                border-radius: 999px;
                background: var(--cr-white);
                color: var(--cr-red);
                border: 0;
                font-size: 14px;
                font-weight: 900;
                cursor: pointer;
                box-shadow: 0 14px 30px rgba(0,0,0,0.15);
                transition: all var(--transition);
            }

            .btn-white:hover {
                transform: translateY(-2px);
                box-shadow: 0 18px 40px rgba(0,0,0,0.2);
            }

            .steps-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .step-card {
                background: #fff;
                border-radius: 20px;
                padding: 24px;
                border: 1px solid #ece8e5;
                box-shadow: var(--shadow-md);
                transition: all 300ms ease;
            }

            .step-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 14px 36px rgba(1,30,65,0.08);
            }

            .step-card b {
                display: inline-grid;
                place-items: center;
                width: 34px;
                height: 34px;
                border-radius: 10px;
                background: rgba(245,51,63,0.08);
                color: var(--cr-red);
                font-size: 13px;
                margin-bottom: 14px;
            }

            .step-card h3 {
                margin: 0 0 8px;
                font-size: 18px;
                line-height: 1.1;
                letter-spacing: -0.035em;
                color: var(--cr-blue);
            }

            .step-card p {
                margin: 0;
                color: var(--cr-muted);
                font-size: 14px;
                line-height: 1.6;
                font-weight: 500;
            }

            .final-cta {
                padding: 68px 0 90px;
            }

            .impact-band {
                background: var(--cr-blue);
                color: var(--cr-white);
                border-radius: 28px;
                padding: 48px;
                display: grid;
                grid-template-columns: 1fr auto;
                gap: 32px;
                align-items: center;
                position: relative;
                overflow: hidden;
                box-shadow: 0 24px 60px rgba(1,30,65,0.2);
            }

            .impact-band::before {
                content: "";
                position: absolute;
                right: -100px;
                top: -130px;
                width: 300px;
                height: 300px;
                border-radius: 50%;
                border: 60px solid rgba(255,255,255,0.04);
            }

            .impact-band p {
                position: relative;
                max-width: 700px;
                font-size: clamp(22px, 2.8vw, 36px);
                line-height: 1.1;
                letter-spacing: -0.04em;
                font-weight: 900;
            }

            .impact-band .btn-primary {
                position: relative;
                white-space: nowrap;
            }

            .footer {
                background: var(--cr-blue);
                color: rgba(255,255,255,0.5);
                padding: 28px 0;
            }

            .footer-inner {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 18px;
                font-size: 12px;
                font-weight: 500;
            }

            .footer .logo-img {
                width: 132px;
            }

            :focus-visible {
                outline: 3px solid rgba(245,51,63,0.3);
                outline-offset: 3px;
            }

            @media (max-width: 1180px) {
                .hero-layout {
                    grid-template-columns: minmax(340px, 470px) 390px;
                    gap: 90px;
                }
            }

            @media (max-width: 1080px) {
                .hero-layout {
                    grid-template-columns: minmax(330px, 440px) 380px;
                    gap: 60px;
                }

                .steps-wrap {
                    grid-template-columns: 1fr;
                    gap: 24px;
                }

                .feature-grid {
                    grid-template-columns: repeat(2, minmax(0, 1fr));
                }
            }

            @media (max-width: 860px) {
                .hero-layout {
                    grid-template-columns: 1fr;
                    gap: 0;
                }

                .hero-side-desktop {
                    display: none;
                }

                .mobile-hero-cta {
                    display: flex;
                }
            }

            @media (max-width: 768px) {
 .form-panel {
                
    margin-top: 0px;}


.privacy-checks {
    grid-column: 1 / -1;
    display: grid;
    gap: 11px;
    margin-top: 2px;
    font-size: 0.55em;
    line-height: 1.35em;
margin-bottom: 3px;
}

                .hero-lead-extra span + span {
                    margin-top: 6px;
                }

                .lightbox-overlay {
                    padding: 7px;
                }

                .check-row {
                    display: grid;
                    grid-template-columns: 22px 1fr;
                    gap: 12px;
                    align-items: flex-start;
                    color: var(--cr-blue);
                    font-size: 9.5px;
                    line-height: 1.35;
                    font-weight: 500;
                }

                input {
                    width: 100%;
                    height: 43px;
                    border-radius: 12px;
                    border: 1.5px solid #ddd8d4;
                    background: #faf9f8;
                    font-size: 14px;
                    color: var(--cr-dark);
                    padding: 0 14px;
                    outline: none;
                    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
                }

                .field {
                    display: grid;
                    gap: 0px;
                }

                .form-subtitle {
                    margin: 0 0 20px;
                    color: var(--cr-muted);
                    font-size: 15px;
                    line-height: 1.3;
                    font-weight: 500;
                    width: 100%;
                }

                .container {
                    width: 100% !important;
                    max-width: none;
                    padding-left: 20px !important;
                    padding-right: 20px !important;
                }

                .hero-content .container,
                .section > .container,
                .final-cta > .container,
                .footer > .container {
                    padding-left: 20px !important;
                    padding-right: 20px !important;
                }

                .topbar-inner {
                    min-height: 48px;
                }

                .logo-img {
                    width: 118px;
                }

                .hero {
                    min-height: auto;
                    align-items: stretch;
                }

                .hero-bg {
                    background: url('fondo_mb.jpg') center top / cover no-repeat, var(--cr-blue);
                }

                .hero-bg::after {
                    background: linear-gradient(180deg, rgba(1,30,65,0.72) 0%, rgba(1,30,65,0.36) 18%, rgba(0,0,0,0) 38%, rgba(0,0,0,0) 60%, rgba(1,30,65,0.46) 78%, rgba(1,30,65,0.84) 100% );
                    opacity: 0;
                    transition: opacity 280ms ease;
                }

                .hero.hero-text-open .hero-bg::after {
                    opacity: 1;
                }

                .hero-content {
                    padding: 83px 0 34px;
                    display: flex;
                    flex-direction: column;
                    min-height: 100vh;
                    min-height: 100svh;
                    background: rgba(0,0,0,0);
                    transition: background 280ms ease;
                    position: relative;
                }

                .hero-content::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    height: 120px;
                    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
                    pointer-events: none;
                    z-index: 2;
                }

                .hero.hero-text-open .hero-content {
                    background: rgba(0,0,0,0.7);
                }

                .hero-copy {
                    display: flex;
                    flex-direction: column;
                    flex: 1;
                    padding-bottom: 0;
                }

                .eyebrow {
                    order: 1;
                    font-size: 11px;
                    padding: 6px 12px;
                    align-self: flex-start;
                }

                .hero h1 {
                    order: 2;
                    font-size: clamp(32px, 9.5vw, 46px);
                    margin: 14px 0 12px;
                }

                .hero-lead {
                    order: 3;
                    font-size: 14px;
                    line-height: 1.5;
                    color: rgba(255,255,255,0.78);
                }

                .hero-lead-extra {
                    display: grid;
                    gap: 16px;
                    max-height: 0;
                    opacity: 0;
                    margin-top: 0;
                    overflow: hidden;
                    transition: max-height 320ms ease, opacity 260ms ease, margin-top 320ms ease;
                }

                .hero-lead.is-expanded .hero-lead-extra {
                    max-height: 500px;
                    opacity: 1;
                    margin-top: 14px;
                }

                .hero-text-arrow {
                    display: inline-flex;
                    align-items: center;
                    gap: 4px;
                    margin-top: 12px;
                    padding: 0;
                    border: none;
                    border-radius: 0;
                    background: none;
                    color: rgb(255 255 255);
                    font-size: 12px;
                    line-height: 1;
                    cursor: pointer;
                    font-family: inherit;
                    box-shadow: none;
                    backdrop-filter: none;
                    font-weight: 400;
                    text-decoration: underline;
                }

                .hero-text-arrow .arrow-icon {
                    width: 12px;
                    height: 8px;
                    flex: 0 0 auto;
                }

                .hero-text-arrow-up {
                    display: none;
                }

                .hero-lead.is-expanded .hero-text-arrow-down {
                    display: none;
                }

                .hero-lead.is-expanded .hero-text-arrow-up {
                    display: inline-flex;
                }

                .hero-stats {
                    order: 4;
                    margin-top: 18px;
                    gap: 18px;
                    padding-bottom: 6px;
                }

                .hero-stat strong {
                    font-size: 20px;
                }

                .hero-stat span {
                    font-size: 9px;
                    line-height: 1.25;
                }

                .mobile-hero-cta {
                    order: 5;
                    margin-top: 0;
                    padding-top: 54px;
                    flex-direction: column;
                    align-items: stretch;
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    z-index: 3;
                    padding-left: 20px;
                    padding-right: 20px;
                    padding-bottom: 19px;
                    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 45%, rgba(0, 0, 0, 0) 100%);
                    pointer-events: none;
                }

                .mobile-hero-cta .btn-primary {
                    min-height: 52px;
                    font-size: 15px;
                    justify-content: center;
                    pointer-events: auto;
                }

                .section {
                    padding: 56px 0;
                }

                .section-heading {
                    margin-bottom: 24px;
                }

                .section-heading .section-copy {
                    margin-top: 16px;
                    font-size: 15px;
                    line-height: 1.6;
                }

                .section-copy {
                    font-size: 15px;
                    line-height: 1.6;
                }

                .feature-grid, .steps-grid {
                    grid-template-columns: 1fr;
                    gap: 12px;
                }

                .feature-card {
                    padding: 22px 20px;
                    border-radius: 20px;
                }

                .feature-card h3 {
                    font-size: 18px;
                }

                .story-card {
                    padding: 28px 22px;
                    border-radius: 24px;
                }

                .story-card h2 {
                    font-size: 26px;
                }

                .story-card p {
                    font-size: 14.5px;
                }

                .final-cta {
                    padding: 8px 0 52px;
                }

                .impact-band {
                    padding: 28px 22px;
                    grid-template-columns: 1fr;
                    border-radius: 22px;
                }

                .impact-band .btn-primary {
                    width: fit-content;
                }

                .footer-inner {
                    flex-direction: column;
                    align-items: flex-start;
                }
            }

            @media (max-width: 430px) {
                .hero h1 {
                    font-size: 40px;
                }

                .hero-lead {
                    font-size: 16.5px;
                    color: #ffffff;
                    line-height: 22px;
                }

                .hero-stats {
                    gap: 14px;
                }

                .hero-stat strong {
                    font-size: 18px;
                }

                .hero-stat span {
                    font-size: 8.5px;
                }
            }

            @media (prefers-reduced-motion: reduce) {
                html {
                    scroll-behavior: auto;
                }

                *, *::before, *::after {
                    animation: none !important;
                    transition: none !important;
                }
            }
			
			
			
#val-firstname {
 display: none;
    font-size: 12px;
    text-align: left;
}

#val-lastname {
 display: none;
    font-size: 12px;
    text-align: left;
}

#val-telephone {
 display: none;
    font-size: 12px;
    text-align: left;
}

#val-email {
 display: none;
    font-size: 12px;
    text-align: left;
}


.validation {
  font-size: 12px;
  color:red;

}