    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

    :root {
        --orange: #f97316;
        --blue: #2563eb;
        --dark-navy: #0f172a;
        --text-gray: #94a3b8;
        --light-bg: #fff7ed;
        --dark-blue: #09121d;
        --slate: #64748b;
        --white-bg: #ffffff;
        --blush: #f97316;
    }

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

    body {
        font-family: 'Inter', system-ui, sans-serif;
        color: #333;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .heading-font {
        font-family: 'Poppins', sans-serif;
    }

    h1 {
        font-size: clamp(28px, 5vw, 56px);
        line-height: 1.2;
    }

    h2 {
        font-size: clamp(22px, 4vw, 36px);
    }

    h3 {
        font-size: clamp(18px, 3.5vw, 28px);
    }

    h4 {
        font-size: clamp(16px, 3vw, 22px);
    }

    p {
        font-size: clamp(14px, 2.5vw, 18px);
    }

    /* NAVBAR */
    nav {
        background: white;
        border-bottom: 1px solid #e5e7eb;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    html,
    body {
        height: 100%;
    }

    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    main {
        flex: 1;
    }

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

    .brand-name {
        font-size: 24px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .brand-name span {
        color: var(--orange);
    }

    .nav-menu {
        display: flex;
        gap: 40px;
        font-size: 14px;
        font-weight: 600;
    }

    .nav-menu a {
        text-decoration: none;
        color: #374151;
        transition: color 0.3s;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--orange);
    }

    /* Home page  */
    .hero {
        background: linear-gradient(135deg, #fffcf9 0%, #f0f7ff 100%);
        padding: 70px 25px;
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        justify-content: space-around;
    }

    .hero-text h1 {
        font-size: 56px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 25px;
        color: #0f172a;
    }

    .hero-text h1 span {
        color: var(--orange);
    }

    .hero-text p {
        font-size: 20px;
        color: #475569;
        margin-bottom: 35px;
        max-width: 500px;
    }

    .hero-img img {
        width: 100%;
        min-height: 420px;
        object-fit: cover;
        border-radius: 30px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    }

    /* STATS SECTION */
    .stats-section {
        padding: 80px 40px;
        background-color: #f8fafc;
        /* Very light slate background to make the "table" pop */
        text-align: center;
    }

    .stats-section h2 {
        margin-bottom: 50px;
        color: #0f172a;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    /* 2. The Analytic "Grid Table" */
    .stats-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: #ffffff;
        border-radius: 16px;
        /* This creates the "Table" look using a single container border */
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    /* 3. The "Table Cells" (Stat Cards) */
    .stat-card {
        padding: 40px 20px;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: background 0.3s ease;
    }

    /* Vertical Dividers between cells */
    .stat-card:not(:last-child) {
        border-right: 1px solid #e2e8f0;
    }

    .stat-card:hover {
        background: #f1f5f9;
        /* Subtle highlight on hover like a dashboard row */
    }

    /* 4. The Data (Numbers) */
    .stat-card h3 {
        font-family: 'Inter', sans-serif;
        /* Numbers often look better in Inter for analytics */
        font-size: 36px;
        font-weight: 800;
        color: var(--blue);
        /* Using your brand blue for the data points */
        margin-bottom: 8px;
        letter-spacing: -1px;
    }

    /* 5. The Labels */
    .stat-card p {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 600;
        color: #64748b;
        letter-spacing: 1px;
    }

    .stats-grid::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--orange), var(--blue));
        z-index: 10;
    }

    /*  Creator card  */
    .connect-section {
        padding: 100px 25px;
        background-color: #ffffff;
        /* Soft mesh gradients to make the glass texture visible */
        background-image:
            radial-gradient(at 0% 0%, rgba(249, 115, 22, 0.03) 0px, transparent 50%),
            radial-gradient(at 100% 100%, rgba(37, 99, 235, 0.03) 0px, transparent 50%);
        font-family: 'Inter', system-ui, sans-serif;
    }

    .connect-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* 2. Consolidated Glass Cards */
    .creator-card,
    .company-card {
        border-radius: 32px;
        padding: 50px;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        /* Ensures the inner glow and content stay in bounds */

        /* Glass Effect */
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);

        /* --- THE BORDER --- */
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-top: 1px solid rgba(255, 255, 255, 0.8);
        border-left: 1px solid rgba(255, 255, 255, 0.8);

        /* --- THE SHADOW --- */
        box-shadow:
            0 10px 15px -3px rgba(0, 0, 0, 0.04),
            0 4px 6px -2px rgba(0, 0, 0, 0.02),
            0 40px 60px -20px rgba(0, 0, 0, 0.08);

        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* 3. Hover Effects */
    .creator-card:hover {
        transform: translateY(-12px);
        background: rgba(255, 255, 255, 0.8);
        border-color: rgba(249, 115, 22, 0.4);
        box-shadow:
            0 30px 60px -12px rgba(249, 115, 22, 0.15),
            0 18px 36px -18px rgba(0, 0, 0, 0.1);
    }

    .company-card:hover {
        transform: translateY(-12px);
        background: rgba(255, 255, 255, 0.8);
        border-color: rgba(37, 99, 235, 0.4);
        box-shadow:
            0 30px 60px -12px rgba(37, 99, 235, 0.15),
            0 18px 36px -18px rgba(0, 0, 0, 0.1);
    }

    /* Inner Glow Effect */
    .creator-card::after,
    .company-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 32px;
        pointer-events: none;
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
        z-index: 1;
    }

    /* 4. Content Elements */
    .card-tag {
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding: 6px 12px;
        border-radius: 8px;
        display: inline-block;
        position: relative;
        z-index: 2;
    }

    .creator-card .card-tag {
        color: var(--orange);
        background: rgba(249, 115, 22, 0.08);
    }

    .company-card .card-tag {
        color: var(--blue);
        background: rgba(37, 99, 235, 0.08);
    }

    .creator-card h2,
    .company-card h2 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 25px;
        line-height: 1.2;
        color: #0f172a;
        position: relative;
        z-index: 2;
    }

    .feature-list {
        list-style: none;
        margin: 0 0 40px 0;
        padding: 0;
        flex-grow: 1;
        position: relative;
        z-index: 2;
    }

    .feature-list li {
        margin-bottom: 16px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        font-size: 17px;
        font-weight: 500;
        color: #475569;
    }

    .feature-list li span {
        display: block;
        line-height: 1.5;
    }

    .creator-card .feature-list i {
        color: var(--orange);
        filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.2));
    }

    .company-card .feature-list i {
        color: var(--blue);
        filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
    }

    .btn-action {
        display: inline-block;
        padding: 16px 40px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 16px;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: auto;
        color: #ffffff;
        position: relative;
        z-index: 3;
    }

    .creator-card .btn-action {
        background: linear-gradient(135deg, var(--orange), #fb923c);
        box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
    }

    .company-card .btn-action {
        background: linear-gradient(135deg, var(--blue), #60a5fa);
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    }

    .btn-action:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

   #campaign {
       position: relative;
        background: url("../assets/influencer-campaign-background.gif") center/cover no-repeat;
   }

   #campaign::before {
       content: "";
       position: absolute;
       inset: 0;
       background: rgba(9, 18, 29, 0.7);
       /* dark overlay */
   }

   #campaign * {
       position: relative;
       z-index: 2;
   } 
    /* BRAND HERO */
    .influencer-hero {
        background: var(--light-bg);
        padding: 100px 40px;
        text-align: center;
    }

    #blue-influencer-hero {
        background: #F1F5F9;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .influencer-hero h1 {
        font-size: 48px;
        margin-bottom: 20px;
        color: var(--dark-blue);
    }

    .influencer-hero p {
        font-size: 20px;
        color: #4b5563;
        margin-bottom: 30px;
    }

    .ft-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 220px;
        height: 48px;
        padding: 0 16px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;    
        transition: all 0.3s ease;  
    }
    .ft-cta-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    .wa-btn:hover {
        box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    }

    .ig-btn:hover {
        box-shadow: 0 10px 25px rgba(217, 70, 239, 0.4);
    }

    .call-btn:hover {
        background: white;
        color: var(--dark-navy);
    }
    .cta-btn {
        background: var(--orange);
        color: white;
        padding: 18px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        display: inline-block;
        transition: transform 0.2s;
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    }

    .cta-btn:hover {
        transform: translateY(-4px) scale(1.04);    
    }

    /* FEATURES SECTION */
    .features-section {
        padding: 80px 40px;
        background: white;
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
        font-size: 32px;
    }

    .grid-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .feature-card {
        padding: 30px;
        border-radius: 24px;
        border: 1px solid #e5e7eb;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .feature-card i {
        font-size: 30px;
        color: var(--orange);
        margin-bottom: 15px;
    }

    .feature-card.blue-feature-card:hover {
        border: 1px solid var(--blue);
    }

    .feature-card.blue-feature-card i {
        color: var(--blue);
    }

    .feature-card h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    /* GRID stays same but remove heavy table look */
    .why-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        /* spacing instead of borders */
    }

    /* CARD STYLE (modern UI) */
    .why-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 30px;
        background: #ffffff;
        border-radius: 16px;
        gap: 12px;

        border: 1px solid #e2e8f0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);

        transition: all 0.3s ease;
    }

    /* REMOVE table borders */
    .why-item {
        border: 1px solid #e2e8f0;
    }

    /* HOVER EFFECT (important) */
    .why-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        border-color: var(--orange);
    }

    #blue-why-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        border-color: var(--blue);
    }

    /* ICON UPGRADE */
    .why-item i {
        font-size: 20px;
        width: 48px;
        height: 48px;

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

        border-radius: 12px;

        background: rgba(255, 115, 0, 0.1);
        color: var(--orange);
    }

    /* 🔵 BRAND PAGE ONLY (blue theme) */
    .blue-why-item {
        border: 1px solid #e2e8f0;
    }

    /* Hover effect */
    .blue-why-item:hover {
        border-color: var(--blue);
        box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
    }

    /* ICON COLOR FIX */
    .blue-why-item i {
        background: rgba(37, 99, 235, 0.1);
        color: var(--blue);
    }

    .why-item:hover i {
        transform: scale(1.1);
        transition: 0.3s;
    }

    /* OPTIONAL: TEXT ACCENT */
    .blue-why-item h4 {
        color: var(--dark-blue);
    }

    .blue-why-item:hover i {
        transform: scale(1.1);
        transition: 0.3s;
    }

    /* TEXT IMPROVEMENT */
    .why-item p {
        font-size: 15px;
        line-height: 1.6;
        color: #64748b;
    }

    .why-item p strong {
        display: block;
        font-size: 16px;
        color: #0f172a;
        margin-bottom: 6px;
    }

    /* FINAL CTA */
    .final-cta {
        padding: 100px 40px;
        text-align: center;
        background: var(--dark-blue);
        color: white;
    }

    .final-cta h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .final-cta.cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

    /* Brands page */
    .section-padding {
        padding: 100px 40px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
        font-size: 36px;
        color: var(--dark-blue);
    }

    .grid-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }

    .feature-card {
        padding: 40px;
        border-radius: 24px;
        background: white;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        border-color: var(--orange);
        transform: translateY(-5px);
    }

    .feature-card h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    /* SERVICES */
    .services-section {
        background: #f1f5f9;
    }

    .service-item {
        background: white;
        padding: 30px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    }

    .service-item i {
        background: var(--blue);
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    /* WHY CHOOSE US */
    .why-us {
        background: white;
    }

    .why-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-point {
        display: flex;
        gap: 20px;
        padding: 20px;
    }

    .why-point i {
        color: #10b981;
        font-size: 24px;
        margin-top: 5px;
    }

    /* About page */
    .about-hero {
        padding: 100px 40px;
        text-align: center;
        background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    }

    .container-small {
        max-width: 800px;
        margin: 0 auto;
    }

    .about-hero h1 {
        font-size: 42px;
        color: var(--dark-blue);
        margin-bottom: 25px;
    }

    .about-hero p {
        font-size: 20px;
        color: #4b5563;
        line-height: 1.8;
    }

    /* VISION SECTION */
    .vision-section {
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin: 0 auto;
    }

    .vision-section {
        padding: 80px 40px;
        background: var(--dark-blue);
        color: white;
        text-align: center;
    }

    .vision-card {
        background: var(--dark-navy);
        padding: 50px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .vision-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .vision-section p {
        font-size: 18px;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

    /* HOW WE WORK (PROCESS) */
    .process-section {
        padding: 100px 40px;
        background: #f8fafc;
    }

    .process-grid {
        max-width: 1200px;
        margin: 50px auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .process-step {
        text-align: center;
        position: relative;
    }

    .step-num {
        width: 50px;
        height: 50px;
        background: var(--orange);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-weight: 700;
        font-size: 20px;
        box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
    }

    .process-step h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    /* WHY WE STARTED */
    .why-started {
        padding: 100px 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
    }

    .why-content {
        max-width: 900px;
        padding: 60px;
        border-radius: 40px;
        background: #fff7ed;
        border: 2px dashed var(--orange);
        text-align: center;
    }

    .why-content i {
        font-size: 40px;
        color: var(--orange);
        margin-bottom: 20px;
    }

    /* INTERESTED CTA */
    .interested-section {
        padding: 100px 40px;
        text-align: center;
        background: #f1f5f9;
    }

    .cta-group {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .cta-btn-creator {
        background: var(--orange);
        color: white;
        padding: 18px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s;
    }

    .cta-btn-brand {
        background: var(--blue);
        color: white;
        padding: 18px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        display: inline-block;
        box-shadow:0 10px 25px rgba(37, 99, 235, 0.25),0 4px 10px rgba(37, 99, 235, 0.15);
        transition:  0.3s;
    }
    
    .cta-btn-brand:hover {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    }

    .cta-btn-creator:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Footer */
    .wa-btn {
        background: #22c55e;
        color: white;
    }

    .ig-btn {
        background: linear-gradient(90deg, #f97316 0%, #d946ef 100%);
        color: white;
    }

    .call-btn {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
    }

    .divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin: 20px 0;
        opacity: 0;
        animation: fadeInUp 1s ease 0.8s forwards;
    }

    .divider-line {
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--blush));
    }

    .divider-line.r {
        background: linear-gradient(90deg, var(--blush), transparent);
    }

    .divider-dot {
        width: 6px;
        height: 6px;
        background: var(--blush);
        transform: rotate(45deg);
    }

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

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

    /* Contact Page */
    .contact-hero {
        padding: 100px 40px 60px;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 48px;
        color: #0f172a;
        margin-bottom: 20px;
    }

    .contact-hero p {
        font-size: 18px;
        color: var(--slate);
        max-width: 750px;
        margin: 0 auto;
    }

    /* MAIN LAYOUT */
    .main-container {
        max-width: 1200px;
        margin: 0 auto 100px;
        padding: 0 40px;
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 40px;
    }

    /* EMAIL CARDS */
    .email-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    #blue-email-card:hover {
        border-color: var(--blue);
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    #blue-email-card i {
        font-size: 26px;
        color: var(--blue);
        margin-bottom: 15px;
        display: block;
    }

    .email-card {
        background: #f8fafc;
        padding: 35px;
        border-radius: 24px;
        border: 1px solid #e2e8f0;
        transition: 0.3s ease;
    }

    .email-card:hover {
        border-color: var(--orange);
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .email-card i {
        font-size: 26px;
        color: var(--orange);
        margin-bottom: 15px;
        display: block;
    }

    .email-card h4 {
        margin-bottom: 8px;
        font-size: 18px;
        color: #1e293b;
    }

    .email-card a {
        color: var(--slate);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
    }

    /* SIDEBAR */
    .sidebar {
        background: #f8fafc;
        padding: 40px;
        border-radius: 30px;
        border: 1px solid #e2e8f0;
        height: fit-content;
    }

    .sidebar h3 {
        margin-bottom: 25px;
        font-size: 22px;
    }

    .phone-display {
        margin-bottom: 30px;
    }

    .phone-display p {
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .phone-display a span {
        display: block;
        font-size: 18px;
        color: var(--orange);
        font-weight: 600;
        margin-bottom: 5px;
    }

    .phone-display a {
        text-decoration: none;
    }

    .response-tag {
        font-size: 13px;
        color: var(--slate);
        display: flex;
        align-items: center;
        gap: 8px;
        font-style: italic;
    }

    /* FOOTER */
    footer {
        background: var(--dark-navy);
        color: white;
        padding: 80px 25px 40px;
        position: relative;
    }

    /* Premium gradient accent line at the top of footer */
    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--orange) 0%, #fb923c 30%, var(--blue) 70%, #60a5fa 100%);
    }

    ul {
        list-style: none;
    }

    .footer-container {
        max-width: 1200px;
        /* or 1300px */
        width: 100%;
        margin: 0 auto;
        padding: 0 40px;
    }

    .footer-brand p {
        color: var(--text-gray);
        margin-top: 15px;
        max-width: 320px;
    }

    .footer-heading {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: var(--text-gray);
        font-size: 15px;
    }

    .footer-links a:hover {
        color: white;
    }
    .footer-cta {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .menu-toggle {
        display: none;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }

    @media (min-width: 1024px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Make footer-group transparent to the grid so its children
        (footer-links & footer-cta) fill columns 2 and 3 directly */
        .footer-group {
            display: contents;
        }

        /* Premium card treatment for Quick Links & Let's Talk columns */
        .footer-links,
        .footer-cta {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 16px;
            padding: 28px 24px;
        }
    }

    @media (max-width: 1100px) {
        .connect-container {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 1015px) {
        nav {
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            position: relative;
        }

        .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            /* 🔥 KEY FIX */
            left: 0;
            width: 100%;
            background: #ffffff;
            padding: 15px 20px;
            gap: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-top: 1px solid #eee;
        }

        .nav-menu.active {
            display: flex !important;
        }

        /* Ensure the toggle button is visible */
        .menu-toggle {
            display: block !important;
            cursor: pointer;
        }

        /* ================= FORCE FULL WIDTH ================= */
        html,
        body {
            width: 100%;
            overflow-x: hidden;
        }

        /* Remove container restriction */
        .hero-container,
        .connect-container,
        .footer-container,
        .main-container,
        .stats-grid,
        .grid-container,
        .why-grid {
            width: 100% !important;
            max-width: 100% !important;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ================= HERO FIX (CRITICAL) ================= */
        .hero-container {
            grid-template-columns: 1fr !important;
            text-align: center;
        }

        .hero-img {
            order: -1;
        }

        .hero-text h1 {
            font-size: 28px !important;
        }

        .hero-text p {
            font-size: 14px !important;
            max-width: 100%;
        }

        /* ================= ABOUT FIX ================= */
        .vision-section {
            flex-direction: column !important;
            gap: 30px;
        }

        /* ================= CONTACT FIX ================= */
        .main-container {
            grid-template-columns: 1fr !important;
        }

        .email-grid {
            grid-template-columns: 1fr !important;
        }

        .connect-container {
            grid-template-columns: 1fr !important;
            gap: 20px;
        }

        .creator-card,
        .company-card {
            width: 100%;
            padding: 30px 20px;
        }

        /* ================= FIX TEXT CUT ================= */

        .creator-card h2,
        .company-card h2 {
            font-size: 22px !important;
            line-height: 1.3;
            text-align: center;
        }

        .feature-list li {
            font-size: 14px;
            justify-content: flex-start;
            /* align left */
            text-align: left;
            align-items: flex-start;
        }

        /* ================= FIX BUTTON ================= */

        .btn-action {
            width: 100%;
            max-width: 220px;
            margin: 20px auto 0;
            display: block;
        }

        /* ================= BRAND / GRID FIX ================= */
        .grid-container {
            grid-template-columns: 1fr !important;
        }

        .why-grid {
            grid-template-columns: 1fr !important;
        }

        .why-point {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* ================= STATS FIX ================= */
        .stats-grid {
            grid-template-columns: 1fr !important;
        }

        .stat-card {
            border-right: none !important;
            border-bottom: 1px solid #e2e8f0;
        }


        footer {
            padding: 60px 20px 30px;
        }

        /* STACK MAIN */
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* 🔥 TOP CENTER BRAND */
        .footer-brand {
            text-align: center;
            padding-bottom: 28px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand p {
            max-width: 300px;
            margin: 0 auto;
        }

        /* 🔥 ROW: LINKS + CTA */
        .footer-group {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 16px;
        }

        /* LEFT SIDE */
        .footer-links {
            flex: 1;
            text-align: left;
        }

        /* RIGHT SIDE */
        .footer-cta {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
            min-width: 0;
        }

        /* BUTTONS */
        .ft-cta-btn {
            width: 100%;
            max-width: 170px;
            font-size: 12px;
            padding: 0 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;

        }

        .call-btn:hover {
            background: white;
            color: var(--dark-navy);
        }
        /* COPYRIGHT */
        footer div[style*="text-align: center"] {
            text-align: center !important;
            margin-top: 30px;
            font-size: 12px;
        }

        /* ================= BUTTON FIX ================= */
        .cta-btn,
        .cta-btn-brand,
        .cta-btn-creator,
        .btn-action {
            width: 100%;
            max-width: 260px;
            margin: 10px auto;
        }

        /* ================= SPACING ================= */
        section {
            padding: 60px 20px !important;
        }

        .nav-container {
            padding: 12px 20px;
        }
    }

    @media (max-width: 480px) {

        h1,
        .hero-text h1,
        .influencer-hero h1,
        .contact-hero h1 {
            font-size: 24px !important;
            line-height: 1.3;
        }

        h2 {
            font-size: 20px !important;
            line-height: 1.3;
        }

        h3 {
            font-size: 18px !important;
        }

        h4 {
            font-size: 16px !important;
        }

        p {
            font-size: 13px !important;
            line-height: 1.5;
        }

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

        .brand-name {
            font-size: 18px !important;
        }

        /* ================= BUTTONS ================= */

        .cta-btn,
        .cta-btn-brand,
        .cta-btn-creator,
        .btn-action {
            font-size: 13px !important;
            padding: 10px 16px !important;
            width: 100%;
            max-width: 240px;
            margin: 10px auto;
        }

        /* ================= CARDS TEXT ================= */

        .feature-card h4,
        .process-step h4,
        .email-card h4 {
            font-size: 15px !important;
        }

        .feature-card p,
        .email-card a {
            font-size: 13px !important;
        }

        /* ================= FOOTER SMALL SCREEN FIX ================= */
        .footer-group {
            flex-direction: column;
            align-items: stretch;
        }

        .footer-links {
            text-align: center;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .footer-cta {
            align-items: center !important;
        }

        .ft-cta-btn {
            max-width: 240px !important;
            font-size: 13px !important;
        }

        /* ================= SMALL SPACING ================= */

        section {
            padding: 50px 15px !important;
        }
    }



    /* ============================================================
    OUR CREATORS PAGE  (our-creators.html)
    ============================================================ */

    /* HERO */
    .creators-hero {
        background: linear-gradient(135deg, #fffcf9 0%, #f0f7ff 100%);
        padding: 80px 25px 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .creators-hero::before {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(ellipse, rgba(249, 115, 22, 0.07) 0%, transparent 65%);
        pointer-events: none;
    }

    .creators-hero .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--dark-navy);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 7px 18px;
        border-radius: 100px;
        margin-bottom: 24px;
    }

    .creators-hero .eyebrow-dot {
        width: 7px;
        height: 7px;
        background: var(--orange);
        border-radius: 50%;
        animation: eyebrow-pulse 1.4s infinite;
    }

    @keyframes eyebrow-pulse {

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

        50% {
            opacity: 0.4;
            transform: scale(1.5);
        }
    }

    .creators-hero h1 {
        font-size: clamp(32px, 5vw, 64px);
        font-weight: 800;
        line-height: 1.1;
        color: #0f172a;
        margin-bottom: 20px;
    }

    .creators-hero h1 span {
        color: var(--orange);
    }

    .creators-hero p {
        font-size: clamp(15px, 2vw, 19px);
        color: #475569;
        max-width: 560px;
        margin: 0 auto 40px;
        line-height: 1.7;
    }

    .hero-stats-row {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-stat-pill {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        padding: 16px 26px;
        text-align: center;
        box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .hero-stat-pill:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    }

    .hero-stat-pill .num {
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        font-weight: 800;
        color: var(--orange);
        line-height: 1;
    }

    .hero-stat-pill .lbl {
        font-size: 11px;
        color: #64748b;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-top: 4px;
    }

    /* SHOWREEL / VIDEO SECTION */
    .showreel-section {
        padding: 80px 25px;
        background: #f8fafc;
        text-align: center;
    }

    .showreel-section h2 {
        font-size: clamp(22px, 3.5vw, 36px);
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 10px;
    }

    .showreel-section .sub {
        font-size: 16px;
        color: #64748b;
        margin-bottom: 40px;
    }

    .video-wrapper {
        max-width: 900px;
        margin: 0 auto;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        background: #0f172a;
        aspect-ratio: 16/9;
        position: relative;
    }

    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .video-placeholder {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        color: rgba(255, 255, 255, 0.6);
    }

    .video-placeholder i {
        font-size: 56px;
        color: var(--orange);
        opacity: 0.8;
    }

    .video-placeholder p {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
    }

    /* FILTER BAR */
    .filter-section {
        padding: 40px 25px 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    .filter-bar {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 50px;
    }

    .filter-btn {
        background: #fff;
        border: 1.5px solid #e2e8f0;
        border-radius: 50px;
        padding: 8px 20px;
        font-size: 13px;
        font-weight: 600;
        color: #475569;
        cursor: pointer;
        transition: all 0.25s;
        font-family: 'Inter', sans-serif;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    }

    /* CREATORS SECTION WRAPPER */
    .creators-section {
        padding: 20px 25px 100px;
    }

    .creators-wrap {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* CREATOR CARD */
    .cbh-card {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
        position: relative;
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s;
    }

    .cbh-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .cbh-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--orange), var(--blue));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
        z-index: 2;
    }

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

    .cbh-card:hover {
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    }

    .card-inner {
        display: grid;
        grid-template-columns: 260px 1fr;
    }

    /* INFO PANEL */
    .info-panel {
        padding: 28px 24px;
        border-right: 1px solid #e2e8f0;
        background: linear-gradient(160deg, #fff 0%, #f8fafc 100%);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .info-bg-blob {
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        opacity: 0.08;
        transition: transform 0.5s, opacity 0.3s;
    }

    .cbh-card:hover .info-bg-blob {
        transform: scale(1.8);
        opacity: 0.15;
    }

    .avatar-wrap {
        position: relative;
        width: 72px;
        height: 72px;
        margin-bottom: 14px;
    }

    .avatar-inner {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        border: 3px solid #fff;
        box-shadow: 0 0 0 3px var(--orange), 0 4px 14px rgba(0, 0, 0, 0.12);
        transition: box-shadow 0.35s;
    }

    .cbh-card:hover .avatar-inner {
        box-shadow: 0 0 0 3px var(--orange), 0 0 0 6px rgba(249, 115, 22, 0.15), 0 4px 18px rgba(0, 0, 0, 0.15);
    }

    .online-dot {
        position: absolute;
        bottom: 4px;
        right: 2px;
        width: 14px;
        height: 14px;
        background: #22c55e;
        border-radius: 50%;
        border: 2.5px solid #fff;
    }

    .creator-name-row {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 2px;
    }

    .creator-name {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 800;
        color: #0f172a;
    }

    .verified {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        color: #fff;
        flex-shrink: 0;
    }

    .creator-handle {
        font-size: 12px;
        color: #64748b;
        margin-bottom: 10px;
    }

    .niche-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        border-radius: 100px;
        padding: 4px 12px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        margin-bottom: 18px;
        width: fit-content;
    }

    .mini-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 18px;
    }

    .mini-stat-box {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 10px 12px;
    }

    .mini-stat-val {
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.1;
    }

    .mini-stat-key {
        font-size: 9px;
        color: #64748b;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-top: 3px;
    }

    .hire-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--dark-navy);
        color: #fff;
        border: none;
        border-radius: 10px;
        padding: 12px 18px;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        margin-top: auto;
        overflow: hidden;
        position: relative;
        text-decoration: none;
        transition: box-shadow 0.35s;
    }

    .hire-btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--orange);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .hire-btn span {
        position: relative;
        z-index: 1;
    }

    .hire-btn .arr {
        transition: transform 0.3s;
    }

    .hire-btn:hover::after {
        transform: translateX(0);
    }

    .hire-btn:hover .arr {
        transform: translateX(4px);
    }

    .hire-btn:hover {
        box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    }

    /* POSTS PANEL */
    .posts-panel {
        padding: 24px 0 24px 24px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-width: 0;
    }

    .posts-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 24px;
    }

    .posts-label {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #64748b;
    }

    .arr-btns {
        display: flex;
        gap: 6px;
    }

    .arr-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        border: 1.5px solid #e2e8f0;
        background: #fff;
        color: #0f172a;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        transition: all 0.25s;
        box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
    }

    .arr-btn:hover {
        background: var(--orange);
        color: #fff;
        border-color: var(--orange);
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
    }

    /* SLIDER */
    .slider {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-right: 24px;
        padding-bottom: 6px;
        cursor: grab;
        scrollbar-width: none;
    }

    .slider:active {
        cursor: grabbing;
    }

    .slider::-webkit-scrollbar {
        display: none;
    }

    /* POST ITEM */
    .post-item {
        flex: 0 0 180px;
        height: 240px;
        border-radius: 16px;
        overflow: hidden;
        scroll-snap-align: start;
        position: relative;
        cursor: pointer;
        background: #e2e8f0;
        box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .post-item:hover {
        transform: scale(1.05);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
        z-index: 3;
    }

    .post-item img,
    .post-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .post-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 45%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 12px;
    }

    .post-item:hover .post-overlay {
        opacity: 1;
    }

    .post-meta {
        display: flex;
        gap: 10px;
    }

    .post-m {
        display: flex;
        align-items: center;
        gap: 4px;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
    }

    .post-m i {
        font-size: 12px;
    }

    .post-num {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        letter-spacing: 0.06em;
    }

    .post-placeholder {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #94a3b8;
    }

    .post-placeholder i {
        font-size: 28px;
        color: #cbd5e1;
    }

    .post-placeholder span {
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    /* MODAL */
    .modal-bg {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.75);
        backdrop-filter: blur(14px);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    .modal-bg.open {
        opacity: 1;
        pointer-events: all;
    }

    .modal-box {
        background: #fff;
        border-radius: 20px;
        width: 100%;
        max-width: 860px;
        max-height: 92vh;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 320px;
        box-shadow: 0 40px 100px rgba(15, 23, 42, 0.3);
        transform: scale(0.92) translateY(20px);
        transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
    }

    .modal-bg.open .modal-box {
        transform: scale(1) translateY(0);
    }

    .modal-media {
        background: #0f172a;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 360px;
        position: relative;
    }

    .modal-media img,
    .modal-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-height: 92vh;
    }

    .modal-side {
        display: flex;
        flex-direction: column;
        border-left: 1px solid #e2e8f0;
        overflow: hidden;
    }

    .modal-head {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 18px;
        border-bottom: 1px solid #e2e8f0;
    }

    .modal-av {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        font-weight: 800;
        color: #fff;
        flex-shrink: 0;
        border: 2px solid var(--orange);
    }

    .modal-nm {
        font-size: 14px;
        font-weight: 700;
        color: #0f172a;
    }

    .modal-hd {
        font-size: 12px;
        color: #64748b;
    }

    .close-btn {
        margin-left: auto;
        width: 30px;
        height: 30px;
        border-radius: 8px;
        border: 1.5px solid #e2e8f0;
        background: #f8fafc;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #64748b;
        transition: all 0.25s;
        flex-shrink: 0;
    }

    .close-btn:hover {
        background: #fee2e2;
        color: #dc2626;
        border-color: #fecaca;
    }

    .modal-body {
        padding: 18px;
        flex: 1;
        overflow-y: auto;
        border-bottom: 1px solid #e2e8f0;
    }

    .modal-cap {
        font-size: 14px;
        color: #1e293b;
        line-height: 1.65;
    }

    .modal-cap strong {
        font-weight: 700;
        color: #0f172a;
    }

    .modal-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 10px;
    }

    .modal-tag {
        font-size: 12px;
        color: var(--orange);
        font-weight: 600;
        cursor: pointer;
    }

    .modal-tag:hover {
        text-decoration: underline;
    }

    .modal-foot {
        padding: 14px 18px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .modal-stats-row {
        display: flex;
        gap: 16px;
    }

    .m-stat {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 13px;
        font-weight: 700;
        color: #64748b;
        cursor: pointer;
        transition: color 0.25s;
    }

    .m-stat:hover {
        color: #0f172a;
    }

    .m-stat.liked {
        color: #ef4444;
    }

    .modal-cta-btn {
        background: var(--orange);
        color: #fff;
        border: none;
        border-radius: 10px;
        padding: 12px;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    }

    .modal-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
        background: #ea6c0e;
    }

    /* CTA SECTION */
    .creators-cta-section {
        background: var(--dark-navy);
        position: relative;
        overflow: hidden;
        padding: 100px 40px;
        text-align: center;
    }

    .creators-cta-section::before {
        content: '';
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(ellipse, rgba(249, 115, 22, 0.14) 0%, transparent 60%);
        pointer-events: none;
    }

    .cta-grid-bg {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: gridScroll 20s linear infinite;
    }

    @keyframes gridScroll {
        to {
            background-position: 0 60px;
        }
    }

    .cta-inner {
        position: relative;
        z-index: 1;
        max-width: 640px;
        margin: 0 auto;
    }

    .cta-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(249, 115, 22, 0.15);
        border: 1px solid rgba(249, 115, 22, 0.3);
        color: var(--orange);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 7px 18px;
        border-radius: 100px;
        margin-bottom: 28px;
    }
    .cta-big-title {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.02em;
        color: #fff;
        margin-bottom: 16px;
    }

    .cta-big-title .orange {
        color: var(--orange);
    }

    .cta-big-title .outline {
        -webkit-text-stroke: 1.5px #fff;
        color: transparent;
    }

    .cta-sub-text {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.65;
        margin-bottom: 40px;
    }

    .cta-btn-row {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-orange-solid {
        background: var(--orange);
        color: #fff;
        border: none;
        border-radius: 10px;
        padding: 15px 36px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s;
        box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
        display: inline-block;
    }

    .btn-orange-solid:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 32px rgba(249, 115, 22, 0.55);
    }

    .btn-ghost-solid {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.22);
        border-radius: 10px;
        padding: 13px 36px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-block;
    }

    .btn-ghost-solid:hover {
        border-color: var(--orange);
        color: var(--orange);
        transform: translateY(-3px);
    }

    .cta-trust-row {
        margin-top: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.45);
        font-size: 12px;
        font-weight: 600;
        padding: 0 24px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .trust-item:last-child {
        border-right: none;
    }

    .trust-item b {
        color: var(--orange);
    }
    /*  Our Creators */
    .avatar-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .avatar-wrap {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        border: 2px solid #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .post-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background: #f1f5f9;
        color: #94a3b8;
        font-weight: 600;
        border-radius: 16px;
    }

    .post-placeholder i {
        font-size: 32px;
        margin-bottom: 8px;
        opacity: 0.7;
    }
    .post-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }
    /* RESPONSIVE — OUR CREATORS PAGE */
    @media (max-width: 900px) {
        .card-inner {
            grid-template-columns: 1fr;
        }

        .info-panel {
            border-right: none;
            border-bottom: 1px solid #e2e8f0;
        }

        .posts-panel {
            padding: 20px;
        }

        .slider {
            padding-right: 0;
        }

        .post-item {
            flex: 0 0 150px;
            height: 200px;
        }

        .modal-box {
            grid-template-columns: 1fr;
            max-width: 440px;
        }

        .modal-side {
            border-left: none;
            border-top: 1px solid #e2e8f0;
        }

        .modal-media {
            min-height: 280px;
        }

        .creators-cta-section {
            padding: 70px 20px;
        }

        .trust-item {
            padding: 0 14px;
        }
    }

    @media (max-width: 600px) {
        .creators-hero {
            padding: 60px 20px 40px;
        }

        .hero-stats-row {
            gap: 12px;
        }

        .hero-stat-pill {
            padding: 12px 18px;
        }

        .hero-stat-pill .num {
            font-size: 20px;
        }

        .filter-section {
            padding: 30px 20px 0;
        }

        .creators-section {
            padding: 20px 20px 70px;
        }

        .post-item {
            flex: 0 0 140px;
            height: 186px;
        }

        .cbh-card {
            border-radius: 16px;
        }

        .modal-bg {
            padding: 0;
        }

        .modal-box {
            border-radius: 0;
            max-height: 100vh;
            height: 100vh;
        }

        .showreel-section {
            padding: 50px 20px;
        }
    }