/* ================================
   GLOBAL STYLES
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #fe7200;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ================================
   NAVBAR
================================ */

.navbar {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8eef5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo img {
    width: 160px;
    height: auto;
    display: block;
}


/* NAVIGATION */

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #fe7200;
    font-size: 15px;
    font-weight: 500;

    transition: 0.3s;
}

.nav-links a:hover {
    color: #a35a06;
}


/* NAV CTA */

.nav-cta {
    text-decoration: none;

    background: #fe7200;
    color: #ffffff;

    padding: 12px 22px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.nav-cta:hover {
    background: #fe7200;
}


/* MOBILE MENU */

.menu-toggle {
    display: none;

    border: none;
    background: transparent;

    font-size: 28px;
    cursor: pointer;
}


/* ================================
   HERO SECTION
================================ */

.hero {
    min-height: calc(100vh - 80px);

    background:
        linear-gradient(
            120deg,
            #f5f9ff 0%,
            #ffffff 60%
        );

    display: flex;
    align-items: center;
}


.hero-container {

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    align-items: center;

    gap: 60px;

    padding:
        30px
        0;

}


/* HERO TAG */

.hero-tag {

    display: inline-block;

    background: #e8f1ff;

    color: #fe7200;

    padding:
        8px
        14px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;
}


/* HERO HEADING */

.hero h1 {

    font-size: 58px;

    line-height: 1.1;

    font-weight: 800;

    color: #0b1f33;

    max-width: 650px;

}


.hero h1 span {

    display: block;

    color: #fe7200;

}


/* DESCRIPTION */

.hero-description {

    margin-top: 25px;

    max-width: 580px;

    font-size: 18px;

    line-height: 1.7;

    color: #5b6b7c;

}


/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 35px;

}


.btn {

    display: inline-block;

    text-decoration: none;

    padding:
        15px
        28px;

    border-radius: 6px;

    font-size: 15px;

    font-weight: 600;

    transition: 0.3s;

}


/* PRIMARY BUTTON */

.btn-primary {

    background: #fe7200;

    color: #ffffff;

    box-shadow:
        0 8px 20px
        rgba(8, 102, 255, 0.25);

}


.btn-primary:hover {

    background: #ae560d;

    transform:
        translateY(-2px);

}


/* SECONDARY BUTTON */

.btn-secondary {

    border:
        1px solid
        #fe7200;

    color: #fe7200;

    background: #ffffff;

}


.btn-secondary:hover {

    background: #fe7200;

    color: #ffffff;

}


/* ================================
   HERO TRUST
================================ */

.hero-trust {

    display: flex;

    gap: 40px;

    margin-top: 45px;

    padding-top: 25px;

    border-top:
        1px solid
        #dfe7ef;

}


