/*
Theme Name: Invoicify
Theme URI: https://Invoicify.com
Author: Invoicify
Description: SaaS Theme
Version: 1.0
Text Domain: Invoicify
*/

/* ============================================================
   1. RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6D4AFF;
    --secondary: #22C55E;
    --electric-magenta: #EC4899;
    --soft-lavender: #f3f0ff;
    --light-border: #E7E3F4;
    --dark-indigo: #1E1B4B;
    --gray-text: #4b4a6b;
    --gradient-primary: linear-gradient(135deg, #6d4aff, #8b5cf6);
    --gradient-hero: linear-gradient(145deg, #5b3df5 0%, #8b5cf6 40%, #a855f7 100%);
    --transition-smooth: cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f9f8fe;
    color: var(--dark-indigo);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.map-section{
    
    width: 100%;
    /* padding: 4rem 3rem; */
    /* background: white; */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
.invoice-table-wrapper{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    margin:35px 0;
    border:1px solid #e5e7eb;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.invoice-table{
    width:100%;
    min-width:900px;
    border-collapse:collapse;
    font-family:inherit;
    background:#fff;
}

.invoice-table th{
    background:#6D4AFF;
    color:#fff;
    padding:16px 20px;
    font-size:17px;
    font-weight:600;
    text-align:left;
    white-space:nowrap;
}

.invoice-table td{
    padding:15px 20px;
    border-bottom:1px solid #ececec;
    vertical-align:top;
    font-size:15px;
    line-height:1.7;
}

.invoice-table tr:nth-child(even){
    background:#fafafa;
}

.invoice-table tr:hover{
    background:#f4f1ff;
}

.invoice-table td:first-child{
    font-weight:600;
    color:#222;
    width:28%;
}

.invoice-table td:nth-child(2){
    width:28%;
}

.invoice-table td:nth-child(3){
    width:44%;
}

@media(max-width:768px){

    .invoice-table{
        min-width:700px;
    }

    .invoice-table th,
    .invoice-table td{
        padding:14px;
        font-size:14px;
    }
}
 /* ============================================================
       BLOG ARCHIVE PAGE
       ============================================================ */

    /* --- Header --- */
    .blog-archive-header {
        padding: 8rem 0 4rem;
        background: linear-gradient(145deg, rgba(109,74,255,0.04), rgba(139,92,246,0.02));
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(231, 227, 244, 0.2);
    }
    .blog-archive-header .orb {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(80px);
        z-index: 0;
    }
    
    .blog-archive-header .orb-1 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(109,74,255,0.08), transparent 70%);
        top: -200px;
        right: -150px;
        animation: floatOrb 8s ease-in-out infinite alternate;
    }
    .blog-archive-header .orb-2 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
        bottom: -150px;
        left: -100px;
        animation: floatOrb 10s ease-in-out infinite alternate-reverse;
    }
    @keyframes floatOrb {
        0% { transform: translate(0, 0) scale(1); }
        100% { transform: translate(30px, -30px) scale(1.1); }
    }
    .blog-archive-header > * {
        position: relative;
        z-index: 1;
    }
    .blog-archive-header .badge-wrap {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(109, 74, 255, 0.06);
        border: 1px solid rgba(109, 74, 255, 0.08);
        padding: 0.35rem 1.4rem 0.35rem 0.8rem;
        border-radius: 100px;
        font-weight: 600;
        font-size: 0.8rem;
        color: #6D4AFF;
        letter-spacing: 0.3px;
        margin-bottom: 0.75rem;
    }
    .blog-archive-header h1 {
        font-size: 3.5rem;
        font-weight: 900;
        letter-spacing: -0.03em;
        color: #1E1B4B;
        line-height: 1.08;
    }
    .blog-archive-header h1 .highlight {
        background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 200%;
        animation: gradientShift 4s ease-in-out infinite alternate;
    }
    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        100% { background-position: 100% 50%; }
    }
    .blog-archive-header .subhead {
        color: #6b6a8b;
        max-width: 600px;
        margin-top: 0.75rem;
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* --- Filter Bar --- */
    .filter-bar {
        padding: 1.5rem 0;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(231, 227, 244, 0.1);
    }
    .filter-bar .filter-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .filter-bar .filter-tag {
        background: rgba(255, 255, 255, 0.4);
        border: 1px solid rgba(231, 227, 244, 0.2);
        padding: 0.3rem 1.2rem;
        border-radius: 100px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #4b4a6b;
        transition: all 0.3s ease;
        text-decoration: none;
        cursor: pointer;
        display: inline-block;
    }
    .filter-bar .filter-tag:hover,
    .filter-bar .filter-tag.active {
        background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
        color: white;
        border-color: transparent;
        box-shadow: 0 4px 16px rgba(109, 74, 255, 0.2);
        transform: translateY(-2px);
    }
    .filter-bar .search-box {
        position: relative;
    }
    .filter-bar .search-box input {
        background: rgba(255, 255, 255, 0.4);
        border: 1px solid rgba(231, 227, 244, 0.2);
        border-radius: 60px;
        padding: 0.5rem 1.2rem 0.5rem 2.8rem;
        font-size: 0.9rem;
        color: #1E1B4B;
        width: 100%;
        transition: all 0.3s ease;
    }
    .filter-bar .search-box input:focus {
        border-color: #6D4AFF;
        box-shadow: 0 0 0 4px rgba(109, 74, 255, 0.06);
        background: rgba(255, 255, 255, 0.7);
        outline: none;
    }
    .filter-bar .search-box i {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #6b6a8b;
    }

    /* --- Blog Grid --- */
    .blog-grid {
        padding: 3rem 0 4rem;
    }

    /* --- Blog Card --- */
    .blog-card {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        overflow: hidden;
        transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        height: 100%;
        position: relative;
    }
    .blog-card::before {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: 28px;
        padding: 1.5px;
        background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.12), rgba(236,72,153,0.08), transparent 70%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }
    .blog-card:hover::before {
        opacity: 1;
    }
    .blog-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 30px 60px -20px rgba(109, 74, 255, 0.12);
        border-color: rgba(109, 74, 255, 0.08);
        background: rgba(255, 255, 255, 0.65);
    }

    .blog-card .card-image {
        position: relative;
        overflow: hidden;
        height: 220px;
    }
    .blog-card .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .blog-card:hover .card-image img {
        transform: scale(1.05);
    }
    .blog-card .card-image .category-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: rgba(109, 74, 255, 0.9);
        backdrop-filter: blur(4px);
        color: white;
        padding: 0.2rem 1rem;
        border-radius: 100px;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    .blog-card .card-image .featured-tag {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(236, 72, 153, 0.9);
        backdrop-filter: blur(4px);
        color: white;
        padding: 0.2rem 0.8rem;
        border-radius: 100px;
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .blog-card .card-body {
        padding: 1.5rem 1.8rem 1.8rem;
    }
    .blog-card .card-body .meta {
        display: flex;
        gap: 1rem;
        font-size: 0.75rem;
        color: #6b6a8b;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
    }
    .blog-card .card-body .meta span {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }
    .blog-card .card-body .meta i {
        color: #6D4AFF;
        font-size: 0.7rem;
    }
    .blog-card .card-body .title {
        font-weight: 800;
        font-size: 1.2rem;
        color: #1E1B4B;
        margin-bottom: 0.5rem;
        transition: color 0.3s ease;
        text-decoration: none;
        display: block;
    }
    .blog-card .card-body .title:hover {
        color: #6D4AFF;
    }
    .blog-card .card-body .excerpt {
        color: #6b6a8b;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .blog-card .card-body .read-more {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-weight: 700;
        font-size: 0.85rem;
        color: #6D4AFF;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .blog-card .card-body .read-more i {
        transition: transform 0.3s ease;
    }
    .blog-card .card-body .read-more:hover i {
        transform: translateX(4px);
    }
    .blog-card .card-body .read-more:hover {
        color: #5B3DF5;
    }

    .blog-card .glow-dot {
        position: absolute;
        bottom: 1rem;
        right: 1.2rem;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(109, 74, 255, 0.04);
        transition: all 0.5s ease;
        pointer-events: none;
    }
    .blog-card:hover .glow-dot {
        background: #6D4AFF;
        box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
        transform: scale(2.5);
    }

    /* --- Pagination --- */
    .pagination-wrap {
        padding: 2rem 0 1rem;
    }
    .pagination-wrap .page-link {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(231, 227, 244, 0.2);
        color: #4b4a6b;
        font-weight: 600;
        border-radius: 12px;
        padding: 0.5rem 1rem;
        margin: 0 0.2rem;
        transition: all 0.3s ease;
    }
    .pagination-wrap .page-link:hover {
        background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
        color: white;
        border-color: transparent;
        box-shadow: 0 4px 16px rgba(109, 74, 255, 0.15);
    }
    .pagination-wrap .page-link.active {
        background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
        color: white;
        border-color: transparent;
        box-shadow: 0 4px 16px rgba(109, 74, 255, 0.15);
    }

    .no-posts {
        text-align: center;
        padding: 4rem 0;
    }
    .no-posts h3 {
        font-size: 1.5rem;
        color: #1E1B4B;
        margin-bottom: 0.5rem;
    }
    .no-posts p {
        color: #6b6a8b;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
        .blog-archive-header h1 {
            font-size: 2.2rem;
        }
        .blog-archive-header {
            padding: 6rem 0 3rem;
        }
        .blog-card .card-image {
            height: 180px;
        }
        .blog-card .card-body {
            padding: 1.2rem 1.2rem 1.5rem;
        }
        .filter-bar .filter-tags {
            justify-content: center;
        }
        .filter-bar .search-box {
            margin-top: 0.5rem;
        }
    }
    @media (max-width: 480px) {
        .blog-archive-header h1 {
            font-size: 1.8rem;
        }
        .blog-card .card-body .title {
            font-size: 1rem;
        }
        .blog-card .card-body .excerpt {
            font-size: 0.8rem;
        }
    }


        /* ============================================================
           SERVICES PAGE — FULL PAGE
           ============================================================ */

        /* --- Hero Section --- */
        .services-hero {
            padding: 8rem 0 5rem;
            background: linear-gradient(145deg, rgba(109,74,255,0.04), rgba(139,92,246,0.02));
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(231, 227, 244, 0.2);
        }
        .services-hero .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(80px);
            z-index: 0;
        }
        .services-hero .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(109,74,255,0.08), transparent 70%);
            top: -200px;
            right: -150px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .services-hero .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }
        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }
        .services-hero > * {
            position: relative;
            z-index: 1;
        }
        .services-hero .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
        }
        .services-hero h1 {
            font-size: 4rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.05;
        }
        .services-hero h1 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .services-hero .lead-text {
            color: #6b6a8b;
            font-size: 1.15rem;
            line-height: 1.8;
            max-width: 600px;
        }
        .services-hero .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .services-hero .btn-primary-glow {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
        }
        .services-hero .btn-primary-glow:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 16px 40px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .services-hero .btn-outline-soft {
            background: transparent;
            color: #4b4a6b;
            border: 1.5px solid #E7E3F4;
            padding: 0.7rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .services-hero .btn-outline-soft:hover {
            border-color: #6D4AFF;
            color: #6D4AFF;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.06);
        }
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .trust-badges .badge-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            color: #4b4a6b;
            background: rgba(255,255,255,0.4);
            padding: 0.3rem 1rem;
            border-radius: 100px;
            border: 1px solid rgba(231,227,244,0.3);
        }
        .trust-badges .badge-item i {
            color: #6D4AFF;
        }
