
/* =========================================================
   REFLEXEDGE SOLUTIONS LTD
   SOLUTIONS PAGE
========================================================= */

:root {

    --pink: #b01657;
    --green: #046307;

    --pink-dark: #850d40;
    --green-dark: #034705;

    --pink-light: #f8e9ef;
    --green-light: #e8f2e8;

    --ink: #111111;
    --muted: #6b6b6b;

    --line: #e5e5e5;

    --white: #ffffff;
    --off-white: #f8f9f8;
    --black: #000000;

    --max-width: 1240px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}





/* =========================================================
   3. HEADER
   ========================================================= */
.site-header {
    width: 100%;
    height: 76px;
    padding: 0 4.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
/* =========================================================
   BRAND
   ========================================================= */

.brand {

    display: flex;

    align-items: center;

    gap: 13px;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 0.02em;

    white-space: nowrap;

}


.brand img {

    width: 112px;

    height: 48px;

    object-fit: contain;

}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 34px;

}


.desktop-nav a {

    color: #666666;

    font-size: 14px;
    

    font-weight: 500;

    position: relative;

    transition: color 0.25s ease;

}


.desktop-nav a:hover {

    color: var(--green);

}


.desktop-nav a.active {

    color: var(--green);

}


/* Active underline */

.desktop-nav a.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: -10px;

    height: 2px;

    background: var(--pink);

}


/* =========================================================
   SEARCH BUTTON
========================================================= */

.search-button {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;

    background: var(--green-light);

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.search-button svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: #222;
    stroke-width: 1.8;

    stroke-linecap: round;
}

.search-button:hover {
    background: var(--pink);
    border-color: var(--pink);

    transform: translateY(-2px);
}

.search-button:hover svg {
    stroke: var(--white);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-button {

    display: none;

    width: 40px;

    height: 40px;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

}


.menu-button span {

    display: block;

    width: 23px;

    height: 2px;

    background: var(--green);

    transition: all 0.3s ease;

}


/* =========================================================
   MOBILE MENU ANIMATION
   ========================================================= */

.menu-button.open span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}


.menu-button.open span:nth-child(2) {

    opacity: 0;

}


.menu-button.open span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}







/* =========================================================
   HERO
========================================================= */

.solutions-hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;

    background:
        url("../images/pexels-dada-_design-240566386-12277635.jpg") center/cover no-repeat;

    overflow: hidden;
}


/* Fade ONLY the bottom of the image */

.solutions-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 50px;

    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 45%,
        rgba(255, 255, 255, 0.8) 75%,
        #ffffff 100%
    );

    pointer-events: none;
    z-index: 2;
}



.hero-overlay {
    position: absolute;
    inset: 0;


}

.hero-content {
    width: min(1240px, 90%);
    margin: 0 auto;

    position: relative;
    z-index: 2;

    padding: 80px 0 100px;
}

.hero-text {
    width: 62%;
    position: relative;
    z-index: 3;
}



.eyebrow {

    display: inline-block;

    color: #ffffff;

    font-size: 11px;

    letter-spacing: 0.2em;

    font-weight: 700;

    margin-bottom: 18px;

    padding: 7px 12px;

    border-left: 3px solid var(--pink);

    background: rgba(255, 255, 255, 0.08);

}

.solutions-hero .eyebrow {
    color: #333333;
}

.hero-content h1 {
    color:#333333;
    max-width: 850px;

    font-size: clamp(45px, 6vw, 82px);

    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 28px;
}

.hero-content h1 span {
    display: block;
    width:1000px;
    color: #e7f0e7;
}

.hero-content p {

    max-width: 670px;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255,255,255,0.82);

    margin-bottom: 38px;
}

.hero-button {

    display: inline-flex;

    align-items: center;
    gap: 15px;

    padding: 16px 24px;

    background: var(--green);
    border-radius:50px;

    color: white;

    font-size: 13px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.hero-button:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
}


/* =========================================================
   HERO CONTENT — SLIDE IN FROM LEFT
========================================================= */

.hero-content {
    position: relative;
    z-index: 3;

    /* Start off-screen to the left */
    opacity: 0;
    transform: translateX(-100px);

    /* Slide into position */
    animation:
        heroSlideIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        heroFloat 5s ease-in-out 1.3s infinite;
}


/* =========================================================
   SLIDE FROM LEFT
========================================================= */