.trust-item {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.trust-item strong {

    font-size: 18px;

    color: #0b1f33;

}


.trust-item span {

    font-size: 13px;

    color: #728092;

}


/* ================================
   HERO IMAGE
================================ */

.hero-image {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-image img {

    position: relative;

    width: 100%;

    max-width: 520px;

    z-index: 2;

    animation:
        floating
        4s
        ease-in-out
        infinite;

}


.hero-image-bg {

    position: absolute;

    width: 420px;

    height: 420px;

    background: #e8f1ff;

    border-radius: 50%;

    z-index: 1;

}


/* FLOATING ANIMATION */

@keyframes floating {

    0% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

    100% {

        transform:
            translateY(0);

    }

}


/* ================================
   RESPONSIVE
================================ */

@media
(max-width: 900px) {

    .nav-links,
    .nav-cta {

        display: none;

    }


    .menu-toggle {

        display: block;

    }


    .hero-container {

        grid-template-columns:
            1fr;

        text-align: center;

        padding:
            60px
            0;

    }


    .hero h1 {

        font-size: 44px;

        margin:
            auto;

    }


    .hero-description {

        margin:
            20px
            auto;

    }


    .hero-buttons {

        justify-content:
            center;

    }


    .hero-trust {

        justify-content:
            center;

    }


    .hero-image {

        margin-top:
            30px;

    }

}


/* ================================
   SMALL MOBILE
================================ */

@media
(max-width: 500px) {

    .hero h1 {

        font-size:
            36px;

    }


    .hero-description {

        font-size:
            16px;

    }


    .hero-buttons {

        flex-direction:
            column;

    }


    .btn {

        width:
            100%;

        text-align:
            center;

    }


    .hero-trust {

        flex-direction:
            column;

        gap:
            20px;

    }


    .hero-image-bg {

        width:
            280px;

        height:
            280px;

    }

}

/* ================================
   WHY LITHIUM UPS SECTION
================================ */

.why-lithium {

    padding:
        110px
        0;

    background:
        #ffffff;

}


.why-lithium-container {

    display:
        grid;

    grid-template-columns:
        1fr
        1fr;

    gap:
        80px;

    align-items:
        center;

}


/* ================================
   SECTION CONTENT
================================ */

.section-tag {

    display:
        inline-block;

    color:
        ##fe7200;

    font-size:
        13px;

    font-weight:
        700;

    letter-spacing:
        1.5px;

    margin-bottom:
        18px;

}


.why-lithium-content h2 {

    font-size:
        42px;

    line-height:
        1.2;

    color:
        #0b1f33;

    max-width:
        560px;

}


.why-lithium-content h2 span {

    display:
        block;

    color:
        ##fe7200;

}


.section-intro {

    margin-top:
        22px;

    max-width:
        580px;

    color:
        #627386;

    font-size:
        16px;

    line-height:
        1.8;

}


/* ================================
   PROBLEM LIST
================================ */

.problem-list {

    margin-top:
        35px;

    display:
        flex;

    flex-direction:
        column;

    gap:
        25px;

}


.problem-item {

    display:
        flex;

    gap:
        18px;

    align-items:
        flex-start;

}


.problem-icon {

    width:
        38px;

    height:
        38px;

    min-width:
        38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #fff4e5;

    color:
        #e58b00;

    border-radius:
        50%;

    font-size:
        18px;

}


.problem-item h3 {

    font-size:
        17px;

    color:
        #0b1f33;

    margin-bottom:
        7px;

}


.problem-item p {

    color:
        #728092;

    font-size:
        14px;

    line-height:
        1.7;

}


/* ================================
   RIGHT VISUAL
================================ */

.why-lithium-visual {

    display:
        flex;

    justify-content:
        center;

}


.visual-card {

    width:
        100%;

    max-width:
        480px;

    padding:
        45px;

    background:
        linear-gradient(
            145deg,
            #fe7200,
            #003b9a
        );

    border-radius:
        20px;

    color:
        #ffffff;

    box-shadow:
        0
        25px
        60px
        rgba(
            8,
            102,
            255,
            0.2
        );

}


.visual-card-top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

}


.visual-label {

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        1.5px;

    opacity:
        0.8;

}


.battery-circle {

    width:
        65px;

    height:
        65px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(
            255,
            255,
            255,
            0.15
        );

    border-radius:
        50%;

    font-size:
        30px;

}


.visual-card h3 {

    font-size:
        28px;

    margin-top:
        35px;

}


.visual-card > p {

    margin-top:
        15px;

    color:
        rgba(
            255,
            255,
            255,
            0.8
        );

    line-height:
        1.7;

    font-size:
        15px;

}


/* ================================
   BENEFIT ITEMS
================================ */

.mini-benefit {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    margin-top:
        22px;

    font-size:
        14px;

}


.check-icon {

    width:
        25px;

    height:
        25px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(
            255,
            255,
            255,
            0.15
        );

    border-radius:
        50%;

    font-size:
        13px;

}


/* ================================
   VISUAL CTA
================================ */

.visual-cta {

    display:
        inline-block;

    margin-top:
        35px;

    padding:
        13px
        20px;

    background:
        #ffffff;

    color:
        #fe7200;

    text-decoration:
        none;

    border-radius:
        6px;

    font-size:
        14px;

    font-weight:
        700;

    transition:
        0.3s;

}


.visual-cta:hover {

    transform:
        translateY(
            -2px
        );

    box-shadow:
        0
        8px
        20px
        rgba(
            0,
            0,
            0,
            0.15
        );

}


/* ================================
   RESPONSIVE
================================ */

@media
(max-width: 900px) {

    .why-lithium-container {

        grid-template-columns:
            1fr;

        gap:
            60px;

    }


    .why-lithium-content {

        text-align:
            center;

    }


    .why-lithium-content h2 {

        margin:
            auto;

    }


    .section-intro {

        margin:
            20px
            auto;

    }


    .problem-item {

        text-align:
            left;

    }


    .why-lithium-visual {

        justify-content:
            center;

    }

}


@media
(max-width: 500px) {

    .why-lithium {

        padding:
            75px
            0;

    }


    .why-lithium-content h2 {

        font-size:
            32px;

    }


    .visual-card {

        padding:
            30px;

    }


    .visual-card h3 {

        font-size:
            24px;

    }

}

/* ================================
   FEATURES SECTION
================================ */

.features-section {

    padding:
        30px
        0;

    background:
        #f5f9ff;

}


/* ================================
   SECTION HEADER
================================ */

.section-header {

    text-align:
        center;

    max-width:
        700px;

    margin:
        0
        auto
        60px;

}


.section-header .section-tag {

    margin-bottom:
        15px;

}


.section-header h2 {

    font-size:
        42px;

    line-height:
        1.2;

    color:
        #0b1f33;

}


.section-header h2 span {

    display:
        block;

    color:
        ##fe7200;

}


.section-header p {

    margin-top:
        20px;

    color:
        #627386;

    font-size:
        16px;

    line-height:
        1.7;

}


/* ================================
   FEATURES GRID
================================ */

.features-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:
        25px;

}


