/* --- RESET & VARIABLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        :root {
            --primary-blue: #0A4ECB;
            --dark-navy: #061224;
            --footer-navy: #030a14;
            --text-main: #1E293B;
            --text-muted: #64748B;
            --solar-yellow: #FFB300;
            --border-color: #E2E8F0;
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        html, body {
            background-color: white;
            color: var(--text-main);
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            position: relative;
            line-height: 1.5;
        }

        main {
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        /* --- HEADER STYLES --- */
        header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border-color);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            max-width: 100vw;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 11px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            max-width: 70%;
        }

        .logo-area img {
            max-width: 100%;
            height: auto;
            max-height: 55px !important;
            object-fit: contain;
        }

        .logo-box {
            width: 42px;
            height: 42px;
            border: 2px solid var(--dark-navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .logo-box::before {
            content: "\f0e7"; 
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--solar-yellow);
            font-size: 18px;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 800;
            color: var(--dark-navy);
        }
        .logo-text span {
            color: var(--text-muted);
            font-size: 11px;
            display: block;
            font-weight: 500;
            letter-spacing: 1px;
            margin-top: -4px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        nav ul li a:hover, nav ul li a.active {
            color: var(--primary-blue);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn-outline {
            border: 1.5px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition-smooth);
        }

        .btn-outline:hover {
            background-color: rgba(10, 78, 203, 0.05);
        }

        .btn-primary {
            background-color: var(--primary-blue);
            color: #FFFFFF;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition-smooth);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #083DA3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(10, 78, 203, 0.2);
        }

        /* --- MOBILE MENU BURGER --- */
        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark-navy);
        }

        /* --- OLD MOBILE SLIDE DRAWER (ADAPTED CSS) --- */
        .mobile-overlay-menu {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            opacity: 0; pointer-events: none;
            transition: opacity 0.3s;
        }
        .mobile-overlay-menu.active {
            opacity: 1; pointer-events: auto;
        }
        .mobile-menu-content {
            position: absolute;
            top: 0; right: -300px;
            width: 300px; height: 100%;
            background: #fff;
            transition: right 0.3s;
            display: flex; flex-direction: column;
        }
        .mobile-overlay-menu.active .mobile-menu-content {
            right: 0;
        }
        .mobile-menu-header {
            padding: 20px; display: flex; justify-content: space-between; align-items: center;
            border-bottom: 1px solid #E2E8F0;
        }
        .close-menu-btn {
            background: none; border: none; font-size: 24px; cursor: pointer; color: var(--dark-navy);
        }
        .mobile-nav-links {
            padding: 20px; display: flex; flex-direction: column; gap: 15px;
        }
        .mobile-nav-links a {
            text-decoration: none; color: var(--dark-navy); font-size: 16px; font-weight: 600;
        }
        .mobile-nav-links a.active { color: var(--primary-blue); }
        .mobile-menu-footer {
            margin-top: auto; padding: 20px; border-top: 1px solid #E2E8F0;
        }

        @media (max-width: 1024px) {
            nav ul { gap: 16px; }
        }

        @media (max-width: 900px) {
            .menu-toggle { display: block; }
            nav { display: none; }
            .header-actions .btn-outline { display: none; }


            .book-btn{
                display:none;
            }

        }

/* ==================== */