@keyframes heroSlideIn {

    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   SUBTLE FLOATING EFFECT
========================================================= */

@keyframes heroFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}


/* =========================================================
   OPTIONAL — STAGGER THE CONTENT
========================================================= */

.hero-content .eyebrow {
    opacity: 0;
    animation: contentFade 0.8s ease 0.3s forwards;
}

.hero-content h1 {
    opacity: 0;
    animation: contentFade 0.8s ease 0.5s forwards;
}

.hero-content p {
    opacity: 0;
    animation: contentFade 0.8s ease 0.7s forwards;
}

.hero-content .hero-button {
    opacity: 0;
    animation: contentFade 0.8s ease 0.9s forwards;
}


@keyframes contentFade {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}



/* =========================================================
   INTRO
========================================================= */

.solutions-intro {

    padding: 110px 0;

    background: var(--white);
}

.intro-container {

    width: min(100% - 50px, var(--max-width));

    margin: auto;

    display: grid;

    grid-template-columns: 0.7fr 2fr;

    gap: 100px;
}

.intro-label {

    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--green);
}

.intro-label span {

    width: 35px;
    height: 2px;

    background: var(--green);
}

.intro-content h2 {

    max-width: 900px;

    font-size: clamp(35px, 4vw, 58px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 30px;
}

.intro-content h2 span {
    color: var(--pink);
}

.intro-content p {

    max-width: 800px;

    font-size: 17px;

    line-height: 1.8;

    color: var(--muted);

    margin-bottom: 15px;
}



/* =========================================================
   SOLUTIONS SECTION
========================================================= */

.solutions-section {

    padding: 110px 0;

    background: var(--off-white);
}

.section-heading {

    width: min(100% - 50px, 760px);

    margin: 0 auto 70px;

    text-align: center;
}

.section-heading .eyebrow {
    color: var(--green);
}

.section-heading h2 {

    font-size: clamp(38px, 5vw, 62px);

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.section-heading p {

    font-size: 17px;

    line-height: 1.8;

    color: var(--muted);
}



/* =========================================================
   SOLUTION CARDS
========================================================= */

.solutions-grid {

    width: min(100% - 50px, var(--max-width));

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.solution-card {

    position: relative;

    padding: 42px 35px;

    min-height: 450px;

    background: white;

    border: 1px solid var(--line);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

    overflow: hidden;
}

.solution-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--green);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.4s ease;
}

.solution-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card.featured {

    background: var(--ink);

    color: white;

    border-color: var(--ink);
}

.solution-card.featured::before {
    background: var(--pink);
}

.solution-number {

    position: absolute;

    top: 25px;
    right: 30px;

    font-size: 13px;

    font-weight: 700;

    color: #b8b8b8;
}

.solution-icon {

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 14px;

    background: var(--green-light);

    color: var(--green);

    font-size: 23px;
}

.featured .solution-icon {

    background: rgba(176,16,87,0.18);

    color: #e45b91;
}

.solution-card h3 {

    font-size: 24px;

    line-height: 1.2;

    margin-bottom: 17px;
}

.solution-card > p {

    font-size: 14px;

    line-height: 1.8;

    color: var(--muted);

    margin-bottom: 25px;
}

.featured > p {
    color: #bcbcbc;
}

.solution-card ul {
    list-style: none;
}

.solution-card li {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    margin-bottom: 12px;
}

.solution-card li i {
    color: var(--green);
    font-size: 11px;
}

.featured li i {
    color: #e45b91;
}




/* =========================================================
   SOLUTIONS CARDS
   HIDDEN UNTIL SECTION IS REACHED
========================================================= */

.solution-card {
    opacity: 0;
    transform: translateX(100px);
}


/* =========================================================
   ANIMATION WHEN SECTION IS VISIBLE
========================================================= */

.solutions-section.animate .solution-card {
    animation:
        solutionSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        solutionFloat 5s ease-in-out 1.2s infinite;
}


/* =========================================================
   SLIDE IN FROM RIGHT
========================================================= */

@keyframes solutionSlideIn {

    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   FLOATING ANIMATION
========================================================= */

@keyframes solutionFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(0);
    }

}


/* =========================================================
   STAGGER THE CARDS
========================================================= */

.solutions-section.animate .solution-card:nth-child(1) {
    animation-delay: 0.1s, 1.3s;
}