/* ================================
   FEATURE CARD
================================ */

.feature-card {

    position:
        relative;

    padding:
        35px;

    background:
        #ffffff;

    border:
        1px
        solid
        #e5edf6;

    border-radius:
        12px;

    overflow:
        hidden;

    transition:
        0.35s;

}


.feature-card:hover {

    transform:
        translateY(
            -8px
        );

    border-color:
        ##fe7200;

    box-shadow:
        0
        15px
        35px
        rgba(
            8,
            102,
            255,
            0.12
        );

}


/* ================================
   FEATURE ICON
================================ */

.feature-icon {

    width:
        55px;

    height:
        55px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #eaf2ff;

    color:
        ##fe7200;

    border-radius:
        10px;

    font-size:
        25px;

    margin-bottom:
        25px;

}


/* ================================
   FEATURE TITLE
================================ */

.feature-card h3 {

    font-size:
        19px;

    color:
        #0b1f33;

    margin-bottom:
        12px;

    max-width:
        250px;

}


.feature-card p {

    color:
        #728092;

    font-size:
        14px;

    line-height:
        1.75;

}


/* ================================
   FEATURE NUMBER
================================ */

.feature-number {

    position:
        absolute;

    right:
        20px;

    bottom:
        15px;

    font-size:
        55px;

    font-weight:
        800;

    color:
        #ea760231;

    line-height:
        1;

    pointer-events:
        none;

}


/* ================================
   RESPONSIVE
================================ */

@media
(max-width: 900px) {

    .features-grid {

        grid-template-columns:
            repeat(
                2,
                1fr
            );

    }


    .section-header h2 {

        font-size:
            36px;

    }

}


@media
(max-width: 600px) {

    .features-section {

        padding:
            75px
            0;

    }


    .features-grid {

        grid-template-columns:
            1fr;

    }


    .section-header h2 {

        font-size:
            32px;

    }


    .feature-card {

        padding:
            30px;

    }

}


/* ================================
   BENEFITS SECTION
================================ */

.benefits-section {

    padding:
        30px
        0;

    background:
        #ffffff;

}


/* ================================
   BENEFITS HEADER
================================ */

.benefits-header {

    margin-bottom:
        60px;

}


.benefits-header p {

    max-width:
        650px;

    margin-left:
        auto;

    margin-right:
        auto;

}


/* ================================
   BENEFITS GRID
================================ */

.benefits-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap:
        25px;

}


/* ================================
   BENEFIT CARD
================================ */

.benefit-card {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        22px;

    padding:
        35px;

    background:
        #f7faff;

    border:
        1px
        solid
        #e5edf6;

    border-radius:
        12px;

    transition:
        0.3s;

}


.benefit-card:hover {

    transform:
        translateY(
            -5px
        );

    background:
        #ffffff;

    border-color:
        ##fe7200;

    box-shadow:
        0
        15px
        35px
        rgba(
            8,
            102,
            255,
            0.1
        );

}


/* ================================
   BENEFIT ICON
================================ */

.benefit-icon {

    width:
        55px;

    height:
        55px;

    min-width:
        55px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #e8f1ff;

    color:
        ##fe7200;

    border-radius:
        10px;

    font-size:
        24px;

    font-weight:
        700;

}


/* ================================
   BENEFIT CONTENT
================================ */