.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
    color:black;
}
        /* --- Section Wrapper --- */
        .section-wrap {
            padding: 4rem 0;
            position: relative;
        }
        .section-wrap.bg-soft {
            background: rgba(243, 240, 255, 0.3);
        }
        .section-wrap.bg-white {
            background: rgba(255, 255, 255, 0.5);
        }
        .section-wrap.bg-gradient {
            background: linear-gradient(145deg, rgba(109,74,255,0.04), rgba(139,92,246,0.02));
        }

        /* --- Section Headers --- */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.3rem 1.2rem 0.3rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.7rem;
            color: #6D4AFF;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #1E1B4B;
            line-height: 1.1;
            margin-top: 0.5rem;
        }
        .section-title .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-sub {
            color: #6b6a8b;
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 700px;
        }

        /* --- Feature Cards --- */
        .feature-card {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 2rem 1.8rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.12), rgba(236,72,153,0.08), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .feature-card:hover::before {
            opacity: 1;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px -16px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.65);
        }
        .feature-card .f-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(109,74,255,0.06), rgba(139,92,246,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #6D4AFF;
            margin-bottom: 1rem;
            transition: all 0.45s ease;
            border: 1px solid rgba(109,74,255,0.04);
        }
        .feature-card:hover .f-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
            transform: scale(1.05) rotate(-3deg);
        }
        .feature-card h5 {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1E1B4B;
            margin-bottom: 0.4rem;
            transition: color 0.3s ease;
        }
        .feature-card:hover h5 {
            color: #6D4AFF;
        }
        .feature-card p {
            color: #6b6a8b;
            font-size: 0.92rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .feature-card .glow-dot {
            position: absolute;
            bottom: 1rem;
            right: 1.2rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        .feature-card:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }

        /* --- Comparison Table --- */
        .compare-table-wrap {
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid rgba(231, 227, 244, 0.2);
            transition: all 0.3s ease;
        }
        .compare-table-wrap:hover {
            box-shadow: 0 16px 48px rgba(109, 74, 255, 0.04);
        }
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(4px);
        }
        .compare-table th {
            padding: 1.2rem 1.5rem;
            text-align: left;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            color: #1E1B4B;
            border-bottom: 2px solid rgba(109, 74, 255, 0.06);
        }
        .compare-table td {
            padding: 1rem 1.5rem;
            font-size: 0.92rem;
            color: #4b4a6b;
            border-bottom: 1px solid rgba(231, 227, 244, 0.15);
            transition: all 0.3s ease;
        }
        .compare-table tr:last-child td {
            border-bottom: none;
        }
        .compare-table tbody tr {
            transition: all 0.3s ease;
            cursor: default;
        }
        .compare-table tbody tr:hover {
            background: rgba(109, 74, 255, 0.03);
        }
        .compare-table tbody tr:hover td:first-child {
            color: #6D4AFF;
            font-weight: 600;
        }
        .compare-table .col-invoicefy {
            background: rgba(109, 74, 255, 0.03);
            border-left: 1px solid rgba(109, 74, 255, 0.06);
        }
        .compare-table .col-generic {
            background: rgba(239, 68, 68, 0.02);
            border-left: 1px solid rgba(239, 68, 68, 0.04);
        }
        .compare-table .th-invoicefy {
            color: #6D4AFF;
            font-weight: 700;
        }
        .compare-table .th-generic {
            color: #EF4444;
            font-weight: 700;
        }
        .compare-table .status-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            font-size: 0.75rem;
            margin-right: 0.4rem;
        }
        .compare-table .status-icon.check {
            background: rgba(34, 197, 94, 0.08);
            color: #22C55E;
        }
        .compare-table .status-icon.cross {
            background: rgba(239, 68, 68, 0.08);
            color: #EF4444;
        }

        /* --- Industry Tags --- */
        .industry-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(4px);
            padding: 0.4rem 1.2rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #4b4a6b;
            border: 1px solid rgba(231, 227, 244, 0.2);
            transition: all 0.3s ease;
        }
        .industry-tag:hover {
            background: rgba(109, 74, 255, 0.06);
            border-color: rgba(109, 74, 255, 0.1);
            color: #6D4AFF;
            transform: translateY(-2px);
        }
        .industry-tag i {
            color: #6D4AFF;
        }

        /* --- Flow Steps --- */
        .flow-step {
            text-align: center;
            padding: 1.5rem;
            position: relative;
        }
        .flow-step .step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            margin: 0 auto 0.75rem;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
        }
        .flow-step h5 {
            font-weight: 700;
            font-size: 1rem;
            color: #1E1B4B;
        }
        .flow-step p {
            font-size: 0.85rem;
            color: #6b6a8b;
            line-height: 1.5;
            margin-bottom: 0;
        }
        .flow-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: rgba(109, 74, 255, 0.15);
        }
        @media (max-width: 768px) {
            .flow-arrow {
                transform: rotate(90deg);
                padding: 0.5rem 0;
            }
        }

        /* --- CTA Section --- */
        .cta-section {
            background: linear-gradient(145deg, rgba(109,74,255,0.04), rgba(139,92,246,0.02));
            border-top: 1px solid rgba(231, 227, 244, 0.2);
            border-bottom: 1px solid rgba(231, 227, 244, 0.2);
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section .btn-glow {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 32px rgba(109, 74, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        .cta-section .btn-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .cta-section .btn-glow:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 48px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .cta-section .btn-glow:hover::after {
            opacity: 1;
        }
        .cta-section .btn-glow i {
            transition: transform 0.3s ease;
        }
        .cta-section .btn-glow:hover i {
            transform: translateX(4px);
        }

        /* --- Decorative ring --- */
        .deco-ring {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(109,74,255,0.02);
            border-radius: 50%;
            pointer-events: none;
            animation: spinRing 35s linear infinite;
        }
        @keyframes spinRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .deco-ring-1 { bottom: -80px; right: -50px; }
        .deco-ring-2 { top: -80px; left: -50px; }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .services-hero h1 {
                font-size: 2.5rem;
            }
            .services-hero {
                padding: 6rem 0 3rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .section-wrap {
                padding: 2.5rem 0;
            }
            .compare-table th,
            .compare-table td {
                padding: 0.75rem 1rem;
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .feature-card {
                padding: 1.5rem;
            }
            .compare-table th,
            .compare-table td {
                padding: 0.5rem 0.6rem;
                font-size: 0.7rem;
            }
            .compare-table .status-icon {
                width: 18px;
                height: 18px;
                font-size: 0.6rem;
            }
        }

 .matrix-section {
           
            width: 100%;
            padding: 4rem 3rem;
            background: linear-gradient(145deg, rgba(255,255,255,0.4), rgba(243,240,255,0.2));
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 40px 80px -20px rgba(109, 74, 255, 0.12),
                        0 0 0 1px rgba(109, 74, 255, 0.04);
            position: relative;
            overflow: hidden;
        }

        /* Floating orbs */
        .matrix-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .matrix-section .orb-1 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(109,74,255,0.08), transparent 70%);
            top: -180px;
            right: -150px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .matrix-section .orb-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }

        .matrix-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .matrix-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .matrix-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .matrix-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
        }
        .matrix-header h2 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.08;
        }
        .matrix-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .matrix-header .subhead {
            color: #6b6a8b;
            max-width: 600px;
            margin: 0.5rem auto 0;
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 400;
        }

        /* --- Matrix Table --- */
        .matrix-table-wrap {
            border-radius: 24px;
            width: 70%;
            overflow: hidden;
            border: 1px solid rgba(231, 227, 244, 0.2);
            margin-bottom: 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
        }

        .matrix-table {
            width: 100%;
            border-collapse: collapse;
        }
        .matrix-table th,
        .matrix-table td {
            padding: 1rem 1.2rem;
            text-align: center;
            font-size: 0.95rem;
            border: 1px solid rgba(231, 227, 244, 0.15);
        }

        /* Header row - Supplier types */
        .matrix-table thead th {
            font-weight: 700;
            color: #1E1B4B;
            background: rgba(109, 74, 255, 0.04);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .matrix-table thead th:first-child {
            background: rgba(109, 74, 255, 0.08);
            color: #6D4AFF;
        }

        /* First column - Buyer types */
        .matrix-table tbody th {
            font-weight: 700;
            color: #1E1B4B;
            background: rgba(109, 74, 255, 0.04);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            text-align: center;
        }

        /* Cell styles */
        .matrix-table .cell-in {
            background: rgba(34, 197, 94, 0.08);
            color: #1E1B4B;
            font-weight: 600;
            position: relative;
        }
        .matrix-table .cell-in .check-icon {
            color: #22C55E;
            font-size: 1.1rem;
            margin-right: 0.3rem;
        }

        .matrix-table .cell-out {
            background: rgba(239, 68, 68, 0.06);
            color: #9CA3AF;
            position: relative;
        }
        .matrix-table .cell-out .cross-icon {
            color: #EF4444;
            font-size: 0.9rem;
            margin-right: 0.3rem;
        }

        /* Corner cell - Supplier row header */
        .matrix-table .corner-cell {
            background: rgba(109, 74, 255, 0.06);
            color: #6D4AFF;
            font-weight: 700;
        }

        /* --- Legend --- */
        .matrix-legend {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1rem 0 1.5rem;
            flex-wrap: wrap;
        }
        .matrix-legend .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: #4b4a6b;
        }
        .matrix-legend .legend-item .dot {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            display: inline-block;
        }
        .matrix-legend .legend-item .dot.in {
            background: rgba(34, 197, 94, 0.2);
            border: 1px solid #22C55E;
        }
        .matrix-legend .legend-item .dot.out {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid #EF4444;
        }

        /* --- Bottom Features --- */
        .matrix-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            width: 70%;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(231, 227, 244, 0.2);
        }
        @media (max-width: 768px) {
            .matrix-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .matrix-features {
                grid-template-columns: 1fr;
            }
        }

        .matrix-features .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: #1E1B4B;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }
        .matrix-features .feature-item:hover {
            background: rgba(255, 255, 255, 0.5);
            border-color: rgba(109, 74, 255, 0.08);
            transform: translateY(-2px);
        }
        .matrix-features .feature-item i {
            color: #6D4AFF;
            font-size: 1.2rem;
        }
        .matrix-features .feature-item .check {
            color: #22C55E;
        }

        /* --- Footer --- */
        .matrix-footer {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(231, 227, 244, 0.2);
            margin-top: 0.5rem;
        }
        .matrix-footer .company-name {
            display: inline-block;
            font-weight: 800;
            font-size: 1rem;
            background: linear-gradient(135deg, #6D4AFF, #A855F7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .matrix-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .matrix-header h2 {
                font-size: 2rem;
            }
            .matrix-table th,
            .matrix-table td {
                padding: 0.6rem 0.5rem;
                font-size: 0.75rem;
            }
            .matrix-table .cell-in .check-icon,
            .matrix-table .cell-out .cross-icon {
                font-size: 0.8rem;
            }
            .matrix-legend {
                gap: 1rem;
            }
            .matrix-legend .legend-item {
                font-size: 0.75rem;
            }
            .matrix-features .feature-item {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .matrix-table th,
            .matrix-table td {
                padding: 0.4rem 0.3rem;
                font-size: 0.65rem;
            }
            .matrix-table .cell-in .check-icon,
            .matrix-table .cell-out .cross-icon {
                font-size: 0.6rem;
                margin-right: 0.1rem;
            }
            .matrix-features .feature-item {
                font-size: 0.7rem;
                padding: 0.3rem 0.6rem;
            }
        }
.fields-section {
            
            width: 100%;
            padding: 4rem 3rem;
            background: white;
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 40px 80px -20px rgba(109, 74, 255, 0.12),
                        0 0 0 1px rgba(109, 74, 255, 0.04);
            position: relative;
            overflow: hidden;
        }

        /* Floating orbs */
        .fields-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .fields-section .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(109,74,255,0.08), transparent 70%);
            top: -200px;
            right: -180px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .fields-section .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
            bottom: -180px;
            left: -120px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }

        .fields-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .fields-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .fields-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .fields-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
        }
        .fields-header h2 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.08;
        }
        .fields-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        /* --- Categories Grid --- */
        .categories-grid {
            display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 77%;
        }
        @media (max-width: 992px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .fields-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .fields-header h2 {
                font-size: 2rem;
            }
            .categories-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* --- Category Card --- */
        .category-card {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 1.8rem 1.5rem 1.5rem;
         border: 1px solid rgb(167 85 247);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
        }
        .category-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.12), rgba(236,72,153,0.08), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .category-card:hover::before {
            opacity: 1;
        }
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -12px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.65);
        }

        .category-card .cat-header {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 0.75rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(109, 74, 255, 0.06);
        }
        .category-card .cat-icon {
            font-size: 1.6rem;
            color: #6D4AFF;
            flex-shrink: 0;
        }
        .category-card .cat-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1E1B4B;
        }
        .category-card .cat-count {
            margin-left: auto;
            font-size: 0.7rem;
            font-weight: 700;
            color: #6D4AFF;
            background: rgba(109, 74, 255, 0.06);
            padding: 0.15rem 0.6rem;
            border-radius: 100px;
        }

        .category-card .field-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .category-card .field-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.4rem;
            padding: 0.2rem 0;
            color: #4b4a6b;
            font-size: 0.82rem;
            line-height: 1.5;
            border-bottom: 1px solid rgba(231, 227, 244, 0.08);
        }
        .category-card .field-list li:last-child {
            border-bottom: none;
        }
        .category-card .field-list li .field-num {
            flex-shrink: 0;
            font-weight: 700;
            font-size: 0.7rem;
            color: #6D4AFF;
            min-width: 22px;
        }
        .category-card .field-list li .field-name {
            color: #1E1B4B;
        }
        .category-card .field-list li .field-sub {
            color: #6b6a8b;
            font-weight: 400;
        }

        .category-card .glow-dot {
            position: absolute;
            bottom: 0.8rem;
            right: 1rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        .category-card:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }

        /* --- Responsive --- */
        @media (max-width: 480px) {
            .category-card {
                padding: 1.2rem 1rem 1rem;
            }
            .category-card .cat-title {
                font-size: 0.95rem;
            }
            .category-card .field-list li {
                font-size: 0.75rem;
            }
            .category-card .field-list li .field-num {
                font-size: 0.65rem;
                min-width: 18px;
            }
        }
   /* ============================================================
           UAE E-INVOICING KEY REQUIREMENTS
           ============================================================ */
        .requirements-section {
           
            width: 100%;
            padding: 4rem 3rem;
            background: linear-gradient(145deg, rgba(255,255,255,0.4), rgba(243,240,255,0.2));
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 40px 80px -20px rgba(109, 74, 255, 0.12),
                        0 0 0 1px rgba(109, 74, 255, 0.04);
            position: relative;
            overflow: hidden;
        }

        /* Floating orbs */
        .requirements-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .requirements-section .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(109,74,255,0.08), transparent 70%);
            top: -200px;
            right: -180px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .requirements-section .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
            bottom: -180px;
            left: -120px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }

        .requirements-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .requirements-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .requirements-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .requirements-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
        }
        .requirements-header h2 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.08;
        }
        .requirements-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        /* --- Requirements Grid: 5 columns --- */
        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.25rem;
        }
        @media (max-width: 992px) {
            .requirements-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .requirements-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .requirements-header h2 {
                font-size: 2rem;
            }
            .requirements-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }
        @media (max-width: 480px) {
            .requirements-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- Requirement Card --- */
        .req-card {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 20px;
            padding: 1.5rem 1.2rem 1.2rem;
            border: 1px solid rgb(129 86 249);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .req-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 20px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.12), rgba(236,72,153,0.08), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .req-card:hover::before {
            opacity: 1;
        }
        .req-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px -12px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.65);
        }

        .req-card .req-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 10px;
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            font-weight: 800;
            font-size: 0.8rem;
            color: white;
            box-shadow: 0 4px 12px rgba(109, 74, 255, 0.2);
            transition: all 0.4s ease;
            margin-bottom: 0.4rem;
            flex-shrink: 0;
        }
        .req-card:hover .req-number {
            transform: scale(1.05) rotate(-3deg);
            box-shadow: 0 6px 20px rgba(109, 74, 255, 0.3);
        }

        .req-card .req-title {
            font-weight: 700;
            font-size: 0.85rem;
            color: #1E1B4B;
            margin-bottom: 0.3rem;
            transition: color 0.3s ease;
            line-height: 1.2;
        }
        .req-card:hover .req-title {
            color: #6D4AFF;
        }

        .req-card .req-icon {
            font-size: 1.2rem;
            color: #6D4AFF;
            margin-right: 0.3rem;
        }

        .req-card .req-content {
            flex: 1;
        }
        .req-card .req-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .req-card .req-content ul li {
            color: #6b6a8b;
            font-size: 0.75rem;
            line-height: 1.5;
            padding: 0.15rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.3rem;
        }
        .req-card .req-content ul li i {
            color: #6D4AFF;
            font-size: 0.6rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        .req-card .req-content ul li strong {
            color: #1E1B4B;
        }

        .req-card .glow-dot {
            position: absolute;
            bottom: 0.6rem;
            right: 0.8rem;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        .req-card:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 16px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }

        /* --- Responsive text adjustments --- */
        @media (max-width: 768px) {
            .req-card {
                padding: 1.2rem 1rem 1rem;
            }
            .req-card .req-title {
                font-size: 0.8rem;
            }
            .req-card .req-content ul li {
                font-size: 0.7rem;
            }
            .req-card .req-number {
                width: 28px;
                height: 28px;
                font-size: 0.7rem;
            }
        }
        @media (max-width: 480px) {
            .req-card .req-title {
                font-size: 0.85rem;
            }
            .req-card .req-content ul li {
                font-size: 0.75rem;
            }
        }

 /* ============================================================
           CERTIFICATIONS — 3-CARD FLEXBOX
           ============================================================ */
        .cert-section {
                
    width: 100%;
    padding: 4rem 3rem;
   background: #1E1B4B;
   
    position: relative;
    overflow: hidden;
        }

        /* Floating orbs */
        .cert-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .cert-section .orb-1 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(109,74,255,0.08), transparent 70%);
            top: -180px;
            right: -150px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .cert-section .orb-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }

        .cert-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .cert-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .cert-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .cert-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
        }
       .cert-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1.08;
}
        .cert-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .cert-header .subhead {
    color: #ffffff;
    max-width: 700px;
    margin: 0.75rem auto 0;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
} 

        /* --- 3-Card Flexbox --- */
        .cert-flex {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: stretch;
                width: 70%;
        }
        @media (max-width: 768px) {
            .cert-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .cert-header h2 {
                font-size: 2rem;
            }
            .cert-flex {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* --- Certification Card --- */
        .cert-card {
            background: white;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 2rem 1.8rem 1.8rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
            text-align: center;
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .cert-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.12), rgba(236,72,153,0.08), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .cert-card:hover::before {
            opacity: 1;
        }
        .cert-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px -16px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.65);
        }

        /* Logo container */
        .cert-card .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            flex-wrap: wrap;
            min-height: 60px;
        }

        /* MOF Badge */
        .cert-card .logo-container .mof-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.2rem;
        }
        .cert-card .logo-container .mof-badge .mof-icon {
            font-size: 2.4rem;
            color: #6D4AFF;
        }
        .cert-card .logo-container .mof-badge .mof-text {
            font-weight: 700;
            font-size: 0.55rem;
            color: #1E1B4B;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            line-height: 1.2;
        }
        .cert-card .logo-container .mof-badge .mof-sub {
            font-weight: 700;
            font-size: 0.5rem;
            color: #6D4AFF;
            text-transform: uppercase;
            letter-spacing: 0.2px;
        }

        /* Microsoft logo */
        .cert-card .logo-container .ms-logo {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(0, 120, 212, 0.06);
            padding: 0.3rem 1rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 120, 212, 0.1);
        }
        .cert-card .logo-container .ms-logo .ms-icon {
            font-size: 2.2rem;
            color: #0078D4;
        }
        .cert-card .logo-container .ms-logo .ms-text {
            font-weight: 700;
            font-size: 1rem;
            color: #0078D4;
        }

        /* Peppol logo */
        .cert-card .logo-container .peppol-logo {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(109, 74, 255, 0.06);
            padding: 0.3rem 1rem;
            border-radius: 10px;
            border: 1px solid rgba(109, 74, 255, 0.1);
        }
        .cert-card .logo-container .peppol-logo .peppol-icon {
            font-size: 2.2rem;
            color: #6D4AFF;
        }
        .cert-card .logo-container .peppol-logo .peppol-text {
            font-weight: 700;
            font-size: 1rem;
            color: #6D4AFF;
        }

        .cert-card .cert-title {
            font-weight: 700;
            font-size: 1rem;
            color: #1E1B4B;
            margin-bottom: 0.3rem;
            transition: color 0.3s ease;
        }
        .cert-card:hover .cert-title {
            color: #6D4AFF;
        }

        .cert-card .cert-desc {
            color: #6b6a8b;
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 0.75rem;
            flex: 1;
        }

        .cert-card .cert-badge {
            display: inline-block;
            background: rgba(109, 74, 255, 0.04);
            border: 1px solid rgba(109, 74, 255, 0.06);
            padding: 0.25rem 1rem;
            border-radius: 100px;
            font-size: 0.65rem;
            font-weight: 700;
            color: #6D4AFF;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .cert-card .glow-dot {
            position: absolute;
            bottom: 0.8rem;
            right: 1rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        .cert-card:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }

        /* --- Responsive --- */
        @media (max-width: 480px) {
            .cert-card {
                padding: 1.5rem 1rem;
            }
            .cert-card .logo-container .ms-logo .ms-icon {
                font-size: 1.8rem;
            }
            .cert-card .logo-container .peppol-logo .peppol-icon {
                font-size: 1.8rem;
            }
            .cert-card .logo-container .mof-badge .mof-icon {
                font-size: 2rem;
            }
            .cert-card .cert-title {
                font-size: 0.85rem;
            }
            .cert-card .cert-desc {
                font-size: 0.75rem;
            }
        }
 /* ============================================================
           ERP INTEGRATIONS SLIDER
           ============================================================ */
        .slider-section {
           
            width: 100%;
            padding: 4rem 3rem;
            background: linear-gradient(145deg, rgba(255,255,255,0.4), rgba(243,240,255,0.2));
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 40px 80px -20px rgba(109, 74, 255, 0.12),
                        0 0 0 1px rgba(109, 74, 255, 0.04);
            position: relative;
            overflow: hidden;
        }

        /* Floating orbs */
        .slider-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .slider-section .orb-1 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(109,74,255,0.08), transparent 70%);
            top: -180px;
            right: -150px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .slider-section .orb-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }

        .slider-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .slider-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .slider-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .slider-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
        }
        .slider-header h2 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.08;
        }
        .slider-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .slider-header .subhead {
            color: #6b6a8b;
            max-width: 600px;
            margin: 0.75rem auto 0;
            font-size: 1.05rem;
            line-height: 1.7;
            font-weight: 400;
        }

        /* ============================================================
           SLIDER
           ============================================================ */
        .slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            padding: 0.5rem 0;
        }

        .slider-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollSlider 126s linear infinite;
    width: max-content;
}
        .slider-track:hover {
            animation-play-state: paused;
        }

        @keyframes scrollSlider {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- Slide Item --- */
        .slide-item {
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 20px;
            padding: 1.2rem 1.8rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 160px;
            min-height: 100px;
            text-align: center;
            position: relative;
            flex-shrink: 0;
        }
        .slide-item:hover {
            transform: translateY(-6px) scale(1.02);
            border-color: rgba(109, 74, 255, 0.15);
            box-shadow: 0 16px 40px -12px rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.6);
        }

        .slide-item .logo-icon {
            font-size: 2.2rem;
            color: #6D4AFF;
            margin-bottom: 0.4rem;
            transition: all 0.4s ease;
        }
        .slide-item:hover .logo-icon {
            transform: scale(1.05) rotate(-3deg);
            color: #6D4AFF;
        }

        .slide-item .logo-text {
            font-weight: 700;
            font-size: 0.85rem;
            color: #1E1B4B;
            line-height: 1.3;
            transition: color 0.3s ease;
        }
        .slide-item:hover .logo-text {
            color: #6D4AFF;
        }

        .slide-item .logo-sub {
            font-size: 0.6rem;
            font-weight: 500;
            color: #6b6a8b;
            margin-top: 0.1rem;
        }

        .slide-item .glow-dot {
            position: absolute;
            bottom: 0.6rem;
            right: 0.8rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        .slide-item:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }

        /* --- Category badges --- */
        .category-badge {
            display: inline-block;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.2rem 0.8rem;
            border-radius: 100px;
            font-size: 0.6rem;
            font-weight: 700;
            color: #6D4AFF;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            margin-top: 0.2rem;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .slider-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .slider-header h2 {
                font-size: 2rem;
            }
            .slide-item {
                min-width: 130px;
                min-height: 80px;
                padding: 1rem 1.2rem;
            }
            .slide-item .logo-icon {
                font-size: 1.8rem;
            }
            .slide-item .logo-text {
                font-size: 0.75rem;
            }
            .slider-track {
                gap: 1rem;
                animation-duration: 25s;
            }
        }
        @media (max-width: 480px) {
            .slide-item {
                min-width: 110px;
                min-height: 70px;
                padding: 0.8rem 0.8rem;
                border-radius: 14px;
            }
            .slide-item .logo-icon {
                font-size: 1.4rem;
            }
            .slide-item .logo-text {
                font-size: 0.65rem;
            }
            .slide-item .logo-sub {
                font-size: 0.5rem;
            }
            .slider-track {
                gap: 0.75rem;
                animation-duration: 20s;
            }
        }

   /* ============================================================
           END-TO-END PARTNER FLOW SECTION
           ============================================================ */
      

        /* ============================================================
           SECTION 1: CHALLENGES — BENTO GRID
           ============================================================ */
        .bento-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 1.25rem;
        }
        .bento-item {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 1.8rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
        }
        .bento-item:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 24px 48px -16px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.65);
        }
        .bento-item .b-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(109,74,255,0.06), rgba(139,92,246,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #6D4AFF;
            margin-bottom: 0.75rem;
            transition: all 0.45s ease;
            border: 1px solid rgba(109,74,255,0.04);
        }
        .bento-item:hover .b-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
            transform: scale(1.05) rotate(-3deg);
        }
        .bento-item h5 {
            font-weight: 700;
            font-size: 1rem;
            color: #1E1B4B;
        }
        .bento-item p {
            color: #6b6a8b;
            font-size: 0.88rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
        .bento-item .glow-dot {
            position: absolute;
            bottom: 0.8rem;
            right: 1rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        .bento-item:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }
        .bento-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }
        @media (max-width: 992px) {
            .bento-grid {
                grid-template-columns: 1fr 1fr;
            }
            .bento-item.large {
                grid-column: span 1;
                grid-row: span 1;
            }
        }
        @media (max-width: 576px) {
            .bento-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================================
           SECTION 2: COMPARISON — SPLIT SCREEN
           ============================================================ */
        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid rgba(231, 227, 244, 0.2);
        }
        .split-left {
            background: linear-gradient(145deg, rgba(109,74,255,0.04), rgba(139,92,246,0.02));
            padding: 2.5rem 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .split-right {
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(4px);
            padding: 2.5rem 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .split-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(231, 227, 244, 0.1);
        }
        .split-item:last-child {
            border-bottom: none;
        }
        .split-item .icon-check {
            color: #22C55E;
            font-size: 1.1rem;
        }
        .split-item .icon-cross {
            color: #EF4444;
            font-size: 1.1rem;
        }
        .split-item .label {
            font-size: 0.9rem;
            color: #4b4a6b;
        }
        .split-left h3 {
            font-weight: 700;
            color: #1E1B4B;
            margin-bottom: 0.5rem;
        }
        .split-left p {
            color: #6b6a8b;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .split-right h3 {
            font-weight: 700;
            color: #1E1B4B;
            margin-bottom: 0.5rem;
        }
        .split-right p {
            color: #6b6a8b;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .split-section {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================================
           SECTION 3: FEATURES — TIMELINE STYLE
           ============================================================ */
        .timeline-features {
            position: relative;
            padding-left: 2.5rem;
        }
        .timeline-features::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, rgba(109,74,255,0.1), rgba(109,74,255,0.3), rgba(109,74,255,0.1));
        }
        .timeline-item {
            position: relative;
            padding: 1.2rem 0 1.2rem 2rem;
            border-bottom: 1px solid rgba(231, 227, 244, 0.1);
        }
        .timeline-item:last-child {
            border-bottom: none;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.1rem;
            top: 1.6rem;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            border: 3px solid white;
            box-shadow: 0 0 0 4px rgba(109,74,255,0.1);
        }
        .timeline-item:hover::before {
            transform: scale(1.2);
            box-shadow: 0 0 0 6px rgba(109,74,255,0.15);
        }
        .timeline-item .tl-icon {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            color: #1E1B4B;
            font-size: 1rem;
        }
        .timeline-item .tl-icon i {
            color: #6D4AFF;
            font-size: 1.2rem;
        }
        .timeline-item p {
            color: #6b6a8b;
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0.3rem 0 0 1.8rem;
        }
        @media (max-width: 576px) {
            .timeline-features {
                padding-left: 1.5rem;
            }
            .timeline-item {
                padding-left: 1rem;
            }
            .timeline-item::before {
                left: -1.6rem;
            }
            .timeline-item p {
                margin-left: 0;
            }
        }

        /* ============================================================
           SECTION 4: WHY CHOOSE — RADIAL CARDS
           ============================================================ */
        .radial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .radial-card {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            border-radius: 50%;
            aspect-ratio: 1/1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            text-align: center;
            position: relative;
            max-width: 200px;
            margin: 0 auto;
        }
        .radial-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.12), rgba(236,72,153,0.08), transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .radial-card:hover::before {
            opacity: 1;
        }
        .radial-card:hover {
            transform: translateY(-6px) scale(1.04);
            box-shadow: 0 30px 60px -20px rgba(109, 74, 255, 0.12);
            background: rgba(255, 255, 255, 0.7);
            border-color: rgba(109, 74, 255, 0.08);
        }
        .radial-card .r-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(109,74,255,0.06), rgba(139,92,246,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #6D4AFF;
            margin-bottom: 0.5rem;
            transition: all 0.45s ease;
            border: 1px solid rgba(109,74,255,0.04);
        }
        .radial-card:hover .r-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
            transform: scale(1.05) rotate(-4deg);
        }
        .radial-card h5 {
            font-weight: 700;
            font-size: 0.85rem;
            color: #1E1B4B;
            line-height: 1.3;
        }
        .radial-card .glow-dot {
            position: absolute;
            bottom: 0.8rem;
            right: 0.8rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        .radial-card:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }
        @media (max-width: 768px) {
            .radial-grid {
                grid-template-columns: 1fr 1fr;
            }
            .radial-card {
                max-width: 160px;
            }
        }
        @media (max-width: 480px) {
            .radial-grid {
                grid-template-columns: 1fr 1fr;
            }
            .radial-card {
                max-width: 130px;
                padding: 1rem;
            }
            .radial-card .r-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .radial-card h5 {
                font-size: 0.7rem;
            }
        }

        /* ============================================================
           SECTION 5: INDUSTRIES — MARQUEE STYLE
           ============================================================ */
        .marquee-wrap {
            overflow: hidden;
            position: relative;
            padding: 1.5rem 0;
        }
        .marquee-wrap::before,
        .marquee-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 60px;
            z-index: 2;
            pointer-events: none;
        }
        .marquee-wrap::before {
            left: 0;
            background: linear-gradient(90deg, #f9f8fe, transparent);
        }
        .marquee-wrap::after {
            right: 0;
            background: linear-gradient(90deg, transparent, #f9f8fe);
        }
        .marquee-track {
            display: flex;
            gap: 2rem;
            animation: marquee 25s linear infinite;
            width: max-content;
        }
        .marquee-track:hover {
            animation-play-state: paused;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .marquee-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255,255,255,0.4);
            backdrop-filter: blur(4px);
            padding: 0.5rem 1.5rem;
            border-radius: 100px;
            border: 1px solid rgba(231,227,244,0.2);
            white-space: nowrap;
            font-weight: 500;
            font-size: 0.9rem;
            color: #4b4a6b;
            transition: all 0.3s ease;
        }
        .marquee-item:hover {
            background: rgba(109,74,255,0.06);
            border-color: rgba(109,74,255,0.1);
            color: #6D4AFF;
            transform: scale(1.05);
        }
        .marquee-item i {
            color: #6D4AFF;
        }

        /* ============================================================
           SECTION 6: HOW IT WORKS — HORIZONTAL SCROLL
           ============================================================ */
        .horizontal-flow {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            padding: 1rem 0.5rem 1.5rem;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        .horizontal-flow::-webkit-scrollbar {
            height: 4px;
        }
        .horizontal-flow::-webkit-scrollbar-track {
            background: rgba(231, 227, 244, 0.2);
            border-radius: 10px;
        }
        .horizontal-flow::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            border-radius: 10px;
        }
        .flow-card {
            flex: 0 0 220px;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 1.8rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            text-align: center;
            scroll-snap-align: start;
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
        }
        .flow-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 24px 48px -16px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.65);
        }
        .flow-card .f-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            margin: 0 auto 0.75rem;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
        }
        .flow-card h5 {
            font-weight: 700;
            font-size: 1rem;
            color: #1E1B4B;
        }
        .flow-card p {
            color: #6b6a8b;
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 0;
        }
        .flow-card .glow-dot {
            position: absolute;
            bottom: 0.8rem;
            right: 1rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        .flow-card:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }
        .flow-arrow-horizontal {
            display: flex;
            align-items: center;
            color: rgba(109, 74, 255, 0.15);
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .flow-arrow-horizontal {
                display: none;
            }
        }

        /* ============================================================
           CTA SECTION
           ============================================================ */
        .cta-section {
            background: linear-gradient(145deg, rgba(109,74,255,0.04), rgba(139,92,246,0.02));
            border-top: 1px solid rgba(231, 227, 244, 0.2);
            border-bottom: 1px solid rgba(231, 227, 244, 0.2);
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section .btn-glow {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 32px rgba(109, 74, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        .cta-section .btn-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .cta-section .btn-glow:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 48px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .cta-section .btn-glow:hover::after {
            opacity: 1;
        }
        .cta-section .btn-glow i {
            transition: transform 0.3s ease;
        }
        .cta-section .btn-glow:hover i {
            transform: translateX(4px);
        }
        .cta-section .btn-outline-cta {
            background: transparent;
            color: #6D4AFF;
            border: 1.5px solid #6D4AFF;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .cta-section .btn-outline-cta:hover {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 40px rgba(109, 74, 255, 0.15);
        }
        .deco-ring {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(109,74,255,0.02);
            border-radius: 50%;
            pointer-events: none;
            animation: spinRing 35s linear infinite;
        }
        @keyframes spinRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .deco-ring-1 { bottom: -80px; right: -50px; }
        .deco-ring-2 { top: -80px; left: -50px; }

        @media (max-width: 768px) {
            .services-hero h1 {
                font-size: 2.5rem;
            }
            .services-hero {
                padding: 6rem 0 3rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .section-wrap {
                padding: 2.5rem 0;
            }
        }

     /* ============================================================
           FULL PAGE CONTACT
           ============================================================ */

        /* --- Hero Section --- */
        .contact-hero {
            padding: 8rem 0 4rem;
            background: linear-gradient(145deg, rgba(109,74,255,0.04), rgba(139,92,246,0.02));
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(231, 227, 244, 0.2);
        }
        .contact-hero .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(80px);
            z-index: 0;
        }
        .contact-hero .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(109,74,255,0.08), transparent 70%);
            top: -200px;
            right: -150px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .contact-hero .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }
        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }
        .contact-hero > * {
            position: relative;
            z-index: 1;
        }
        .contact-hero .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
        }
        .hero-h1{
              font-size: 3rem;
           
        }
        .contact-hero h1 {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.05;
        }
        .contact-hero h1 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .contact-hero .lead-text {
            color: #6b6a8b;
            font-size: 16px;
            line-height: 1.8;
            max-width: 600px;
        }

        /* --- Section Wrapper --- */
        .section-wrap {
            padding: 4rem 0;
            position: relative;
        }
        .section-wrap.bg-soft {
            background: rgba(243, 240, 255, 0.3);
        }
        .section-wrap.bg-white {
            background: rgba(255, 255, 255, 0.5);
        }

        /* --- Section Headers --- */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.3rem 1.2rem 0.3rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.7rem;
            color: #6D4AFF;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #1E1B4B;
            line-height: 1.1;
            margin-top: 0.5rem;
        }
        .section-title .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-sub {
            color: #6b6a8b;
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 700px;
        }

        /* --- Contact Cards --- */
        .contact-card {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 2rem 1.8rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .contact-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.12), rgba(236,72,153,0.08), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .contact-card:hover::before {
            opacity: 1;
        }
        .contact-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px -16px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.65);
        }
        .contact-card .c-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(109,74,255,0.06), rgba(139,92,246,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #6D4AFF;
            margin: 0 auto 1rem;
            transition: all 0.45s ease;
            border: 1px solid rgba(109,74,255,0.04);
        }
        .contact-card:hover .c-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
            transform: scale(1.05) rotate(-4deg);
        }
        .contact-card h5 {
            font-weight: 700;
            color: #1E1B4B;
            margin-bottom: 0.3rem;
        }
        .contact-card p {
            color: #6b6a8b;
            font-size: 0.92rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
        .contact-card .glow-dot {
            position: absolute;
            bottom: 1rem;
            right: 1.2rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        .contact-card:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }

        /* --- Form Section --- */
        .form-wrapper {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 28px;
            padding: 3rem 3rem 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
        }
        .form-wrapper::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 28px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.08), rgba(236,72,153,0.06), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .form-wrapper:hover::before {
            opacity: 1;
        }
        .form-wrapper:hover {
            border-color: rgba(109, 74, 255, 0.06);
            box-shadow: 0 20px 40px -12px rgba(109, 74, 255, 0.04);
            background: rgba(255, 255, 255, 0.6);
        }

        .form-wrapper .form-control {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(231, 227, 244, 0.4);
            border-radius: 14px;
            padding: 0.75rem 1.2rem;
            font-size: 0.9rem;
            color: #1E1B4B;
            transition: all 0.3s ease;
        }
        .form-wrapper .form-control:focus {
            border-color: #6D4AFF;
            box-shadow: 0 0 0 4px rgba(109, 74, 255, 0.06);
            background: rgba(255, 255, 255, 0.7);
        }
        .form-wrapper .form-control::placeholder {
            color: #a8a8c8;
        }
        .form-wrapper .form-label {
            font-weight: 600;
            font-size: 0.8rem;
            color: #1E1B4B;
            margin-bottom: 0.3rem;
        }
        .form-wrapper .btn-submit {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.8rem 2.5rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow: 0 8px 32px rgba(109, 74, 255, 0.2);
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        .form-wrapper .btn-submit::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .form-wrapper .btn-submit:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 16px 40px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .form-wrapper .btn-submit:hover::after {
            opacity: 1;
        }
        .form-wrapper .btn-submit i {
            transition: transform 0.3s ease;
        }
        .form-wrapper .btn-submit:hover i {
            transform: translateX(4px);
        }

        /* --- Map Section --- */
        .map-wrapper {
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 8px 32px rgba(0,0,0,0.02);
            transition: all 0.45s ease;
            height: 100%;
            min-height: 400px;
        }
        .map-wrapper:hover {
            box-shadow: 0 16px 48px rgba(109, 74, 255, 0.04);
            border-color: rgba(109, 74, 255, 0.06);
        }
        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: 0;
            display: block;
        }

        /* --- Social Links --- */
        .social-links {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            margin-top: 1rem;
        }
        .social-links a {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4b4a6b;
            font-size: 1.2rem;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
        }
        .social-links a:hover {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 12px 28px rgba(109, 74, 255, 0.15);
            border-color: transparent;
        }

        /* --- Decorative ring --- */
        .deco-ring {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(109,74,255,0.02);
            border-radius: 50%;
            pointer-events: none;
            animation: spinRing 35s linear infinite;
        }
        @keyframes spinRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .deco-ring-1 { bottom: -80px; right: -50px; }
        .deco-ring-2 { top: -80px; left: -50px; }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            .contact-hero {
                padding: 6rem 0 3rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .section-wrap {
                padding: 2.5rem 0;
            }
            .form-wrapper {
                padding: 2rem 1.2rem;
            }
            .map-wrapper {
                min-height: 300px;
            }
            .map-wrapper iframe {
                min-height: 300px;
            }
        }
        @media (max-width: 480px) {
            .contact-card {
                padding: 1.5rem 1rem;
            }
            .contact-card .c-icon {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
            .social-links a {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
  /* --- Hero Section --- */
        .about-hero {
            padding: 8rem 0 5rem;
            background: linear-gradient(145deg, rgba(109,74,255,0.04), rgba(139,92,246,0.02));
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(231, 227, 244, 0.2);
        }
        .about-hero .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(80px);
            z-index: 0;
        }
        .about-hero .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(109,74,255,0.08), transparent 70%);
            top: -200px;
            right: -150px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .about-hero .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }
        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }
        .about-hero > * {
            position: relative;
            z-index: 1;
        }
        .about-hero .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
        }
        .about-hero h1 {
            font-size: 4rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.05;
        }
        .about-hero h1 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .about-hero .lead-text {
            color: #6b6a8b;
            font-size: 1.15rem;
            line-height: 1.8;
            max-width: 600px;
        }

        /* --- Hero Image Styles --- */
        .hero-image-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .hero-image-card {
            position: relative;
            width: 100%;
            max-width: 420px;
            border-radius: 32px;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 30px 60px -20px rgba(109, 74, 255, 0.12),
                        0 0 0 1px rgba(109, 74, 255, 0.03);
            padding: 1.8rem 1.8rem 2rem;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            overflow: hidden;
            margin: 0 auto;
        }
        .hero-image-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 40px 80px -20px rgba(109, 74, 255, 0.15),
                        0 0 0 1px rgba(109, 74, 255, 0.06);
            background: rgba(255, 255, 255, 0.5);
        }

        /* Glow behind image */
        .image-glow {
            position: absolute;
            inset: -40px;
            background: radial-gradient(circle at 50% 50%, rgba(109, 74, 255, 0.06), transparent 70%);
            border-radius: 50%;
            filter: blur(40px);
            pointer-events: none;
            z-index: 0;
            transition: all 0.6s ease;
        }
        .hero-image-card:hover .image-glow {
            opacity: 0.8;
            transform: scale(1.1);
        }

        .image-placeholder {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-radius: 24px;
            padding: 0;
            min-height: 280px;
            overflow: hidden;
        }

        .image-placeholder img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 24px;
            transition: transform 0.5s ease;
        }
        .hero-image-card:hover .image-placeholder img {
            transform: scale(1.02);
        }

        /* Floating decorative icons */
        .float-icon {
            position: absolute;
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #6D4AFF;
            box-shadow: 0 8px 24px rgba(0,0,0,0.02);
            transition: all 0.4s ease;
            z-index: 2;
            pointer-events: none;
        }
        .float-icon-1 {
            top: -10px;
            right: -8px;
            animation: floatIcon1 6s ease-in-out infinite;
        }
        .float-icon-2 {
            bottom: 20px;
            left: -15px;
            animation: floatIcon2 7s ease-in-out infinite 0.5s;
        }
        .float-icon-3 {
            top: 40%;
            right: -12px;
            animation: floatIcon3 5.5s ease-in-out infinite 1s;
        }

        @keyframes floatIcon1 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(6deg); }
        }
        @keyframes floatIcon2 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(8px) rotate(-4deg); }
        }
        @keyframes floatIcon3 {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-8px) scale(1.05); }
        }

        .hero-image-card:hover .float-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.15);
        }

        /* --- Section Wrapper --- */
        .section-wrap {
            padding: 4rem 0;
            position: relative;
        }
        .section-wrap.bg-soft {
            background: rgba(243, 240, 255, 0.3);
        }
        .section-wrap.bg-white {
            background: rgba(255, 255, 255, 0.5);
        }

        /* --- Section Headers --- */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.3rem 1.2rem 0.3rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.7rem;
            color: #6D4AFF;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #1E1B4B;
            line-height: 1.1;
            margin-top: 0.5rem;
        }
        .section-title .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-sub {
            color: #6b6a8b;
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 700px;
        }

        /* --- Feature Cards --- */
        .feature-card-about {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 2rem 1.8rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .feature-card-about::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.12), rgba(236,72,153,0.08), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .feature-card-about:hover::before {
            opacity: 1;
        }
        .feature-card-about:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px -16px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.65);
        }
        .feature-card-about .f-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(109,74,255,0.06), rgba(139,92,246,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #6D4AFF;
            margin-bottom: 1rem;
            transition: all 0.45s ease;
            border: 1px solid rgba(109,74,255,0.04);
        }
        .feature-card-about:hover .f-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
            transform: scale(1.05) rotate(-3deg);
        }
        .feature-card-about h5 {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1E1B4B;
            margin-bottom: 0.4rem;
            transition: color 0.3s ease;
        }
        .feature-card-about:hover h5 {
            color: #6D4AFF;
        }
        .feature-card-about p {
            color: #6b6a8b;
            font-size: 0.92rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .feature-card-about .glow-dot {
            position: absolute;
            bottom: 1rem;
            right: 1.2rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        .feature-card-about:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }

        /* --- Story Timeline --- */
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .story-grid {
                grid-template-columns: 1fr;
            }
            .about-hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .section-wrap {
                padding: 2.5rem 0;
            }
            .about-hero {
                padding: 6rem 0 3rem;
            }
            .hero-image-card {
                max-width: 100%;
                padding: 1.2rem;
            }
            .float-icon {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
            .float-icon-1 { top: -5px; right: -5px; }
            .float-icon-2 { bottom: 10px; left: -10px; }
            .float-icon-3 { right: -8px; }
        }

        .story-card {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.45s ease;
            position: relative;
        }
        .story-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -12px rgba(109, 74, 255, 0.06);
            border-color: rgba(109, 74, 255, 0.06);
            background: rgba(255, 255, 255, 0.6);
        }
        .story-card .s-icon {
            font-size: 2rem;
            color: #6D4AFF;
            margin-bottom: 0.5rem;
            display: block;
        }
        .story-card h5 {
            font-weight: 700;
            color: #1E1B4B;
            margin-bottom: 0.3rem;
        }
        .story-card p {
            color: #6b6a8b;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* --- Mission Vision Grid --- */
        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .mv-grid {
                grid-template-columns: 1fr;
            }
        }
        .mv-card {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            border-radius: 28px;
            padding: 2.5rem 2rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.45s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .mv-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 28px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.1), rgba(236,72,153,0.06), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .mv-card:hover::before {
            opacity: 1;
        }
        .mv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px -16px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.65);
        }
        .mv-card .mv-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(109,74,255,0.06), rgba(139,92,246,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #6D4AFF;
            margin: 0 auto 1rem;
            transition: all 0.45s ease;
            border: 1px solid rgba(109,74,255,0.04);
        }
        .mv-card:hover .mv-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
            transform: scale(1.05) rotate(-4deg);
        }
        .mv-card h4 {
            font-weight: 800;
            color: #1E1B4B;
            margin-bottom: 0.5rem;
        }
        .mv-card p {
            color: #6b6a8b;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* --- Why Choose Us List --- */
        .why-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem 2rem;
        }
        @media (max-width: 576px) {
            .why-list {
                grid-template-columns: 1fr;
            }
        }
        .why-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: #4b4a6b;
            padding: 0.4rem 0;
            border-bottom: 1px solid rgba(231, 227, 244, 0.15);
        }
        .why-list li i {
            color: #6D4AFF;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        /* --- CTA --- */
        .cta-section-about {
            background: linear-gradient(145deg, rgba(109,74,255,0.04), rgba(139,92,246,0.02));
            border-top: 1px solid rgba(231, 227, 244, 0.2);
            border-bottom: 1px solid rgba(231, 227, 244, 0.2);
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section-about .btn-glow {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 32px rgba(109, 74, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        .cta-section-about .btn-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .cta-section-about .btn-glow:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 48px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .cta-section-about .btn-glow:hover::after {
            opacity: 1;
        }
        .cta-section-about .btn-glow i {
            transition: transform 0.3s ease;
        }
        .cta-section-about .btn-glow:hover i {
            transform: translateX(4px);
        }

        /* Decorative ring */
        .deco-ring {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(109,74,255,0.02);
            border-radius: 50%;
            pointer-events: none;
            animation: spinRing 35s linear infinite;
        }
        @keyframes spinRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .deco-ring-1 { bottom: -80px; right: -50px; }
        .deco-ring-2 { top: -80px; left: -50px; }

        /* --- Responsive tweaks --- */
        @media (max-width: 480px) {
            .feature-card-about {
                padding: 1.5rem;
            }
            .mv-card {
                padding: 1.8rem 1.2rem;
            }
            .story-card {
                padding: 1.5rem;
            }
            .image-placeholder {
                min-height: 200px;
            }
        }

        /* --- AOS override for hero --- */
        .about-hero [data-aos] {
            transition: none !important;
            transform: none !important;
            opacity: 1 !important;
        }

        /* ============================================================
           REMARKABLE "SUPPORT THROUGH EVERY STAGE" SECTION
           ============================================================ */
        .support-section {
            /* max-width: 1140px; */
            width: 100%;
    padding: 4rem 3rem;
    background: white;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
          
            position: relative;
            overflow: hidden;
        }

        /* Floating orbs */
        .support-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .support-section .orb-1 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(109,74,255,0.10), transparent 70%);
            top: -200px;
            right: -150px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .support-section .orb-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(236,72,153,0.08), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }
        .support-section .orb-3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(0,212,255,0.05), transparent 70%);
            top: 30%;
            left: 10%;
            animation: pulseOrb 7s ease-in-out infinite alternate;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }
        @keyframes pulseOrb {
            0% { transform: scale(1); opacity: 0.3; }
            100% { transform: scale(1.4); opacity: 0.6; }
        }

        .support-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .support-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .support-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .support-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.06);
        }
        .support-header h2 {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.08;
        }
        .support-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .support-header .subhead {
            color: #6b6a8b;
            max-width: 700px;
            margin: 0.75rem auto 0;
            font-size: 1.05rem;
            line-height: 1.8;
            font-weight: 400;
        }

        /* --- Description Row --- */
        .desc-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        @media (max-width: 768px) {
            .support-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .support-header h2 {
                font-size: 2rem;
            }
            .desc-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        .desc-card {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 20px;
            padding: 1.5rem 1.8rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
        }
        .desc-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -12px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.6);
        }
        .desc-card .d-icon {
            font-size: 1.6rem;
            color: #6D4AFF;
            margin-bottom: 0.5rem;
            display: block;
        }
        .desc-card p {
            color: #4b4a6b;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 0;
        }
        .desc-card p strong {
            color: #1E1B4B;
        }

        /* --- Journey Timeline --- */
        .journey-timeline {
            position: relative;
            padding: 1.5rem 0;
        }
        .journey-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, rgba(109,74,255,0.1), rgba(109,74,255,0.3), rgba(109,74,255,0.1));
            border-radius: 4px;
        }
        @media (max-width: 768px) {
            .journey-timeline::before {
                left: 20px;
                transform: none;
            }
        }

        .journey-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem 3rem;
            position: relative;
        }
        @media (max-width: 768px) {
            .journey-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding-left: 2.5rem;
            }
        }

        .journey-item {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 18px;
            padding: 1.2rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 -8px 80px -20px rgb(109 74 255);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .journey-item::before {
            content: '';
            position: absolute;
            left: -1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            border: 3px solid white;
            box-shadow: 0 0 0 4px rgba(109,74,255,0.1), 0 4px 12px rgba(109,74,255,0.15);
            transition: all 0.4s ease;
            z-index: 2;
        }
        .journey-item:hover::before {
            transform: translateY(-50%) scale(1.2);
            box-shadow: 0 0 0 6px rgba(109,74,255,0.15), 0 8px 24px rgba(109,74,255,0.2);
        }
        
        .last-item{
    
    grid-column: 1 / -1; max-width: 50%; justify-self: center;
    
}
   @media (max-width: 768px) {
    .last-item {
        grid-column: 1 / -1;
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }
}
        @media (max-width: 768px) {
            .journey-item::before {
                left: -2.2rem;
            }
            

        }

        .journey-item:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: 0 20px 40px -12px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.7);
        }

        .journey-item .j-number {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.8rem;
            color: #6D4AFF;
            transition: all 0.4s ease;
            border: 1px solid rgba(109,74,255,0.04);
        }
        .journey-item:hover .j-number {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 20px rgba(109, 74, 255, 0.2);
            transform: scale(1.05) rotate(-5deg);
        }

        .journey-item .j-content {
            flex: 1;
        }
        .journey-item .j-content .j-label {
            font-weight: 700;
            font-size: 0.9rem;
            color: #1E1B4B;
            transition: color 0.3s ease;
        }
        .journey-item:hover .j-content .j-label {
            color: #6D4AFF;
        }
        .journey-item .j-content .j-desc {
            font-size: 0.82rem;
            color: #6b6a8b;
            line-height: 1.5;
            margin-top: 0.1rem;
        }

        .journey-item .glow-dot {
            position: absolute;
            bottom: 0.6rem;
            right: 0.8rem;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: none;
        }
        .journey-item:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }

        /* --- Bottom CTA --- */
        .support-cta {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(231, 227, 244, 0.3);
        }
        .support-cta p {
            color: #6b6a8b;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            font-weight: 500;
        }
        .support-cta .btn-glow {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 32px rgba(109, 74, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        .support-cta .btn-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .support-cta .btn-glow:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 48px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .support-cta .btn-glow:hover::after {
            opacity: 1;
        }
        .support-cta .btn-glow i {
            transition: transform 0.3s ease;
        }
        .support-cta .btn-glow:hover i {
            transform: translateX(4px);
        }
     /* Decorative ring */
        .support-section .deco-ring {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(109,74,255,0.02);
            border-radius: 50%;
            bottom: -5%;
            right: -3%;
            pointer-events: none;
            animation: spinRing 35s linear infinite;
        }
        @keyframes spinRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

  /* ============================================================
           CATCHY "WHO NEEDS TO PREPARE" SECTION
           ============================================================ */
        .prepare-section {
            
            width: 100%;
            padding: 4rem 3rem;
            background: linear-gradient(145deg, rgba(255,255,255,0.5), rgba(243,240,255,0.3));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
          
            position: relative;
            overflow: hidden;
        }

        /* Floating orbs */
        .prepare-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .prepare-section .orb-1 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(109,74,255,0.10), transparent 70%);
            top: -200px;
            right: -150px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .prepare-section .orb-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(236,72,153,0.08), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }
        .prepare-section .orb-3 {
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(0,212,255,0.05), transparent 70%);
            top: 40%;
            left: 5%;
            animation: pulseOrb 7s ease-in-out infinite alternate;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }
        @keyframes pulseOrb {
            0% { transform: scale(1); opacity: 0.3; }
            100% { transform: scale(1.4); opacity: 0.6; }
        }

        .prepare-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .prepare-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .prepare-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .prepare-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.06);
        }
        .prepare-header h2 {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.08;
        }
        .prepare-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .prepare-header .subhead {
            color: #6b6a8b;
            max-width: 700px;
            margin: 0.75rem auto 0;
            font-size: 1.05rem;
            line-height: 1.8;
            font-weight: 400;
        }

        /* --- Main Layout: Two Column --- */
        .prepare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }
        @media (max-width: 768px) {
            .prepare-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .prepare-header h2 {
                font-size: 2rem;
            }
            .prepare-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* --- Left Column: Description --- */
        .prepare-text p {
            color: #4b4a6b;
            font-size: 1rem;
            line-height: 1.9;
            margin-bottom: 1rem;
        }
        .prepare-text p strong {
            color: #1E1B4B;
            font-weight: 700;
        }
        .prepare-text .highlight-box {
            background: rgba(109, 74, 255, 0.04);
            border-left: 4px solid #6D4AFF;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin: 1rem 0;
        }
        .prepare-text .highlight-box p {
            margin-bottom: 0;
            color: #1E1B4B;
            font-weight: 500;
        }
        .prepare-text .highlight-box p i {
            color: #6D4AFF;
            margin-right: 0.5rem;
        }

        /* --- Right Column: Animated "Particle" Cards --- */
        .particle-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        @media (max-width: 480px) {
            .particle-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem;
            }
        }

        .particle-item {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 18px;
            padding: 1.2rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 4px 16px rgba(0,0,0,0.02);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
            min-height: 70px;
        }
        /* Glow border on hover */
        .particle-item::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 18px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.15), rgba(236,72,153,0.10), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .particle-item:hover::before {
            opacity: 1;
        }

        .particle-item:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 20px 40px -12px rgba(109, 74, 255, 0.10);
            background: rgba(255, 255, 255, 0.7);
            border-color: rgba(109, 74, 255, 0.06);
        }

        /* Animated floating effect - staggered */
        .particle-item:nth-child(1) { animation: floatParticle 6s ease-in-out infinite; }
        .particle-item:nth-child(2) { animation: floatParticle 7s ease-in-out infinite 0.5s; }
        .particle-item:nth-child(3) { animation: floatParticle 5.5s ease-in-out infinite 1s; }
        .particle-item:nth-child(4) { animation: floatParticle 6.5s ease-in-out infinite 0.3s; }
        .particle-item:nth-child(5) { animation: floatParticle 7.5s ease-in-out infinite 0.8s; }
        .particle-item:nth-child(6) { animation: floatParticle 5s ease-in-out infinite 1.2s; }

        @keyframes floatParticle {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-6px); }
        }

        .particle-item .p-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(109,74,255,0.06), rgba(139,92,246,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #6D4AFF;
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            border: 1px solid rgba(109,74,255,0.04);
        }
        .particle-item:hover .p-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
            transform: scale(1.05) rotate(-4deg);
        }

        .particle-item .p-text {
            font-weight: 600;
            font-size: 0.85rem;
            color: #1E1B4B;
            line-height: 1.3;
            transition: color 0.3s ease;
        }
        .particle-item:hover .p-text {
            color: #6D4AFF;
        }

        .particle-item .glow-dot {
            position: absolute;
            bottom: 0.6rem;
            right: 0.6rem;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: none;
        }
        .particle-item:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2.5);
        }

        /* --- Bottom CTA --- */
        .prepare-cta {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(231, 227, 244, 0.3);
        }
        .prepare-cta p {
            color: #6b6a8b;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            font-weight: 500;
        }
        .prepare-cta .btn-glow {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 32px rgba(109, 74, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        .prepare-cta .btn-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .prepare-cta .btn-glow:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 48px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .prepare-cta .btn-glow:hover::after {
            opacity: 1;
        }
        .prepare-cta .btn-glow i {
            transition: transform 0.3s ease;
        }
        .prepare-cta .btn-glow:hover i {
            transform: translateX(4px);
        }

        /* Decorative ring */
        .prepare-section .deco-ring {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(109,74,255,0.02);
            border-radius: 50%;
            bottom: -5%;
            right: -3%;
            pointer-events: none;
            animation: spinRing 35s linear infinite;
        }
        @keyframes spinRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
   /* ============================================================
           STYLISH COMPARISON SECTION — TRADITIONAL vs ELECTRONIC
           ============================================================ */
        .compare-section {
            max-width: 1140px;
            width: 100%;
            padding: 4rem 3rem;
            /* background: linear-gradient(145deg, rgba(255,255,255,0.5), rgba(243,240,255,0.3));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 40px 80px -20px rgba(109, 74, 255, 0.12),
                        0 0 0 1px rgba(109, 74, 255, 0.04); */
            position: relative;
            overflow: hidden;
        }

        /* Floating orbs */
        .compare-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .compare-section .orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(109,74,255,0.10), transparent 70%);
            top: -180px;
            right: -120px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .compare-section .orb-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(236,72,153,0.08), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }
        .compare-section .orb-3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(0,212,255,0.06), transparent 70%);
            top: 30%;
            left: 15%;
            animation: pulseOrb 7s ease-in-out infinite alternate;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }
        @keyframes pulseOrb {
            0% { transform: scale(1); opacity: 0.3; }
            100% { transform: scale(1.4); opacity: 0.6; }
        }

        .compare-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .compare-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .compare-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .compare-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.06);
        }
        .compare-header h2 {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.08;
        }
        .compare-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .compare-header .subhead {
            color: #6b6a8b;
            max-width: 700px;
            margin: 0.75rem auto 0;
            font-size: 1.05rem;
            line-height: 1.8;
            font-weight: 400;
        }

        /* --- Description Row --- */
        .desc-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        @media (max-width: 768px) {
            .desc-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .compare-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .compare-header h2 {
                font-size: 2rem;
            }
        }

        .desc-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 1.5rem 1.8rem;
    border: 1px solid rgb(148 82 250);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}
        .desc-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -12px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
            background: rgba(255, 255, 255, 0.6);
        }
        .desc-card .d-icon {
            font-size: 1.6rem;
            color: #6D4AFF;
            margin-bottom: 0.5rem;
            display: block;
        }
        .desc-card p {
            color: #4b4a6b;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 0;
        }
        .desc-card p strong {
            color: #1E1B4B;
        }

        /* --- Comparison Table (unique design) --- */
        .compare-table-wrap {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,0,0,0.02);
            border: 1px solid rgba(231, 227, 244, 0.2);
            transition: all 0.3s ease;
        }
        .compare-table-wrap:hover {
            box-shadow: 0 16px 48px rgba(109, 74, 255, 0.04);
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(4px);
        }
        .compare-table th {
            padding: 1.2rem 1.5rem;
            text-align: left;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            color: #1E1B4B;
            border-bottom: 2px solid rgba(109, 74, 255, 0.06);
        }
        .compare-table th:first-child {
            border-radius: 28px 0 0 0;
        }
        .compare-table th:last-child {
            border-radius: 0 28px 0 0;
        }
        .compare-table td {
            padding: 1rem 1.5rem;
            font-size: 0.92rem;
            color: #4b4a6b;
            border-bottom: 1px solid rgba(231, 227, 244, 0.15);
            transition: all 0.3s ease;
            position: relative;
        }
        .compare-table tr:last-child td {
            border-bottom: none;
        }
        .compare-table tr:last-child td:first-child {
            border-radius: 0 0 0 28px;
        }
        .compare-table tr:last-child td:last-child {
            border-radius: 0 0 28px 0;
        }

        /* Row hover */
        .compare-table tbody tr {
            transition: all 0.3s ease;
            cursor: default;
        }
        .compare-table tbody tr:hover {
            background: rgba(109, 74, 255, 0.03);
        }
        .compare-table tbody tr:hover td:first-child {
            color: #6D4AFF;
            font-weight: 600;
        }

        /* Column headers with color accents */
        .compare-table .col-traditional {
            background: rgba(239, 68, 68, 0.03);
            border-left: 1px solid rgba(239, 68, 68, 0.06);
        }
        .compare-table .col-electronic {
            background: rgba(34, 197, 94, 0.03);
            border-left: 1px solid rgba(34, 197, 94, 0.06);
        }

        .compare-table .th-traditional {
            color: #EF4444;
            font-weight: 700;
        }
        .compare-table .th-electronic {
            color: #22C55E;
            font-weight: 700;
        }

        /* Status icons */
        .compare-table .status-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }
        .compare-table .status-icon.cross {
            background: rgba(239, 68, 68, 0.08);
            color: #EF4444;
        }
        .compare-table .status-icon.check {
            background: rgba(34, 197, 94, 0.08);
            color: #22C55E;
        }
        .compare-table tbody tr:hover .status-icon.cross {
            background: rgba(239, 68, 68, 0.15);
            transform: scale(1.05);
        }
        .compare-table tbody tr:hover .status-icon.check {
            background: rgba(34, 197, 94, 0.15);
            transform: scale(1.05);
        }

        /* Row highlight animation on hover - pulse effect */
        .compare-table tbody tr::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, #6D4AFF, #8B5CF6);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .compare-table tbody tr:hover::after {
            opacity: 1;
        }

        /* --- Bottom CTA --- */
        .compare-cta {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(231, 227, 244, 0.3);
        }
        .compare-cta p {
            color: #6b6a8b;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            font-weight: 500;
        }
        .compare-cta .btn-glow {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 32px rgba(109, 74, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        .compare-cta .btn-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .compare-cta .btn-glow:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 48px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .compare-cta .btn-glow:hover::after {
            opacity: 1;
        }
        .compare-cta .btn-glow i {
            transition: transform 0.3s ease;
        }
        .compare-cta .btn-glow:hover i {
            transform: translateX(4px);
        }

        /* Responsive table */
        @media (max-width: 768px) {
            .compare-table th,
            .compare-table td {
                padding: 0.75rem 1rem;
                font-size: 0.8rem;
            }
            .compare-table .status-icon {
                width: 22px;
                height: 22px;
                font-size: 0.7rem;
                margin-right: 0.3rem;
            }
            .compare-table .th-traditional,
            .compare-table .th-electronic {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .compare-table th,
            .compare-table td {
                padding: 0.5rem 0.6rem;
                font-size: 0.7rem;
            }
            .compare-table .status-icon {
                width: 18px;
                height: 18px;
                font-size: 0.6rem;
                margin-right: 0.2rem;
            }
        }

        /* Decorative ring */
        .compare-section .deco-ring {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(109,74,255,0.02);
            border-radius: 50%;
            bottom: -5%;
            right: -3%;
            pointer-events: none;
            animation: spinRing 35s linear infinite;
        }
        @keyframes spinRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
 /* ============================================================
           STYLISH "WHY CHOOSE INVOICEFY" SECTION
           ============================================================ */
        .why-section {
           
            width: 100%;
            padding: 4rem 3rem;
            background-color: #1e1b4b;;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
           
            box-shadow: 0 40px 80px -20px rgba(109, 74, 255, 0.12),
                        0 0 0 1px rgba(109, 74, 255, 0.04);
            position: relative;
            overflow: hidden;
        }

        /* Floating orbs */
        .why-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .why-section .orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(109,74,255,0.10), transparent 70%);
            top: -180px;
            right: -120px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .why-section .orb-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(236,72,153,0.08), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }
        .why-section .orb-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0,212,255,0.06), transparent 70%);
            top: 40%;
            left: 10%;
            animation: pulseOrb 7s ease-in-out infinite alternate;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }
        @keyframes pulseOrb {
            0% { transform: scale(1); opacity: 0.3; }
            100% { transform: scale(1.4); opacity: 0.6; }
        }

        .why-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .why-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .why-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .why-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.06);
        }
       .why-header h2 {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1.08;
}
        .why-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .why-header .subhead {
            color: #ffffff;
            max-width: 600px;
            margin: 0.75rem auto 0;
            font-size: 1.05rem;
            line-height: 1.7;
            font-weight: 400;
        }

        /* --- Features Grid --- */
        .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
    width: 80%;
}
        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .features-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem;
            }
            .why-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .why-header h2 {
                font-size: 2rem;
            }
        }

        /* --- Feature Item --- */
        .feature-item {
            background: white;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 20px;
            padding: 1.5rem 1.2rem;
            border: 1px solid rgb(151 119 171 / 50%);
            box-shadow: 0 4px 16px rgba(0,0,0,0.02);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            text-align: center;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 120px;
        }
        .feature-item::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 20px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.15), rgba(236,72,153,0.10), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .feature-item:hover::before {
            opacity: 1;
        }
        .feature-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 60px -20px rgba(109, 74, 255, 0.12);
            background: white;
            border-color: rgba(109, 74, 255, 0.08);
        }

        .feature-item .f-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(109,74,255,0.06), rgba(139,92,246,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #6D4AFF;
            margin-bottom: 0.6rem;
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            border: 1px solid rgba(109,74,255,0.04);
            flex-shrink: 0;
        }
        .feature-item:hover .f-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
            transform: scale(1.05) rotate(-4deg);
        }

        .feature-item .f-label {
            font-weight: 700;
            font-size: 0.85rem;
            color: #1E1B4B;
            line-height: 1.3;
            transition: color 0.3s ease;
        }
        .feature-item:hover .f-label {
            color: #6D4AFF;
        }

        .feature-item .glow-dot {
            position: absolute;
            bottom: 0.8rem;
            right: 0.8rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: none;
        }
        .feature-item:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2);
        }

        /* --- CTA Section --- */
        .why-cta {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(231, 227, 244, 0.3);
        }
        .why-cta .cta-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1E1B4B;
            margin-bottom: 0.5rem;
        }
        .why-cta .cta-desc {
            color: #6b6a8b;
            font-size: 0.95rem;
            margin-bottom: 1.25rem;
        }
        .dis-5{
            color:white;
        }
        .small-text{
            
            color:white;
        }
        .why-cta .btn-glow {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 32px rgba(109, 74, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        .why-cta .btn-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .why-cta .btn-glow:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 48px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .why-cta .btn-glow:hover::after {
            opacity: 1;
        }
        .why-cta .btn-glow i {
            transition: transform 0.3s ease;
        }
        .why-cta .btn-glow:hover i {
            transform: translateX(4px);
        }

        /* --- Responsive text size for features --- */
        @media (max-width: 480px) {
            .feature-item {
                padding: 1rem 0.8rem;
                min-height: 90px;
            }
            .feature-item .f-icon {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
            .feature-item .f-label {
                font-size: 0.7rem;
            }
        }

        /* Decorative ring */
        .why-section .deco-ring {
            position: absolute;
            width: 350px;
            height: 350px;
            border: 1px solid rgba(109,74,255,0.02);
            border-radius: 50%;
            bottom: -10%;
            right: -5%;
            pointer-events: none;
            animation: spinRing 40s linear infinite;
        }
        @keyframes spinRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

 .readiness-section {
            /*max-width: 1140px;*/
            width: 100%;
            padding: 4rem 3rem;
            background: linear-gradient(145deg, rgba(255,255,255,0.5), rgba(243,240,255,0.3));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            /*border-radius: 60px;*/
            /*border: 1px solid rgba(255, 255, 255, 0.7);*/
            /*box-shadow: 0 40px 80px -20px rgba(109, 74, 255, 0.12),*/
            /*            0 0 0 1px rgba(109, 74, 255, 0.04);*/
            position: relative;
            overflow: hidden;
        }

        /* Floating orbs */
        .readiness-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .readiness-section .orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(109,74,255,0.12), transparent 70%);
            top: -180px;
            right: -120px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .readiness-section .orb-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(236,72,153,0.08), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }
        .readiness-section .orb-3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(0,212,255,0.06), transparent 70%);
            top: 30%;
            left: 20%;
            animation: pulseOrb 7s ease-in-out infinite alternate;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }
        @keyframes pulseOrb {
            0% { transform: scale(1); opacity: 0.3; }
            100% { transform: scale(1.3); opacity: 0.6; }
        }

        .readiness-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .readiness-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .readiness-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .readiness-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.06);
        }
        .readiness-header .badge-wrap .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22C55E;
            display: inline-block;
            animation: pulseDot 2s ease-in-out infinite;
        }
        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.7); }
        }
        .readiness-header h2 {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.08;
        }
        .readiness-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .readiness-header .subhead {
            color: #6b6a8b;
            max-width: 680px;
            margin: 0.75rem auto 0;
            font-size: 1.05rem;
            line-height: 1.8;
            font-weight: 400;
        }

        /* --- CARDS SECTION (flex row) --- */
        .cards-wrapper {
            margin-bottom: 2.5rem;
        }
        .cards-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.25rem;
        }

        /* Circular Card */
        .question-card {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 50%;
            aspect-ratio: 1/1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            text-align: center;
            position: relative;
            width: 160px;
            height: 160px;
            flex-shrink: 0;
        }
        /* Glow ring on hover */
        .question-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.15), rgba(236,72,153,0.1), transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .question-card:hover::before {
            opacity: 1;
        }
        .question-card:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 30px 60px -20px rgba(109, 74, 255, 0.15),
                        0 0 0 1px rgba(109, 74, 255, 0.04);
            background: rgba(255, 255, 255, 0.7);
            border-color: rgba(109, 74, 255, 0.1);
        }

        .question-card .q-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(109,74,255,0.06), rgba(139,92,246,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #6D4AFF;
            margin-bottom: 0.4rem;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            border: 1px solid rgba(109,74,255,0.04);
            flex-shrink: 0;
        }
        .question-card:hover .q-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
            transform: scale(1.05) rotate(-5deg);
        }

        .question-card .q-number {
            font-size: 0.55rem;
            font-weight: 800;
            color: #6D4AFF;
            background: rgba(109, 74, 255, 0.06);
            padding: 0.1rem 0.6rem;
            border-radius: 100px;
            margin-bottom: 0.2rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        .question-card:hover .q-number {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
        }

        .question-card .q-text {
            font-weight: 700;
            font-size: 0.75rem;
            color: #1E1B4B;
            line-height: 1.3;
            transition: color 0.3s ease;
            max-width: 120px;
        }
        .question-card:hover .q-text {
            color: #6D4AFF;
        }

        .question-card .glow-dot {
            position: absolute;
            bottom: 0.8rem;
            right: 0.8rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: none;
        }
        .question-card:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.2);
            transform: scale(2);
        }

        /* Responsive cards */
        @media (max-width: 768px) {
            .question-card {
                width: 130px;
                height: 130px;
                padding: 1rem;
            }
            .question-card .q-text {
                font-size: 0.65rem;
                max-width: 100px;
            }
            .question-card .q-icon {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .question-card {
                width: 110px;
                height: 110px;
                padding: 0.8rem;
            }
            .question-card .q-text {
                font-size: 0.55rem;
                max-width: 80px;
            }
            .question-card .q-icon {
                width: 30px;
                height: 30px;
                font-size: 0.85rem;
            }
            .question-card .q-number {
                font-size: 0.45rem;
            }
        }

        /* --- TEXT SECTION (below cards) --- */
        .text-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }
        .text-wrapper p {
            color: #4b4a6b;
            font-size: 1rem;
            line-height: 1.9;
            margin-bottom: 0.75rem;
        }
        .text-wrapper p strong {
            color: #1E1B4B;
            font-weight: 700;
        }
        .text-wrapper .highlight-box {
            background: rgba(109, 74, 255, 0.04);
            border-left: 4px solid #6D4AFF;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin: 1rem 0;
        }
        .text-wrapper .highlight-box p {
            margin-bottom: 0;
            color: #1E1B4B;
            font-weight: 500;
        }
        .text-wrapper .highlight-box p i {
            color: #6D4AFF;
            margin-right: 0.5rem;
        }

        .text-wrapper .cta-inline {
            margin-top: 1.5rem;
            text-align: center;
        }
        .text-wrapper .btn-glow {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.7rem 2.4rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 32px rgba(109, 74, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        .text-wrapper .btn-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .text-wrapper .btn-glow:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 16px 40px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .text-wrapper .btn-glow:hover::after {
            opacity: 1;
        }
        .text-wrapper .btn-glow i {
            transition: transform 0.3s ease;
        }
        .text-wrapper .btn-glow:hover i {
            transform: translateX(4px);
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .readiness-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .readiness-header h2 {
                font-size: 2rem;
            }
            .cards-flex {
                gap: 0.75rem;
            }
        }

        /* Decorative line */
        .readiness-section .deco-line {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(109,74,255,0.02);
            border-radius: 50%;
            top: 20%;
            right: -5%;
            pointer-events: none;
            animation: spin 30s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

/* ============================================================
           STYLISH "HOW IT WORKS" FLOW SECTION
           ============================================================ */
        .flow-section {
            
              width: 100%;
    padding: 4rem 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgb(198 196 207));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border-radius: 60px; */
    box-shadow: 0 40px 80px -20px rgba(109, 74, 255, 0.12), 0 0 0 1px rgba(109, 74, 255, 0.04);
    position: relative;
    overflow: hidden;
}

        /* Floating orbs */
        .flow-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .flow-section .orb-1 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(109,74,255,0.10), transparent 70%);
            top: -150px;
            right: -100px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .flow-section .orb-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
            bottom: -120px;
            left: -80px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }
        .flow-section .orb-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0,212,255,0.05), transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulseOrb 6s ease-in-out infinite alternate;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(25px, -25px) scale(1.08); }
        }
        @keyframes pulseOrb {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.6; }
        }

        .flow-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .flow-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .flow-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .flow-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.06);
        }
        .flow-header h2 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.08;
        }
        .flow-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .flow-header .subhead {
            color: #6b6a8b;
            max-width: 600px;
            margin: 0.75rem auto 0;
            font-size: 1.05rem;
            line-height: 1.7;
            font-weight: 400;
        }

        /* --- Flow Grid --- */
        .flow-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            position: relative;
        }
        @media (max-width: 992px) {
            .flow-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.25rem;
            }
        }
        @media (max-width: 576px) {
            .flow-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .flow-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .flow-header h2 {
                font-size: 2rem;
            }
        }

        /* --- Flow Item --- */
        .flow-item {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 1.8rem 1.2rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 4px 16px rgba(0,0,0,0.02);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            text-align: center;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .flow-item:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(109, 74, 255, 0.15);
            box-shadow: 0 30px 60px -20px rgba(109, 74, 255, 0.12);
            background: rgba(255, 255, 255, 0.75);
        }
        /* Glow border on hover */
        .flow-item::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.2), rgba(236,72,153,0.12), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .flow-item:hover::before {
            opacity: 1;
        }

        /* Step number */
        .flow-item .step-number {
            font-size: 0.7rem;
            font-weight: 800;
            color: #6D4AFF;
            background: rgba(109, 74, 255, 0.06);
            padding: 0.2rem 0.8rem;
            border-radius: 100px;
            letter-spacing: 0.5px;
            margin-bottom: 0.75rem;
            border: 1px solid rgba(109, 74, 255, 0.04);
            transition: all 0.3s ease;
        }
        .flow-item:hover .step-number {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 8px 20px rgba(109, 74, 255, 0.15);
        }

        /* Icon */
        .flow-item .icon-wrap {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(109,74,255,0.06), rgba(139,92,246,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #6D4AFF;
            margin-bottom: 1rem;
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            border: 1px solid rgba(109,74,255,0.04);
        }
        .flow-item:hover .icon-wrap {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 12px 32px rgba(109, 74, 255, 0.2);
            transform: scale(1.05) rotate(-3deg);
        }

        .flow-item h5 {
            font-weight: 800;
            font-size: 1.1rem;
            color: #1E1B4B;
            margin-bottom: 0.4rem;
            transition: color 0.3s ease;
        }
        .flow-item:hover h5 {
            color: #6D4AFF;
        }
        .flow-item p {
            color: #6b6a8b;
            font-size: 0.88rem;
            line-height: 1.6;
            margin-bottom: 0;
            flex: 1;
        }

        /* --- Arrow connector between items --- */
        .flow-connector {
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(109, 74, 255, 0.15);
            font-size: 1.4rem;
            padding: 0 0.2rem;
            transition: all 0.4s ease;
            position: relative;
        }
        .flow-connector .line {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, rgba(109,74,255,0.1), rgba(109,74,255,0.2));
            border-radius: 4px;
            position: relative;
            overflow: hidden;
        }
        .flow-connector .line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, #6D4AFF, transparent);
            animation: shimmer 2.5s ease-in-out infinite;
        }
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        .flow-connector .arrow {
            margin: 0 0.2rem;
            font-size: 1rem;
            color: rgba(109, 74, 255, 0.15);
            transition: all 0.3s ease;
        }
        .flow-item:hover ~ .flow-connector .arrow,
        .flow-connector:hover .arrow {
            color: #6D4AFF;
        }

        /* For responsive: hide connectors on small screens */
        @media (max-width: 576px) {
            .flow-connector {
                display: none;
            }
        }
        @media (max-width: 992px) and (min-width: 577px) {
            .flow-connector.hide-tablet {
                display: none;
            }
        }

        /* --- Bottom CTA --- */
        .flow-cta {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(231, 227, 244, 0.3);
        }
        .flow-cta p {
            color: #6b6a8b;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            font-weight: 500;
        }
        .flow-cta .btn-glow {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 32px rgba(109, 74, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        .flow-cta .btn-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .flow-cta .btn-glow:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 48px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .flow-cta .btn-glow:hover::after {
            opacity: 1;
        }
        .flow-cta .btn-glow i {
            transition: transform 0.3s ease;
        }
        .flow-cta .btn-glow:hover i {
            transform: translateX(4px);
        }

        /* Small decorative glow dot on card */
        .flow-item .glow-dot {
            position: absolute;
            bottom: 1.2rem;
            right: 1.2rem;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.04);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: none;
        }
        .flow-item:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 20px rgba(109, 74, 255, 0.25);
            transform: scale(2);
        }
 /* ===== WHY US SECTION ===== */
        .why-us-section {
            padding: 5rem 0;
            background: #ffffff;
        }
        .why-us-section .section-badge {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            padding: 0.4rem 1.4rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 1rem;
        }
        .why-us-section .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #1E1B4B;
            margin-bottom: 3rem;
            line-height: 1.2;
        }
        .why-us-section .section-title span {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Small Cards */
        .why-small-card {
            background: #ffffff;
            border: 1px solid #f0edff;
            border-radius: 16px;
            padding: 1.2rem 1.2rem;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            height: 100%;
            box-shadow: 0 2px 8px rgba(109, 74, 255, 0.04);
        }
        .why-small-card:hover {
            transform: translateY(-4px);
            border-color: #6D4AFF;
            box-shadow: 0 12px 28px -8px rgba(109, 74, 255, 0.15);
        }
        .why-small-card .card-icon {
            min-width: 40px;
            height: 40px;
            background: #f3f0ff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #6D4AFF;
            transition: 0.3s;
            flex-shrink: 0;
        }
        .why-small-card:hover .card-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
        }
        .why-small-card .card-content h6 {
            font-weight: 700;
            font-size: 0.95rem;
            color: #1E1B4B;
            margin-bottom: 0.15rem;
        }
        .why-small-card .card-content p {
            font-size: 0.82rem;
            color: #6b6a8b;
            margin-bottom: 0;
            line-height: 1.5;
        }

        /* Center Image Card */
        .why-center-card {
            background-image: url(https://invoiceify.ae/wp-content/uploads/2026/07/College-ERP-software.webp);
    background-size: cover;
            border-radius: 28px;
            padding: 2.5rem 2rem;
            text-align: center;
            border: 1px solid #E7E3F4;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
            min-height: 380px;
        }
        .why-center-card:hover {
            border-color: #6D4AFF;
            box-shadow: 0 20px 50px -15px rgba(109, 74, 255, 0.15);
            transform: scale(1.01);
        }
        .why-center-card .center-icon {
            font-size: 4.5rem;
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        .why-center-card .center-number {
            font-size: 5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 0.25rem;
        }
        .why-center-card h4 {
            font-weight: 700;
            color: #1E1B4B;
            margin-bottom: 0.3rem;
        }
        .why-center-card p {
            color: #6b6a8b;
            font-size: 0.95rem;
            max-width: 280px;
            margin: 0 auto;
        }
        .why-center-card .orb-glow {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.06);
            filter: blur(60px);
            pointer-events: none;
        }
        .why-center-card .orb-glow.glow-1 {
            top: -40px;
            right: -40px;
        }
        .why-center-card .orb-glow.glow-2 {
            bottom: -40px;
            left: -40px;
        }

        /* Column spacing */
        .col-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .col-cards .why-small-card:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 991px) {
            .why-us-section .section-title {
                font-size: 2rem;
            }
            .why-center-card {
                min-height: 250px;
                padding: 2rem 1.5rem;
                margin: 1rem 0;
            }
            .col-cards {
                gap: 0.8rem;
            }
        }
        @media (max-width: 576px) {
            .why-us-section .section-title {
                font-size: 1.6rem;
            }
            .why-small-card {
                padding: 1rem;
            }
            .why-small-card .card-content h6 {
                font-size: 0.85rem;
            }
            .why-small-card .card-content p {
                font-size: 0.75rem;
            }
        }
      .section-wrapper {
                /*max-width: 1400px;*/
    width: 100%;
    padding: 3.5rem 3rem;;
            background: linear-gradient(145deg, rgba(255,255,255,0.6), rgba(243,240,255,0.4));
            /*backdrop-filter: blur(20px);*/
            /*-webkit-backdrop-filter: blur(20px);*/
            /*border-radius: 60px;*/
            /*border: 1px solid rgba(255, 255, 255, 0.7);*/
            /*box-shadow: 0 40px 80px -20px rgba(109, 74, 255, 0.12),*/
            /*            0 0 0 1px rgba(109, 74, 255, 0.04);*/
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .section-wrapper:hover {
            box-shadow: 0 50px 100px -20px rgba(109, 74, 255, 0.18);
        }

        /* Floating orbs */
        .section-wrapper .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .section-wrapper .orb-1 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(109,74,255,0.08), transparent 70%);
            top: -120px;
            right: -80px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .section-wrapper .orb-2 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
            bottom: -100px;
            left: -60px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(20px, -20px) scale(1.08); }
        }

        .section-wrapper > * {
            position: relative;
            z-index: 1;
        }

        /* --- Section Header (optional badge) --- */
        .section-header {
            margin-bottom: 2rem;
        }
        .section-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.3rem 1.2rem 0.3rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.75rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
        }
        .section-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
        }

        /* --- Two Column Layout --- */
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        @media (max-width: 768px) {
            .section-wrapper {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .two-col {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .two-col.reverse-mobile {
                grid-template-columns: 1fr;
            }
            .two-col.reverse-mobile .col-image {
                order: -1;
            }
        }

        /* --- Text Column --- */
        .col-text .badge-label {
            display: inline-block;
            background: rgba(109, 74, 255, 0.06);
            color: #6D4AFF;
            font-weight: 700;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 0.25rem 0.8rem;
            border-radius: 100px;
            margin-bottom: 0.75rem;
            border: 1px solid rgba(109, 74, 255, 0.04);
        }
        .col-text h3 {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #1E1B4B;
            line-height: 1.15;
            margin-bottom: 0.75rem;
        }
        .col-text h3 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .col-text p {
            color: #6b6a8b;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 0.75rem;
        }
        .col-text p strong {
            color: #1E1B4B;
            font-weight: 700;
        }
        .col-text .feature-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
        }
        .col-text .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            padding: 0.4rem 0;
            color: #4b4a6b;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .col-text .feature-list li i {
            color: #6D4AFF;
            font-size: 1.1rem;
            margin-top: 0.15rem;
            flex-shrink: 0;
        }

        /* --- Image Column --- */
        .col-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .col-image .image-wrapper {
            width: 100%;
            max-width: 420px;
            border-radius: 28px;
            overflow: hidden;
            background: linear-gradient(145deg, rgba(109,74,255,0.04), rgba(139,92,246,0.02));
            border: 1px solid rgba(231, 227, 244, 0.3);
            box-shadow: 0 20px 40px -12px rgba(0,0,0,0.02);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
        }
        .col-image .image-wrapper:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 30px 60px -16px rgba(109, 74, 255, 0.08);
            border-color: rgba(109, 74, 255, 0.08);
        }
        .col-image .image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            padding: 0.5rem;
            border-radius: 28px;
        }
        /* Decorative glow behind image */
        .col-image .image-wrapper::before {
            content: '';
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle at 50% 50%, rgba(109,74,255,0.04), transparent 70%);
            border-radius: 50%;
            z-index: -1;
            filter: blur(40px);
            opacity: 0.5;
            transition: opacity 0.4s ease;
        }
        .col-image .image-wrapper:hover::before {
            opacity: 1;
        }

        /* --- Image placeholder with icon (SVG-style) --- */
        .image-placeholder {
            width: 100%;
            aspect-ratio: 4/3;
            background: linear-gradient(145deg, rgba(109,74,255,0.04), rgba(139,92,246,0.02));
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
            border: 2px dashed rgba(109, 74, 255, 0.06);
            transition: all 0.3s ease;
            min-height: 280px;
        }
        .image-placeholder:hover {
            border-color: rgba(109, 74, 255, 0.12);
            background: linear-gradient(145deg, rgba(109,74,255,0.06), rgba(139,92,246,0.04));
        }
        .image-placeholder .icon-big {
            font-size: 4rem;
            color: #6D4AFF;
            margin-bottom: 0.75rem;
            opacity: 0.6;
            transition: all 0.4s ease;
        }
        .image-placeholder:hover .icon-big {
            opacity: 1;
            transform: scale(1.05) rotate(-2deg);
        }
        .image-placeholder .label {
            font-weight: 600;
            color: #1E1B4B;
            font-size: 1.1rem;
        }
        .image-placeholder .sub-label {
            color: #6b6a8b;
            font-size: 0.85rem;
            margin-top: 0.25rem;
        }

        /* --- Responsive tweaks --- */
        @media (max-width: 576px) {
            .col-text h3 {
                font-size: 1.6rem;
            }
            .image-placeholder {
                min-height: 200px;
                padding: 1.5rem;
            }
            .image-placeholder .icon-big {
                font-size: 3rem;
            }
        }

        /* --- Section 1: What Is UAE E-Invoicing? (image left) --- */
        .section-what .col-image .image-wrapper {
            border-color: rgba(109, 74, 255, 0.06);
        }

        /* --- Section 2: How It Differs (image right) --- */
        .section-diff .col-image .image-wrapper {
            border-color: rgba(236, 72, 153, 0.06);
        }