.solutions-section.animate .solution-card:nth-child(2) {
    animation-delay: 0.25s, 1.45s;
}

.solutions-section.animate .solution-card:nth-child(3) {
    animation-delay: 0.4s, 1.6s;
}

.solutions-section.animate .solution-card:nth-child(4) {
    animation-delay: 0.55s, 1.75s;
}

.solutions-section.animate .solution-card:nth-child(5) {
    animation-delay: 0.7s, 1.9s;
}

.solutions-section.animate .solution-card:nth-child(6) {
    animation-delay: 0.85s, 2.05s;
}




/* =====================================================
   HOW WE WORK — SMOOTH FLOATING ANIMATION
====================================================== */

/* Hidden before section is reached */
.process-heading {
    opacity: 0;
    transform: translateY(40px);
}

.process-step {
    opacity: 0;
    transform: translateY(50px);
}


/* =====================================================
   HEADING ANIMATION
====================================================== */

.process-section.animate .process-heading {
    animation: processHeadingIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes processHeadingIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================================================
   PROCESS CARDS — SLIDE IN + FLOAT
====================================================== */

.process-section.animate .process-step {
    animation:
        processStepIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        processSmoothFloat 6s ease-in-out 1.5s infinite;
}


/* Slide into position */
@keyframes processStepIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Smooth floating movement */
@keyframes processSmoothFloat {

    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-4px);
    }

    50% {
        transform: translateY(-7px);
    }

    75% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0);
    }

}


/* =====================================================
   STAGGERED ENTRY
====================================================== */

.process-section.animate .process-step:nth-child(1) {
    animation-delay: 0.2s, 1.5s;
}

.process-section.animate .process-step:nth-child(2) {
    animation-delay: 0.4s, 1.8s;
}

.process-section.animate .process-step:nth-child(3) {
    animation-delay: 0.6s, 2.1s;
}

.process-section.animate .process-step:nth-child(4) {
    animation-delay: 0.8s, 2.4s;
}


/* =====================================================
   SMOOTH HOVER
====================================================== */

.process-step {
    transition:
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.process-step:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}










/* =========================================================
   PROCESS
========================================================= */

.process-section {

    padding: 120px 0;

    background: white;
}

.process-container {

    width: min(100% - 50px, var(--max-width));

    margin: auto;
}

.process-heading {

    max-width: 700px;

    margin-bottom: 70px;
}

.process-heading .eyebrow {
    color: var(--pink);
}

.process-heading h2 {

    font-size: clamp(38px, 5vw, 60px);

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.process-heading p {

    font-size: 17px;

    line-height: 1.8;

    color: var(--muted);
}

.process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
}

.process-step {

    padding: 40px 30px 20px 0;

    border-right: 1px solid var(--line);

}

.process-step:not(:first-child) {
    padding-left: 30px;
}

.process-step:last-child {
    border-right: none;
}

.process-step > span {

    display: block;

    margin-bottom: 45px;

    font-size: 13px;

    font-weight: 700;

    color: var(--pink);
}

.process-step h3 {

    font-size: 22px;

    margin-bottom: 15px;
}

.process-step p {

    font-size: 14px;

    line-height: 1.8;

    color: var(--muted);
}



/* =========================================================
   CTA
========================================================= */

.solutions-cta {

    position: relative;

    padding: 120px 25px;

    background-image: url(../images/ipexels-pnw-prod-8251151.jpg);

    color: white;

    text-align: center;

    overflow: hidden;
}

.solutions-cta::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(176,16,87,0.18);

    top: -200px;
    right: -100px;
}

.cta-content {

    position: relative;

    max-width: 800px;

    margin: auto;
}

.cta-content .eyebrow {
    color: #8fd194;
}

.cta-content h2 {

    font-size: clamp(38px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.cta-content h2 span {
    color: #e35b91;
}

.cta-content p {

    max-width: 650px;

    margin: 0 auto 35px;

    color: #c9c9c9;

    line-height: 1.8;

    font-size: 16px;
}

.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 16px 27px;

    background: white;

    color: var(--ink);

    font-weight: 600;

    font-size: 14px;

    transition: all 0.3s ease;
}

.cta-button:hover {

    background: var(--pink);

    color: white;

    transform: translateY(-3px);
}

/* =====================================================
   REFLEXEDGE FOOTER
   SAME FOOTER ON ALL PAGES
===================================================== */

.footer {
    width: 100%;
    background: white;
    color: black;
}


/* =====================================================
   FOOTER CONTENT
===================================================== */

.footer-grid {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        1fr
        1.1fr;

    gap: 45px;

    align-items: start;

    padding: 55px 0 45px;
}


/* =====================================================
   FOOTER BRAND
===================================================== */

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    text-decoration: none;
}

