/* =========================================
           1. RESET & VARIABLES
           ========================================= */
        :root {
            --brand-purple: #7058ff;
            --brand-dark: #1a1a1a;
            --brand-light-bg: #f8f9fa;
            --brand-gray: #6c757d;
            --border-color: #dee2e6;
            --font-base: 18px;
            --section-padding: 80px 0;
        }

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

        body {
              font-family: "Montserrat", sans-serif;
            color: var(--brand-dark);
            background-color: #ffffff;
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
            font-size: var(--font-base);
            overflow-x: hidden;
            font-weight: 500;
        }

        /* Typography & Helper Fixes */
        a { text-decoration: none; }
        .text-purple { color: var(--brand-purple); }
        .text-light-muted { color: #b0aebf; }
        .whitespace-nowrap { white-space: nowrap; }
        .border-top-dash { border-top: 1px dashed rgba(0, 0, 0, 0.1); }
        .line-height-sm { line-height: 1.3; }
        .line-height-md { line-height: 1.4; }

        .fw-bold { font-weight: 700; }
        .fw-semibold { font-weight: 600; }

        .fs-5 { font-size: 1.1rem; }
        .fs-4 { font-size: 1.35rem; }
        .h3 { font-size: 1.75rem; }
        .display-6 { font-size: 2.3rem; line-height: 1.2; }
        .display-5 { font-size: 3rem; line-height: 1.2; } 

        .bg-purple { background-color: var(--brand-purple); }
        .bg-dark { background-color: #111111; }
        .rounded-3 { border-radius: 12px; }
        .border-top { border-top: 1px solid var(--border-color); }
        .border-secondary { border: 1px solid #333; }

        /* =========================================
           3. CUSTOM COMPONENT STYLES
           ========================================= */

        /* ---------- Navbar Global Fixes ---------- */
        .navbar-section {
            background-color: #ffffff;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1050;
        }
        .navbar-brand {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--brand-dark);
            letter-spacing: -0.5px;
        }

        /* Menu List Desktop */
        .nav-list {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 1.8rem;
            margin: 0;
            padding: 0;
        }
        .nav-link {
            color: var(--brand-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }
        .nav-link:hover {
            color: var(--brand-purple);
        }

        /* Hamburger Toggle Trigger */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1100;
        }
        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--brand-dark);
            border-radius: 2px;
            transition: 0.25s ease-in-out;
        }
        .logo-div {
            line-height: 0;
        }
        .logo-div img {
                width: 120px;
        }
        .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .nav-toggle.open span:nth-child(2) { opacity: 0; }
        .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        @media (max-width: 767px) {
            .logo-div img {
                width: 90px;
            }
        }

        /* ---------- Buttons ---------- */
        .btn-premium {
            background-color: var(--brand-purple);
            color: #ffffff !important;
            border-radius: 50px;
            padding: 12px 24px;
            font-weight: 600;
            display: inline-block;
            text-align: center;
            border: none;
            cursor: pointer;
            transition: transform 0.2s ease, background-color 0.2s ease;
            font-size: 16px;
        }
        .btn-premium:hover {
            background-color: #5c44eb;
            transform: translateY(-1px);
        }
        .btn-light {
            background-color: #ffffff;
            color: var(--brand-purple) !important;
            border-radius: 50px;
            padding: 14px 28px;
            font-weight: 700;
            display: inline-block;
            border: none;
            transition: transform 0.2s ease;
        }
        .btn-light:hover {
            transform: scale(1.03);
        }
        .btn-outline-purple {
            background: transparent;
            color: var(--brand-purple);
            border: 2px solid var(--brand-purple);
            border-radius: 50px;
            padding: 9px 20px;
            font-weight: 600;
            display: inline-block;
            transition: all 0.2s ease;
            font-size: 0.85rem;
            text-align: center;
        }
        .btn-outline-purple:hover {
            background: var(--brand-purple);
            color: #ffffff !important;
        }

         /* ----- Hero Section Styles ----- */
    .hero-new {
        background: linear-gradient(135deg, rgba(15,15,30,0.3) 0%, rgba(26,26,46,0.9) 100%),
                    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover;
         
        display: flex;
        align-items: center;
        padding: 80px 0;
        position: relative;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 0;
    }

    .hero-container {
        position: relative;
        z-index: 1;
    }

    /* Left content */
    .hero-content {
        color: #fff;
        padding-right: 2rem;
    }

    .hero-badge {
        background: var(--brand-purple, #7058ff);
        color: #fff;
        padding: 4px 18px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: inline-block;
    }

    .hero-title {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 1.15;
        margin-top: 1rem;
        margin-bottom: 1.2rem;
        color: #fff;
    }

    .hero-title .accent {
        color: var(--brand-purple, #7058ff);
    }

    .hero-desc {
        font-size: 1.2rem;
        opacity: 0.85;
        max-width: 90%;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-stats {
        margin-top: 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem 3rem;
    }

    .hero-stats .stat-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--brand-purple, #7058ff);
    }

    .hero-stats .stat-label {
        display: block;
        font-size: 0.85rem;
        opacity: 0.7;
        color: rgba(255, 255, 255, 0.7);
    }

    .hero-link {
        display: inline-block;
        margin-top: 2rem;
        color: #fff;
        font-weight: 600;
        border-bottom: 2px solid var(--brand-purple, #7058ff);
        padding-bottom: 4px;
        transition: 0.3s;
        text-decoration: none;
    }

    .hero-link:hover {
        opacity: 0.8;
        color: #fff;
    }

    /* Right form card */
    .hero-form-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        border-radius: 20px;
        padding: 2.5rem 2.2rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        max-width: 500px;
        margin-left: auto;
    }

    .hero-form-title {
        font-weight: 700;
        font-size: 1.6rem;
        color: var(--brand-dark, #1a1a1a);
        margin-bottom: 0.25rem;
    }

    .hero-form-sub {
        color: var(--brand-gray, #6c757d);
        font-size: 0.95rem;
    }

    .hero-form-sub .accent {
        color: var(--brand-purple, #7058ff);
        font-weight: 700;
    }

    .hero-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .hero-form .form-control {
        width: 100%;
        border-radius: 8px;
        border: 1px solid #dee2e6;
        padding: 12px 14px;
        font-size: 0.9rem;
        font-family: inherit;
        outline: none;
        transition: border-color 0.2s;
        background: #fff;
    }

    .hero-form .form-control:focus {
        border-color: var(--brand-purple, #7058ff);
        box-shadow: 0 0 0 3px rgba(112, 88, 255, 0.12);
    }

    .hero-form .form-control--select {
        color: var(--brand-gray, #6c757d);
    }

    .hero-form .btn-submit {
        width: 100%;
        margin-top: 1.2rem;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .hero-form .privacy-note {
        font-size: 0.75rem;
        color: var(--brand-gray, #6c757d);
        margin-top: 0.8rem;
        text-align: center;
        opacity: 0.7;
    }

    .mt-1 { margin-top: 0.8rem; }

    /* ----- Responsive ----- */
    @media (max-width: 992px) {
        .hero-title {
            font-size: 2.6rem !important;
        }
        .hero-form-card {
            margin-left: 0 !important;
            max-width: 100% !important;
        }
    }

    @media (max-width: 768px) {
        .hero-new {
            min-height: auto !important;
            padding: 60px 0 !important;
        }
        .hero-title {
            font-size: 2rem !important;
        }
        .hero-content {
            padding-right: 0 !important;
        }
        .hero-form .form-row {
            grid-template-columns: 1fr !important;
        }
        .hero-form-card {
            max-width: 100% !important;
            margin-top: 2rem;
        }
        .hero-stats {
            gap: 1rem 1.5rem !important;
        }
        .hero-stats .stat-number {
            font-size: 1.4rem !important;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 1.6rem !important;
        }
        .hero-form .btn-submit {
            font-size: 0.85rem !important;
            padding: 12px 18px !important;
        }
        .hero-form .form-control {
            font-size: 0.85rem !important;
            padding: 10px 12px !important;
        }
        .hero-desc {
            font-size: 1rem !important;
        }
    }
        .badge-hero {
            background-color: rgba(112, 88, 255, 0.15);
            color: #fff;
            border: 1px solid rgba(112, 88, 255, 0.3);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-block;
        }
        .form-wrapper-padding {
            padding: 10px 20px;
        }

        /* ---------- Input Forms ---------- */
        .form-control {
            width: 100%;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 12px 14px;
            font-size: 16px;
            outline: none;
            background: #ffffff;
            color: var(--brand-dark);
        }
        .form-control:focus {
            border-color: var(--brand-purple);
            box-shadow: 0 0 0 3px rgba(112, 88, 255, 0.1);
        }
        .input-group {
            display: flex;
            width: 100%;
        }
        .input-group .form-control {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }
        .input-group .btn-premium {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            white-space: nowrap;
        }

        /* ---------- Logo Showcase Grid ---------- */
        .logo-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem 2.5rem;
            margin-top: 25px;
        }
        .logo-cloud .logo-box {
            width: 130px;
            height: 50px;
            background-color: #eaebf0;
            border-radius: 6px;
            opacity: 0.7;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .logo-cloud .logo-box img {
            width: 120px;
        }
        @media (max-width: 768px) {
            .logo-cloud .logo-box {
                width: 100px;
                height: 40px;
            }
            .logo-cloud .logo-box img {
                width: 80px;
            }
        }
        /* ---------- Standard Service Cards ---------- */
        .service-card {
            border: 1px solid #ebedf3;
            border-radius: 14px;
            padding: 30px 24px;
            background: #ffffff;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .service-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 10px 0;
        }
        .service-card ul {
            padding-left: 1.1rem;
            margin: 15px 0;
        }
        .service-card ul li {
            margin-bottom: 0.5rem;
            font-size: 16px;
            color: var(--brand-gray);
        }

        /* ---------- Methodology System Layout ---------- */
        .methodology-card {
            background: #ffffff;
            border-radius: 14px;
            padding: 30px 24px;
            border-left: 4px solid var(--brand-purple);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }
        .methodology-card h5 {
            font-weight: 700;
            font-size: 1.25rem;
        }

        /* Quotes and Blog Cards Styling overrides */
        .results-quote-card {
            background: #ffffff; 
            border-radius: 16px; 
            padding: 2.5rem; 
            box-shadow: 0 10px 35px rgba(0,0,0,0.03);
        }
        .blog-card {
            border-left: 4px solid var(--brand-purple);
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

        /* ---------- Team Matrix Grid Layout ---------- */
        .team-grid-row {
            display: flex;
            flex-wrap: wrap;
            margin-left: -10px;
            margin-right: -10px;
            row-gap: 20px;
        }
        .team-col {
            flex: 0 0 auto;
            width: 25%;
            padding-left: 10px;
            padding-right: 10px;
        }
        
        .team-member-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 24px 15px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.03);
            text-align: center;
            height: 100%;
        }
        .avatar-placeholder {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #e9ecef;
            margin: 0 auto;
        }
        @media (max-width: 480px){
            .team-card-main {
            margin-bottom: 20px;
        }
        }

        /* ---------- Action Banner CTA ---------- */
        .cta-box-layout {
            padding: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        .cta-box-layout h2 {
            font-size: 1.8rem;
            max-width: 650px;
            line-height: 1.3;
        }

        
        /* Global Padding Standards */
        .section-padding {
            padding: 80px 0;
        }

        /* =========================================
           5. MOBILE ADVANCED RESPONSIVE MEDIA QUERIES
           ========================================= */

        @media (max-width: 992px) {
            .display-5 { font-size: 2.4rem; }
            .display-6 { font-size: 1.9rem; }
            
            .hero-left-card {
                padding: 2.5rem 2rem;
                min-height: auto;
                row-gap: 25px;
            }
            .hero-left-card h1 { font-size: 2.1rem; }
            .form-wrapper-padding { padding: 0; }
            
            .team-col { width: 50%; }
            .cta-box-layout { padding: 2.5rem; }
            .cta-box-layout h2 { font-size: 1.5rem; }
            .footer-brand-desc { padding-right: 0; }
            .text-hidden-mobile { visibility: visible; margin-top: 10px; }
        }

        @media (max-width: 768px) {
            .section-padding { padding: 50px 0; }
            
            /* Responsive Mobile Floating Menu */
            .nav-toggle { display: flex; }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #ffffff;
                padding: 20px;
                box-shadow: 0 10px 25px rgba(0,0,0,0.08);
                gap: 1rem;
                border-top: 1px solid #eee;
                align-items: stretch;
            }
            .nav-list.open { display: flex; }
            .nav-list li { text-align: center; }
            .nav-list .btn-premium { width: 100%; text-align: center; }

            .hero-left-card h1 { font-size: 1.8rem; }
            .logo-cloud { gap: 1.5rem 10px; }
            /* .logo-cloud .logo-box { width: 85px; height: 28px; } */

            .cta-box-layout {
                flex-direction: column !important;
                text-align: center;
                padding: 2.5rem 1.5rem;
            }
            .cta-box-layout h2 { width: 100%; font-size: 1.35rem; }
            .btn-light { width: 100%; text-align: center; }

            .footer-dark .input-group { flex-direction: column; gap: 10px; }
            .footer-dark .input-group .form-control { border-radius: 8px !important; }
            .footer-dark .input-group .btn-premium { border-radius: 50px !important; margin-left: 0 !important; }
        }

        @media (max-width: 575px) {
            .display-5 { font-size: 2rem; }
            .display-6 { font-size: 1.5rem; }
            
            .hero-left-card { padding: 1.8rem 1.5rem; }
            .hero-left-card h1 { font-size: 1.5rem; }
            
            /* Clean 2-column small mobile grids mapping */
            .col-sm-6 {
                width: 100% !important;
            }
            .team-col { width: 100%; }
            .service-card { padding: 22px 18px; }
        }
        .methodology-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-color: #f1f2f4 !important;
}
.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04) !important;
    border-color: rgba(111, 66, 193, 0.15) !important;
}
.text-purple {
    color: var(--brand-purple, #6f42c1);
}
 /* ----- Results Section Styles ----- */
    .results-section {
        background: #f8f9fc;
        padding: 80px 0;
    }

    .results-badge {
        background: var(--brand-purple, #7058ff);
        color: #fff;
        padding: 4px 16px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: inline-block;
    }

    .results-title {
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1.2;
        margin-top: 0.75rem;
    }

    .results-title .accent {
        color: var(--brand-purple, #7058ff);
    }

    .results-list {
        list-style: none;
        padding: 0;
        margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .results-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .results-list .check {
        color: var(--brand-purple, #7058ff);
        font-weight: 700;
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .results-quote-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 2.5rem 2rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        margin-top: 1.5rem;
    }

    .results-quote-card .quote {
        font-weight: 700;
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .results-quote-card hr {
        margin: 1.2rem 0;
        opacity: 0.1;
    }

    /* ----- Right Side: Image + Niche Content ----- */
    .results-right {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .results-image-wrapper {
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .results-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        aspect-ratio: 16 / 10;
    }

    .results-image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(15, 15, 30, 0.85));
        padding: 2rem 1.5rem 1.5rem;
        color: #fff;
    }

    .results-image-overlay .label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.7;
        font-weight: 600;
    }

    .results-image-overlay .stat {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0.2rem 0 0.1rem;
    }

    .results-image-overlay .desc {
        font-size: 0.9rem;
        opacity: 0.85;
        margin: 0;
    }

    /* Niche content cards (below image) */
    .results-niche-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .results-niche-card {
        background: #fff;
        border-radius: 12px;
        padding: 1rem 1.2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        transition: transform 0.2s, box-shadow 0.2s;
        border-left: 3px solid var(--brand-purple, #7058ff);
    }

    .results-niche-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .results-niche-card .niche-icon {
        font-size: 1.2rem;
    }

    .results-niche-card .niche-title {
        font-weight: 600;
        font-size: 0.85rem;
        margin: 0.15rem 0 0.1rem;
        color: var(--brand-dark, #1a1a1a);
    }

    .results-niche-card .niche-desc {
        font-size: 0.75rem;
        color: var(--brand-gray, #6c757d);
        margin: 0;
        line-height: 1.4;
    }

    .results-niche-card .niche-stat {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--brand-purple, #7058ff);
    }

    .row-gap {
        row-gap: 2rem;
    }

    /* ----- Responsive ----- */
    @media (max-width: 992px) {
        .results-title {
            font-size: 2rem;
        }
        .results-niche-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .results-section {
            padding: 50px 0;
        }
        .results-title {
            font-size: 1.6rem;
        }
        .results-quote-card .quote {
            font-size: 1rem;
        }
        .results-image-wrapper img {
            aspect-ratio: 16 / 9;
        }
        .results-image-overlay .stat {
            font-size: 1.4rem;
        }
        .results-niche-grid {
            grid-template-columns: 1fr;
        }
        .results-niche-card {
            padding: 0.8rem 1rem;
        }
        .results-list li {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .results-title {
            font-size: 1.3rem;
        }
        .results-quote-card {
            padding: 1.5rem 1.2rem;
        }
        .results-image-overlay {
            padding: 1.2rem 1rem 1rem;
        }
        .results-image-overlay .stat {
            font-size: 1.2rem;
        }
        .btn-premium {
            font-size: 0.85rem;
            padding: 10px 18px;
        }
    }
      /* ----- Blog Section Styles ----- */
    .blog-section {
        padding: 80px 0;
        background: #ffffff;
    }

    .blog-badge {
        background: var(--brand-purple, #7058ff);
        color: #fff;
        padding: 4px 16px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: inline-block;
    }

    .blog-title {
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1.2;
        margin-top: 0.75rem;
    }

    .blog-title .accent {
        color: var(--brand-purple, #7058ff);
    }

    .blog-subtitle {
        color: var(--brand-gray, #6c757d);
        margin-top: 0.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Blog Card */
    .blog-card {
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid #eee;
        transition: box-shadow 0.25s, transform 0.2s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .blog-card:hover {
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

    .blog-card .blog-image {
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        display: block;
        background: #e9ecef;
    }

    .blog-card .blog-body {
        padding: 1.25rem 1.25rem 1.25rem;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .blog-card .blog-meta {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.7rem;
        color: var(--brand-gray, #6c757d);
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .blog-card .blog-meta .category {
        background: rgba(112, 88, 255, 0.1);
        color: var(--brand-purple, #7058ff);
        padding: 2px 10px;
        border-radius: 50px;
        font-weight: 600;
    }

    .blog-card .blog-meta .date {
        color: #aaa;
    }

    .blog-card .blog-title-sm {
        font-size: 1.05rem;
        font-weight: 700;
        margin: 0 0 0.4rem 0;
        line-height: 1.3;
        color: var(--brand-dark, #1a1a1a);
    }

    .blog-card .blog-title-sm a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
    }

    .blog-card .blog-title-sm a:hover {
        color: var(--brand-purple, #7058ff);
    }

    .blog-card .blog-excerpt {
        font-size: 0.9rem;
        color: var(--brand-gray, #6c757d);
        line-height: 1.5;
        flex: 1;
        margin-bottom: 0.75rem;
    }

    .blog-card .blog-readmore {
        color: var(--brand-purple, #7058ff);
        font-weight: 600;
        font-size: 0.8rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: gap 0.25s;
        margin-top: auto;
    }

    .blog-card .blog-readmore:hover {
        gap: 10px;
        color: var(--brand-purple, #7058ff);
    }

    .blog-card .blog-readmore::after {
        content: "→";
        transition: transform 0.25s;
    }

    .blog-card .blog-readmore:hover::after {
        transform: translateX(4px);
    }

    .row-gap {
        row-gap: 2rem;
    }

    /* View All link */
    .blog-view-all {
        text-align: center;
        margin-top: 2.5rem;
    }

    .blog-view-all a {
        color: var(--brand-purple, #7058ff);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 2px solid rgba(112, 88, 255, 0.2);
        padding-bottom: 4px;
        transition: border-color 0.25s;
    }

    .blog-view-all a:hover {
        border-color: var(--brand-purple, #7058ff);
    }

    /* ----- Responsive ----- */
    @media (max-width: 992px) {
        .blog-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .blog-section {
            padding: 50px 0;
        }
        .blog-title {
            font-size: 1.6rem;
        }
        .blog-card .blog-body {
            padding: 1rem 1rem 1.25rem;
        }
        .blog-card .blog-title-sm {
            font-size: 0.95rem;
        }
        .blog-card .blog-excerpt {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .blog-title {
            font-size: 1.3rem;
        }
        .blog-card .blog-image {
            aspect-ratio: 16 / 9;
        }
        .blog-card .blog-meta {
            font-size: 0.6rem;
            flex-wrap: wrap;
        }
        .blog-subtitle {
            font-size: 0.9rem;
        }
    }

     /* ----- Team Section Styles (no grid, only card/visual styles) ----- */
    .team-section {
        background: #fafafa;
        padding: 0px 0 80px 0;
    }

    .team-badge {
        background: var(--brand-purple, #7058ff);
        color: #fff;
        padding: 4px 16px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: inline-block;
    }

    .team-title {
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1.2;
        margin-top: 0.75rem;
    }

    .team-title .accent {
        color: var(--brand-purple, #7058ff);
    }

    .team-subtitle {
        color: var(--brand-gray, #6c757d);
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0.5rem;
    }

    .team-member-card {
        background: #fff;
        border-radius: 16px;
        padding: 1.5rem 1rem 1.25rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        text-align: center;
        transition: transform 0.25s, box-shadow 0.25s;
        height: 100%;
        max-width: 290px;
        margin: 0 auto;
    }

    .team-member-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .team-member-card .avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto;
        display: block;
        background: #e9ecef;
        border: 3px solid #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .team-member-card .name {
        font-weight: 700;
        font-size: 1rem;
        margin-top: 0.75rem;
        margin-bottom: 0.1rem;
        color: var(--brand-dark, #1a1a1a);
    }

    .team-member-card .role {
        font-size: 0.85rem;
        color: var(--brand-gray, #6c757d);
        margin: 0;
    }

    .team-footer-note {
        font-size: 0.85rem;
        color: var(--brand-gray, #6c757d);
        text-align: center;
        margin-top: 2.5rem;
        padding: 0 1rem;
    }

    /* ----- Responsive tweaks for card sizing ----- */
    @media (max-width: 992px) {
        .team-title {
            font-size: 2rem;
        }
        .team-member-card {
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        .team-section {
            padding: 50px 0;
        }
        .team-title {
            font-size: 1.6rem;
        }
        .team-member-card .avatar {
            width: 80px;
            height: 80px;
        }
        .team-member-card .name {
            font-size: 0.9rem;
        }
        .team-member-card .role {
            font-size: 0.75rem;
        }
        .team-member-card {
            padding: 1rem 0.75rem 1rem;
        }
    }

    @media (max-width: 480px) {
        .team-member-card .avatar {
            width: 70px;
            height: 70px;
        }
        .team-title {
            font-size: 1.3rem;
        }
        .team-subtitle {
            font-size: 0.9rem;
        }
        .team-footer-note {
            font-size: 0.75rem;
        }
        .team-member-card {
            padding: 0.75rem 0.5rem;
        }
        .team-member-card .name {
            font-size: 0.8rem;
        }
        .team-member-card .role {
            font-size: 0.7rem;
        }
    }

     /* ----- Footer specific styles (overrides & enhancements) ----- */
    .footer-dark {
        background-color: var(--brand-dark, #1a1a1a);
        color: #fff;
        padding: 60px 0 50px;
    }

    .footer-dark .footer-lead-text {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.75;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .footer-dark .footer-hr {
        border: 0;
        border-top: 1px solid #333;
        margin: 2.5rem 0;
    }

    .footer-dark h5,
    .footer-dark h6 {
        color: #fff;
        font-weight: 600;
    }

    .footer-dark h5 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .footer-dark h6 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.8;
    }

    .footer-dark .text-secondary {
        color: #a0a0a0 !important;
    }

    .footer-dark .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-dark .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-dark .footer-links a {
        color: #a0a0a0;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 0.9rem;
    }

    .footer-dark .footer-links a:hover {
        color: #fff;
    }

    /* Social links */
    .footer-social {
        display: flex;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }

    .footer-social a {
        display: inline-block;
        background: #333;
        color: #aaa;
        width: 36px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        border-radius: 50%;
        font-size: 0.75rem;
        font-weight: 600;
        text-decoration: none;
        transition: 0.2s;
    }

    .footer-social a:hover {
        background: var(--brand-purple, #7058ff);
        color: #fff;
    }

    /* Newsletter form */
    .footer-dark .input-group {
        display: flex;
        width: 100%;
        margin-top: 0.5rem;
    }

    .footer-dark .input-group .form-control {
        background: #2a2a2a !important;
        border: 1px solid #444;
        color: #fff !important;
        border-radius: 8px 0 0 8px;
        padding: 10px 14px;
        font-size: 0.9rem;
        flex: 1;
    }

    .footer-dark .input-group .form-control::placeholder {
        color: #888;
    }

    .footer-dark .input-group .btn-premium {
        border-radius: 0 8px 8px 0;
        padding: 10px 20px;
        font-size: 0.85rem;
        white-space: nowrap;
        background: var(--brand-purple, #7058ff);
        color: #fff;
        border: none;
        cursor: pointer;
        transition: background 0.2s;
    }

    .footer-dark .input-group .btn-premium:hover {
        background: #5c44eb;
    }

    /* ----- Mobile Responsive Fixes ----- */
    @media (max-width: 768px) {
        .footer-dark {
            padding: 40px 0 30px;
        }

        .footer-dark .footer-lead-text {
            font-size: 0.95rem;
        }

        .footer-dark .display-5 {
            font-size: 1.8rem;
        }

        /* Make all columns stack with proper spacing */
        .footer-dark .row>[class*="col-"] {
            margin-bottom: 2rem;
        }

        .footer-dark .row>[class*="col-"]:last-child {
            margin-bottom: 0;
        }

        /* Newsletter input & button stack vertically */
        .footer-dark .input-group {
            flex-direction: column;
            gap: 0.6rem;
        }

        .footer-dark .input-group .form-control {
            border-radius: 8px !important;
            width: 100%;
        }

        .footer-dark .input-group .btn-premium {
            border-radius: 8px !important;
            width: 100%;
            text-align: center;
            padding: 12px;
        }

        /* Social icons alignment */
        .footer-social {
            justify-content: flex-start;
        }

        /* Reduce font sizes */
        .footer-dark .footer-links a {
            font-size: 0.85rem;
        }

        .footer-dark h6 {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .footer-dark .display-5 {
            font-size: 1.5rem;
        }

        .footer-dark .footer-lead-text {
            font-size: 0.85rem;
        }

        .footer-dark .input-group .btn-premium {
            font-size: 0.8rem;
            padding: 10px;
        }

        .footer-dark .input-group .form-control {
            font-size: 0.85rem;
            padding: 10px 12px;
        }

        .footer-social a {
            width: 32px;
            height: 32px;
            line-height: 32px;
            font-size: 0.7rem;
        }
    }
    /* ----- Testimonial Section Styles ----- */
    .testimonial-section {
        background: #f8f9fc;
        padding: 80px 0;
    }

    .testimonial-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 3rem 3rem 2.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }

    /* Quote icon */
    .testimonial-quote-icon {
        font-size: 3rem;
        color: var(--brand-purple, #7058ff);
        opacity: 0.15;
        line-height: 1;
        margin-bottom: -0.5rem;
        font-family: Georgia, serif;
    }

    /* Star rating */
    .testimonial-stars {
        display: flex;
        gap: 0.2rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-stars .star {
        color: #f5a623;
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .testimonial-stars .star-empty {
        color: #ddd;
    }

    /* Quote text */
    .testimonial-quote {
        font-size: 1.15rem;
        line-height: 1.7;
        color: var(--brand-dark, #1a1a1a);
        margin-bottom: 0.5rem;
    }

    .testimonial-quote .highlight {
        color: var(--brand-purple, #7058ff);
        font-weight: 600;
    }

    .testimonial-quote-full {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--brand-gray, #6c757d);
        margin-bottom: 1.25rem;
    }

    .testimonial-quote-full .highlight {
        color: var(--brand-purple, #7058ff);
        font-weight: 600;
    }

    /* Author & rating */
    .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }

    .testimonial-author .author-info {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .testimonial-author .avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        background: #e9ecef;
        border: 2px solid #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .testimonial-author .author-name {
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--brand-dark, #1a1a1a);
        margin: 0;
    }

    .testimonial-author .author-title {
        font-size: 0.8rem;
        color: var(--brand-gray, #6c757d);
        margin: 0;
    }

    .testimonial-author .stars-inline {
        color: #f5a623;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    /* Company logo/badge */
    .testimonial-company {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.75rem;
        padding-top: 0.5rem;
    }

    .testimonial-company .company-badge {
        background: #f1f3f5;
        border-radius: 8px;
        padding: 0.4rem 1rem 0.4rem 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--brand-dark, #1a1a1a);
    }

    .testimonial-company .company-badge .logo-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        background: var(--brand-purple, #7058ff);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        font-weight: 700;
    }

    .testimonial-company .company-badge .logo-text {
        font-size: 0.8rem;
    }

    .testimonial-company .company-badge .logo-text small {
        display: block;
        font-weight: 400;
        font-size: 0.6rem;
        color: var(--brand-gray, #6c757d);
    }
   

    /* ----- Responsive ----- */
    @media (max-width: 768px) {
        .testimonial-section {
            padding: 50px 0;
        }

        .testimonial-card {
            padding: 1.75rem 1.25rem;
            border-radius: 16px;
            margin: 0 0.5rem;
        }

        .testimonial-quote-icon {
            font-size: 2.2rem;
        }

        .testimonial-quote {
            font-size: 1rem;
        }

        .testimonial-quote-full {
            font-size: 0.9rem;
        }

        .testimonial-author {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .testimonial-author .author-info {
            gap: 0.75rem;
        }

        .testimonial-author .avatar {
            width: 40px;
            height: 40px;
        }

        .testimonial-company {
            justify-content: flex-start;
            width: 100%;
            padding-top: 0.5rem;
        }

        .testimonial-company .company-badge {
            font-size: 0.75rem;
            padding: 0.3rem 0.75rem 0.3rem 0.6rem;
        }

        .testimonial-company .company-badge .logo-icon {
            width: 24px;
            height: 24px;
            font-size: 0.6rem;
        }

        .testimonial-stars .star {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .testimonial-card {
            padding: 1.25rem 0.75rem;
            margin: 0 0.25rem;
        }

        .testimonial-quote {
            font-size: 0.9rem;
        }

        .testimonial-quote-full {
            font-size: 0.82rem;
        }

        .testimonial-author .author-name {
            font-size: 0.85rem;
        }

        .testimonial-author .author-title {
            font-size: 0.7rem;
        }

        .testimonial-company .company-badge {
            font-size: 0.7rem;
            padding: 0.2rem 0.6rem 0.2rem 0.5rem;
        }

        .testimonial-company .company-badge .logo-icon {
            width: 20px;
            height: 20px;
            font-size: 0.5rem;
        }
    }

 /* ============================================================
     CLUTCH AWARD SECTION – Badge | Rating | Testimonial
     ============================================================  */
     /* ----- Clutch Section Styles ----- */
    .clutch-section {
        background: #ffffff;
        padding: 80px 0;
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
    }

    .clutch-wrapper {
        max-width: 960px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 2rem 3.5rem;
    }

    /* Left: Clutch Badge */
    .clutch-badge {
        text-align: center;
        flex-shrink: 0;
    }

    .clutch-badge .clutch-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        color: var(--brand-dark, #1a1a1a);
        background: #f5f5f7;
        padding: 0.3rem 1.2rem;
        border-radius: 8px;
        display: inline-block;
        font-family: 'Helvetica Neue', Arial, sans-serif;
        margin-bottom: 0.25rem;
    }

    .clutch-badge .clutch-logo .clutch-icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        background: var(--brand-purple, #7058ff);
        border-radius: 4px;
        margin-right: 6px;
        vertical-align: middle;
        position: relative;
    }

    .clutch-badge .clutch-logo .clutch-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        background: #fff;
        border-radius: 2px;
    }

    .clutch-badge .clutch-sub {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--brand-gray, #6c757d);
        text-transform: uppercase;
        display: block;
        margin-top: 0.1rem;
    }

    /* Center: Rating & Badge */
    .clutch-rating {
        text-align: center;
        flex: 1;
        min-width: 200px;
    }

    .clutch-rating .company-name {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--brand-dark, #1a1a1a);
        letter-spacing: 0.5px;
    }

    .clutch-rating .stars-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        margin: 0.25rem 0 0.1rem;
    }

    .clutch-rating .stars-row .star {
        color: #f5a623;
        font-size: 1.1rem;
    }

    .clutch-rating .stars-row .rating-text {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--brand-dark, #1a1a1a);
        margin-left: 0.3rem;
    }

    .clutch-rating .stars-row .rating-text span {
        font-weight: 400;
        color: var(--brand-gray, #6c757d);
        font-size: 0.8rem;
    }

    /* Award badge */
    .clutch-award-badge {
        display: inline-block;
        background: var(--brand-purple, #7058ff);
        color: #fff;
        padding: 0.2rem 1rem;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-top: 0.2rem;
    }

    /* Right: Testimonial */
    .clutch-testimonial {
        flex: 1;
        min-width: 220px;
        max-width: 340px;
        text-align: left;
        padding-left: 1.5rem;
        border-left: 3px solid var(--brand-purple, #7058ff);
    }

    .clutch-testimonial .quote-mark {
        color: var(--brand-purple, #7058ff);
        font-size: 1.2rem;
        font-weight: 700;
        opacity: 0.5;
        line-height: 1;
    }

    .clutch-testimonial .quote-text {
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--brand-dark, #1a1a1a);
        margin: 0.1rem 0 0.3rem;
    }

    .clutch-testimonial .quote-author {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--brand-gray, #6c757d);
    }

    .clutch-testimonial .quote-author span {
        font-weight: 400;
        color: #999;
    }

    /* ----- Responsive ----- */
    @media (max-width: 768px) {
        .clutch-section {
            padding: 50px 0;
        }

        .clutch-wrapper {
            flex-direction: column;
            gap: 1.5rem;
            padding: 0 1rem;
        }

        .clutch-badge {
            order: 1;
        }

        .clutch-rating {
            order: 2;
            min-width: auto;
            width: 100%;
        }

        .clutch-testimonial {
            order: 3;
            max-width: 100%;
            padding-left: 1rem;
            border-left: 3px solid var(--brand-purple, #7058ff);
            text-align: left;
        }

        .clutch-rating .stars-row {
            flex-wrap: wrap;
            justify-content: center;
        }

        .clutch-testimonial .quote-text {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .clutch-section {
            padding: 35px 0;
        }

        .clutch-badge .clutch-logo {
            font-size: 1.5rem;
            padding: 0.2rem 0.9rem;
        }

        .clutch-rating .company-name {
            font-size: 1rem;
        }

        .clutch-rating .stars-row .star {
            font-size: 0.95rem;
        }

        .clutch-rating .stars-row .rating-text {
            font-size: 0.8rem;
        }

        .clutch-award-badge {
            font-size: 0.6rem;
            padding: 0.15rem 0.8rem;
        }

        .clutch-testimonial .quote-text {
            font-size: 0.8rem;
        }

        .clutch-testimonial .quote-author {
            font-size: 0.7rem;
        }

        .clutch-wrapper {
            gap: 1rem;
        }
    }

  /* ============================================================
     GOOGLE REVIEW SECTION – Logo | Rating | Testimonial
     ============================================================*/  
 
    /* ----- Google Review Section Styles ----- */
    .google-review-section {
        background: #f8f9fc;
        padding: 80px 0;
    }

    .google-review-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 2.5rem 2.5rem 2rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        max-width: 820px;
        margin: 0 auto;
        position: relative;
    }

    /* Google logo row */
    .google-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .google-header .google-logo {
        display: flex;
        align-items: center;
        gap: 4px;
        font-family: 'Helvetica Neue', Arial, sans-serif;
    }

    .google-header .google-logo .g-blue {
        color: #4285F4;
        font-size: 1.3rem;
        font-weight: 700;
    }
    .google-header .google-logo .g-red {
        color: #EA4335;
        font-size: 1.3rem;
        font-weight: 700;
    }
    .google-header .google-logo .g-yellow {
        color: #FBBC05;
        font-size: 1.3rem;
        font-weight: 700;
    }
    .google-header .google-logo .g-green {
        color: #34A853;
        font-size: 1.3rem;
        font-weight: 700;
    }

    .google-header .google-tagline {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--brand-gray, #6c757d);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-left: 0.25rem;
        opacity: 0.7;
    }

    /* Company name */
    .google-company {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--brand-dark, #1a1a1a);
        letter-spacing: 0.5px;
        margin-bottom: 0.1rem;
    }

    /* Rating row */
    .google-rating {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    .google-rating .stars {
        color: #f5a623;
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .google-rating .rating-number {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--brand-dark, #1a1a1a);
    }

    .google-rating .rating-number span {
        font-weight: 400;
        color: var(--brand-gray, #6c757d);
        font-size: 0.85rem;
    }

    /* Testimonial */
    .google-testimonial {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--brand-dark, #1a1a1a);
        margin: 1rem 0 0.75rem;
        padding-left: 0.5rem;
        border-left: 3px solid var(--brand-purple, #7058ff);
        padding-left: 1rem;
    }

    .google-testimonial .quote-mark {
        color: var(--brand-purple, #7058ff);
        font-size: 1.4rem;
        font-weight: 700;
        opacity: 0.4;
        line-height: 1;
        margin-right: 2px;
    }

    .google-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1rem;
        padding-top: 0.75rem;
        border-top: 1px solid #eee;
    }

    .google-author .avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        background: #e9ecef;
        border: 2px solid #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .google-author .author-name {
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--brand-dark, #1a1a1a);
        margin: 0;
    }

    .google-author .author-title {
        font-size: 0.8rem;
        color: var(--brand-gray, #6c757d);
        margin: 0;
    }

    /* ----- Responsive ----- */
    @media (max-width: 768px) {
        .google-review-section {
            padding: 50px 0;
        }

        .google-review-card {
            padding: 1.5rem 1.25rem;
            margin: 0 0.5rem;
            border-radius: 16px;
        }

        .google-header .google-logo .g-blue,
        .google-header .google-logo .g-red,
        .google-header .google-logo .g-yellow,
        .google-header .google-logo .g-green {
            font-size: 1.1rem;
        }

        .google-company {
            font-size: 1rem;
        }

        .google-rating .stars {
            font-size: 1rem;
        }

        .google-rating .rating-number {
            font-size: 0.9rem;
        }

        .google-testimonial {
            font-size: 0.9rem;
            padding-left: 0.75rem;
        }

        .google-author .avatar {
            width: 38px;
            height: 38px;
        }

        .google-author .author-name {
            font-size: 0.85rem;
        }

        .google-author .author-title {
            font-size: 0.7rem;
        }
    }

    @media (max-width: 480px) {
        .google-review-section {
            padding: 35px 0;
        }

        .google-review-card {
            padding: 1rem 0.75rem;
            margin: 0 0.25rem;
        }

        .google-header .google-logo .g-blue,
        .google-header .google-logo .g-red,
        .google-header .google-logo .g-yellow,
        .google-header .google-logo .g-green {
            font-size: 0.95rem;
        }

        .google-header .google-tagline {
            font-size: 0.6rem;
        }

        .google-company {
            font-size: 0.9rem;
        }

        .google-rating .stars {
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .google-rating .rating-number {
            font-size: 0.8rem;
        }

        .google-testimonial {
            font-size: 0.82rem;
            padding-left: 0.5rem;
            margin: 0.75rem 0;
        }

        .google-author .avatar {
            width: 34px;
            height: 34px;
        }

        .google-author .author-name {
            font-size: 0.8rem;
        }

        .google-author .author-title {
            font-size: 0.65rem;
        }

        .google-rating {
            gap: 0.2rem;
        }
    } 
    /* ----- Results Section Styles ----- */
    .results-section {
        background: #f8f9fc;
        padding: 80px 0;
    }

    .results-badge {
        background: var(--brand-purple, #7058ff);
        color: #fff;
        padding: 4px 18px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: inline-block;
    }

    .results-title {
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1.2;
        margin-top: 0.75rem;
        color: var(--brand-dark, #1a1a1a);
    }

    .results-title .accent {
        color: var(--brand-purple, #7058ff);
    }

    .results-list {
        list-style: none;
        padding: 0;
        margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }

    .results-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 1rem;
        line-height: 1.5;
        color: var(--brand-dark, #1a1a1a);
    }

    .results-list .check {
        color: var(--brand-purple, #7058ff);
        font-weight: 700;
        font-size: 1.2rem;
        line-height: 1.4;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .results-list .quote-text {
        font-style: italic;
        font-weight: 500;
        color: var(--brand-dark, #1a1a1a);
    }

    .results-list .quote-text .highlight {
        color: var(--brand-purple, #7058ff);
        font-weight: 700;
    }

    /* Right side testimonial card with image */
    .results-testimonial-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 2.5rem 2.2rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: 1px solid rgba(112, 88, 255, 0.08);
        text-align: center;
    }

    .results-testimonial-card .card-image {
        width: 100%;
        max-width: 280px;
        height: auto;
        border-radius: 12px;
        margin: 0 auto 1.25rem;
        display: block;
        object-fit: cover;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .results-testimonial-card .quote-mark {
        font-size: 2.5rem;
        color: var(--brand-purple, #7058ff);
        opacity: 0.15;
        line-height: 1;
        font-family: Georgia, serif;
        margin-bottom: -0.5rem;
    }

    .results-testimonial-card .quote-main {
        font-weight: 700;
        font-size: 1.1rem;
        line-height: 1.5;
        color: var(--brand-dark, #1a1a1a);
        margin-bottom: 0.75rem;
    }

    .results-testimonial-card .quote-main .highlight {
        color: var(--brand-purple, #7058ff);
    }

    .results-testimonial-card hr {
        margin: 1rem 0;
        opacity: 0.1;
        border-color: #ccc;
    }

    .results-testimonial-card .testimonial-body {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--brand-gray, #6c757d);
        margin: 0;
    }

    .results-testimonial-card .testimonial-body strong {
        color: var(--brand-dark, #1a1a1a);
    }

    /* ----- Responsive ----- */
    @media (max-width: 992px) {
        .results-title {
            font-size: 2rem;
        }

        .results-testimonial-card {
            margin-top: 1.5rem;
            padding: 2rem 1.5rem;
        }

        .results-testimonial-card .card-image {
            max-width: 240px;
        }
    }

    @media (max-width: 768px) {
        .results-section {
            padding: 50px 0;
        }

        .results-title {
            font-size: 1.6rem;
        }

        .results-list li {
            font-size: 0.92rem;
            gap: 10px;
        }

        .results-list .check {
            font-size: 1rem;
        }

        .results-testimonial-card {
            padding: 1.5rem 1.25rem;
            border-radius: 16px;
        }

        .results-testimonial-card .card-image {
            max-width: 200px;
        }

        .results-testimonial-card .quote-main {
            font-size: 1rem;
        }

        .results-testimonial-card .testimonial-body {
            font-size: 0.88rem;
        }

        .results-testimonial-card .quote-mark {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .results-section {
            padding: 35px 0;
        }

        .results-title {
            font-size: 1.3rem;
        }

        .results-list li {
            font-size: 0.85rem;
            gap: 8px;
        }

        .results-list .check {
            font-size: 0.9rem;
        }

        .results-testimonial-card {
            padding: 1.25rem 1rem;
            border-radius: 12px;
        }

        .results-testimonial-card .card-image {
            max-width: 160px;
        }

        .results-testimonial-card .quote-main {
            font-size: 0.9rem;
        }

        .results-testimonial-card .testimonial-body {
            font-size: 0.82rem;
        }

        .results-testimonial-card .quote-mark {
            font-size: 1.6rem;
        }

        .btn-premium {
            font-size: 0.85rem;
            padding: 10px 20px;
        }
    }

    .text-medium {
        font-size: 18px;
    }

       /* ----- Tools Section Styles ----- */
    .tools-section {
        padding: 80px 0 0 0;
    }

    .tools-badge {
        background: var(--brand-purple, #6f42c1);
        color: #fff;
        padding: 4px 18px;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: inline-block;
        text-transform: uppercase;
    }

    .tools-title {
        font-weight: 700;
        font-size: 2.2rem;
        line-height: 1.2;
        margin-top: 0.5rem;
        color: var(--brand-dark, #1a1a1a);
        margin-bottom: 20px;
    }

    .tools-title .text-purple {
        color: var(--brand-purple, #6f42c1);
    }

    .tools-subtitle {
        color: var(--brand-gray, #6c757d);
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0.25rem;
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Tool Card */
    .tool-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 1.5rem 1rem 1.25rem;
        text-align: center;
        border: 1px solid #eef0f4;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .tool-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--brand-purple, #6f42c1);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .tool-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
        border-color: rgba(111, 66, 193, 0.2);
    }

    .tool-card:hover::before {
        opacity: 1;
    }

    .tool-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
        flex-shrink: 0;
        transition: transform 0.3s;
    }

    .tool-card:hover .tool-icon {
        transform: scale(1.08);
    }

    .tool-name {
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--brand-dark, #1a1a1a);
        margin-bottom: 0.3rem;
        letter-spacing: -0.01em;
    }

    .tool-desc {
        font-size: 0.78rem;
        color: #7a7f8a;
        line-height: 1.5;
        margin-bottom: 0.5rem;
        flex: 1;
        max-width: 200px;
    }

    .tool-link {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--brand-purple, #6f42c1);
        text-decoration: none;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        letter-spacing: 0.3px;
    }

    .tool-link:hover {
        color: #4a2b8a;
        gap: 0.5rem;
    }
    .tool-cards-grid {
        margin-bottom: 20px;
    }

    /* View All CTA */
    .btn-tools-cta {
        display: inline-block;
        padding: 0.7rem 2.2rem;
        background: var(--brand-purple, #6f42c1);
        color: #fff;
        font-weight: 600;
        font-size: 0.95rem;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s;
        border: none;
        letter-spacing: 0.3px;
        box-shadow: 0 4px 16px rgba(111, 66, 193, 0.25);
    }

    .btn-tools-cta:hover {
        background: #5a32a8;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(111, 66, 193, 0.35);
        color: #fff;
    }

    .btn-tools-cta span {
        display: inline-block;
        transition: transform 0.25s;
    }

    .btn-tools-cta:hover span {
        transform: translateX(4px);
    }

    /* ----- Responsive ----- */
    @media (max-width: 992px) {
        .tools-section {
            padding: 60px 0;
        }
        .tools-title {
            font-size: 1.8rem;
        }
        .tools-subtitle {
            font-size: 0.95rem;
        }
        .tool-card {
            padding: 1.25rem 0.75rem;
        }
        .tool-icon {
            width: 48px;
            height: 48px;
            font-size: 1.3rem;
        }
        .tool-name {
            font-size: 0.85rem;
        }
        .tool-desc {
            font-size: 0.72rem;
        }
    }

    @media (max-width: 576px) {
        .tools-section {
            padding: 40px 0;
        }
        .tools-title {
            font-size: 1.4rem;
        }
        .tools-subtitle {
            font-size: 0.85rem;
        }
        .tool-card {
            padding: 1rem 0.5rem;
            border-radius: 12px;
        }
        .tool-icon {
            width: 42px;
            height: 42px;
            font-size: 1.1rem;
            border-radius: 10px;
        }
        .tool-name {
            font-size: 0.8rem;
        }
        .tool-desc {
            font-size: 0.68rem;
            max-width: 100%;
        }
        .btn-tools-cta {
            padding: 0.6rem 1.6rem;
            font-size: 0.85rem;
        }
    }