/* ============================================================
   2. UTILITY CLASSES
   ============================================================ */
/* Colors & Gradients */
.new-text-color {
    color: var(--primary);
}

.bg-hero-gradient {
    background: var(--gradient-hero);
}

.bg-primary-gradient {
    background: var(--gradient-primary);
}

.text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-soft-lavender {
    background: var(--soft-lavender);
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(109, 74, 255, 0.35);
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 30px rgba(109, 74, 255, 0.5);
    color: #fff;
}

.btn-outline-purple {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: all 0.2s ease;
}

.btn-outline-purple:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(109, 74, 255, 0.3);
}

/* Badge */
.badge {
    background: var(--primary);
}

.border-soft {
    border-color: var(--light-border) !important;
}

/* Orbs - Decorative Elements */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.orb-cyan {
    background: #00d4ff;
    width: 300px;
    height: 300px;
    top: -10%;
    right: -5%;
}

.orb-magenta {
    background: var(--electric-magenta);
    width: 250px;
    height: 250px;
    bottom: -8%;
    left: 0;
}

.orb-purple {
    background: var(--primary);
    width: 200px;
    height: 200px;
    top: 20%;
    left: 20%;
    opacity: 0.25;
}


     .guide-section {
            
            width: 100%;
            padding: 4rem 3rem;
            background: white;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
           
            box-shadow: 0 40px 80px -20px rgba(109, 74, 255, 0.15),
                        0 0 0 1px rgba(109, 74, 255, 0.04);
            position: relative;
            overflow: hidden;
        }

        /* Floating orbs - more dynamic */
        .guide-section .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .guide-section .orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(109,74,255,0.12), transparent 70%);
            top: -180px;
            right: -120px;
            animation: floatOrb 8s ease-in-out infinite alternate;
        }
        .guide-section .orb-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(236,72,153,0.08), transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        }
        .guide-section .orb-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0,212,255,0.06), transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulseOrb 6s ease-in-out infinite alternate;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }
        @keyframes pulseOrb {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
            100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.8; }
        }

        .guide-section > * {
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .guide-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .guide-header .badge-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(109, 74, 255, 0.06);
            border: 1px solid rgba(109, 74, 255, 0.08);
            padding: 0.35rem 1.4rem 0.35rem 0.8rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #6D4AFF;
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        .guide-header .badge-wrap:hover {
            background: rgba(109, 74, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(109, 74, 255, 0.06);
        }
        .guide-header .badge-wrap .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22C55E;
            display: inline-block;
            animation: pulseDot 2s ease-in-out infinite;
        }
        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.7); }
        }
        .guide-header h2 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #1E1B4B;
            line-height: 1.08;
        }
        .guide-header h2 .highlight {
            background: linear-gradient(135deg, #6D4AFF, #A855F7, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite alternate;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .guide-header .subhead {
            color: #6b6a8b;
            max-width: 720px;
            margin: 0.75rem auto 0;
            font-size: 1.1rem;
            line-height: 1.8;
            font-weight: 400;
        }

        /* --- Cards --- */
        .guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    width: 50%;
}
        @media (max-width: 768px) {
            .guide-section {
                padding: 2rem 1.2rem;
                border-radius: 32px;
            }
            .guide-header h2 {
                font-size: 2.1rem;
            }
            .guide-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                width: 100%;
            }
        }

        .guide-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 28px;
            padding: 2rem 2rem 1.8rem;
            border: 1px solid #8b5cf6;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        /* Glow border on hover */
        .guide-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 28px;
            padding: 1.5px;
            background: linear-gradient(135deg, transparent 30%, rgba(109,74,255,0.2), rgba(236,72,153,0.15), transparent 70%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .guide-card:hover::before {
            opacity: 1;
        }
        .guide-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 30px 60px -20px rgba(109, 74, 255, 0.15),
                        0 0 0 1px rgba(109, 74, 255, 0.04);
            background: rgba(255, 255, 255, 0.8);
        }

        /* Card icon with animated gradient */
        .guide-card .card-icon {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(109,74,255,0.06), rgba(139,92,246,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #6D4AFF;
            margin-bottom: 1rem;
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            border: 1px solid rgba(109,74,255,0.04);
        }
        .guide-card:hover .card-icon {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            box-shadow: 0 12px 32px rgba(109, 74, 255, 0.25);
            transform: scale(1.05) rotate(-3deg) translateY(-2px);
        }

        .guide-card h5 {
            font-weight: 800;
            font-size: 1.15rem;
            color: #1E1B4B;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        .guide-card:hover h5 {
            color: #6D4AFF;
        }
        .guide-card p {
            color: #6b6a8b;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 0;
        }
        .guide-card p strong {
            color: #1E1B4B;
            font-weight: 700;
        }

        /* Full-width card */
        .guide-card-full {
            grid-column: 1 / -1;
        }

        /* --- Comparison Grid --- */
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            margin-top: 0.75rem;
        }
        @media (max-width: 576px) {
            .compare-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
        }
        .compare-item {
            background: rgba(255, 255, 255, 0.4);
            border-radius: 18px;
            padding: 1.2rem 1.4rem;
            border: 1px solid rgba(231, 227, 244, 0.3);
            transition: all 0.4s ease;
            backdrop-filter: blur(4px);
        }
        .compare-item:hover {
            border-color: rgba(109, 74, 255, 0.15);
            background: rgba(255, 255, 255, 0.6);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(109, 74, 255, 0.04);
        }
        .compare-item .label {
            font-weight: 700;
            font-size: 0.9rem;
            color: #1E1B4B;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.3rem;
        }
        .compare-item .label i {
            font-size: 1rem;
        }
        .compare-item .label .badge-icon {
            padding: 0.15rem 0.6rem;
            border-radius: 100px;
            font-size: 0.65rem;
            font-weight: 700;
            background: rgba(109,74,255,0.06);
            color: #6D4AFF;
        }
        .compare-item .desc {
            font-size: 0.88rem;
            color: #6b6a8b;
            line-height: 1.7;
        }
        .compare-item .desc .check {
            color: #22C55E;
        }
        .compare-item .desc .cross {
            color: #EF4444;
        }

        /* --- Decorative floating element on card --- */
        .guide-card .glow-dot {
            position: absolute;
            bottom: 1.5rem;
            right: 1.8rem;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(109, 74, 255, 0.06);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: none;
        }
        .guide-card:hover .glow-dot {
            background: #6D4AFF;
            box-shadow: 0 0 24px rgba(109, 74, 255, 0.3);
            transform: scale(2);
        }

        /* --- CTA --- */
        .guide-cta {
            text-align: center;
            margin-top: 2.8rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(231, 227, 244, 0.3);
        }
        .guide-cta p {
            color: #6b6a8b;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            font-weight: 500;
        }
        .guide-cta .btn-glow {
            background: linear-gradient(135deg, #6D4AFF, #8B5CF6);
            color: white;
            border: none;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 32px rgba(109, 74, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        .guide-cta .btn-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .guide-cta .btn-glow:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 48px rgba(109, 74, 255, 0.3);
            color: white;
        }
        .guide-cta .btn-glow:hover::after {
            opacity: 1;
        }
        .guide-cta .btn-glow i {
            transition: transform 0.3s ease;
        }
        .guide-cta .btn-glow:hover i {
            transform: translateX(4px);
        }




/* ============================================================
   3. COMPONENTS
   ============================================================ */
.navbar .dropdown-menu{
    margin-top: 0;
    border-radius: 0 10px 10px 10px;
    border-top: 0;
}

.navbar .nav-link.hover-active{
    background: #fff;
    border: 1px solid #dee2e6;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    z-index: 1001;
    position: relative;
}

/* Optional: keep same style on normal hover */
.navbar .nav-link:hover{
    color: #6D4AFF;
}
/* 3.1 Navbar */
.navbar-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.navbar-glass .navbar-nav .nav-link {
    color: var(--dark-indigo);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    transition: all 0.2s ease;
}


.navbar-glass .navbar-nav .nav-link:hover {
    background: rgba(109, 74, 255, 0.06);
    color: var(--primary);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.6rem;
    line-height: 1;
    background: transparent;
    color: var(--dark-indigo);
    transition: all 0.2s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 27, 75, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.8rem;
    height: 1.8rem;
}

/* 3.2 Hero Section */
.hero-3d-wrapper {
    perspective: 1200px;
}

.hero-card-3d {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 48px;
    padding: 2.5rem 2rem;
    transform: rotateY(-3deg) rotateX(2deg) translateZ(20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease;
}

.hero-card-3d:hover {
    transform: rotateY(-1deg) rotateX(1deg) translateZ(30px);
}

.hero-badge {
    background: rgba(109, 74, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 100px;
    padding: 0.4rem 1.2rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.hero-section .text-white {
    color: #fff !important;
}

.hero-section .text-gradient-primary {
    -webkit-text-fill-color: white;
    background: transparent;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-section .opacity-90 {
    opacity: 0.9 !important;
}

/* 3.3 Cards */
.card-3d {
    background: #fff;
    border: 1px solid var(--primary);
    border-radius: 32px;
    transition: all 0.25s var(--transition-smooth);
    box-shadow: 0 12px 30px -10px rgba(109, 74, 255, 0.08);
    backdrop-filter: blur(2px);
}

.card-3d:hover {
    transform: perspective(800px) rotateX(1deg) translateZ(12px) scale(1.01);
    border-color: var(--primary);
    box-shadow: 0 30px 50px -20px rgba(109, 74, 255, 0.25);
}

.stat-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid var(--light-border);
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 20px 40px -15px rgba(109, 74, 255, 0.2);
}

.resource-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--light-border);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(109, 74, 255, 0.15);
    border-color: var(--primary);
}

/* 3.4 Mockup */
.mockup-3d {
    background: linear-gradient(145deg, #fff, #f0edff);
    border-radius: 40px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(109, 74, 255, 0.1);
    transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
    transition: all 0.3s ease;
}

.mockup-3d:hover {
    transform: perspective(900px) rotateY(-1deg) rotateX(0);
}

/* 3.5 Floating Icon */
.floating-icon {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    border-radius: 10px;
    width: 53px;
    height: 53px;
    line-height: 51px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

/* 3.6 Section Title */
.section-title {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* 3.7 Timeline */
.timeline-item {
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px var(--primary);
}

/* 3.8 Trust Badge */
.trust-badge {
    background: #fff;
    border-radius: 100px;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--light-border);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* 3.9 Client Logos */
.client-logo {
    filter: grayscale(1) opacity(0.5);
    transition: all 0.3s ease;
    max-height: 40px;
    width: auto;
}

.client-logo:hover {
    filter: grayscale(0) opacity(1);
}

/* 3.10 Compare Table */
.compare-table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid var(--light-border);
}

.compare-table .check {
    color: var(--secondary);
    font-size: 1.2rem;
}

.compare-table .cross {
    color: #ef4444;
    font-size: 1.2rem;
}

/* 3.11 Footer */
.footer-bg {
    background: var(--dark-indigo);
}

/* ============================================================
   4. FULL WIDTH CTA
   ============================================================ */
.full-width-cta {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.full-width-cta .orb-cta {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
}

.full-width-cta .orb-cta-1 {
    background: #00d4ff;
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
}

.full-width-cta .orb-cta-2 {
    background: var(--electric-magenta);
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -60px;
}

.full-width-cta .cta-content {
    position: relative;
    z-index: 2;
}

.full-width-cta .cta-headline {
    font-size: 3.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.full-width-cta .btn-cta-gradient {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 0.9rem 2.8rem;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 60px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.full-width-cta .btn-cta-gradient:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    color: #5b3df5;
}

/* ============================================================
   5. FAQ SECTION - Glassmorphism + Interactive
   ============================================================ */
.faq-section {
    max-width: 1118px;
    width: 100%;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 60px -20px rgba(109, 74, 255, 0.12),
                0 0 0 1px rgba(109, 74, 255, 0.03);
    position: relative;
    overflow: hidden;
}

/* Decorative Orbs */
.faq-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(109, 74, 255, 0.06) 0%, transparent 70%);
    top: -120px;
    right: -120px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.faq-section>* {
    position: relative;
    z-index: 1;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-header .badge {
    background: rgba(109, 74, 255, 0.08);
    color: var(--primary);
    padding: 0.4rem 1.4rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    border: 1px solid rgba(109, 74, 255, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dark-indigo);
    margin-top: 0.5rem;
}

.faq-header h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    color: #6b6a8b;
    max-width: 500px;
    margin: 0.5rem auto 0;
    font-size: 1.05rem;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 18px;
    border: 1px solid rgba(231, 227, 244, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.35s var(--transition-smooth);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(109, 74, 255, 0.15);
    box-shadow: 0 8px 24px rgba(109, 74, 255, 0.04);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 12px 32px -8px rgba(109, 74, 255, 0.12),
                0 0 0 1px rgba(109, 74, 255, 0.04);
    background: rgba(255, 255, 255, 0.85);
}

/* FAQ Question */
.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question .icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(109, 74, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.35s ease;
}

.faq-item.active .faq-question .icon {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 20px rgba(109, 74, 255, 0.2);
}

.faq-question .text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-indigo);
    transition: color 0.3s ease;
    flex: 1;
}

.faq-item.active .faq-question .text {
    color: var(--primary);
}

.faq-question .toggle-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(109, 74, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.active .faq-question .toggle-icon {
    background: rgba(109, 74, 255, 0.1);
    transform: rotate(180deg);
}

.faq-item:hover .faq-question .toggle-icon {
    background: rgba(109, 74, 255, 0.08);
}

/* FAQ Answer */
.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--transition-smooth),
                padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem 1.5rem;
}

.faq-answer {
    color: #6b6a8b;
    font-size: 0.95rem;
    line-height: 1.7;
    padding-top: 0.2rem;
}

.faq-answer strong {
    color: var(--dark-indigo);
}

/* FAQ Decorative Dot */
.faq-item .dot {
    position: absolute;
    bottom: 1.2rem;
    right: 1.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(109, 74, 255, 0.06);
    transition: all 0.4s ease;
    pointer-events: none;
}

.faq-item.active .dot {
    background: var(--primary);
    box-shadow: 0 0 16px rgba(109, 74, 255, 0.25);
    transform: scale(1.6);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(231, 227, 244, 0.4);
}

.faq-cta p {
    color: #6b6a8b;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.faq-cta .btn-glow {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.7rem 2.4rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(109, 74, 255, 0.2);
}

.faq-cta .btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(109, 74, 255, 0.3);
    color: white;
}

/* ============================================================
   6. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet & Below */
@media (max-width: 991px) {
    .navbar-glass .navbar-collapse {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 28px;
        padding: 1.2rem 1rem;
        margin-top: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    }

    .navbar-glass .navbar-nav {
        gap: 0.25rem;
    }

    .navbar-glass .navbar-nav .nav-link {
        padding: 0.6rem 1rem;
    }

    .navbar-glass .d-flex.gap-2 {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        padding-top: 0.75rem;
    }

    .navbar-glass .d-flex.gap-2 .btn {
        width: auto;
        min-width: 120px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-card-3d,
    .mockup-3d {
        transform: none;
    }

    .hero-card-3d {
        padding: 2rem 1rem;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .full-width-cta .cta-headline {
        font-size: 2.2rem;
    }

    .navbar-glass .d-flex.gap-2 .btn {
        width: 100%;
        min-width: unset;
    }

    .navbar-glass .navbar-brand {
        font-size: 1.5rem;
    }

    .faq-section {
        padding: 2rem 1.2rem;
        border-radius: 32px;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1rem 1.2rem;
        gap: 0.75rem;
    }

    .faq-question .text {
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer-wrapper {
        padding: 0 1.2rem 1rem 1.2rem;
    }

    .faq-answer {
        font-size: 0.88rem;
    }
}

/* ============================================================
   7. FIXES & OVERRIDES
   ============================================================ */
.hero-section [data-aos] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.card-3d p,
.hero-card-3d p,
.mockup-3d p {
    color: var(--dark-indigo);
}

.hero-card-3d .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.resource-card p,
.stat-card p,
.timeline-item p {
    color: var(--gray-text);
}