.footer-logo img {
    width: 42px;
    height: 42px;

    object-fit: contain;

    flex-shrink: 0;
}

.footer-logo span {
    color: var(--green);

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
}

.footer-brand > p {
    max-width: 310px;

    margin: 15px 0 0;

    color: #888888;

    font-size: 10px;

    line-height: 1.75;
}


/* =====================================================
   SOCIAL LINKS
===================================================== */

.social-links {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 18px;
}

.social-links a {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #333333;

    border: 1px solid var(--green-dark);

    border-radius: 8px;

    font-size: 10px;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.social-links a:hover {
    color: black;

    background: white;

    border-color: #333333;

    transform: translateY(-2px);
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 9px;
}

.footer-column h4 {
    margin: 0 0 7px;

    color: 333333;

    font-size: 11px;
    font-weight: 700;
}

.footer-column a {
    width: fit-content;

    color: #888888;

    font-size: 10px;

    line-height: 1.5;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover {
    color: #333333;

    transform: translateX(3px);
}


/* =====================================================
   CONTACT INFORMATION
===================================================== */

.footer-column p {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    margin: 0;

    color: #888888;

    font-size: 10px;

    line-height: 1.55;
}

.footer-column p i {
    width: 13px;

    flex-shrink: 0;

    margin-top: 3px;

    color: var(--green);

    font-size: 9px;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    width: 100%;

    border-top: 1px solid #046307;
}

.footer-bottom .container {
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    margin: 0;

    color: #626262;

    font-size: 9px;

    line-height: 1.5;

    text-align: center;
}
/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .main-nav {
        gap: 20px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:nth-child(2) {
        border-right: none;
    }

    .process-step:nth-child(3),
    .process-step:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}





/* =========================================================
   SOLUTIONS PAGE — RESPONSIVE MOBILE MENU
   ========================================================= */

@media (max-width: 900px) {

    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .site-header {
        height: 70px;
        padding: 0 20px;
        position: sticky;
        top: 0;
        z-index: 2000;
        background: rgba(255, 255, 255, 0.98);
    }


    /* -----------------------------------------
       LOGO / BRAND
       ----------------------------------------- */

    .brand {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        white-space: nowrap;
    }

    .brand img {
        width: 92px;
        height: 42px;
        object-fit: contain;
    }


    /* -----------------------------------------
       HAMBURGER BUTTON
       ----------------------------------------- */

    .menu-button {
        display: flex !important;

        width: 44px;
        height: 44px;

        padding: 0;
        margin: 0;

        border: none;
        outline: none;
        background: transparent;

        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;

        cursor: pointer;

        position: relative;
        z-index: 3001;

        flex-shrink: 0;
    }


    .menu-button span {
        display: block;

        width: 25px;
        height: 2px;

        background: var(--green);

        border-radius: 10px;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }


    /* -----------------------------------------
       HAMBURGER → X
       ----------------------------------------- */

    .menu-button.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-button.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* -----------------------------------------
       MOBILE NAVIGATION
       ----------------------------------------- */

    .desktop-nav {

        position: fixed;

        top: 70px;
        left: 0;

        width: 100%;

        max-height: calc(100vh - 70px);

        overflow-y: auto;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px 20px 25px;

        background: #ffffff;

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.10);

        /* Hidden by default */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;

        z-index: 3000;
    }


    /* -----------------------------------------
       OPEN MOBILE NAVIGATION
       ----------------------------------------- */

    .desktop-nav.open {

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }


    /* -----------------------------------------
       MOBILE NAV LINKS
       ----------------------------------------- */

    .desktop-nav a {

        display: block;

        width: 100%;

        padding: 16px 5px;

        color: #444444;

        font-size: 15px;
        font-weight: 500;

        text-decoration: none;

        border-bottom: 1px solid #eeeeee;

        transition:
            color 0.25s ease,
            padding-left 0.25s ease;
    }


    .desktop-nav a:hover {
        color: var(--green);
        padding-left: 10px;
    }


    .desktop-nav a.active {
        color: var(--green);
    }


    /* Remove desktop active underline */
    .desktop-nav a::after {
        display: none !important;
    }


    /* -----------------------------------------
       SEARCH BUTTON
       ----------------------------------------- */

    .desktop-nav .search-button {

        display: flex;

        width: 38px;
        height: 38px;

        margin-top: 16px;

        align-self: flex-start;
    }
}


/* =========================================================
   SMALL MOBILE DEVICES
   ========================================================= */

@media (max-width: 480px) {

    .site-header {
        height: 66px;
        padding: 0 15px;
    }


    .brand {
        gap: 7px;
        font-size: 13px;
    }


    .brand img {
        width: 82px;
        height: 38px;
    }


    .menu-button {
        width: 40px;
        height: 40px;
    }


    .menu-button span {
        width: 23px;
    }


    .desktop-nav {

        top: 66px;

        max-height: calc(100vh - 66px);

        padding:
            8px
            15px
            20px;
    }


    .desktop-nav a {
        padding: 15px 4px;
        font-size: 14px;
    }
}





/* =========================================================
   SOLUTIONS FOOTER — RESPONSIVE
   ========================================================= */

/* TABLET */
@media (max-width: 900px) {

    .footer {
        padding: 60px 20px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 500px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-links a {
        width: fit-content;
    }
}


/* MOBILE */
@media (max-width: 600px) {

    .footer {
        padding: 50px 20px 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand p {
        max-width: 100%;
        line-height: 1.7;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-links {
        gap: 11px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-contact {
        gap: 12px;
    }

    .footer-bottom {
        margin-top: 35px;
        padding-top: 20px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;

        gap: 10px;
    }
}


/* SMALL PHONES */
@media (max-width: 400px) {

    .footer {
        padding: 45px 15px 20px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}





/* =========================================================
   OUR SOLUTIONS — MOBILE PANELS
   ========================================================= */

@media (max-width: 600px) {

    /* Solutions section */
    .solutions-section {
        padding: 70px 0;
        overflow: hidden;
    }


    /* Section heading */
    .section-heading {
        width: calc(100% - 36px);
        margin: 0 auto 45px;
    }

    .section-heading h2 {
        font-size: 36px;
        line-height: 1.1;
        letter-spacing: -1.5px;
    }

    .section-heading p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* Solution panels */
    .solutions-grid {
        width: calc(100% - 36px);
        max-width: 100%;
        margin: 0 auto;

        display: grid;
        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* Individual panel */
    .solution-card {
        width: 100%;
        min-width: 0;
        min-height: auto;

        padding: 30px 24px;

        box-sizing: border-box;

        overflow: hidden;
    }


    /* Panel number */
    .solution-number {
        top: 20px;
        right: 20px;

        font-size: 12px;
    }


    /* Icon */
    .solution-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 22px;

        border-radius: 13px;

        font-size: 21px;
    }


    /* Panel title */
    .solution-card h3 {
        font-size: 21px;
        line-height: 1.25;

        margin-bottom: 14px;

        padding-right: 25px;
    }


    /* Panel description */
    .solution-card > p {
        font-size: 14px;
        line-height: 1.75;

        margin-bottom: 22px;
    }


    /* Panel list */
    .solution-card ul {
        width: 100%;
    }

    .solution-card li {
        align-items: flex-start;

        gap: 9px;

        font-size: 13px;
        line-height: 1.5;

        margin-bottom: 11px;
    }

    .solution-card li i {
        margin-top: 4px;
        flex-shrink: 0;
    }


    /* Remove desktop hover movement on touch screens */
    .solution-card:hover {
        transform: none;
        box-shadow: none;
    }

    .solution-card:hover::before {
        transform: scaleX(0);
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .solutions-section {
        padding: 55px 0;
    }

    .section-heading {
        width: calc(100% - 30px);
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 14px;
    }


    .solutions-grid {
        width: calc(100% - 30px);
        gap: 16px;
    }


    .solution-card {
        padding: 26px 20px;
    }


    .solution-icon {
        width: 48px;
        height: 48px;

        font-size: 19px;
    }


    .solution-card h3 {
        font-size: 19px;
    }


    .solution-card > p {
        font-size: 13.5px;
        line-height: 1.7;
    }


    .solution-card li {
        font-size: 12.5px;
    }
}