.benefit-content h3 {

    font-size:
        19px;

    color:
        #0b1f33;

    margin-bottom:
        10px;

}


.benefit-content p {

    color:
        #728092;

    font-size:
        14px;

    line-height:
        1.75;

}


/* ================================
   BENEFITS CTA
================================ */

.benefits-cta {

    margin-top:
        70px;

    padding:
        55px;

    text-align:
        center;

    background:
        linear-gradient(
            135deg,
            #fe7200,
            #003b9a
        );

    border-radius:
        16px;

    color:
        #ffffff;

}


.benefits-cta h3 {

    font-size:
        28px;

    margin-bottom:
        12px;

}


.benefits-cta p {

    max-width:
        600px;

    margin:
        0
        auto
        25px;

    color:
        (
            255,
            255,
            255,
            0.8
        );

    line-height:
        1.7;

    font-size:
        15px;

}


/* WHITE CTA BUTTON */

.benefits-cta .btn-primary {

    background:
        #ffffff;

    color:
        #fe7200;

    box-shadow:
        none;

}


.benefits-cta .btn-primary:hover {

    background:
        #f1f5fa;

    color:
        #004ecc;

}


/* ================================
   RESPONSIVE
================================ */

@media
(max-width: 700px) {

    .benefits-grid {

        grid-template-columns:
            1fr;

    }


    .benefit-card {

        padding:
            28px;

    }


    .benefits-cta {

        padding:
            40px
            25px;

    }


    .benefits-cta h3 {

        font-size:
            24px;

    }

}


/* ================================
   APPLICATIONS SECTION
================================ */

.applications-section {

    padding:
        30px
        0;

    background:
        #f5f9ff;

}


/* ================================
   APPLICATION HEADER
================================ */

.applications-header {

    margin-bottom:
        60px;

}


.applications-header p {

    max-width:
        650px;

    margin-left:
        auto;

    margin-right:
        auto;

}


/* ================================
   APPLICATION GRID
================================ */

.applications-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:
        25px;

}


/* ================================
   APPLICATION CARD
================================ */

.application-card {

    position:
        relative;

    padding:
        35px;

    background:
        #ffffff;

    border:
        1px
        solid
        #e5edf6;

    border-radius:
        12px;

    transition:
        0.35s;

}


.application-card:hover {

    transform:
        translateY(
            -7px
        );

    border-color:
        ##fe7200;

    box-shadow:
        0
        15px
        35px
        rgba(
            8,
            102,
            255,
            0.12
        );

}


/* ================================
   APPLICATION ICON
================================ */

.application-icon {

    width:
        58px;

    height:
        58px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #e8f1ff;

    border-radius:
        12px;

    font-size:
        27px;

    margin-bottom:
        25px;

}


/* ================================
   APPLICATION TITLE
================================ */

.application-card h3 {

    font-size:
        19px;

    color:
        #0b1f33;

    margin-bottom:
        12px;

}


.application-card p {

    color:
        #728092;

    font-size:
        14px;

    line-height:
        1.75;

}


/* ================================
   APPLICATION LINK
================================ */

.application-card a {

    display:
        inline-block;

    margin-top:
        22px;

    color:
        ##fe7200;

    text-decoration:
        none;

    font-size:
        14px;

    font-weight:
        700;

    transition:
        0.3s;

}


.application-card a:hover {

    transform:
        translateX(
            4px
        );

}


/* ================================
   APPLICATION BOTTOM CTA
================================ */

.applications-bottom-cta {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        25px;

    margin-top:
        60px;

    text-align:
        center;

}


.applications-bottom-cta p {

    color:
        #627386;

    font-size:
        15px;

}


/* ================================
   RESPONSIVE
================================ */

@media
(max-width: 900px) {

    .applications-grid {

        grid-template-columns:
            repeat(
                2,
                1fr
            );

    }

}


@media
(max-width: 600px) {

    .applications-section {

        padding:
            75px
            0;

    }


    .applications-grid {

        grid-template-columns:
            1fr;

    }


    .applications-bottom-cta {

        flex-direction:
            column;

        gap:
            15px;

    }

}


/* =========================================
   FINAL CTA SECTION
========================================= */

.final-cta {
    padding: 90px 20px;
    background: #f5f9ff;
}


/* =========================================
   MAIN CTA BOX
========================================= */

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 60px;

    padding: 70px 75px;

    background: linear-gradient(
        135deg,
        #ff7a00 0%,
        #ff7b00ae 100%
    );

    border-radius: 20px;

    position: relative;
    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(0, 59, 154, 0.18);
}


