@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
:root {
    --cemex-green: #5BA05D;
    --text-slate: #94a3b8;
    --glass-white: rgba(255, 255, 255, 0.03);
    --border-white: rgba(255, 255, 255, 0.1);
}

.cx-landing {
    font-family: 'Outfit', sans-serif;
    color: white;
    margin: 0;
    min-height: 100vh;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 0 0;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, rgba(6, 16, 45, 0.82), rgba(8, 18, 52, 0.94));
}


/* Parallax Background */

.parallax-wrapper {
    position: absolute;
    inset: -8% 0 -8%;
    width: 100%;
    height: auto;
    background-image: url('/wp-content/uploads/2026/03/Asset-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.95;
    z-index: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0) scale(1.06);
}


/* Woman Image Layer */

.woman-layer {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: min(24vw, 380px);
    max-width: 380px;
    min-width: 180px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    opacity: 0.92;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.25s ease;
}

.woman-layer.is-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
}

.woman-layer.is-stopped {
    position: absolute;
    bottom: 0;
    left: 0;
}

.woman-layer.is-hidden {
    opacity: 0;
}

.woman-layer img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
}


/* Layout */

.cx-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 120px 20px;
    position: relative;
    z-index: 2;
}

.cx-main-nav {
    padding: 40px 0;
    display: flex;
    justify-content: flex-end;
}

.cx-logo {
    width: 200px;
    margin-right: 20px;
}

.cx-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.cx-section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Reusable Components */

.glass-panel {
    background: var(--glass-white);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-white);
    border-radius: 24px;
    padding: 60px;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-icon-box {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-icon-box img {
    display: block;
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    -webkit-transition: transform 1s ease-in-out;
    -moz-transition: transform 1s ease-in-out;
    -o-transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.hero-icon-box:hover img {
    -moz-transform: rotate3d(0, 1, 0, 380deg);
    -webkit-transform: rotate3d(0, 1, 0, 380deg);
    -ms-transform: rotate3d(0, 1, 0, 380deg);
    transform: rotate3d(0, 1, 0, 380deg);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.02;
    margin: 0 0 20px 0;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.hero-title-line {
    display: block;
}

.hero-title-light {
    font-weight: 400;
    color: #f4f8ff;
}

.hero-title-green {
    font-weight: 400;
    color: var(--cemex-green);
}

.hero-title-strong {
    font-weight: 800;
    color: #ffffff;
}

.howto-title-light {
    font-weight: 200;
    color: #f4f8ff;
}

.description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.45;
    max-width: 640px;
    font-weight: 400;
    letter-spacing: 0.01em;
}


/* Grid for Steps */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
    margin-bottom: 15px;
}

.step-item {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* Mechanism Steps */

.mechanism-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}


/* Benefits List */

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-slate);
}

.benefits-list li::before {
    content: "✓";
    color: var(--cemex-green);
    font-weight: bold;
    font-size: 18px;
}

.pill-contact {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-white);
    padding: 10px 20px;
    margin-bottom: 10px;
}

.pill-contact span {
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.btn-primary {
    background: var(--cemex-green);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: scale(1.05);
    color: white;
}

#sec-5 #user-registration {
    margin-top: 28px;
    background: transparent !important;
    color: #d8e3f2;
    font-size: 1.05rem;
    line-height: 1.4;
}

#sec-5 #user-registration,
#sec-5 #user-registration * {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

#sec-5 #user-registration:not(:has(#ur-frontend-form)) {
    border: 1px solid var(--border-white);
    border-radius: 16px;
    padding: 16px 20px;
    backdrop-filter: blur(8px);
    text-align: center;
}

#sec-5 #ur-frontend-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-white);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

#sec-5 .ur-frontend-form,
#sec-5 .ur-frontend-form.login,
#sec-5 .user-registration,
#sec-5 form.user-registration-form,
#sec-5 .ur-form-grid,
#sec-5 .ur-form-row,
#sec-5 .form-group {
    background: transparent !important;
    border-color: transparent;
    box-shadow: none !important;
}

#sec-5 .ur-frontend-form,
#sec-5 .ur-frontend-form * {
    box-sizing: border-box;
}

#sec-5 .user-registration-form-login {
    margin: 0;
    border: 0;
    background: transparent;
    padding: 0;
}

#sec-5 .user-registration-login-title {
    display: block;
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

#sec-5 .user-registration-form-row label {
    color: #d8e3f2;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
}

#sec-5 .user-registration-form-row {
    margin-bottom: 14px !important;
}

#sec-5 .user-registration-form-row .required {
    color: #86d58a;
}

#sec-5 .user-registration-Input,
#sec-5 .user-registration-Input.input-text,
#sec-5 input[type="text"],
#sec-5 input[type="password"] {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    padding: 0 16px;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#sec-5 input#username,
#sec-5 input#password {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(178, 196, 214, 0.65) !important;
    color: #ffffff !important;
}

#sec-5 .user-registration-Input:focus,
#sec-5 input[type="text"]:focus,
#sec-5 input[type="password"]:focus {
    border-color: rgba(91, 160, 93, 0.9);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(91, 160, 93, 0.22);
    outline: none;
}

#sec-5 .user-registration-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #d8e3f2;
    font-size: 0.92rem;
}

#sec-5 .user-registration-form__input-checkbox {
    accent-color: var(--cemex-green);
}

#sec-5 .user-registration-LostPassword {
    margin-top: 12px;
}

#sec-5 .user-registration-LostPassword a,
#sec-5 #user-registration a {
    color: #9fd6a2 !important;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    font-weight: 600;
    transition: color 0.2s ease, border-color 0.2s ease;
}

#sec-5 .user-registration-LostPassword a:hover,
#sec-5 #user-registration a:hover {
    color: #c4efc7 !important;
    border-color: #c4efc7;
}

#sec-5 .ur-submit-button,
#sec-5 .user-registration-Button.button,
#sec-5 input#user_registration_ajax_login_submit {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: var(--cemex-green);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    margin-top: 6px;
    box-shadow: none !important;
}

#sec-5 .ur-submit-button:hover,
#sec-5 .user-registration-Button.button:hover,
#sec-5 input#user_registration_ajax_login_submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

#sec-5 input#user_registration_ajax_login_submit,
#sec-5 input#user_registration_ajax_login_submit:focus,
#sec-5 input#user_registration_ajax_login_submit:active {
    background: var(--cemex-green) !important;
    border-radius: 999px !important;
    color: #fff !important;
    border: 0 !important;
    outline: none !important;
}

#sec-5 .ur-form-grid,
#sec-5 .ur-form-row {
    width: 100%;
}

@media (max-width: 768px) {
    .hero-layout,
    .mechanism-row {
        flex-direction: column;
    }
    .cx-landing {
        min-height: auto;
        padding-bottom: 80px;
    }
    .hero-icon-box {
        margin: 0 auto;
    }
    .glass-panel {
        padding: 30px;
    }
    .pill-contact {
        border-right: none;
        border-bottom: 1px solid var(--border-white);
        padding: 20px;
    }
    .hero-title {
        font-size: 32px;
        text-align: center;
        line-height: 1.04;
    }
    .description {
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.45;
    }
    .woman-layer {
        width: min(40vw, 220px);
        min-width: 130px;
        opacity: 0.5;
        left: -8px;
        bottom: 0px;
    }
    #sec-5 #ur-frontend-form {
        padding: 20px;
        border-radius: 16px;
    }
}

.image_full {
    display: block;
}

.image_mobile {
    display: none;
}

@media (max-width: 640px) and (min-width: 320px) {
    .image_full {
        display: none;
    }
    .image_mobile {
        display: block;
    }
}