/* --- HERO / BODY SECTION --- */
        .hero-section {
            max-width: 1280px;
            margin: 120px auto 0px auto;
            padding: 0px 24px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .badge {
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            padding: 6px 16px;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background-color: var(--solar-yellow);
            border-radius: 50%;
        }

        .hero-left h1 {
            font-size: 48px;
            font-weight: 800;
            color: var(--dark-navy);
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-left h1 span {
            color: var(--primary-blue);
        }

        .hero-subtext {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 540px;
        }

        .hero-subtext strong {
            color: var(--solar-yellow);
            font-weight: 700;
        }

        .features-list {
            margin-bottom: 36px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            font-weight: 500;
            color: #334155;
        }

        .feature-item i {
            color: var(--primary-blue);
            font-size: 18px;
            border: 1px solid rgba(10, 78, 203, 0.2);
            padding: 4px;
            border-radius: 50%;
        }

        .cta-group {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .btn-whatsapp {
            border: 1.5px solid var(--solar-yellow);
            color: var(--text-main);
            background: #FFFFFF;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition-smooth);
        }

        .btn-whatsapp:hover {
            background-color: rgba(255, 179, 0, 0.05);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            border-top: 1px solid var(--border-color);
            padding-top: 24px;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Hero Right Visual Card */
        .hero-right {
            display: flex;
            justify-content: center;
        }

        .card-container {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 24px;
            width: 100%;
            max-width: 480px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.05);
            text-align: center;
        }

        .blue-display-box {
            background: linear-gradient(135s, #0B57DE 0%, #063C9E 100%);
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .center-badge {
            width: 70px;
            height: 70px;
            background: var(--solar-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(255, 179, 0, 0.3);
        }

        .center-badge i {
            color: #FFFFFF;
            font-size: 32px;
        }

        .card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 6px;
        }

        .card-subtitle {
            font-size: 14px;
            color: var(--text-muted);
        }


        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 1024px) {
            .hero-left h1 { font-size: 38px; }
        }
        @media (max-width: 900px) {
            .hero-section { grid-template-columns: 1fr; gap: 40px; text-align: center; margin-top: 100px; }
            .hero-subtext { margin: 0 auto 32px auto; }
            .features-list { display: inline-block; text-align: left; }
            .cta-group { justify-content: center; }
        }
        @media (max-width: 600px) {
            .stats-grid { grid-template-columns: 1fr; gap: 16px; }
            .cta-group { flex-direction: column; width: 100%; }
            .cta-group a { width: 100%; justify-content: center; }
        }

/* ==================== */

/* --- CHALLENGES SECTION STYLES --- */
    .challenges-section {
        max-width: 1280px;
        margin: 0 auto;
        padding: 80px 24px;
        background: #ffffff;
        /* position: relative; */
    }

    .challenges-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: linear-gradient(180deg, #EEF4FF 0%, #ffffff 100%);
        pointer-events: none;
        z-index: 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 48px;
        position: relative;
        z-index: 1;
    }

    .section-header h2 {
        font-size: 36px;
        font-weight: 800;
        color: #061224; /* matched dark navy from image_8dbf18.png */
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .section-header h2 span {
        color: #0A4ECB; /* TrueWatt Blue */
    }

    .section-subtitle {
        font-size: 16px;
        color: #64748B;
        max-width: 600px;
        margin: 0 auto 40px auto;
        line-height: 1.6;
    }

    .section-inner-title {
        font-size: 20px;
        font-weight: 700;
        color: #061224;
        position: relative;
        display: inline-block;
    }

    /* Grid Layout */
    .challenges-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        position: relative;
        z-index: 1;
    }

    /* Card Styling precisely matched to reference design */
    .challenge-card {
        background: #F8FAFC;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 32px 28px;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, background 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .challenge-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(10, 78, 203, 0.08);
        background: #FFFFFF;
        border-color: #d0e0f7;
    }

    /* Crimson Icon Base Tint Wrapper */
    .card-icon-box {
        width: 44px;
        height: 44px;
        background-color: #f1d0d0; /* Soft light-red background */
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
    }

    .card-icon-box i {
        color: #EF4444; /* Vivid clear red symbol accents */
        font-size: 18px;
    }

    .challenge-card h4 {
        font-size: 16px;
        font-weight: 700;
        color: #061224;
        margin-bottom: 12px;
    }

    .challenge-card p,
    .challenge-card .card-desc {
        font-size: 14px;
        color: #64748B;
        line-height: 1.5;
    }

    /* --- SCROLL ANIMATION CONFIGURATION --- */
    .animate-card {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-card.animate-active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Sequential stagger delays for the 6 cards */
    .challenges-grid .challenge-card:nth-child(1) { transition-delay: 0.1s; }
    .challenges-grid .challenge-card:nth-child(2) { transition-delay: 0.2s; }
    .challenges-grid .challenge-card:nth-child(3) { transition-delay: 0.3s; }
    .challenges-grid .challenge-card:nth-child(4) { transition-delay: 0.4s; }
    .challenges-grid .challenge-card:nth-child(5) { transition-delay: 0.5s; }
    .challenges-grid .challenge-card:nth-child(6) { transition-delay: 0.6s; }

    /* --- RESPONSIVE MEDIA BREAKPOINTS --- */
    @media (max-width: 968px) {
        .challenges-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 Columns for iPads/Tablets */
            gap: 20px;
        }
        .section-header h2 {
            font-size: 30px;
        }
    }

    @media (max-width: 640px) {
        .challenges-grid {
            grid-template-columns: 1fr; /* 1 Column Stack for pristine Mobile view */
            gap: 16px;
        }
        .challenges-section {
            margin: 48px auto;
        }
        .section-header h2 {
            font-size: 26px;
        }
        .challenge-card {
            padding: 24px;
        }
    }

/* ==================== */

/* --- SOLUTIONS SECTION STYLES --- */
    .solutions-section {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px 80px 24px;
        background: #ffffff;
    }

    .solutions-banner {
        background: linear-gradient(135deg, #105ce3 0%, #0a4ecb 50%, #053ca1 100%); /* High fidelity depth mapping */
        border-radius: 20px;
        padding: 60px 40px;
        text-align: center;
        box-shadow: 0 20px 40px rgba(10, 78, 203, 0.15);
    }

    .solutions-banner h2 {
        color: #FFFFFF;
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .solutions-subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        max-width: 800px;
        margin: 0 auto 48px auto;
        line-height: 1.6;
        font-weight: 500;
    }

    /* 2-Column Solutions Grid */
    .solutions-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 60px;
        row-gap: 28px;
        max-width: 1000px;
        margin: 0 auto;
        text-align: left;
    }

    .solution-item {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    /* Solar Yellow Number Badges precisely matched to image_8db3f2.png */
    .number-badge {
        width: 28px;
        height: 28px;
        background-color: #FFB300; /* Distinct solar yellow tone */
        color: #061224; /* Dark text interior contrast */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 800;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(255, 179, 0, 0.2);
    }

    .solution-text {
        color: #FFFFFF;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
    }

    /* --- ANIMATION SETUP --- */
    .animate-up {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-up.animate-active {
        opacity: 1;
        transform: translateY(0);
    }

    /* --- RESPONSIVE LAYOUT BREAKPOINTS --- */
    @media (max-width: 900px) {
        .solutions-banner {
            padding: 45px 30px;
        }
        .solutions-list {
            column-gap: 30px;
        }
        .solutions-banner h2 {
            font-size: 28px;
        }
    }

    @media (max-width: 768px) {
        .solutions-list {
            grid-template-columns: 1fr; /* Drops smoothly to single stack grid for mobile */
            row-gap: 20px;
            max-width: 500px;
        }
        .solutions-banner {
            padding: 40px 20px;
        }
        .solutions-banner h2 {
            font-size: 24px;
        }
        .solutions-subtitle {
            font-size: 14px;
            margin-bottom: 36px;
        }
    }

/* ==================== */

/* --- PROCESS SECTION STYLES --- */
    .process-section {
        max-width: 1280px;
        margin: 40px auto;
        padding: 0 24px;
        position: relative;
    }

    .process-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .process-header h2 {
        font-size: 36px;
        font-weight: 800;
        color: #061224;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .process-subtitle {
        font-size: 16px;
        color: #64748B;
        max-width: 650px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Timeline Frame Setup */
    .process-timeline-container {
        position: relative;
        margin-bottom: 50px;
    }

    /* Desktop horizontal step connector line */
    .timeline-line {
        position: absolute;
        top: 130px; /* Aligns visually with the horizontal centers of the icon wraps */
        left: 10%;
        right: 10%;
        height: 2px;
        background-color: #E2E8F0;
        z-index: 1;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        position: relative;
        z-index: 2;
    }

    /* Process Card Base precisely matching image_8daf7a.png */
    .process-card {
        background: #FFFFFF;
        border: 1px solid #b3cff5;
        border-radius: 12px;
        padding: 32px 24px;
        text-align: left;
        box-shadow:0 16px 16px rgb(0 0 0 / 6%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    }

    .process-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(6, 18, 36, 0.06);
    }

    /* Icon Wrappers styling */
    .icon-wrapper {
        width: 52px;
        height: 52px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .icon-wrapper i {
        font-size: 22px;
        color: #FFFFFF;
    }

    .icon-blue {
        background: linear-gradient(135deg, #1A62E8 0%, #0A4ECB 100%);
    }

    .icon-yellow {
        background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    }

    /* Mini Step Badges */
    .step-badge {
        background-color: #FFB300;
        color: #061224;
        font-size: 11px;
        font-weight: 800;
        padding: 4px 14px;
        border-radius: 12px;
        display: inline-block;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .process-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: #061224;
        margin-bottom: 14px;
        line-height: 1.3;
    }

    .process-card p {
        font-size: 13.5px;
        color: #64748B;
        line-height: 1.6;
    }

    /* Bottom Section Layout Elements */
    .process-footer {
        text-align: center;
        margin-top: 50px;
    }

    .footer-prompt {
        font-size: 15px;
        color: #64748B;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .btn-process-cta {
        background-color: #0A4ECB;
        color: #FFFFFF;
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 14px rgba(10, 78, 203, 0.2);
        transition: var(--transition-smooth);
        border: none;
        cursor: pointer;
    }

    .btn-process-cta:hover {
        background-color: #083DA3;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(10, 78, 203, 0.3);
    }

    /* --- BEAUTIFUL CASCADE FADE ANIMATION --- */
    .animate-fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-fade-up.animate-active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Cascading sequential item timeline delay */
    .process-grid .process-card:nth-child(1) { transition-delay: 0.1s; }
    .process-grid .process-card:nth-child(2) { transition-delay: 0.25s; }
    .process-grid .process-grid .process-card:nth-child(3) { transition-delay: 0.4s; }
    .process-grid .process-card:nth-child(4) { transition-delay: 0.55s; }
    .process-footer.animate-active { transition-delay: 0.7s; }

    /* --- RESPONSIVE MEDIA BREAKPOINTS --- */
    @media (max-width: 1024px) {
        .process-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .timeline-line {
            display: none; /* Hide connector when structure is grid forced */
        }
    }

    @media (max-width: 640px) {
        .process-grid {
            grid-template-columns: 1fr; /* Drops down nicely into clean mobile vertical deck layout */
            gap: 20px;
        }
        .process-header h2 {
            font-size: 28px;
        }
        .process-card {
            padding: 24px;
        }
        .btn-process-cta {
            width: 100%;
            justify-content: center;
        }
    }

/* ==================== */

/* --- CASE STUDIES LAYOUT STYLES --- */
    .results-section {
        max-width: 1280px;
        margin: 80px auto;
        padding: 0 24px;
        text-align: center;
    }

    .results-header {
        margin-bottom: 50px;
    }

    .results-header h2 {
        font-size: 36px;
        font-weight: 800;
        color: #061224;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .results-header h2 span {
        color: #0A4ECB;
    }

    .results-subtitle {
        font-size: 16px;
        color: #64748B;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .results-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    /* Card Frame Setup */
    .result-card {
        background: #FFFFFF;
        border-radius: 16px;
        border: 1px solid #E2E8F0;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        text-align: left;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    }

    .result-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(6, 18, 36, 0.08);
    }

    /* Header Color Profiles mapping image_8d595e.png exactly */
    .card-top {
        padding: 24px 24px 20px 24px;
        color: #FFFFFF;
    }

    .top-blue { background-color: #2563EB; }
    .top-green { background-color: #039c69; }
    .top-purple { background-color: #A855F7; }

    .top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }

    .category-tag {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        opacity: 0.9;
    }

    .card-top h3 {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .location-text {
        font-size: 13px;
        opacity: 0.85;
        font-weight: 500;
    }

    /* Content Area inside Cards */
    .card-body {
        padding: 24px;
    }

    .description-text {
        font-size: 14px;
        color: #475569;
        line-height: 1.5;
        margin-bottom: 24px;
        min-height: 42px; /* aligns baseline flow */
    }

    /* Before / After layout metrics structure */
    .metrics-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .metric-box {
        border-radius: 8px;
        padding: 12px;
    }

    .box-before { background-color: #FEF2F2; }
    .box-after { background-color: #F0FDF4; }

    .box-label {
        font-size: 10px;
        font-weight: 700;
        color: #64748B;
        display: block;
        margin-bottom: 4px;
    }

    .box-price {
        font-size: 18px;
        font-weight: 800;
    }

    .text-red { color: #EF4444; }
    .text-green { color: #22C55E; }

    .box-period {
        font-size: 11px;
        color: #94A3B8;
        display: block;
    }

    /* Bottom Specs Data Rows */
    .specs-table {
        border-top: 1px solid #F1F5F9;
        padding-top: 8px;
    }

    .spec-line {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #F1F5F9;
        font-size: 13.5px;
    }

    .spec-line span {
        color: #64748B;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .spec-line span i {
        font-size: 14px;
        width: 16px;
        color: #94A3B8;
    }

    .spec-line strong {
        color: #061224;
        font-weight: 700;
    }

    .spec-line strong.highlight-orange {
        color: #F59E0B; /* Muted orange/amber total savings label */
        font-weight: 800;
    }

    .border-none {
        border-none: none !important;
        border-bottom: none;
    }

    /* Bottom center container label badge */
    .results-footer-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        padding: 10px 24px;
        border-radius: 8px;
        font-size: 14px;
        color: #0A4ECB;
        margin-top: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    }

    /* --- PREMIUM STAGGERED POP-IN ANIMATION --- */
    .animate-pop-in {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-pop-in.animate-active {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    /* Step Delay Sequence */
    .results-grid .result-card:nth-child(1) { transition-delay: 0.1s; }
    .results-grid .result-card:nth-child(2) { transition-delay: 0.25s; }
    .results-grid .result-card:nth-child(3) { transition-delay: 0.4s; }
    .results-footer-badge.animate-active { transition-delay: 0.5s; }

    /* --- RESPONSIVE MEDIA SCREEN BREAKPOINTS --- */
    @media (max-width: 1024px) {
        .results-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
    }

    @media (max-width: 700px) {
        .results-grid {
            grid-template-columns: 1fr; /* Flattens to single viewport stack layout perfectly */
            gap: 20px;
        }
        .results-header h2 {
            font-size: 28px;
        }
        .results-footer-badge {
            width: 100%;
            justify-content: center;
            flex-direction: column;
            gap: 4px;
        }
    }

/* ==================== */

/* --- TESTIMONIALS LAYOUT STYLES --- */
    .testimonials-section {
        max-width: 1280px;
        margin: 80px auto;
        padding: 0 24px;
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 48px;
    }

    .testimonials-header h2 {
        font-size: 36px;
        font-weight: 800;
        color: #061224;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .testimonials-header h2 span {
        color: #0A4ECB;
    }

    .testimonials-subtitle {
        font-size: 16px;
        color: #64748B;
        max-width: 650px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Main Featured Blue Card Wrapper Box */
    .featured-slider-card {
        background: linear-gradient(135deg, #0B56DE 0%, #063996 100%);
        border-radius: 18px;
        padding: 50px 60px 40px 60px;
        position: relative;
        overflow: hidden;
        color: #FFFFFF;
        max-width: 960px;
        margin: 0 auto 50px auto;
        box-shadow: 0 20px 40px rgba(11, 86, 222, 0.12);
    }

    .quote-watermark {
        position: absolute;
        right: 40px;
        top: 20px;
        font-size: 110px;
        color: rgba(255, 255, 255, 0.05);
        pointer-events: none;
        line-height: 1;
    }

    .slider-stars {
        color: #FFB300;
        font-size: 18px;
        margin-bottom: 24px;
        display: flex;
        gap: 4px;
    }

    .featured-quote-text {
        font-size: 22px;
        font-weight: 600;
        line-height: 1.6;
        margin-bottom: 40px;
        max-width: 820px;
    }

    .featured-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .client-name {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .client-location {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .savings-badge-right {
        text-align: right;
    }

    .savings-amount {
        font-size: 26px;
        font-weight: 800;
        color: #FFB300;
        line-height: 1.1;
    }

    .savings-metric-label {
        font-size: 12px;
        font-weight: 600;
        opacity: 0.9;
    }

    .savings-spec-sub {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.6);
    }

    /* Slider Interface Navigation Buttons Row */
    .slider-controls-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-arrow-btn {
        background: transparent;
        border: none;
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        opacity: 0.8;
        transition: opacity 0.2s ease;
    }

    .nav-arrow-btn:hover {
        opacity: 1;
    }

    .pagination-dots {
        display: flex;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .dot.active {
        background-color: #FFB300;
        width: 24px; /* Matches the visual pill accent shape */
        border-radius: 4px;
    }

    /* Lower Secondary Cards Grid Layout Elements */
    .reviews-static-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .static-review-card {
        background: #f5f5ff;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 28px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 4px 15px rgba(0,0,0,0.01);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    }

    .static-review-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(6, 18, 36, 0.05);
    }

    .static-stars {
        color: #FFB300;
        font-size: 13px;
        margin-bottom: 16px;
    }

    .static-review-body {
        font-size: 13.5px;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 24px;
        flex-grow: 1;
    }

    .static-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #F1F5F9;
        padding-top: 16px;
    }

    .static-profile {
        display: flex;
        flex-direction: column;
    }

    .static-profile strong {
        font-size: 14px;
        color: #061224;
    }

    .static-profile span {
        font-size: 12px;
        color: #94A3B8;
    }

    .static-savings-info {
        text-align: right;
        display: flex;
        flex-direction: column;
    }

    .static-savings-info strong {
        font-size: 15px;
        color: #FFB300;
        font-weight: 800;
    }

    .static-savings-info span {
        font-size: 11px;
        color: #94A3B8;
    }

    /* --- PREMIUM HIGH FIDELITY ANIMATION CONFIG --- */
    .animate-slide-left {
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-slide-left.animate-active {
        opacity: 1;
        transform: translateX(0);
    }

    .animate-cascade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-cascade-up.animate-active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Cascading sequential delays for smaller grids */
    .reviews-static-grid .static-review-card:nth-child(1) { transition-delay: 0.1s; }
    .reviews-static-grid .static-review-card:nth-child(2) { transition-delay: 0.25s; }
    .reviews-static-grid .static-review-card:nth-child(3) { transition-delay: 0.4s; }

    /* --- RESPONSIVE MEDIA BREAKPOINTS --- */
    @media (max-width: 968px) {
        .featured-slider-card {
            padding: 40px 32px 32px 32px;
        }
        .featured-quote-text {
            font-size: 18px;
        }
        .reviews-static-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .reviews-static-grid .static-review-card:nth-child(3) {
            grid-column: span 2; /* Spans across full row block on medium viewports */
        }
    }

    @media (max-width: 640px) {
        .reviews-static-grid {
            grid-template-columns: 1fr;
        }
        .reviews-static-grid .static-review-card:nth-child(3) {
            grid-column: span 1;
        }
        .featured-slider-card {
            padding: 30px 20px 24px 20px;
        }
        .featured-quote-text {
            font-size: 15px;
            margin-bottom: 24px;
        }
        .featured-card-footer {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
        .savings-badge-right {
            text-align: left;
        }
        .testimonials-header h2 {
            font-size: 28px;
        }
    }

/* ==================== */

/* --- MEET THE FOUNDERS SECTION LAYOUT --- */
    .founders-section {
        max-width: 1280px;
        margin: 80px auto;
        padding: 0 24px;
    }

    /* Main visual card framing background container matched to image_8d51fa.png */
    .founders-container {
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 16px;
        padding: 60px 80px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    }

    .founders-header {
        text-align: center;
        margin-bottom: 48px;
    }

    .founders-header h2 {
        font-size: 34px;
        font-weight: 800;
        color: #061224;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .founders-header h2 span {
        color: #0A4ECB;
    }

    .founders-subtitle {
        font-size: 15px;
        color: #64748B;
        font-weight: 500;
    }

    /* Founders Profiles Style Alignment */
    .founders-profiles-row {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-bottom: 40px;
    }

    .founder-profile-card {
        text-align: center;
    }

    /* Solid bold blue circular profile badges */
    .founder-avatar {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #1D62E6 0%, #0840A8 100%);
        color: #FFFFFF;
        font-size: 26px;
        font-weight: 800;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px auto;
        box-shadow: 0 8px 20px rgba(10, 78, 203, 0.15);
        letter-spacing: 0.5px;
    }

    /* Photo variant — image fills the same circle */
    .founder-avatar.founder-avatar-img {
        background: #E2E8F0;
        overflow: hidden;
        padding: 0;
    }

    .founder-avatar.founder-avatar-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .founder-profile-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: #061224;
        margin-bottom: 4px;
    }

    .founder-title {
        font-size: 13px;
        color: #0A4ECB;
        font-weight: 600;
    }

    /* Target Centered Divider UI */
    .target-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        max-width: 200px;
        margin: 0 auto 36px auto;
    }

    .divider-line {
        flex-grow: 1;
        height: 1.5px;
        background-color: #FFB300;
        opacity: 0.7;
    }

    .divider-icon {
        color: #FFB300;
        font-size: 16px;
    }

    /* Core Context Messaging Layout */
    .founders-story-text {
        font-size: 14.5px;
        color: #475569;
        text-align: center;
        line-height: 1.7;
        max-width: 860px;
        margin: 0 auto 48px auto;
    }

    /* Parallel Mission Vision Block Layout structures */
    .mission-vision-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .mv-card {
        border-radius: 12px;
        padding: 32px 28px;
        color: #FFFFFF;
        box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    }

    .card-mission {
        background-color: #1D63EB; /* Deep clean brand electric blue */
    }

    .card-vision {
        background-color: #FFC107; /* High contrast amber yellow */
        color: #061224; /* Swapped contrast color palette */
    }

    .mv-card-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .mv-card-header i {
        font-size: 18px;
    }

    .mv-card-header h4 {
        font-size: 18px;
        font-weight: 700;
    }

    .mv-card p {
        font-size: 13.5px;
        line-height: 1.6;
        font-weight: 500;
        opacity: 0.95;
    }

    /* Lower Footer Button Section Link Block Elements */
    .founders-footer-cta {
        text-align: center;
    }

    .divider-line-bottom {
        height: 1px;
        background-color: #E2E8F0;
        margin-bottom: 32px;
    }

    .founders-footer-prompt {
        font-size: 13.5px;
        color: #475569;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .btn-founders-cta {
        background-color: #0B4ECB;
        color: #FFFFFF;
        padding: 12px 28px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        display: inline-block;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border: none;
        cursor: pointer;
    }

    .btn-founders-cta:hover {
        background-color: #083DA3;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(11, 78, 203, 0.25);
    }

    /* --- HIGH FIDELITY HOOK VISUAL ANIMATION --- */
    .animate-fade-in-box {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-profile {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-mv-left {
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-mv-right {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Trigger States activated by JS Observer */
    .animate-active.animate-fade-in-box,
    .animate-active.animate-profile,
    .animate-active.animate-mv-left,
    .animate-active.animate-mv-right {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
    }

    /* Sequence delays for child component reveals */
    .founders-profiles-row .founder-profile-card:nth-child(1) { transition-delay: 0.15s; }
    .founders-profiles-row .founder-profile-card:nth-child(2) { transition-delay: 0.3s; }
    .card-mission { transition-delay: 0.2s; }
    .card-vision { transition-delay: 0.3s; }

    /* --- RESPONSIVE MEDIA BREAKPOINTS --- */
    @media (max-width: 900px) {
        .founders-container {
            padding: 40px 32px;
        }
        .mission-vision-grid {
            grid-template-columns: 1fr; /* Stacks nicely on tablet viewports */
            gap: 16px;
        }
    }

    @media (max-width: 600px) {
        .founders-profiles-row {
            flex-direction: column; /* Stacks avatars sequentially on narrow screen sizes */
            gap: 32px;
        }
        .founders-header h2 {
            font-size: 26px;
        }
        .mv-card {
            padding: 24px;
        }
        .btn-founders-cta {
            width: 100%;
            text-align: center;
        }
    }

/* ==================== */

/* --- TRUST STATISTICS SECTION STYLES --- */
    .trust-stats-section {
        max-width: 1280px;
        margin: 80px auto;
        padding: 0 24px;
        text-align: center;
    }

    .stats-header {
        margin-bottom: 50px;
    }

    .stats-header h2 {
        font-size: 34px;
        font-weight: 800;
        color: #061224;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .stats-header h2 span {
        color: #0A4ECB;
    }

    .stats-subtitle {
        font-size: 15px;
        color: #64748B;
        font-weight: 500;
    }

    /* Upper Main 4-Column Grid layout */
    .stats-cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-bottom: 40px;
    }

    .stat-metric-card {
        background: #FFFFFF;
        border: 1px solid #c6d6eb;
        border-radius: 12px;
        padding: 36px 20px;
        box-shadow: 0 4px 20px rgb(0 0 0 / 14%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    }

    .stat-metric-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 32px rgba(6, 18, 36, 0.05);
    }

    /* Circle Icon Color Profile Settings matching image_8d4e00.png precisely */
    .circle-icon {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px auto;
        box-shadow: 0 6px 14px rgba(0,0,0,0.04);
    }

    .circle-icon i {
        font-size: 20px;
        color: #FFFFFF;
    }

    .icon-bg-blue { background-color: #2563EB; }
    .icon-bg-green { background-color: #10B981; }
    .icon-bg-purple { background-color: #A855F7; }
    .icon-bg-orange { background-color: #EA580C; }

    .metric-num {
        font-size: 30px;
        font-weight: 800;
        color: #061224;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }

    /* Force the blue branding matching screenshot text profiles */
    .stats-cards-grid .stat-metric-card:nth-child(2) .metric-num {
        color: #0A4ECB;
    }

    .stat-metric-card h4 {
        font-size: 14px;
        font-weight: 700;
        color: #334155;
        margin-bottom: 8px;
    }

    .stat-metric-card p {
        font-size: 12px;
        color: #64748B;
        line-height: 1.5;
    }

    /* Lower 3-Column Banner Style Layout Elements */
    .value-pillars-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .pillar-banner-card {
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 24px;
        text-align: center;
        box-shadow:  0 4px 20px rgb(0 0 0 / 14%)
;
        transition: box-shadow 0.3s ease;
    }

    .pillar-banner-card:hover {
        box-shadow: 0 6px 16px rgba(0,0,0,0.02);
    }

    .pillar-banner-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: #0A4ECB;
        margin-bottom: 8px;
    }

    .pillar-banner-card p {
        font-size: 12.5px;
        color: #64748B;
        line-height: 1.5;
    }

    /* --- PREMIUM GRAPHIC ANIMATION SETTING --- */
    .animate-stat-pop {
        opacity: 0;
        transform: scale(0.92) translateY(15px);
        transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1), 
                    transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    }

    .animate-pillars-fade {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Trigger States activated via JS intersection monitoring */
    .animate-active.animate-stat-pop,
    .animate-active.animate-pillars-fade {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    /* Waterfall stagger timeline delay variables */
    .stats-cards-grid .stat-metric-card:nth-child(1) { transition-delay: 0.05s; }
    .stats-cards-grid .stat-metric-card:nth-child(2) { transition-delay: 0.15s; }
    .stats-cards-grid .stat-metric-card:nth-child(3) { transition-delay: 0.25s; }
    .stats-cards-grid .stat-metric-card:nth-child(4) { transition-delay: 0.35s; }
    .value-pillars-grid.animate-active { transition-delay: 0.5s; }

    /* --- RESPONSIVE MEDIA BREAKPOINTS --- */
    @media (max-width: 1024px) {
        .stats-cards-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .value-pillars-grid {
            grid-template-columns: 1fr; /* Drops pillars nicely on tablets */
            gap: 16px;
        }
    }

    @media (max-width: 600px) {
        .stats-cards-grid {
            grid-template-columns: 1fr; /* Complete mobile structural stacking configuration */
            gap: 16px;
        }
        .stats-header h2 {
            font-size: 26px;
        }
        .stat-metric-card {
            padding: 28px 16px;
        }
    }

/* ==================== */

/* --- SOLAR EDUCATION HUB STYLES --- */
    .education-hub-section {
        max-width: 1280px;
        margin: 80px auto;
        padding: 0 24px;
    }

    .hub-header {
        text-align: center;
        margin-bottom: 54px;
    }

    /* Top center distinct circular book icon badge */
    .hub-icon-badge {
        width: 50px;
        height: 50px;
        background-color: #0A4ECB;
        color: #FFFFFF;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px auto;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(10, 78, 203, 0.2);
    }

    .hub-header h2 {
        font-size: 34px;
        font-weight: 800;
        color: #061224;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .hub-header h2 span {
        color: #0A4ECB;
    }

    .hub-subtitle {
        font-size: 15px;
        color: #64748B;
        font-weight: 500;
    }

    /* Core 4-Quadrant Grid Layout */
    .hub-quadrant-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Base Architecture Layout Config for all 4 containers */
    .hub-knowledge-card {
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 4px 20px rgb(0 0 0 / 15%);
        display: flex;
        flex-direction: column;
    }

    .hub-knowledge-card h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .card-inner-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    /* Quadrant Card 1 Specifics: Myths vs Facts */
    .card-myths {
        background-color: #f5f5ff;
        border: 1px solid #E2E8F0;
    }
    .card-myths h3 { color: #061224; }
    .card-myths h3 i { color: #FFB300; }

    .myth-fact-row {
        border-bottom: 1px solid #F1F5F9;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    .line-none {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .myth-line {
        font-size: 13.5px;
        color: #475569;
        margin-bottom: 6px;
        display: flex;
        gap: 6px;
    }
    .myth-line span {
        color: #EF4444;
        font-weight: 700;
    }
    .fact-line {
        font-size: 13.5px;
        color: #475569;
        line-height: 1.5;
        display: flex;
        gap: 6px;
    }
    .fact-line span {
        color: #10B981;
        font-weight: 700;
    }

    /* Quadrant Card 2 Specifics: Net Metering */
    .card-net-metering {
        background: linear-gradient(135deg, #1D63EB 0%, #0B4ECB 100%);
        color: #FFFFFF;
    }
    .card-net-metering h3 i { color: #FFB300; }

    .net-metering-intro {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 28px;
    }

    .net-metering-steps-box {
        background-color: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .nm-step {
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

    .nm-num {
        width: 22px;
        height: 22px;
        background-color: #FFB300;
        color: #061224;
        font-size: 12px;
        font-weight: 800;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .nm-step p {
        font-size: 13px;
        line-height: 1.5;
        color: #FFFFFF;
        font-weight: 500;
    }

    /* Quadrant Card 3 Specifics: Mistakes */
    .card-mistakes {
        background-color: #FFFFFF;
        border: 1px solid #f7baba; /* Custom subtle reddish outline mapping screenshot */
    }
    .card-mistakes h3 { color: #061224; }
    .text-red-icon { color: #EF4444; }

    .mistakes-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 24px;
    }

    .mistakes-list li {
        font-size: 13.5px;
        color: #475569;
        position: relative;
        padding-left: 16px;
        font-weight: 500;
    }

    .mistakes-list li::before {
        content: "•";
        color: #EF4444; /* Custom crimson bullet indicators */
        font-size: 18px;
        position: absolute;
        left: 0;
        top: -3px;
    }

    .tip-box {
        border-top: 1px solid #F1F5F9;
        padding-top: 20px;
        margin-top: auto;
    }

    .tip-box p {
        font-size: 13px;
        color: #475569;
        line-height: 1.5;
        font-style: italic;
    }

    .tip-box p span {
        color: #0A4ECB;
        font-weight: 700;
        font-style: normal;
    }

    /* Quadrant Card 4 Specifics: Buying Checklist */
    .card-checklist {
        background-color: #FFC107; /* Bright solid gold wrap background */
        color: #061224;
    }

    .checklist-items {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .checklist-items li {
        font-size: 13.5px;
        font-weight: 600;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.4;
    }

    .checklist-items li i {
        font-size: 15px;
        margin-top: 2px;
        color: #061224;
        opacity: 0.8;
    }

    .btn-checklist-action {
        background-color: #0B4ECB;
        color: #FFFFFF;
        text-align: center;
        padding: 14px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        width: 100%;
        display: block;
        margin-top: auto;
        box-shadow: 0 4px 14px rgba(11, 78, 203, 0.2);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-checklist-action:hover {
        background-color: #083DA3;
        transform: translateY(-2px);
    }

    /* --- PREMIUM QUADRANT REVEAL CLOCKWISE ANIMATION --- */
    .animate-hub-card {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-hub-card.animate-active {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    /* Stagger delay timeline routing clockwise */
    .hub-quadrant-grid .hub-knowledge-card:nth-child(1) { transition-delay: 0.1s; }  /* Top Left */
    .hub-quadrant-grid .hub-knowledge-card:nth-child(2) { transition-delay: 0.25s; } /* Top Right */
    .hub-quadrant-grid .hub-knowledge-card:nth-child(4) { transition-delay: 0.4s; }  /* Bottom Right */
    .hub-quadrant-grid .hub-knowledge-card:nth-child(3) { transition-delay: 0.55s; } /* Bottom Left */

    /* --- RESPONSIVE MEDIA BREAKPOINTS --- */
    @media (max-width: 1024px) {
        .hub-quadrant-grid {
            grid-template-columns: 1fr; /* Transforms grid seamlessly into a linear stacked flow for tablet viewports */
            gap: 24px;
        }
        .hub-knowledge-card {
            padding: 32px;
        }
    }

    @media (max-width: 600px) {
        .hub-header h2 {
            font-size: 26px;
        }
        .hub-knowledge-card {
            padding: 24px;
        }
        .btn-checklist-action {
            padding: 12px;
            font-size: 13px;
        }
    }

/* ==================== */

/* --- FAQ SECTION LAYOUT STYLES --- */
    .faq-section {
        max-width: 900px; /* narrowed column layout to exactly replicate image_8d4698.png */
        margin: 80px auto;
        padding: 0 24px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 48px;
    }

    .faq-icon-badge {
        width: 50px;
        height: 50px;
        background-color: #FFB300; /* Distinct amber gold top anchor emblem */
        color: #FFFFFF;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px auto;
        font-size: 22px;
        box-shadow: 0 4px 12px rgba(255, 179, 0, 0.2);
    }

    .faq-header h2 {
        font-size: 34px;
        font-weight: 800;
        color: #061224;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .faq-header h2 span {
        color: #0A4ECB;
    }

    .faq-subtitle {
        font-size: 15px;
        color: #64748B;
        font-weight: 500;
    }

    /* Accordion Grid Stack Frame */
    .faq-accordion-container {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 48px;
    }

    .faq-item {
        background-color: #F8FAFC; /* Soft ambient grey backdrop fill */
        border: 1px solid #E2E8F0;
        border-radius: 10px;
        overflow: hidden;
        transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .faq-item:hover {
        background-color: #FFFFFF;
        border-color: #CBD5E1;
        box-shadow: 0 4px 12px rgba(0,0,0,0.015);
    }

    /* Trigger Toggle Bars Styling */
    .faq-trigger {
        width: 100%;
        background: transparent;
        border: none;
        padding: 20px 24px;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        outline: none;
    }

    .faq-trigger span {
        font-size: 14.5px;
        font-weight: 600;
        color: #1E293B;
        transition: color 0.3s ease;
    }

    .faq-trigger i {
        font-size: 12px;
        color: #94A3B8;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    }

    /* Active Toggled Structural Modifications */
    .faq-item.active {
        background-color: #FFFFFF;
        border-color: #0A4ECB;
        box-shadow: 0 10px 20px rgba(10, 78, 203, 0.03);
    }

    .faq-item.active .faq-trigger span {
        color: #0A4ECB;
    }

    .faq-item.active .faq-trigger i {
        transform: rotate(180deg);
        color: #0A4ECB;
    }

    /* Interactive Slide Drawer Panels Configuration */
    .faq-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .panel-content {
        padding: 0 24px 24px 24px;
    }

    .panel-content p {
        font-size: 14px;
        color: #475569;
        line-height: 1.6;
    }

    /* Bottom Gradient Call-out Box styling matching image_8d4698.png */
    .faq-footer-banner {
        background: linear-gradient(135deg, #1D63EB 0%, #0B4ECB 50%, #083FA6 100%);
        border-radius: 16px;
        padding: 40px;
        text-align: center;
        color: #FFFFFF;
        box-shadow: 0 16px 32px rgba(11, 78, 222, 0.1);
    }

    .faq-footer-banner h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: -0.3px;
    }

    .faq-footer-banner p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 24px;
        font-weight: 500;
    }

    .btn-faq-footer {
        background-color: #FFB300; /* Rich solid orange yellow accent button block */
        color: #061224;
        padding: 14px 28px;
        border-radius: 6px;
        font-size: 14.5px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border: none;
        cursor: pointer;
    }

    .btn-faq-footer:hover {
        background-color: #E5A100;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 179, 0, 0.25);
    }

    /* --- PREMIUM CASCADE MOUNT SCROLL ANIMATIONS --- */
    .animate-faq-item {
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-faq-banner {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-active.animate-faq-item,
    .animate-active.animate-faq-banner {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger cascading array index computation paths */
    .faq-accordion-container .faq-item:nth-child(1) { transition-delay: 0.05s; }
    .faq-accordion-container .faq-item:nth-child(2) { transition-delay: 0.1s; }
    .faq-accordion-container .faq-item:nth-child(3) { transition-delay: 0.15s; }
    .faq-accordion-container .faq-item:nth-child(4) { transition-delay: 0.2s; }
    .faq-accordion-container .faq-item:nth-child(5) { transition-delay: 0.25s; }
    .faq-accordion-container .faq-item:nth-child(6) { transition-delay: 0.3s; }
    .faq-accordion-container .faq-item:nth-child(7) { transition-delay: 0.35s; }
    .faq-accordion-container .faq-item:nth-child(8) { transition-delay: 0.4s; }
    .faq-footer-banner.animate-active { transition-delay: 0.45s; }

    /* --- RESPONSIVE MEDIA BREAKPOINTS --- */
    @media (max-width: 768px) {
        .faq-section {
            margin: 60px auto;
        }
        .faq-footer-banner {
            padding: 32px 20px;
        }
        .faq-footer-banner h3 {
            font-size: 19px;
        }
        .faq-trigger {
            padding: 16px 20px;
        }
        .faq-trigger span {
            font-size: 13.5px;
            padding-right: 12px;
        }
    }

    @media (max-width: 480px) {
        .faq-header h2 {
            font-size: 26px;
        }
        .btn-faq-footer {
            width: 100%;
            text-align: center;
        }
    }

/* ==================== */

/* --- CONSULTATION SECTION LAYOUT STYLES --- */
    .consultation-section {
        max-width: 1280px;
        margin: 80px auto;
        padding: 0 24px;
    }

    .consultation-header {
        text-align: center;
        margin-bottom: 54px;
    }

    .consultation-header h2 {
        font-size: 34px;
        font-weight: 800;
        color: #061224;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .consultation-header h2 span {
        color: #0A4ECB;
    }

    .consultation-subtitle {
        font-size: 15px;
        color: #64748B;
        font-weight: 500;
    }

    /* Core Two-Column Asymmetric Grid Configuration Layout */
    .consultation-split-grid {
        display: flex;
        align-items: stretch;
        gap: 40px;
    }

    /* LEFT SIDE CONTENT STYLES */
    .consult-left-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 24px;
        /* height: 100%; */
    }

    .consult-right-col {
        flex: 1.2;
        display: flex;
    }

    /* Benefits Card Container */
    .benefits-card {
        background-color: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 14px;
        padding: 40px;
        box-shadow: 0 4px 20px rgb(0 0 0 / 12%);
        flex: 1;
    }

    .benefits-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #061224;
        margin-bottom: 24px;
    }

    .benefits-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .benefits-list li {
        font-size: 14px;
        color: #475569;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 12px;
        line-height: 1.4;
    }

    .benefits-list li i {
        font-size: 16px;
        color: #0A4ECB; /* Distinct branding blue icon color ticks */
        flex-shrink: 0;
    }

    /* Blue Direct Contact Container Box mapping screenshot precisely */
    .direct-contact-box {
        background: linear-gradient(135deg, #1059DC 0%, #083FA8 100%);
        border-radius: 14px;
        padding: 40px;
        color: #FFFFFF;
        box-shadow: 0 10px 30px rgba(8, 63, 168, 0.1);
        flex: 1;
    }

    .direct-contact-box h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .contact-links-stack {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    /* Interactive button row anchors */
    .direct-contact-row-btn {
        background-color: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        padding: 14px 20px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-decoration: none;
        color: #FFFFFF;
        transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .direct-contact-row-btn:hover {
        background-color: rgba(255, 255, 255, 0.14);
        transform: translateX(4px);
    }

    /* Inner Row Circle Icons colors profile sets */
    .contact-icon-wrap {
        width: 38px;
        height: 38px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    .icon-orange-bg { background-color: #EA580C; }
    .icon-green-bg { background-color: #22C55E; }
    .icon-yellow-bg { background-color: #EAB308; }

    .contact-row-text {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
    }

    .contact-row-text .label {
        font-size: 11px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
    }

    .contact-row-text .value {
        font-size: 14.5px;
        font-weight: 700;
    }


    /* RIGHT SIDE FORM CARD COMPONENT STYLES */
    .booking-form-card {
        background-color: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 16px;
        padding: 44px;
        box-shadow:0 4px 20px rgb(0 0 0 / 12%);
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 100%;
    }

    .booking-form-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #061224;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
    }

    .booking-form-card h3 i {
        color: #0A4ECB;
    }

    /* Input Structure Fields setups */
    .form-group-full {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .form-row-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .booking-form-card label {
        font-size: 12.5px;
        font-weight: 700;
        color: #1E293B;
    }

    .booking-form-card input,
    .booking-form-card select,
    .booking-form-card textarea {
        background-color: #FFFFFF;
        border: 1px solid #CBD5E1;
        border-radius: 6px;
        padding: 12px 16px;
        font-size: 13.5px;
        color: #061224;
        outline: none;
        width: 100%;
        font-family: inherit;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .booking-form-card input::placeholder,
    .booking-form-card textarea::placeholder {
        color: #94A3B8;
        opacity: 1;
    }

    .booking-form-card input:focus,
    .booking-form-card select:focus,
    .booking-form-card textarea:focus {
        border-color: #0A4ECB;
        box-shadow: 0 0 0 3px rgba(10, 78, 203, 0.08);
    }

    /* Custom native select wrapping dropdown layout pointer vectors */
    .custom-select-wrapper {
        position: relative;
    }
    
    .custom-select-wrapper::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 10px;
        color: #64748B;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .booking-form-card select {
        appearance: none; /* strips default webkit design elements */
        padding-right: 40px;
        cursor: pointer;
    }

    .booking-form-card textarea {
        resize: vertical;
        min-height: 90px;
    }

    /* Submit Button styling */
    .btn-submit-form {
        background-color: #0A4ECB;
        color: #FFFFFF;
        border: none;
        border-radius: 6px;
        padding: 14px;
        font-size: 14.5px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        margin-top: 6px;
        box-shadow: 0 4px 14px rgba(10, 78, 203, 0.15);
    }

    .btn-submit-form:hover {
        background-color: #083DA3;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(10, 78, 203, 0.25);
    }

    .form-privacy-notice {
        font-size: 11px;
        color: #64748B;
        text-align: center;
        margin-top: 4px;
        font-weight: 500;
    }

    /* Captcha Section - Horizontal Row */
    .captcha-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 16px 0 8px;
        flex-wrap: wrap;
    }

    .captcha-question-box {
        background: #eef6ff;
        border: 2px solid #108ee9;
        border-radius: 10px;
        padding: 10px 24px;
        font-weight: 700;
        font-size: 1.05rem;
        color: #0369a1;
        text-align: center;
        letter-spacing: 1px;
        min-width: 130px;
    }

    .captcha-input {
        max-width: 120px;
        border-radius: 10px;
        border: 2px solid #cbd5e1;
        padding: 10px 14px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        transition: border-color 0.3s;
        outline: none;
        font-family: inherit;
    }

    .captcha-input:focus {
        border-color: #0ea5e9;
        box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
    }

    .captcha-refresh-btn {
        background: none;
        border: none;
        color: #0ea5e9;
        font-size: 1.3rem;
        cursor: pointer;
        padding: 6px;
        transition: transform 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .captcha-refresh-btn:hover {
        transform: rotate(90deg);
    }

    /* --- ASYMMETRICAL COLUMN SCROLL ANIMATION CONFIGS --- */
    .animate-consult-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-consult-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-active.animate-consult-left,
    .animate-active.animate-consult-right {
        opacity: 1;
        transform: translateX(0);
    }

    /* Adjust timing workflow offset slightly for elegant entrance pairing */
    .animate-consult-right {
        transition-delay: 0.15s;
    }


    /* --- RESPONSIVE MEDIA BREAKPOINTS --- */
    @media (max-width: 1024px) {
        .consultation-split-grid {
            flex-direction: column;
            gap: 30px;
        }
        .animate-consult-right {
            transition-delay: 0s;
        }
    }

    @media (max-width: 640px) {
        .booking-form-card {
            padding: 28px 20px;
        }
        .benefits-card,
        .direct-contact-box {
            padding: 28px 20px;
        }
        .form-row-split {
            grid-template-columns: 1fr; /* Inputs flatten into full width elements for pristine typing viewports */
            gap: 20px;
        }
        .consultation-header h2 {
            font-size: 26px;
        }
        .btn-submit-form {
            font-size: 13.5px;
        }
    }

/* ==================== */

/* --- SCROLL ANIMATIONS PROPERTIES --- */
    .animate-left { opacity: 0; transform: translateX(-50px); transition: var(--transition-smooth); }
    .animate-right { opacity: 0; transform: translateX(50px); transition: var(--transition-smooth); }
    .animate-active { opacity: 1; transform: translateX(0); }

    /* --- FOOTER STYLES --- */
    footer {
        background-color: var(--dark-navy);
        color: #94A3B8;
        padding: 47px 24px 20px 24px;
        margin-top: 100px;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .footer-container {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr repeat(3, 1fr);
        gap: 40px;
        padding-bottom: 6px;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 4px;
        max-width: 360px;
    }

    .footer-logo {
        margin-bottom: 20px;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 14px;
        font-size: 14px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .contact-item i {
        color: #94A3B8;
        width: 16px;
    }

    .footer-links-column h4 {
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .footer-links-column ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-links-column ul li a {
        color: #94A3B8;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-links-column ul li a:hover {
        color: #FFFFFF;
    }

    /* Horizontal divider between grid and bottom row */
    .footer-divider {
        max-width: 1280px;
        margin: 0 auto;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* Bottom action row: Follow Us + social icons (left) | Button (right) */
    .footer-bottom-row {
        max-width: 1280px;
        margin: 0 auto;
        padding: 28px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-social-section {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .follow-us-text {
        color: #CBD5E1;
        font-size: 14px;
        font-weight: 600;
        margin-right: 4px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        color: #94A3B8;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: var(--transition-smooth);
    }

    .social-icon:hover {
        background: var(--primary-blue);
        color: #FFFFFF;
        transform: translateY(-3px);
    }

    .btn-yellow-footer {
        background-color: var(--solar-yellow);
        color: var(--dark-navy);
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        display: inline-block;
        transition: var(--transition-smooth);
        border: none;
        white-space: nowrap;
    }

    .btn-yellow-footer:hover {
        background-color: #E5A100;
        transform: translateY(-2px);
    }

    .footer-bottom {
        max-width: 1280px;
        margin: 0 auto;
        padding-top: 24px;
        border-top: 1px solid rgba(255,255,255,0.06);
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 13px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-legal-links {
        display: flex;
        gap: 24px;
    }

    .footer-legal-links a {
        color: #94A3B8;
        text-decoration: none;
    }

    @media (max-width: 900px) {
        .footer-container { grid-template-columns: 1fr 1fr; }
        .footer-bottom-row { flex-direction: column; text-align: center; }
        .footer-social-section { justify-content: center; }
    }
    @media (max-width: 600px) {
        .footer-container { grid-template-columns: 1fr; }
        .footer-logo { text-align: center; }
        .footer-brand p { text-align: center; margin-left: auto; margin-right: auto; }
        .footer-bottom { flex-direction: column; text-align: center; }
        .footer-legal-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
        .footer-bottom-row { flex-direction: column; text-align: center; }
        .footer-social-section { justify-content: center; }
    }
    
    /* Global Service Details Modal (from old footer) */
    .service-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 9999; }
    .service-modal-box { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #fff; padding: 40px; border-radius: 12px; max-width: 500px; width: 90%; }
    .close-modal-btn { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 20px; cursor: pointer; }
/* --- SAVINGS WIDGET CARD --- */
.savings-widget-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.widget-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-navy);
}

.widget-dropdown {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-legend {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.legend-line {
    width: 24px;
    height: 3px;
    border-radius: 2px;
}

.line-blue { background: #1D62E6; }
.line-green { background: #10B981; }

.widget-graph-area {
    display: flex;
    gap: 16px;
    height: 250px;
    margin-bottom: 16px;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    padding-bottom: 10px;
}

.graph-content {
    flex-grow: 1;
    position: relative;
}

.grid-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #F1F5F9;
    width: 100%;
}

.grid-line:nth-child(1) { top: 0%; }
.grid-line:nth-child(2) { top: 25%; }
.grid-line:nth-child(3) { top: 50%; }
.grid-line:nth-child(4) { top: 75%; }
.grid-line:nth-child(5) { top: 100%; }

.graph-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: visible;
}

.graph-tooltip {
    position: absolute;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    z-index: 3;
}

.blue-tooltip { background: #1D62E6; }
.green-tooltip { background: #10B981; }

.x-axis {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 45px;
    margin-bottom: 32px;
}

.widget-bottom {
    display: flex;
    gap: 16px;
}

.project-value-box {
    flex: 1;
    background: #FFF9ED;
    border: 1px solid #FDE6B9;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.wallet-icon {
    width: 44px;
    height: 44px;
    background: #FFE0A3;
    color: #D97706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.value-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.value-amount {
    font-size: 22px;
    font-weight: 800;
    color: #D97706;
}

.live-tracker-box {
    flex: 1;
    background: #1E293B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #FFB300;
    font-weight: 700;
    font-size: 13px;
    padding: 16px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (max-width: 600px) {
    .widget-bottom {
        flex-direction: column;
    }
}


/* ==================== */

/* --- SOLAR SAVINGS CALCULATOR LAYOUT STYLES --- */
    .calculator-section {
        background: radial-gradient(circle at top right, #0d46b3 0%, #062363 60%, #031236 100%);
        padding: 90px 24px;
        position: relative;
        overflow: hidden;
    }

    .calc-container {
        max-width: 1280px;
        margin: 0 auto;
    }

    .calc-header {
        text-align: center;
        margin-bottom: 50px;
        color: #FFFFFF;
    }

    /* Small Pill Header Badge */
    .calc-badge {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 6px 18px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #FFFFFF;
        margin-bottom: 20px;
    }

    .calc-badge i {
        color: #FFB300;
    }

    .calc-header h2 {
        font-size: 36px;
        font-weight: 800;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
    }

    .calc-subtitle {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }

    /* Asymmetric Horizontal Split Grid Layout */
    .calc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        max-width: 1100px;
        margin: 0 auto 36px auto;
        align-items: stretch;
    }

    /* Frosted Glass Cards Core Architecture Layout */
    .calc-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 16px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Left Card Elements Styling */
    .calc-form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 24px;
        text-align: left;
    }

    .calc-form-group label {
        font-size: 13px;
        font-weight: 700;
        color: #FFFFFF;
    }

    .calc-form-group input,
    .calc-form-group select {
        background: #FFFFFF;
        border: none;
        border-radius: 6px;
        padding: 14px 18px;
        font-size: 14px;
        color: #061224;
        font-weight: 500;
        outline: none;
        width: 100%;
        transition: box-shadow 0.3s ease;
    }

    .calc-form-group input::placeholder {
        color: #94A3B8;
    }

    .calc-form-group input:focus,
    .calc-form-group select:focus {
        box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.25);
    }

    /* Select element chevron alignment replacement */
    .select-arrow-wrapper {
        position: relative;
    }
    .select-arrow-wrapper::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 11px;
        color: #94A3B8;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }
    .calc-form-group select {
        appearance: none;
        padding-right: 44px;
        cursor: pointer;
    }

    /* Branded Yellow Submit Button Accent */
    .btn-calc-action {
        background-color: #FFB300;
        color: #061224;
        border: none;
        border-radius: 6px;
        padding: 15px;
        font-size: 15px;
        font-weight: 700;
        width: 100%;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        margin-top: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .btn-calc-action:hover {
        background-color: #E5A100;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 179, 0, 0.3);
    }

    /* Right Card State: Placeholder Framework elements */
    .placeholder-state {
        text-align: center;
        color: rgba(255, 255, 255, 0.7);
    }

    .calc-big-icon {
        font-size: 44px;
        color: #FFB300;
        margin-bottom: 16px;
    }

    .placeholder-state p {
        font-size: 14.5px;
        max-width: 280px;
        margin: 0 auto;
        line-height: 1.5;
        font-weight: 500;
    }

    /* --- RICH RESULT CARDS PANEL --- */
    .results-state {
        display: flex;
        flex-direction: column;
        gap: 10px;
        animation: fadeIn 0.4s ease forwards;
    }

    /* Individual result cards */
    .res-card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 16px 20px;
    }

    .res-card-label {
        font-size: 12.5px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.65);
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .res-card-label i {
        color: #FFB300;
        font-size: 13px;
    }

    .res-card-value {
        font-size: 28px;
        font-weight: 800;
        color: #FFFFFF;
        letter-spacing: -0.5px;
        line-height: 1.15;
    }

    .res-gold { color: #FFB300; }

    /* Bottom 2-column mini row */
    .res-bottom-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .res-mini-card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 14px 16px;
    }

    .res-mini-label {
        font-size: 11.5px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 6px;
    }

    .res-mini-value {
        font-size: 20px;
        font-weight: 800;
        color: #FFFFFF;
        letter-spacing: -0.3px;
    }

    /* Yellow CTA banner at bottom */
    .res-cta-banner {
        background: #FFB300;
        border-radius: 10px;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 2px;
    }

    .res-cta-text {
        font-size: 13.5px;
        font-weight: 700;
        color: #061224;
        margin: 0;
    }

    .res-cta-btn {
        background: #062363;
        color: #FFFFFF;
        font-size: 13px;
        font-weight: 700;
        padding: 9px 18px;
        border-radius: 6px;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.2s ease;
        flex-shrink: 0;
    }

    .res-cta-btn:hover {
        background: #0A4ECB;
        color: #FFFFFF;
    }

    /* Disclaimer Section Footers styling */
    .calc-disclaimer-notice {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.6;
        font-weight: 500;
    }

    /* --- ENTRANCE SCROLL SCENARIO ANIMATIONS --- */
    .animate-calc-fade {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-calc-fade.animate-active {
        opacity: 1;
        transform: translateY(0);
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* --- RESPONSIVE MEDIA SCREENS BREAKPOINTS --- */
    @media (max-width: 900px) {
        .calc-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .calc-card {
            padding: 32px 24px;
        }
        .calc-header h2 {
            font-size: 28px;
        }
    }

    @media (max-width: 480px) {
        .calculator-section {
            padding: 60px 16px;
        }
        .calc-header h2 {
            font-size: 24px;
        }
        .btn-calc-action {
            font-size: 14px;
        }
    }

/* ==================== */
    /* --- SOLAR ADVISORY SERVICES LAYOUT STYLES --- */
    .services-section {
        max-width: 1280px;
        margin: 80px auto;
        padding: 0 24px;
        text-align: center;
    }

    .services-header {
        margin-bottom: 54px;
    }

    .services-header h2 {
        font-size: 34px;
        font-weight: 800;
        color: #061224;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .services-header h2 span {
        color: #0A4ECB;
    }

    .services-subtitle {
        font-size: 15px;
        color: #64748B;
        font-weight: 500;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.5;
    }

    /* 4-Column Flex Grid Setup */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-bottom: 50px;
    }

    /* Card Frame Setup precisely mirroring image_5893bc.png */
    .service-card {
        background: #FFFFFF;
        border: 1px solid #a1badc;
        border-radius: 12px;
        padding: 30px 24px;
        text-align: left;
        box-shadow: 0 4px 15px rgba(0,0,0,0.01);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 17px rgb(6 18 36 / 15%);
        border:1px solid blue;
    }

    /* Branded Blue Icon Wrap Container Box */
    .service-icon-box {
        width: 42px;
        height: 42px;
        background: linear-gradient(135deg, #1D62E6 0%, #0840A8 100%);
        color: #FFFFFF;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        margin-bottom: 24px;
        box-shadow: 0 4px 12px rgba(10, 78, 203, 0.15);
    }

    .service-card h3 {
        font-size: 16.5px;
        font-weight: 700;
        color: #061224;
        margin-bottom: 12px;
        letter-spacing: -0.2px;
    }

    .service-desc {
        font-size: 13px;
        color: #64748B;
        line-height: 1.5;
        margin-bottom: 20px;
        min-height: 38px; /* Holds cross-row layout alignment nicely */
    }

    /* Bullet List Details Styling Configuration */
    .service-list, .service-points-content ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-left: 0;
        margin-bottom: 0;
    }

    .service-list li, .service-points-content li {
        font-size: 13px;
        color: #475569;
        font-weight: 500;
        position: relative;
        padding-left: 14px;
    }

    /* Solid Amber Bullet Points Accent */
    .service-list li::before, .service-points-content li::before {
        content: "•";
        color: #FFB300;
        font-size: 16px;
        position: absolute;
        left: 0;
        top: -2px;
    }

    /* Bottom Light Grey Horizontal Advice Box */
    .services-footer-banner {
        background-color: #F8FAFC;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 36px;
        text-align: center;
    }

    .services-footer-banner h3 {
        font-size: 20px;
        font-weight: 700;
        color: #061224;
        margin-bottom: 8px;
    }

    .services-footer-banner p {
        font-size: 13.5px;
        color: #64748B;
        margin-bottom: 24px;
        font-weight: 500;
    }

    .btn-services-schedule {
        background-color: #0A4ECB;
        color: #FFFFFF;
        padding: 12px 28px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border: none;
        cursor: pointer;
    }

    .btn-services-schedule:hover {
        background-color: #083DA3;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(10, 78, 203, 0.2);
    }

    /* --- PREMIUM WATERFALL CASCADE ANIMATIONS --- */
    .animate-service {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-service-banner {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-active.animate-service,
    .animate-active.animate-service-banner {
        opacity: 1;
        transform: translateY(0);
    }

    /* Cascading sequence loop timing logic matching index footprints */
    .services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
    .services-grid .service-card:nth-child(2) { transition-delay: 0.15s; }
    .services-grid .service-card:nth-child(3) { transition-delay: 0.25s; }
    .services-grid .service-card:nth-child(4) { transition-delay: 0.35s; }
    .services-grid .service-card:nth-child(5) { transition-delay: 0.15s; } /* Second row cascading delays */
    .services-grid .service-card:nth-child(6) { transition-delay: 0.25s; }
    .services-grid .service-card:nth-child(7) { transition-delay: 0.35s; }
    .services-grid .service-card:nth-child(8) { transition-delay: 0.45s; }
    .services-footer-banner.animate-active { transition-delay: 0.5s; }

    /* --- RESPONSIVE MEDIA BREAKPOINTS --- */
    @media (max-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr); /* 2x4 Grid distribution for smaller laptops/tablets */
            gap: 20px;
        }
    }

    @media (max-width: 600px) {
        .services-grid {
            grid-template-columns: 1fr; /* Pure mobile responsive tracking */
            gap: 16px;
        }
        .services-header h2 {
            font-size: 26px;
        }
        .services-footer-banner {
            padding: 28px 16px;
        }
        .btn-services-schedule {
            width: 100%;
            text-align: center;
        }
    }

/* =============================================
   VENDORS PAGE — MOBILE RESPONSIVE
   ============================================= */

/* --- Table horizontal-scroll wrapper --- */
.table-responsive-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Default hero title size for vendors page (desktop) */
.hero-section .hero-title {
    font-size: 52px;
}

/* Swipe hint hidden by default */
.vendor-swipe-hint {
    display: none !important;
}

/* --- Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
    .featured-vendors-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {

    /* Hero section */
    .hero-section .hero-title {
        font-size: 28px !important;
        line-height: 1.25;
        margin-bottom: 14px !important;
    }
    .hero-section .hero-subtitle {
        font-size: 14px !important;
        line-height: 1.5;
    }
    .hero-section .section-tag {
        font-size: 12px;
    }

    /* Featured vendors spotlight grid → single column */
    .featured-vendors-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Featured vendor cards */
    .vendor-card.glass-card {
        padding: 18px !important;
    }
    .vendor-card .vendor-title {
        font-size: 15px !important;
    }
    .vendor-card .vendor-stars {
        font-size: 11px !important;
    }
    .vendor-card .vendor-badge {
        font-size: 11px !important;
        padding: 3px 7px !important;
    }
    .vendor-card .vendor-tag-item {
        font-size: 11px !important;
        padding: 3px 8px !important;
    }
    .vendor-card .vendor-meta-item {
        font-size: 13px !important;
    }

    /* Search / filter bar → stack vertically */
    .vendor-search-bar {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 16px !important;
    }
    .vendor-search-bar > div {
        min-width: 100% !important;
        width: 100% !important;
    }
    .vendor-search-bar input,
    .vendor-search-bar select {
        height: 44px !important;
        font-size: 14px !important;
    }

    /* Table container: allow horizontal scroll with swipe */
    .table-responsive-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px !important;
        position: relative;
    }

    /* Swipe hint visible on mobile */
    .vendor-swipe-hint {
        display: block !important;
    }

    /* Table itself — keep a minimum width so it scrolls */
    .vendors-table {
        min-width: 700px;
    }

    /* Table header */
    .vendors-table thead tr th {
        padding: 12px 14px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }

    /* Table cells */
    .vendors-table tbody tr td {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }

    /* Vendor name column — keep compact */
    .vendors-table .vendor-col-name {
        min-width: 160px;
    }
    .vendors-table .vendor-col-name div[style*="font-weight: 700"] {
        font-size: 13px !important;
    }
    .vendors-table .vendor-col-name div[style*="width: 44px"] {
        width: 32px !important;
        height: 32px !important;
        font-size: 11px !important;
        border-radius: 8px !important;
    }

    /* Badge inside table */
    .vendors-table .vendor-badge {
        font-size: 9px !important;
        padding: 2px 6px !important;
    }

    /* CTA Banner */
    .contact-cta-banner .section-title {
        font-size: 24px !important;
    }
    .contact-cta-banner .section-desc {
        font-size: 14px !important;
    }

    /* Section titles / descriptions inside why-section-wrap on vendors page */
    .why-section-wrap .section-title {
        font-size: 24px;
    }
    .why-section-wrap .section-desc {
        font-size: 14px;
    }
}








    /* --- EVOLUTION OF SOLAR CELLS STYLES --- */
    .evolution-section {
        max-width: 1340px;
        margin: 60px auto;
        padding: 40px 24px;
        background-color: #F8FAFC;
        border-radius: 20px;
        color: #1E293B;
    }

    /* Top Horizontal Hero Area Layout mapping screenshot layout */
    .evo-top-banner {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 40px;
        align-items: center;
        margin-bottom: 50px;
    }

    .evo-header-left h2 {
        font-size: 38px;
        font-weight: 800;
        color: #061224;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .evo-header-left h2 span {
        color: #0A4ECB;
    }

    .evo-subtitle-main {
        font-size: 18px;
        font-weight: 600;
        color: #475569;
        margin-bottom: 18px;
    }

    .evo-description {
        font-size: 14px;
        color: #64748B;
        line-height: 1.6;
    }

    /* Sweeping horizon image curve styling placeholder */
    .solar-farm-graphic {
        width: 100%;
        height: 240px;
        background: linear-gradient(135deg, #0A4ECB 0%, #031B4D 100%);
        border-radius: 60% 40% 40% 20% / 40% 40% 60% 60%; /* Replicates beautiful abstract curve framing */
        position: relative;
        box-shadow: inset 0 0 40px rgba(0,0,0,0.2);
    }
    .solar-farm-graphic::before {
        content: "\f0a1";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 40px;
        top: 30px;
        font-size: 100px;
        color: rgba(255,255,255,0.05);
    }

    /* Core 6-Column Grid Map Architecture Layout */
    .tech-evolution-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-bottom: 50px;
    }

    .tech-card {
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 14px;
        padding: 24px;
        box-shadow:0 1px 15px rgb(0 0 0 / 22%);
    }

    .card-header-row {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 20px;
        border-bottom: 1px solid #F1F5F9;
        padding-bottom: 14px;
    }

    .step-num {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        color: #FFFFFF;
        font-size: 13px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .bg-green-num { background-color: #22C55E; }
    .bg-blue-num { background-color: #2563EB; }
    .bg-purple-num { background-color: #A855F7; }

    .card-header-row h3 {
        font-size: 14.5px;
        font-weight: 800;
        color: #0F172A;
        margin-bottom: 2px;
    }

    .sub-headline {
        font-size: 11.5px;
        color: #64748B;
        font-weight: 500;
        display: block;
    }

    /* Side-by-side inner body content architecture */
    .card-split-body {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 20px;
        align-items: start;
    }

    .dynamic-panel-img {
        width: 120px;
        border-radius: 10px;
        margin-right: 15px;
    }

    /* Pattern Blueprint Textures for Solar Cell Types from image */
    .panel-preview-img {
        width: 100%;
        aspect-ratio: 1 / 1.3;
        border-radius: 6px;
        border: 1px solid #CBD5E1;
    }
    .poly-img { background: repeating-linear-gradient(45deg, #1e40af, #1e40af 10px, #3b82f6 10px, #3b82f6 20px); }
    .mono-img { background: #0f172a; position: relative; }
    .mono-img::before { content: ''; position: absolute; inset: 4px; border: 1px dashed rgba(255,255,255,0.1); }
    .perc-img { background: linear-gradient(#1e3a8a, #020617); }
    .topcon-img { background: radial-gradient(#2563eb, #0f172a); }
    .bifacial-img { background: linear-gradient(rgba(37,99,235,0.8), rgba(15,23,42,0.9)); }
    .hjt-img { background: #1e1b4b; border: 2px solid #4f46e5; }

    /* Custom Color List Profiles matching icons precisely */
    .specs-bullet-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
            margin-left: 10px;
    }

    .specs-bullet-list li {
        font-size: 12px;
        font-weight: 600;
        color: #475569;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .specs-bullet-list li i {
        font-size: 13px;
        width: 16px;
        text-align: center;
    }

    .text-green-accent li i { color: #22C55E; }
    .text-blue-accent li i { color: #2563EB; }
    .text-purple-accent li i { color: #A855F7; }

    /* Lower Section Layout Blocks */
    .key-advantages-container {
        background-color: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 32px;
        margin-bottom: 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.005);
    }

    .advantages-bar-title {
        font-size: 12px;
        font-weight: 800;
        color: #FFFFFF;
        background-color: #061224;
        padding: 6px 14px;
        border-radius: 4px;
        display: inline-block;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
    }

    .advantages-inner-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .adv-pill {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .adv-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 16px;
        flex-shrink: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .bg-green-circle { background-color: #22C55E; }
    .bg-blue-circle { background-color: #2563EB; }
    .bg-purple-circle { background-color: #A855F7; }

    .adv-text h5 {
        font-size: 13.5px;
        font-weight: 800;
        color: #0F172A;
        margin-bottom: 6px;
        letter-spacing: -0.2px;
    }

    .adv-text p {
        font-size: 12px;
        color: #64748B;
        line-height: 1.5;
        font-weight: 500;
    }

    /* Dark Horizontal Footer Strip mapping bottom elements */
    .evo-footer-strip {
        background-color: #061224;
        border-radius: 12px;
        padding: 24px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        color: #FFFFFF;
    }

    .strip-item {
        display: flex;
        align-items: center;
        gap: 14px;
        border-right: 1px solid rgba(255,255,255,0.1);
        padding-right: 10px;
    }
    .evo-footer-strip .strip-item:last-child {
        border-right: none;
    }

    .strip-item i {
        font-size: 20px;
        color: #3b82f6;
        flex-shrink: 0;
    }

    .strip-item strong {
        font-size: 13px;
        font-weight: 700;
        display: block;
        margin-bottom: 2px;
    }

    .strip-item span {
        font-size: 11px;
        color: #94A3B8;
        display: block;
    }

    /* --- PREMIUM CASCADE ZOOM SCROLL ANIMATIONS --- */
    .animate-evo-card {
        opacity: 0;
        transform: scale(0.96) translateY(20px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-fade-advantages {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-active.animate-evo-card,
    .animate-active.animate-fade-advantages {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    /* Stagger timeline delays for cards 1 to 6 sequentially */
    .tech-evolution-grid .tech-card:nth-child(1) { transition-delay: 0.05s; }
    .tech-evolution-grid .tech-card:nth-child(2) { transition-delay: 0.15s; }
    .tech-evolution-grid .tech-card:nth-child(3) { transition-delay: 0.25s; }
    .tech-evolution-grid .tech-card:nth-child(4) { transition-delay: 0.15s; }
    .tech-evolution-grid .tech-card:nth-child(5) { transition-delay: 0.25s; }
    .tech-evolution-grid .tech-card:nth-child(6) { transition-delay: 0.35s; }
    .advantages-inner-grid.animate-active { transition-delay: 0.2s; }
    .evo-footer-strip.animate-active { transition-delay: 0.4s; }

    /* --- RESPONSIVE MEDIA BLOCK BREAKPOINTS --- */
    @media (max-width: 1100px) {
        .tech-evolution-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .evo-footer-strip {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .strip-item {
            border-right: none;
        }
    }

    @media (max-width: 900px) {
        .evo-top-banner {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .advantages-inner-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
    }

    @media (max-width: 640px) {
        .tech-evolution-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .card-split-body {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .dynamic-panel-img, 
        .panel-preview-img {
            margin: 0 auto 16px auto !important;
            display: block;
        }

        .panel-preview-img {
            width: 100px !important;
            aspect-ratio: 1 / 1;
        }
        .evo-footer-strip {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .evo-header-left h2 {
            font-size: 28px;
        }
    }