/* =========================================
   DECORATIVE BACKGROUND CIRCLE
========================================= */

.final-cta-container::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    right: -150px;
    top: -180px;

    pointer-events: none;
}


/* =========================================
   CTA CONTENT
========================================= */

.final-cta-content {
    position: relative;
    z-index: 2;
}


.final-cta-tag {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #ffffff;

    text-transform: uppercase;
}


.final-cta-content h2 {
    margin: 0;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;
}


.final-cta-content h2 span {
    display: block;

    color: #ffffff;
}


.final-cta-content p {
    max-width: 600px;

    margin: 18px 0 0;

    font-size: 16px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.85);
}


/* =========================================
   MINI LEAD FORM
========================================= */

.mini-lead-form {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    max-width: 680px;
}


.form-group {
    flex: 1;
}


.mini-lead-form input {
    width: 100%;

    height: 54px;

    padding: 0 18px;

    box-sizing: border-box;

    border: 2px solid transparent;

    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: #102a43;

    font-family: inherit;

    font-size: 14px;

    transition: 0.3s;
}


.mini-lead-form input::placeholder {
    color: #2324259a;
}


.mini-lead-form input:focus {
    border-color: #ff7a00;

    box-shadow:
        0 0 0 3px rgba(255, 122, 0, 0.15);
}


/* =========================================
   REQUEST QUOTE BUTTON
========================================= */

.final-form-button {
    height: 54px;

    padding: 0 28px;

    border: none;

    border-radius: 7px;

    background: #f4f2f1;

    color: #000000;

    font-family: inherit;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;

    transition: 0.3s;
}


.final-form-button:hover {
    background: #e96800;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(255, 122, 0, 0.3);
}


/* =========================================
   CONTACT DETAILS
========================================= */

.final-contact-options {
    display: flex;

    align-items: center;

    gap: 35px;

    margin-top: 30px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.25);
}


.contact-option {
    display: flex;

    align-items: center;

    gap: 12px;
}


.contact-option-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.15);

    font-size: 17px;
}


.contact-option div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.contact-option small {
    font-size: 11px;

    color:
        rgba(255, 255, 255, 0.65);
}


.contact-option strong {
    font-size: 14px;

    color: #ffffff;
}


/* =========================================
   RIGHT SIDE VISUAL
========================================= */

.final-cta-visual {
    min-height: 320px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    z-index: 2;
}


/* =========================================
   CIRCLE
========================================= */

.cta-circle {
    width: 250px;
    height: 250px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);

    border:
        1px solid rgba(255, 255, 255, 0.2);
}


/* =========================================
   BATTERY ICON
========================================= */

.cta-battery-icon {
    width: 120px;
    height: 120px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: #ffffff;

    font-size: 55px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}


/* =========================================
   FLOATING CARD
========================================= */

.cta-floating-card {
    position: absolute;

    right: 0;
    bottom: 25px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 18px 22px;

    background: #ffffff;

    border-radius: 9px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}


.cta-floating-card span {
    font-size: 11px;

    color: #728092;
}


.cta-floating-card strong {
    font-size: 14px;

    color: #0b1f33;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .final-cta-container {
        grid-template-columns: 1fr;

        padding: 60px 45px;

        text-align: center;
    }


    .final-cta-content p {
        margin-left: auto;
        margin-right: auto;
    }


    .mini-lead-form {
        margin-left: auto;
        margin-right: auto;
    }


    .final-contact-options {
        justify-content: center;
    }


    .final-cta-visual {
        min-height: 260px;
    }


    .cta-floating-card {
        right: 15%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .final-cta {
        padding: 60px 15px;
    }


    .final-cta-container {
        padding: 45px 20px;

        border-radius: 14px;
    }


    .final-cta-content h2 {
        font-size: 30px;
    }


    .mini-lead-form {
        flex-direction: column;

        width: 100%;
    }


    .form-group {
        width: 100%;
    }


    .final-form-button {
        width: 100%;
    }


    .final-contact-options {
        flex-direction: column;

        gap: 18px;
    }


    .cta-circle {
        width: 210px;
        height: 210px;
    }


    .cta-battery-icon {
        width: 95px;
        height: 95px;

        font-size: 45px;
    }


    .cta-floating-card {
        right: 0;
        bottom: 5px;
    }

}