
    /* ===== CREATOR HERO ===== */
    #creator-hero {
        position: relative;
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #09060f;
        overflow: clip;
        padding: 4rem 0 6rem;
    }

    /* Multi-layered creative bg */
    #creator-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 70% 50% at 15% 30%, rgba(168, 85, 247, 0.18) 0%, transparent 55%),
            radial-gradient(ellipse 60% 50% at 85% 70%, rgba(236, 72, 153, 0.14) 0%, transparent 55%),
            radial-gradient(ellipse 50% 40% at 50% 100%, rgba(251, 146, 60, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse 40% 30% at 70% 10%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    /* Diagonal paint-stroke decoration */
    .creator-deco-stripe {
        position: absolute;
        pointer-events: none;
        z-index: 0;
    }

    .creator-deco-stripe-1 {
        top: -80px;
        right: -60px;
        width: 420px;
        height: 420px;
        border-radius: 38% 62% 70% 30% / 40% 50% 50% 60%;
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(236, 72, 153, 0.08));
        filter: blur(2px);
        animation: creatorMorphBlob 12s ease-in-out infinite alternate;
    }

    .creator-deco-stripe-2 {
        bottom: -60px;
        left: -80px;
        width: 340px;
        height: 340px;
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        background: linear-gradient(135deg, rgba(251, 146, 60, 0.08), rgba(236, 72, 153, 0.06));
        filter: blur(2px);
        animation: creatorMorphBlob 15s ease-in-out infinite alternate-reverse;
    }

    @keyframes creatorMorphBlob {
        0% {
            border-radius: 38% 62% 70% 30% / 40% 50% 50% 60%;
            transform: rotate(0deg) scale(1);
        }

        50% {
            border-radius: 50% 50% 30% 70% / 30% 60% 40% 70%;
            transform: rotate(8deg) scale(1.05);
        }

        100% {
            border-radius: 70% 30% 50% 50% / 55% 45% 55% 45%;
            transform: rotate(-5deg) scale(0.97);
        }
    }

    /* Noise texture overlay */
    #creator-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
        opacity: 0.03;
        pointer-events: none;
        z-index: 0;
    }

    /* Floating marquee line at top */
    .creator-marquee-wrap {
        position: absolute;
        top: 5.5rem;
        left: 0;
        right: 0;
        overflow: hidden;
        z-index: 1;
        opacity: 0.18;
        pointer-events: none;
        white-space: nowrap;
    }

    .creator-marquee-track {
        display: inline-flex;
        gap: 0;
        animation: creatorMarquee 22s linear infinite;
    }

    @keyframes creatorMarquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .creator-marquee-item {
        font-family: 'Syne', monospace;
        font-weight: 800;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: rgba(168, 85, 247, 0.8);
        padding: 0 2rem;
    }

    .creator-marquee-sep {
        color: rgba(236, 72, 153, 0.6);
        padding: 0 0.5rem;
    }

    /* ---- Inner content ---- */
    .creator-hero-inner {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Eyebrow code tag */
    .creator-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.625rem;
        padding: 0.4rem 1rem;
        border-radius: 8px;
        background: rgba(168, 85, 247, 0.08);
        border: 1px solid rgba(168, 85, 247, 0.2);
        font-family: 'Syne', monospace;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        color: rgba(192, 132, 252, 0.9);
        margin-bottom: 2rem;
        position: relative;
    }

    /* Blinking cursor */
    .creator-eyebrow::after {
        content: '|';
        font-weight: 300;
        color: rgba(236, 72, 153, 0.8);
        animation: creatorBlink 1s step-end infinite;
        margin-left: 2px;
    }

    @keyframes creatorBlink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }
    }

    .creator-eyebrow-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #6d28d9;
        box-shadow: 0 0 10px rgba(109, 40, 217, 0.6);
        flex-shrink: 0;
    }

    /* Headline */
    .creator-headline {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 800;
        font-size: clamp(2.75rem, 6vw, 4.5rem);
        color: rgba(255, 255, 255, 0.92);
        line-height: 1.05;
        letter-spacing: -0.04em;
        margin-bottom: 1.5rem;
    }

    .creator-headline-line1 {
        display: block;
    }

    .creator-headline-line2 {
        display: block;
        background: linear-gradient(90deg, #c084fc, #ec4899, #fb923c);
        background-size: 200% 100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: creatorGradShift 4s ease-in-out infinite alternate;
        position: relative;
        padding-bottom: 0.15em;
        /* Prevent gradient clip from cutting off descenders */
    }

    @keyframes creatorGradShift {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    /* Underline decoration */
    .creator-headline-line2::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 3px;
        border-radius: 99px;
        background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5), rgba(251, 146, 60, 0.4), transparent);
        animation: creatorUnderlineBreath 3s ease-in-out infinite alternate;
    }

    @keyframes creatorUnderlineBreath {
        0% {
            width: 55%;
            opacity: 0.5;
        }

        100% {
            width: 70%;
            opacity: 1;
        }
    }

    /* Body */
    .creator-body {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        color: rgba(255, 255, 255, 0.38);
        line-height: 1.8;
        max-width: 580px;
        margin: 1.5rem auto 2.75rem;
    }

    .creator-body strong {
        color: rgba(255, 255, 255, 0.72);
        font-weight: 600;
    }

    /* CTAs */
    .creator-cta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.875rem;
        justify-content: center;
        margin-bottom: 3.5rem;
    }

    .creator-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 2rem;
        border-radius: 12px;
        background: linear-gradient(135deg, #9333ea, #ec4899, #fb923c);
        background-size: 200% 100%;
        color: white;
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 24px rgba(236, 72, 153, 0.35);
        letter-spacing: 0.01em;
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .creator-btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: opacity 0.2s;
    }

    .creator-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 36px rgba(236, 72, 153, 0.55);
    }

    .creator-btn-primary:hover::before {
        opacity: 1;
    }

    .creator-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 1.75rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.25s;
        letter-spacing: 0.01em;
    }

    .creator-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.08);
        color: white;
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
    }

    /* ---- 3 second hook visual ---- */
    .creator-hook-strip {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        max-width: 540px;
        margin: 0 auto;
    }

    .creator-hook-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
        padding: 1.125rem 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.02);
        position: relative;
        transition: background 0.3s;
    }

    .creator-hook-item:first-child {
        border-radius: 14px 0 0 14px;
    }

    .creator-hook-item:last-child {
        border-radius: 0 14px 14px 0;
    }

    .creator-hook-item:not(:last-child) {
        border-right: none;
    }

    .creator-hook-item:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .creator-hook-num {
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .creator-hook-label {
        font-size: 0.62rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.25);
        text-align: center;
        line-height: 1.3;
    }

    .creator-hook-sep {
        font-family: 'Syne', sans-serif;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.08);
        padding: 0 0.25rem;
        flex-shrink: 0;
        align-self: center;
        font-weight: 300;
    }

    /* Floating tags decoration - corner elements */
    .creator-float-tag {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.4rem 0.875rem;
        border-radius: 99px;
        background: rgba(8, 5, 18, 0.85);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.65rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.55);
        z-index: 3;
        pointer-events: none;
        white-space: nowrap;
    }

    .creator-float-tag-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .creator-float-tag-1 {
        top: 22%;
        left: 3%;
        animation: creatorTagFloat1 5s ease-in-out infinite alternate;
    }

    .creator-float-tag-2 {
        top: 30%;
        right: 3%;
        animation: creatorTagFloat2 6s ease-in-out infinite alternate;
    }

    .creator-float-tag-3 {
        bottom: 20%;
        left: 5%;
        animation: creatorTagFloat1 7s ease-in-out infinite alternate-reverse;
    }

    @media (max-width: 1023px) {
        .creator-float-tag {
            display: none;
        }
    }

    @keyframes creatorTagFloat1 {
        0% {
            transform: translateY(0px) rotate(-1deg);
        }

        100% {
            transform: translateY(-10px) rotate(1deg);
        }
    }

    @keyframes creatorTagFloat2 {
        0% {
            transform: translateY(-8px) rotate(1deg);
        }

        100% {
            transform: translateY(4px) rotate(-1deg);
        }
    }

    /* Scroll hint */
    .creator-scroll {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.375rem;
    }

    .creator-scroll-mouse {
        width: 20px;
        height: 32px;
        border: 1.5px solid rgba(255, 255, 255, 0.15);
        border-radius: 99px;
        display: flex;
        justify-content: center;
        padding-top: 5px;
    }

    .creator-scroll-dot {
        width: 3px;
        height: 6px;
        border-radius: 99px;
        background: rgba(236, 72, 153, 0.6);
        animation: creatorScrollDot 2s ease-in-out infinite;
    }

    @keyframes creatorScrollDot {
        0% {
            transform: translateY(0);
            opacity: 1;
        }

        80% {
            transform: translateY(10px);
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            opacity: 0;
        }
    }

    .creator-scroll-label {
        font-size: 0.55rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: rgba(255, 255, 255, 0.18);
    }


    /* ===== PAIN POINTS SECTION ===== */
    #creator-pain {
        position: relative;
        padding: 6rem 0;
        background: #07060f;
        overflow: hidden;
    }

    #creator-pain::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 55% 40% at 50% 0%, rgba(239, 68, 68, 0.06) 0%, transparent 60%),
            radial-gradient(ellipse 40% 30% at 15% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 55%);
        pointer-events: none;
        z-index: 0;
    }

    /* Top separator line */
    .pain-top-line {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.4), transparent);
    }

    /* ---- Header ---- */
    .pain-header {
        position: relative;
        z-index: 2;
        text-align: center;
        margin-bottom: 4rem;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

    .pain-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(239, 68, 68, 0.6);
        margin-bottom: 1rem;
    }

    .pain-eyebrow-line {
        width: 24px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.4));
    }

    .pain-eyebrow-line.right {
        background: linear-gradient(90deg, rgba(239, 68, 68, 0.4), transparent);
    }

    .pain-title {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 800;
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        color: rgba(255, 255, 255, 0.92);
        line-height: 1.15;
        letter-spacing: -0.025em;
        margin-bottom: 0.875rem;
    }

    .pain-title-accent {
        background: linear-gradient(90deg, #f87171, #ef4444);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .pain-subtitle {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.32);
        line-height: 1.75;
    }

    /* ---- Cards grid ---- */
    .pain-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 22px;
        overflow: hidden;
        margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
        .pain-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* ---- Card ---- */
    .pain-card {
        position: relative;
        padding: 2rem 1.75rem;
        background: rgba(239, 68, 68, 0.02);
        overflow: hidden;
        transition: background 0.3s;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pain-card:hover {
        background: rgba(239, 68, 68, 0.045);
    }

    /* Top red accent line on hover */
    .pain-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.65), transparent);
        opacity: 0;
        transition: opacity 0.35s;
    }

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

    /* Radial glow on hover */
    .pain-card::after {
        content: '';
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(239, 68, 68, 0.1);
        filter: blur(50px);
        opacity: 0;
        transition: opacity 0.4s;
        pointer-events: none;
    }

    .pain-card:hover::after {
        opacity: 1;
    }

    /* Card number */
    .pain-card-num {
        font-family: 'Syne', monospace;
        font-weight: 800;
        font-size: 0.58rem;
        letter-spacing: 0.1em;
        color: rgba(239, 68, 68, 0.25);
        margin-bottom: 1.25rem;
        align-self: flex-start;
        transition: color 0.3s;
    }

    .pain-card:hover .pain-card-num {
        color: rgba(239, 68, 68, 0.45);
    }

    /* Icon */
    .pain-icon-wrap {
        position: relative;
        width: 56px;
        height: 56px;
        margin-bottom: 1.375rem;
        flex-shrink: 0;
    }

    .pain-icon-box {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: rgba(239, 68, 68, 0.08);
        border: 1px solid rgba(239, 68, 68, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s;
    }

    .pain-card:hover .pain-icon-box {
        transform: scale(1.1) rotate(-4deg);
        border-color: rgba(239, 68, 68, 0.35);
    }

    .pain-icon-box svg {
        width: 24px;
        height: 24px;
        stroke: #f87171;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* Strikethrough-style label — danger badge */
    .pain-danger-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.2rem 0.6rem;
        border-radius: 99px;
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid rgba(239, 68, 68, 0.2);
        font-size: 0.58rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(239, 68, 68, 0.7);
        margin-bottom: 0.75rem;
    }

    .pain-card-title {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.82);
        letter-spacing: -0.01em;
        margin-bottom: 0.625rem;
        transition: color 0.2s;
    }

    .pain-card:hover .pain-card-title {
        color: white;
    }

    .pain-card-desc {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.3);
        line-height: 1.75;
        transition: color 0.2s;
        flex: 1;
    }

    .pain-card:hover .pain-card-desc {
        color: rgba(255, 255, 255, 0.5);
    }

    /* Quote pill at bottom of card */
    .pain-quote {
        margin-top: 1.25rem;
        padding: 0.6rem 0.875rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.7rem;
        font-style: italic;
        color: rgba(255, 255, 255, 0.22);
        line-height: 1.5;
        text-align: left;
        width: 100%;
        opacity: 0;
        transform: translateY(6px);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .pain-card:hover .pain-quote {
        opacity: 1;
        transform: translateY(0);
    }

    /* ---- Solution teaser strip ---- */
    .pain-solution-strip {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 2rem;
        border-radius: 16px;
        background: rgba(168, 85, 247, 0.04);
        border: 1px solid rgba(168, 85, 247, 0.12);
        text-align: center;
    }

    @media (min-width: 640px) {
        .pain-solution-strip {
            flex-direction: row;
            text-align: left;
            gap: 1.5rem;
        }
    }

    .pain-solution-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(168, 85, 247, 0.1);
        border: 1px solid rgba(168, 85, 247, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .pain-solution-text {
        flex: 1;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.32);
        line-height: 1.65;
    }

    .pain-solution-text strong {
        color: rgba(168, 85, 247, 0.8);
        font-weight: 600;
    }

    .pain-solution-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.55rem 1.125rem;
        border-radius: 10px;
        background: rgba(168, 85, 247, 0.12);
        border: 1px solid rgba(168, 85, 247, 0.25);
        color: rgba(192, 132, 252, 0.9);
        font-size: 0.78rem;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        flex-shrink: 0;
    }

    .pain-solution-cta:hover {
        background: rgba(168, 85, 247, 0.2);
        border-color: rgba(168, 85, 247, 0.4);
        color: white;
        transform: translateY(-1px);
    }


    /* ===== CREATOR LAYANAN SECTION ===== */
    #layanan {
        position: relative;
        padding: 6rem 0;
        background: #0a0a12;
        overflow: hidden;
    }

    #layanan::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 55% 45% at 50% 0%, rgba(168, 85, 247, 0.08) 0%, transparent 60%),
            radial-gradient(ellipse 40% 35% at 90% 80%, rgba(236, 72, 153, 0.06) 0%, transparent 55%),
            radial-gradient(ellipse 35% 30% at 5% 70%, rgba(251, 146, 60, 0.05) 0%, transparent 55%);
        pointer-events: none;
        z-index: 0;
    }

    /* Subtle grid lines */
    #layanan::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
        background-size: 52px 52px;
        pointer-events: none;
        z-index: 0;
        mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
    }

    /* ---- Header ---- */
    .layanan-header {
        position: relative;
        z-index: 2;
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .layanan-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(255, 255, 255, 0.28);
        margin-bottom: 1rem;
    }

    .layanan-eyebrow-line {
        width: 24px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5));
    }

    .layanan-eyebrow-line.right {
        background: linear-gradient(90deg, rgba(236, 72, 153, 0.5), transparent);
    }

    .layanan-title {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 800;
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        color: rgba(255, 255, 255, 0.92);
        letter-spacing: -0.025em;
        line-height: 1.15;
        margin-bottom: 0.75rem;
    }

    .layanan-title span {
        background: linear-gradient(90deg, #c084fc, #ec4899, #fb923c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .layanan-subtitle {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.3);
        line-height: 1.7;
        max-width: 420px;
        margin: 0 auto;
    }

    /* ---- Bento Grid ---- */
    .layanan-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    @media (min-width: 768px) {
        .layanan-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: auto auto;
        }
    }

    /* ---- Service Card ---- */
    .svc-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(10, 8, 20, 0.6);
        backdrop-filter: blur(12px);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .svc-card:hover {
        transform: translateY(-6px);
        border-color: var(--svc-border-hover);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), var(--svc-glow-shadow);
    }

    /* Top scan accent line */
    .svc-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--svc-accent-line);
        opacity: 0;
        transition: opacity 0.35s;
        z-index: 10;
    }

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

    /* Image area */
    .svc-img-area {
        position: relative;
        height: 180px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .svc-img-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
        transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    }

    .svc-card:hover .svc-img-area img {
        transform: scale(1.08);
        opacity: 0.7;
    }

    /* Color tint overlay on image */
    .svc-img-tint {
        position: absolute;
        inset: 0;
        background: var(--svc-img-tint);
        transition: opacity 0.4s;
        opacity: 0.6;
    }

    .svc-card:hover .svc-img-tint {
        opacity: 0.4;
    }

    /* Number watermark on image */
    .svc-img-num {
        position: absolute;
        top: 0.875rem;
        right: 1rem;
        font-family: 'Syne', monospace;
        font-weight: 800;
        font-size: 4rem;
        line-height: 1;
        color: rgba(255, 255, 255, 0.06);
        letter-spacing: -0.05em;
        z-index: 2;
        pointer-events: none;
        transition: color 0.3s;
    }

    .svc-card:hover .svc-img-num {
        color: rgba(255, 255, 255, 0.1);
    }

    /* Category tag on image */
    .svc-img-tag {
        position: absolute;
        bottom: 0.875rem;
        left: 0.875rem;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.25rem 0.7rem;
        border-radius: 99px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.62rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--svc-tag-color);
        z-index: 5;
    }

    .svc-img-tag-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--svc-tag-color);
        box-shadow: 0 0 6px var(--svc-tag-color);
    }

    /* Content area */
    .svc-body {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    /* Icon + title row */
    .svc-icon-row {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        margin-bottom: 0.875rem;
    }

    .svc-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--svc-icon-bg);
        border: 1px solid var(--svc-icon-border);
        flex-shrink: 0;
        transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .svc-card:hover .svc-icon {
        transform: scale(1.12) rotate(-5deg);
    }

    .svc-icon svg {
        width: 18px;
        height: 18px;
        stroke: var(--svc-icon-color);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .svc-title {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.88);
        letter-spacing: -0.02em;
        transition: color 0.2s;
        line-height: 1.2;
    }

    .svc-card:hover .svc-title {
        color: white;
    }

    .svc-desc {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.3);
        line-height: 1.75;
        margin-bottom: 1.25rem;
        flex: 1;
        transition: color 0.2s;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .svc-card:hover .svc-desc {
        color: rgba(255, 255, 255, 0.5);
    }

    /* Feature pills */
    .svc-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
        margin-bottom: 1.25rem;
    }

    .svc-feature-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        padding: 0.2rem 0.6rem;
        border-radius: 99px;
        font-size: 0.6rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        color: rgba(255, 255, 255, 0.35);
        transition: all 0.2s;
    }

    .svc-card:hover .svc-feature-pill {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.55);
    }

    /* CTA link */
    .svc-link {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--svc-link-color);
        transition: gap 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        margin-top: auto;
    }

    .svc-card:hover .svc-link {
        gap: 0.7rem;
    }

    .svc-link svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        transition: transform 0.25s;
    }

    .svc-card:hover .svc-link svg {
        transform: translateX(3px);
    }

    /* ---- Bottom CTA strip ---- */
    .layanan-cta-strip {
        position: relative;
        z-index: 2;
        margin-top: 2.5rem;
        padding: 1.75rem 2rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        text-align: center;
    }

    @media (min-width: 640px) {
        .layanan-cta-strip {
            flex-direction: row;
            text-align: left;
        }
    }

    .layanan-cta-copy {
        flex: 1;
    }

    .layanan-cta-title {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.82);
        margin-bottom: 0.25rem;
    }

    .layanan-cta-sub {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.28);
        line-height: 1.6;
    }

    .layanan-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.7rem 1.5rem;
        border-radius: 10px;
        background: linear-gradient(135deg, #9333ea, #ec4899);
        color: white;
        font-size: 0.825rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
        white-space: nowrap;
        flex-shrink: 0;
        transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .layanan-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(236, 72, 153, 0.5);
    }


    /* ===== COMPARISON SECTION ===== */
    #creator-compare {
        position: relative;
        padding: 6rem 0;
        background: #07060f;
        overflow: hidden;
    }

    #creator-compare::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 50% 60% at 0% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 55%),
            radial-gradient(ellipse 45% 50% at 100% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 55%);
        pointer-events: none;
        z-index: 0;
    }

    /* ---- Header ---- */
    .compare-title {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 800;
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        color: rgba(255, 255, 255, 0.92);
        letter-spacing: -0.03em;
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .compare-title span {
        background: linear-gradient(90deg, #c084fc, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .compare-subtitle {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.32);
        line-height: 1.75;
        max-width: 400px;
    }

    /* ---- Comparison table ---- */
    .compare-table-wrap {
        position: relative;
        z-index: 2;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.07);
    }

    /* Header row */
    .compare-header-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .compare-header-cell {
        padding: 1rem 1.25rem;
        font-family: 'Syne', sans-serif;
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .compare-header-cell.bad {
        background: rgba(239, 68, 68, 0.08);
        color: rgba(239, 68, 68, 0.75);
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .compare-header-cell.good {
        background: rgba(168, 85, 247, 0.08);
        color: rgba(192, 132, 252, 0.85);
    }

    /* Items */
    .compare-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .compare-col {
        display: flex;
        flex-direction: column;
    }

    .compare-col.bad {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .compare-col.bad {
        background: rgba(239, 68, 68, 0.02);
    }

    .compare-col.good {
        background: rgba(168, 85, 247, 0.03);
    }

    .compare-item {
        padding: 0.875rem 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.8rem;
    }

    .compare-item:last-of-type {
        border-bottom: none;
    }

    .compare-item.bad-item {
        color: rgba(255, 255, 255, 0.38);
    }

    .compare-item.good-item {
        color: rgba(255, 255, 255, 0.68);
        font-weight: 500;
    }

    .compare-item-icon {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }

    /* Total row */
    .compare-total-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .compare-total-cell {
        padding: 1.125rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .compare-total-cell.bad {
        background: rgba(239, 68, 68, 0.06);
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .compare-total-cell.good {
        background: rgba(168, 85, 247, 0.08);
    }

    .compare-total-label {
        font-size: 0.62rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.2rem;
        opacity: 0.5;
    }

    .compare-total-num {
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: 1.25rem;
        letter-spacing: -0.03em;
        line-height: 1;
    }

    .compare-total-num.bad-num {
        color: rgba(239, 68, 68, 0.8);
    }

    .compare-total-num.good-num {
        background: linear-gradient(90deg, #c084fc, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Savings badge */
    .compare-savings-badge {
        text-align: center;
        margin-top: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .compare-savings-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.4rem 1rem;
        border-radius: 99px;
        background: rgba(168, 85, 247, 0.1);
        border: 1px solid rgba(168, 85, 247, 0.22);
        font-size: 0.75rem;
        font-weight: 700;
        color: rgba(192, 132, 252, 0.9);
    }

    /* ---- Right side: benefit items ---- */
    .compare-benefits {
        position: relative;
        z-index: 2;
    }

    .benefit-item {
        display: flex;
        gap: 1rem;
        padding: 1.375rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        align-items: flex-start;
        transition: all 0.2s;
    }

    .benefit-item:first-child {
        padding-top: 0;
    }

    .benefit-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .benefit-item:hover .benefit-icon {
        transform: scale(1.1) rotate(-4deg);
    }

    .benefit-icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        margin-top: 1px;
    }

    .benefit-icon svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .benefit-title {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 0.975rem;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 0.35rem;
        letter-spacing: -0.01em;
    }

    .benefit-desc {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.3);
        line-height: 1.7;
    }

    /* ===== STATS BAR ===== */
    #creator-stats {
        position: relative;
        padding: 4rem 0;
        background: #0a0a12;
        overflow: hidden;
    }

    #creator-stats::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 70% 80% at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 65%),
            radial-gradient(ellipse 40% 40% at 10% 90%, rgba(236, 72, 153, 0.06) 0%, transparent 55%),
            radial-gradient(ellipse 40% 40% at 90% 10%, rgba(251, 146, 60, 0.05) 0%, transparent 55%);
        pointer-events: none;
        z-index: 0;
    }

    /* Decorative top border */
    .creator-stats-topline {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.4), rgba(168, 85, 247, 0.4), transparent);
    }

    .creator-stats-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .creator-stats-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .creator-stat-item {
        position: relative;
        padding: 2.5rem 1.5rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.01);
        transition: background 0.3s;
        overflow: hidden;
    }

    .creator-stat-item:hover {
        background: rgba(255, 255, 255, 0.03);
    }

    /* Individual accent glow on hover */
    .creator-stat-item::after {
        content: '';
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--stat-glow);
        filter: blur(40px);
        opacity: 0;
        transition: opacity 0.4s;
        pointer-events: none;
    }

    .creator-stat-item:hover::after {
        opacity: 1;
    }

    .creator-stat-num {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 800;
        font-size: clamp(2rem, 5vw, 3rem);
        line-height: 1;
        letter-spacing: -0.04em;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
    }

    .creator-stat-label {
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.28);
        position: relative;
        z-index: 1;
        line-height: 1.4;
    }

    /* Top mini accent line per stat */
    .creator-stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 20%;
        right: 20%;
        height: 1.5px;
        background: var(--stat-line);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .creator-stat-item:hover::before {
        opacity: 1;
    }


    @media (min-width: 1024px) {
        .compare-main-grid {
            grid-template-columns: 1fr 1fr !important;
            gap: 5rem !important;
        }
    }


    /* ===== PORTFOLIO GALLERY + INFLUENCER ===== */
    #creator-showcase {
        position: relative;
        padding: 6rem 0;
        background: #07060f;
        overflow: hidden;
    }

    #creator-showcase::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 50% 40% at 50% 0%, rgba(168, 85, 247, 0.07) 0%, transparent 60%),
            radial-gradient(ellipse 40% 35% at 0% 70%, rgba(236, 72, 153, 0.05) 0%, transparent 55%),
            radial-gradient(ellipse 35% 30% at 100% 80%, rgba(251, 146, 60, 0.04) 0%, transparent 55%);
        pointer-events: none;
        z-index: 0;
    }

    /* ---- Shared section header ---- */
    .showcase-header {
        position: relative;
        z-index: 2;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .showcase-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(255, 255, 255, 0.28);
        margin-bottom: 0.875rem;
    }

    .showcase-eyebrow-line {
        width: 24px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5));
    }

    .showcase-eyebrow-line.right {
        background: linear-gradient(90deg, rgba(236, 72, 153, 0.5), transparent);
    }

    .showcase-title {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 800;
        font-size: clamp(1.625rem, 3.5vw, 2.5rem);
        color: rgba(255, 255, 255, 0.92);
        letter-spacing: -0.025em;
        line-height: 1.15;
        margin-bottom: 0.625rem;
    }

    .showcase-title span {
        background: linear-gradient(90deg, #c084fc, #ec4899, #fb923c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .showcase-subtitle {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.3);
        line-height: 1.7;
        max-width: 420px;
        margin: 0 auto;
    }

    /* ==============================
   PORTFOLIO GALLERY
   ============================== */
    .gallery-block {
        position: relative;
        z-index: 2;
        margin-bottom: 5rem;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 220px;
        gap: 0.75rem;
        border-radius: 20px;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .gallery-grid {
            grid-template-columns: 1fr 1fr 2fr;
            grid-template-rows: 240px 240px;
        }
    }

    /* Cell base */
    .gallery-cell {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        background: #141020;
        border: 1px solid rgba(255, 255, 255, 0.06);
        cursor: pointer;
    }

    .gallery-cell img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.55;
        transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    }

    .gallery-cell:hover img {
        transform: scale(1.08);
        opacity: 0.8;
    }

    /* Overlay */
    .gallery-cell-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(5, 3, 15, 0.92) 0%, rgba(5, 3, 15, 0.2) 50%, transparent 100%);
        transition: opacity 0.3s;
    }

    /* Label */
    .gallery-cell-label {
        position: absolute;
        bottom: 0.875rem;
        left: 0.875rem;
        right: 0.875rem;
        z-index: 5;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .gallery-cell-name {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.85);
        letter-spacing: -0.01em;
        line-height: 1.2;
        transition: color 0.2s;
    }

    .gallery-cell:hover .gallery-cell-name {
        color: white;
    }

    .gallery-cell-tag {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.2rem 0.55rem;
        border-radius: 99px;
        font-size: 0.58rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--cell-accent, rgba(255, 255, 255, 0.6));
        white-space: nowrap;
        flex-shrink: 0;
    }

    .gallery-cell-tag-dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--cell-accent, #fff);
        flex-shrink: 0;
    }

    /* Hover expand icon */
    .gallery-expand-icon {
        position: absolute;
        top: 0.875rem;
        right: 0.875rem;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.5);
        opacity: 0;
        transform: scale(0.7);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 5;
    }

    .gallery-cell:hover .gallery-expand-icon {
        opacity: 1;
        transform: scale(1);
        color: white;
    }

    /* Special cell spans */
    @media (min-width: 768px) {
        .gallery-cell-a {
            grid-row: span 2;
        }

        .gallery-cell-c {
            grid-column: span 1;
            grid-row: span 2;
        }
    }

    /* Mobile: make first cell span 2 cols */
    @media (max-width: 767px) {
        .gallery-cell-a {
            grid-column: span 2;
        }

        .gallery-cell-c {
            grid-column: span 2;
        }
    }

    /* ==============================
   INFLUENCER GRID
   ============================== */
    .influencer-block {
        position: relative;
        z-index: 2;
    }

    .influencer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
        .influencer-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .influencer-card {
        position: relative;
        padding: 1.5rem 1.25rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.015);
        transition: background 0.3s;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }

    .influencer-card:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .influencer-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--inf-accent-line);
        opacity: 0;
        transition: opacity 0.3s;
    }

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

    /* Avatar */
    .influencer-avatar-wrap {
        position: relative;
        width: 68px;
        height: 68px;
        margin-bottom: 1rem;
    }

    .influencer-avatar-ring {
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        background: var(--inf-gradient);
        opacity: 0.6;
        transition: opacity 0.3s;
    }

    .influencer-card:hover .influencer-avatar-ring {
        opacity: 1;
    }

    .influencer-avatar {
        position: relative;
        z-index: 2;
        width: 68px;
        height: 68px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #07060f;
        background: #1a1530;
    }

    .influencer-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(20%);
        transition: filter 0.3s;
    }

    .influencer-card:hover .influencer-avatar img {
        filter: grayscale(0%);
    }

    /* Tier badge */
    .influencer-tier {
        font-size: 0.58rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.28);
        margin-bottom: 0.35rem;
    }

    .influencer-niche {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.82);
        letter-spacing: -0.01em;
        margin-bottom: 0.75rem;
        transition: color 0.2s;
    }

    .influencer-card:hover .influencer-niche {
        color: white;
    }

    /* Stats pills */
    .influencer-stats {
        display: flex;
        gap: 0.4rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .influencer-stat-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.2rem 0.55rem;
        border-radius: 99px;
        font-size: 0.6rem;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.45);
    }

    /* Influencer CTA link */
    .influencer-cta-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.8rem;
        font-weight: 700;
        color: rgba(192, 132, 252, 0.8);
        text-decoration: none;
        transition: all 0.2s;
    }

    .influencer-cta-link:hover {
        color: white;
        gap: 0.65rem;
    }


    /* ===== DATA-DRIVEN SECTION ===== */
    #creator-data {
        position: relative;
        padding: 6rem 0;
        background: #0a0a12;
        overflow: hidden;
    }

    #creator-data::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 55% 55% at 100% 50%, rgba(168, 85, 247, 0.09) 0%, transparent 55%),
            radial-gradient(ellipse 40% 40% at 0% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 55%);
        pointer-events: none;
        z-index: 0;
    }

    /* Grid lines right side */
    #creator-data::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
        background-size: 48px 48px;
        pointer-events: none;
        z-index: 0;
        mask-image: radial-gradient(ellipse 60% 80% at 75% 50%, black 10%, transparent 100%);
    }

    /* Content side */
    .data-content {
        position: relative;
        z-index: 2;
    }

    .data-title {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 800;
        font-size: clamp(1.875rem, 4.5vw, 3rem);
        color: rgba(255, 255, 255, 0.92);
        letter-spacing: -0.03em;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .data-title span {
        background: linear-gradient(90deg, #c084fc, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .data-lead {
        font-size: 0.925rem;
        color: rgba(255, 255, 255, 0.35);
        line-height: 1.8;
        max-width: 420px;
        margin-bottom: 2.25rem;
    }

    .data-lead strong {
        color: rgba(255, 255, 255, 0.72);
        font-weight: 600;
    }

    /* Data points list */
    .data-points {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .data-point {
        display: flex;
        gap: 1rem;
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        align-items: flex-start;
        transition: all 0.2s;
    }

    .data-point:first-child {
        padding-top: 0;
    }

    .data-point:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .data-point:hover .data-point-icon {
        transform: scale(1.1) rotate(-4deg);
    }

    .data-point-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        margin-top: 1px;
    }

    .data-point-icon svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .data-point-title {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.82);
        margin-bottom: 0.3rem;
    }

    .data-point-desc {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.3);
        line-height: 1.7;
    }

    /* Visual side */
    .data-visual {
        position: relative;
        z-index: 2;
    }

    .data-img-wrap {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(168, 85, 247, 0.06);
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .data-img-wrap:hover {
        transform: rotate(0deg) scale(1.02);
    }

    .data-img-wrap img {
        width: 100%;
        display: block;
        opacity: 0.7;
        transition: opacity 0.4s;
    }

    .data-img-wrap:hover img {
        opacity: 0.88;
    }

    .data-img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.1));
    }

    /* Floating mini-stats on image */
    .data-float-stat {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 0.625rem;
        padding: 0.625rem 0.875rem;
        background: rgba(7, 5, 18, 0.88);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        z-index: 10;
    }

    .data-float-stat.pos-tl {
        top: 1.25rem;
        left: 1.25rem;
        animation: dataFloat1 4s ease-in-out infinite alternate;
    }

    .data-float-stat.pos-br {
        bottom: 1.25rem;
        right: 1.25rem;
        animation: dataFloat2 5s ease-in-out infinite alternate;
    }

    @keyframes dataFloat1 {
        0% {
            transform: translateY(0)
        }

        100% {
            transform: translateY(-7px)
        }
    }

    @keyframes dataFloat2 {
        0% {
            transform: translateY(-5px)
        }

        100% {
            transform: translateY(5px)
        }
    }

    .data-float-icon {
        width: 28px;
        height: 28px;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .data-float-label {
        font-size: 0.58rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 1px;
    }

    .data-float-value {
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1;
        letter-spacing: -0.02em;
    }

    /* Ambient glow behind image */
    .data-img-glow {
        position: absolute;
        inset: -30px;
        background: radial-gradient(ellipse, rgba(168, 85, 247, 0.18) 0%, transparent 65%);
        filter: blur(30px);
        border-radius: 50%;
        z-index: 0;
        animation: dataGlowBreath 5s ease-in-out infinite alternate;
    }

    @keyframes dataGlowBreath {
        0% {
            opacity: 0.6;
            transform: scale(0.95)
        }

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

    /* Responsive */
    @media (max-width: 1023px) {
        .data-lead {
            max-width: 100%;
        }
    }


    @media (min-width: 1024px) {
        .data-main-grid {
            grid-template-columns: 1fr 1fr !important;
            gap: 6rem !important;
        }
    }


    /* ===== HOW IT WORKS ===== */
    #creator-process {
        position: relative;
        padding: 6rem 0;
        background: #07060f;
        overflow: hidden;
    }

    #creator-process::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 60% 50% at 50% 50%, rgba(168, 85, 247, 0.07) 0%, transparent 65%),
            radial-gradient(ellipse 35% 30% at 10% 90%, rgba(236, 72, 153, 0.05) 0%, transparent 55%);
        pointer-events: none;
        z-index: 0;
    }

    /* ---- Header ---- */
    .process-header {
        position: relative;
        z-index: 2;
        text-align: center;
        margin-bottom: 4rem;
    }

    .process-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(255, 255, 255, 0.28);
        margin-bottom: 1rem;
    }

    .process-eyebrow-line {
        width: 24px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5));
    }

    .process-eyebrow-line.right {
        background: linear-gradient(90deg, rgba(236, 72, 153, 0.5), transparent);
    }

    .process-title {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        color: rgba(255, 255, 255, 0.92);
        letter-spacing: -0.025em;
        line-height: 1.15;
    }

    .process-title span {
        background: linear-gradient(90deg, #c084fc, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* ---- Steps layout ---- */
    .process-steps-wrap {
        position: relative;
        z-index: 2;
        max-width: 860px;
        margin: 0 auto;
    }

    /* Connecting line — desktop only */
    .process-connector {
        display: none;
        position: absolute;
        top: 52px;
        left: calc(16.67% + 26px);
        right: calc(16.67% + 26px);
        height: 1px;
        z-index: 0;
    }

    @media (min-width: 768px) {
        .process-connector {
            display: block;
        }
    }

    .process-connector-line {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg,
                rgba(192, 132, 252, 0.4) 0%,
                rgba(236, 72, 153, 0.4) 50%,
                rgba(251, 146, 60, 0.4) 100%);
        position: relative;
    }

    /* Animated traveling dot */
    .process-connector-dot {
        position: absolute;
        top: -3px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: white;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        animation: processConnectorTravel 4s ease-in-out infinite alternate;
    }

    @keyframes processConnectorTravel {
        0% {
            left: 0%;
            background: #c084fc;
            box-shadow: 0 0 10px rgba(192, 132, 252, 0.8);
        }

        50% {
            left: 50%;
            background: #ec4899;
            box-shadow: 0 0 10px rgba(236, 72, 153, 0.8);
        }

        100% {
            left: 100%;
            background: #fb923c;
            box-shadow: 0 0 10px rgba(251, 146, 60, 0.8);
        }
    }

    .process-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    @media (min-width: 768px) {
        .process-steps {
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
    }

    /* ---- Step card ---- */
    .process-step {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        overflow: hidden;
    }

    .process-step:hover {
        background: rgba(255, 255, 255, 0.045);
        transform: translateY(-4px);
        border-color: var(--step-border);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), var(--step-glow);
    }

    .process-step::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--step-line);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .process-step:hover::before {
        opacity: 1;
    }

    .process-step::after {
        content: '';
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: var(--step-bg-glow);
        filter: blur(50px);
        opacity: 0;
        transition: opacity 0.4s;
        pointer-events: none;
    }

    .process-step:hover::after {
        opacity: 1;
    }

    /* Step number circle */
    .process-step-num-wrap {
        position: relative;
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
        flex-shrink: 0;
    }

    .process-step-num-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 1px solid var(--step-ring-color);
        animation: processRingPulse 3s ease-in-out infinite;
        opacity: 0.4;
    }

    .process-step-num-ring-outer {
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 1px solid var(--step-ring-color);
        opacity: 0;
        transition: opacity 0.4s;
        animation: processRingPulse 3s ease-in-out infinite 0.5s;
    }

    .process-step:hover .process-step-num-ring-outer {
        opacity: 0.2;
    }

    @keyframes processRingPulse {

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

        50% {
            transform: scale(1.06);
            opacity: 0.6;
        }
    }

    .process-step-num-inner {
        position: absolute;
        inset: 4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Syne', monospace;
        font-weight: 800;
        font-size: 1.5rem;
        letter-spacing: -0.04em;
        line-height: 1;
        transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .process-step:hover .process-step-num-inner {
        transform: scale(1.08);
    }

    /* Step icon (small, above num) */
    .process-step-icon {
        position: absolute;
        top: -3px;
        right: -3px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--step-icon-bg);
        border: 1px solid var(--step-border);
        z-index: 5;
    }

    .process-step-icon svg {
        width: 11px;
        height: 11px;
        stroke: var(--step-icon-color);
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .process-step-title {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.85);
        letter-spacing: -0.01em;
        margin-bottom: 0.5rem;
        transition: color 0.2s;
    }

    .process-step:hover .process-step-title {
        color: white;
    }

    .process-step-desc {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.3);
        line-height: 1.75;
        transition: color 0.2s;
        flex: 1;
    }

    .process-step:hover .process-step-desc {
        color: rgba(255, 255, 255, 0.52);
    }

    /* Duration badge */
    .process-step-duration {
        margin-top: 1.25rem;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.25rem 0.7rem;
        border-radius: 99px;
        font-size: 0.62rem;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        color: rgba(255, 255, 255, 0.3);
        opacity: 0;
        transform: translateY(5px);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .process-step:hover .process-step-duration {
        opacity: 1;
        transform: translateY(0);
    }


    /* ===== CREATOR FINAL CTA ===== */
    #creator-cta {
        position: relative;
        padding: 7rem 0;
        background: #09060f;
        overflow: hidden;
    }

    /* Multi-layer bg — mirrors hero for bookend effect */
    #creator-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 65% 55% at 20% 40%, rgba(168, 85, 247, 0.16) 0%, transparent 55%),
            radial-gradient(ellipse 60% 50% at 85% 65%, rgba(236, 72, 153, 0.13) 0%, transparent 55%),
            radial-gradient(ellipse 45% 35% at 50% 100%, rgba(251, 146, 60, 0.07) 0%, transparent 55%);
        pointer-events: none;
        z-index: 0;
    }

    /* Morphing blobs — same as hero for consistency */
    .creator-cta-blob {
        position: absolute;
        pointer-events: none;
        z-index: 0;
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        filter: blur(3px);
    }

    .creator-cta-blob-1 {
        top: -80px;
        right: -80px;
        width: 360px;
        height: 360px;
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.07));
        animation: ctaBlobMorph 14s ease-in-out infinite alternate;
    }

    .creator-cta-blob-2 {
        bottom: -60px;
        left: -60px;
        width: 280px;
        height: 280px;
        background: linear-gradient(135deg, rgba(251, 146, 60, 0.07), rgba(236, 72, 153, 0.05));
        animation: ctaBlobMorph 18s ease-in-out infinite alternate-reverse;
    }

    @keyframes ctaBlobMorph {
        0% {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }

        50% {
            border-radius: 30% 70% 60% 40% / 50% 60% 40% 50%;
        }

        100% {
            border-radius: 50% 50% 40% 60% / 40% 50% 60% 50%;
        }
    }

    /* Noise */
    #creator-cta::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
        opacity: 0.025;
        pointer-events: none;
        z-index: 0;
    }

    .creator-cta-inner {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        padding: 0 1.25rem;
    }

    /* Urgency ticker */
    .creator-cta-urgency {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.35rem 1rem;
        border-radius: 99px;
        background: rgba(239, 68, 68, 0.08);
        border: 1px solid rgba(239, 68, 68, 0.2);
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: rgba(252, 165, 165, 0.85);
        margin-bottom: 1.75rem;
    }

    .creator-cta-urgency-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #f87171;
        box-shadow: 0 0 8px rgba(248, 113, 113, 0.7);
        animation: ctaUrgencyPulse 1.2s ease-in-out infinite;
        flex-shrink: 0;
    }

    @keyframes ctaUrgencyPulse {

        0%,
        100% {
            box-shadow: 0 0 4px rgba(248, 113, 113, 0.5);
            transform: scale(1);
        }

        50% {
            box-shadow: 0 0 14px rgba(248, 113, 113, 0.9);
            transform: scale(1.3);
        }
    }

    /* Title */
    .creator-cta-title {
        font-family: 'Syne', 'Space Grotesk', sans-serif;
        font-weight: 800;
        font-size: clamp(2rem, 5.5vw, 3.5rem);
        color: rgba(255, 255, 255, 0.92);
        line-height: 1.08;
        letter-spacing: -0.035em;
        margin-bottom: 1.25rem;
    }

    .creator-cta-title-gradient {
        display: block;
        background: linear-gradient(90deg, #c084fc, #ec4899, #fb923c);
        background-size: 200% 100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: ctaGradShift 4s ease-in-out infinite alternate;
    }

    @keyframes ctaGradShift {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    .creator-cta-desc {
        font-size: 0.975rem;
        color: rgba(255, 255, 255, 0.35);
        line-height: 1.8;
        max-width: 520px;
        margin: 0 auto 2.5rem;
    }

    .creator-cta-desc strong {
        color: rgba(255, 255, 255, 0.7);
        font-weight: 600;
    }

    /* Buttons */
    .creator-cta-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 0.875rem;
        justify-content: center;
        margin-bottom: 2.25rem;
    }

    .creator-cta-btn-main {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 1rem 2.25rem;
        border-radius: 14px;
        background: linear-gradient(135deg, #9333ea, #ec4899, #fb923c);
        background-size: 200% 100%;
        color: white;
        font-size: 0.95rem;
        font-weight: 800;
        text-decoration: none;
        letter-spacing: 0.01em;
        box-shadow: 0 6px 30px rgba(236, 72, 153, 0.4);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .creator-cta-btn-main::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.12);
        opacity: 0;
        transition: opacity 0.2s;
    }

    .creator-cta-btn-main:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 40px rgba(236, 72, 153, 0.6);
    }

    .creator-cta-btn-main:hover::before {
        opacity: 1;
    }

    .creator-cta-btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 1.75rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.25s;
        letter-spacing: 0.01em;
    }

    .creator-cta-btn-ghost:hover {
        background: rgba(255, 255, 255, 0.08);
        color: white;
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
    }

    /* Trust micro strip */
    .creator-cta-trust {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.25rem;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
    }

    .creator-cta-trust-item {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.22);
        font-weight: 600;
    }

    /* Competitor urgency micro-copy */
    .creator-cta-bottom-copy {
        padding: 1.25rem 1.5rem;
        border-radius: 14px;
        background: rgba(239, 68, 68, 0.04);
        border: 1px solid rgba(239, 68, 68, 0.1);
        display: flex;
        align-items: center;
        gap: 0.875rem;
        text-align: left;
        max-width: 480px;
        margin: 0 auto;
    }

    .creator-cta-bottom-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid rgba(239, 68, 68, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .creator-cta-bottom-text {
        font-size: 0.775rem;
        color: rgba(255, 255, 255, 0.28);
        line-height: 1.6;
    }

    .creator-cta-bottom-text strong {
        color: rgba(248, 113, 113, 0.75);
        font-weight: 600;
    }


    /* ============================================================
   MOBILE OPTIMIZATIONS v2 — creator.php
   Target: iPhone 14 Pro (393px) dan layar ≤ 639px.
   Berdasarkan screenshot aktual — fix agresif per section.
   ============================================================ */

    /* ── BASE: Cegah semua overflow horizontal ── */
    @media (max-width: 639px) {

        html,
        body {
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%;
        }

        /* Semua section tidak boleh overflow */
        #creator-hero,
        #creator-pain,
        #layanan,
        #creator-compare,
        #creator-stats,
        #creator-showcase,
        #creator-data,
        #creator-process,
        #creator-cta {
            overflow-x: hidden;
            max-width: 100vw;
        }

        /* Container bawaan Tailwind — pastikan tidak lebih lebar dari layar */
        .container {
            max-width: 100% !important;
        }

        /* ═══════════════════════════════════════
       1. HERO — Headline terpotong kiri-kanan
       ═══════════════════════════════════════ */
        #creator-hero {
            padding: 5.5rem 0 4rem;
        }

        /* Kunci hero inner agar tidak keluar layar */
        .creator-hero-inner {
            padding: 0 1.25rem !important;
            max-width: 100% !important;
            box-sizing: border-box;
        }

        /* Headline — font lebih kecil + word-break */
        .creator-headline {
            font-size: clamp(2rem, 6vw, 2.5rem) !important;
            line-height: 1.05 !important;
            letter-spacing: -0.025em !important;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .creator-headline-line1,
        .creator-headline-line2 {
            display: block;
            width: 100%;
        }

        /* Sembunyikan blob besar yang jadi penyebab overflow */
        .creator-deco-stripe-1,
        .creator-deco-stripe-2 {
            display: none;
        }

        /* Marquee */
        .creator-marquee-wrap {
            top: 4rem;
        }

        .creator-marquee-item {
            font-size: 0.48rem;
            padding: 0 1rem;
        }

        /* Eyebrow */
        .creator-eyebrow {
            font-size: 0.58rem;
            padding: 0.3rem 0.75rem;
            margin-bottom: 1.25rem;
            max-width: 100%;
        }

        /* Body */
        .creator-body {
            font-size: 0.83rem;
            line-height: 1.72;
            margin-bottom: 2rem;
            max-width: 100%;
        }

        /* CTA buttons — stacked full width */
        .creator-cta-row {
            flex-direction: column !important;
            align-items: stretch !important;
            gap: 0.75rem;
            margin-bottom: 2rem;
            width: 100%;
        }

        .creator-btn-primary,
        .creator-btn-secondary {
            width: 100% !important;
            justify-content: center !important;
            padding: 0.875rem 1rem !important;
            font-size: 0.875rem !important;
            min-height: 48px;
            border-radius: 12px !important;
            box-sizing: border-box;
        }

        /* Hook strip — 3 kolom tetap, tapi lebih compact */
        .creator-hook-strip {
            max-width: 100%;
        }

        .creator-hook-item {
            padding: 0.875rem 0.4rem;
        }

        .creator-hook-num {
            font-size: 1.15rem;
        }

        .creator-hook-label {
            font-size: 0.55rem;
            letter-spacing: 0.05em;
        }

        /* Sembunyikan scroll hint */
        .creator-scroll {
            display: none;
        }


        /* ═══════════════════════════════════════
       2. PAIN POINTS — 4 kolom berantakan
       ═══════════════════════════════════════
       Masalah: layout flex row (icon + badge + title + desc)
       terlalu sempit → teks terpotong ke kanan.
       Fix: ubah ke layout VERTIKAL murni, 1 kolom penuh.
    */
        #creator-pain {
            padding: 4rem 0;
        }

        .pain-header {
            margin-bottom: 2rem;
            max-width: 100%;
        }

        .pain-title {
            font-size: clamp(1.75rem, 7.5vw, 2.25rem) !important;
            word-break: break-word;
        }

        .pain-subtitle {
            font-size: 0.82rem;
        }

        .pain-grid {
            border-radius: 16px;
            display: flex !important;
            flex-direction: column !important;
        }

        /* Reset ke layout vertikal — satu blok per card */
        .pain-card {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            text-align: left !important;
            padding: 1.5rem 1.25rem !important;
            gap: 0 !important;
            width: 100%;
            box-sizing: border-box;
        }

        .pain-card-num {
            font-size: 0.55rem;
            margin-bottom: 0.75rem;
            align-self: flex-start;
        }

        /* Baris atas: icon + badge sejajar */
        .pain-icon-wrap {
            width: 44px !important;
            height: 44px !important;
            margin-bottom: 1rem !important;
            flex-shrink: 0;
        }

        .pain-icon-box {
            width: 44px !important;
            height: 44px !important;
            border-radius: 12px;
        }

        .pain-icon-box svg {
            width: 20px !important;
            height: 20px !important;
        }

        .pain-danger-badge {
            font-size: 0.58rem;
            margin-bottom: 0.625rem;
            padding: 0.2rem 0.6rem;
        }

        .pain-card-title {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .pain-card-desc {
            font-size: 0.8rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.38);
            width: 100%;
        }

        /* Quote selalu tampil */
        .pain-quote {
            opacity: 1 !important;
            transform: none !important;
            font-size: 0.7rem;
            margin-top: 1rem;
            width: 100%;
        }

        /* Solution strip */
        .pain-solution-strip {
            flex-direction: column !important;
            text-align: center !important;
            padding: 1.25rem 1.125rem;
            border-radius: 12px;
            gap: 0.875rem;
        }

        .pain-solution-text {
            font-size: 0.8rem;
        }

        .pain-solution-cta {
            width: 100%;
            justify-content: center;
            min-height: 44px;
        }


        /* ═══════════════════════════════════════
       3. LAYANAN / SERVICES
       ═══════════════════════════════════════ */
        #layanan {
            padding: 4rem 0;
        }

        .layanan-header {
            margin-bottom: 2rem;
        }

        .layanan-title {
            font-size: clamp(1.6rem, 7vw, 2.25rem);
            word-break: break-word;
        }

        .layanan-subtitle {
            font-size: 0.82rem;
        }

        .layanan-grid {
            grid-template-columns: 1fr !important;
            gap: 0.875rem;
        }

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

        .svc-img-area {
            height: 160px;
        }

        .svc-body {
            padding: 1.25rem;
        }

        .svc-icon-row {
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .svc-icon {
            width: 36px;
            height: 36px;
            border-radius: 9px;
        }

        .svc-icon svg {
            width: 16px;
            height: 16px;
        }

        .svc-title {
            font-size: 1rem;
        }

        .svc-desc {
            font-size: 0.78rem;
            -webkit-line-clamp: 3;
            margin-bottom: 1rem;
        }

        .svc-features {
            gap: 0.3rem;
            margin-bottom: 1rem;
        }

        .svc-feature-pill {
            font-size: 0.6rem;
        }

        .svc-link {
            font-size: 0.8rem;
        }

        .layanan-cta-strip {
            flex-direction: column !important;
            text-align: center !important;
            gap: 1rem;
            padding: 1.375rem 1.25rem;
            border-radius: 14px;
            margin-top: 1.5rem;
        }

        .layanan-cta-title {
            font-size: 0.95rem;
        }

        .layanan-cta-sub {
            font-size: 0.78rem;
        }

        .layanan-cta-btn {
            width: 100%;
            justify-content: center;
            min-height: 44px;
        }


        /* ═══════════════════════════════════════
       4. COMPARISON SECTION
       ═══════════════════════════════════════ */
        #creator-compare {
            padding: 4rem 0;
        }

        .compare-title {
            font-size: clamp(1.5rem, 6.5vw, 2.25rem);
            word-break: break-word;
        }

        .compare-subtitle {
            font-size: 0.82rem;
            max-width: 100%;
            margin-bottom: 1.5rem;
        }

        /* Tabel comparison — pastikan tidak overflow */
        .compare-table-wrap {
            border-radius: 14px;
            overflow: hidden;
        }

        .compare-header-row,
        .compare-body,
        .compare-total-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .compare-header-cell {
            padding: 0.75rem 0.625rem;
            font-size: 0.6rem;
            gap: 0.3rem;
        }

        .compare-header-cell svg {
            width: 10px;
            height: 10px;
            flex-shrink: 0;
        }

        .compare-item {
            padding: 0.7rem 0.625rem;
            font-size: 0.72rem;
            gap: 0.4rem;
        }

        .compare-item-icon {
            width: 13px;
            height: 13px;
            flex-shrink: 0;
        }

        .compare-total-cell {
            padding: 0.875rem 0.625rem;
        }

        .compare-total-num {
            font-size: 0.95rem;
        }

        .compare-total-label {
            font-size: 0.55rem;
        }

        .compare-savings-badge {
            flex-direction: column;
            gap: 0.35rem;
        }

        .compare-savings-pill {
            font-size: 0.7rem;
        }

        /* Benefits */
        .compare-benefits {
            margin-top: 0;
        }

        .benefit-item {
            gap: 0.875rem;
            padding: 1rem 0;
        }

        .benefit-icon {
            width: 36px;
            height: 36px;
            border-radius: 9px;
            flex-shrink: 0;
        }

        .benefit-icon svg {
            width: 16px;
            height: 16px;
        }

        .benefit-title {
            font-size: 0.9rem;
        }

        .benefit-desc {
            font-size: 0.78rem;
            line-height: 1.65;
        }


        /* ═══════════════════════════════════════
       5. STATS BAR
       ═══════════════════════════════════════ */
        #creator-stats {
            padding: 3rem 0;
        }

        .creator-stats-grid {
            grid-template-columns: repeat(2, 1fr) !important;
            border-radius: 14px;
        }

        .creator-stat-item {
            padding: 1.625rem 0.875rem;
        }

        .creator-stat-num {
            font-size: clamp(1.5rem, 7vw, 2rem);
        }

        .creator-stat-label {
            font-size: 0.6rem;
            letter-spacing: 0.07em;
        }


        /* ═══════════════════════════════════════
       6. SHOWCASE — Gallery berantakan
       ═══════════════════════════════════════
       Masalah: Cell B & D terlalu kecil (setengah kolom, satu baris)
       Fix: ubah gallery ke 1 kolom penuh, stacked.
    */
        #creator-showcase {
            padding: 4rem 0;
        }

        .showcase-header {
            margin-bottom: 2rem;
        }

        .showcase-title {
            font-size: clamp(1.5rem, 6.5vw, 2.25rem);
            word-break: break-word;
        }

        .showcase-subtitle {
            font-size: 0.82rem;
        }

        .gallery-block {
            margin-bottom: 3rem;
        }

        /* Override gallery grid jadi 1 kolom stacked */
        .gallery-grid {
            display: flex !important;
            flex-direction: column !important;
            gap: 0.625rem !important;
            border-radius: 16px !important;
            overflow: hidden !important;
        }

        /* Semua cell sama tinggi, full width */
        .gallery-cell,
        .gallery-cell-a,
        .gallery-cell-b,
        .gallery-cell-c,
        .gallery-cell-d {
            grid-column: unset !important;
            grid-row: unset !important;
            height: 180px !important;
            width: 100% !important;
            border-radius: 10px !important;
        }

        /* Cell pertama sedikit lebih tinggi sebagai hero */
        .gallery-cell-a {
            height: 220px !important;
        }

        /* Label & expand icon selalu tampil */
        .gallery-cell-label {
            opacity: 1 !important;
        }

        .gallery-expand-icon {
            opacity: 1 !important;
            transform: scale(1) !important;
            width: 24px;
            height: 24px;
        }

        .gallery-cell-name {
            font-size: 0.75rem;
        }

        .gallery-cell-tag {
            font-size: 0.57rem;
        }

        /* Influencer grid — tetap 2 kolom, compact */
        .influencer-grid {
            border-radius: 14px;
        }

        .influencer-card {
            padding: 1.25rem 0.875rem;
        }

        .influencer-avatar-wrap {
            width: 54px;
            height: 54px;
            margin-bottom: 0.75rem;
        }

        .influencer-avatar {
            width: 54px;
            height: 54px;
        }

        .influencer-tier {
            font-size: 0.54rem;
        }

        .influencer-niche {
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
        }

        .influencer-stat-pill {
            font-size: 0.56rem;
            padding: 0.18rem 0.45rem;
        }

        .influencer-cta-link {
            font-size: 0.78rem;
        }


        /* ═══════════════════════════════════════
       7. DATA-DRIVEN SECTION
       ═══════════════════════════════════════ */
        #creator-data {
            padding: 4rem 0;
        }

        .data-main-grid {
            gap: 2.5rem !important;
        }

        .data-title {
            font-size: clamp(1.5rem, 6.5vw, 2.25rem);
            word-break: break-word;
        }

        .data-lead {
            font-size: 0.83rem;
            max-width: 100%;
            margin-bottom: 1.75rem;
        }

        .data-point {
            gap: 0.875rem;
            padding: 1rem 0;
        }

        .data-point-icon {
            width: 36px;
            height: 36px;
            border-radius: 9px;
            flex-shrink: 0;
        }

        .data-point-icon svg {
            width: 16px;
            height: 16px;
        }

        .data-point-title {
            font-size: 0.9rem;
        }

        .data-point-desc {
            font-size: 0.78rem;
            line-height: 1.65;
        }

        .data-img-wrap {
            border-radius: 14px;
        }

        .data-float-stat {
            padding: 0.5rem 0.625rem;
            gap: 0.5rem;
            border-radius: 10px;
        }

        .data-float-stat.pos-tl {
            top: 0.625rem;
            left: 0.625rem;
        }

        .data-float-stat.pos-br {
            bottom: 0.625rem;
            right: 0.625rem;
        }

        .data-float-label {
            font-size: 0.5rem;
        }

        .data-float-value {
            font-size: 0.75rem;
        }

        .data-float-icon {
            width: 22px;
            height: 22px;
            border-radius: 5px;
        }


        /* ═══════════════════════════════════════
       8. PROCESS — Duration badge overflow kanan
       ═══════════════════════════════════════
       Masalah: step layout row (num + title + desc + duration)
       terlalu sempit → duration terpotong / dorong konten.
       Fix: layout vertikal murni, duration di bawah desc.
    */
        #creator-process {
            padding: 4rem 0;
        }

        .process-header {
            margin-bottom: 2rem;
        }

        .process-title {
            font-size: clamp(1.75rem, 7.5vw, 2.5rem) !important;
            word-break: break-word;
        }

        /* Connector line desktop — sembunyikan */
        .process-connector {
            display: none !important;
        }

        /* Steps — 1 kolom, layout vertikal */
        .process-steps {
            grid-template-columns: 1fr !important;
            gap: 0.875rem !important;
        }

        .process-step {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            text-align: center !important;
            padding: 1.75rem 1.25rem !important;
            gap: 0 !important;
            width: 100%;
            box-sizing: border-box;
        }

        /* Nomor circle */
        .process-step-num-wrap {
            width: 64px !important;
            height: 64px !important;
            margin-bottom: 1.25rem !important;
            flex-shrink: 0;
        }

        .process-step-num-inner {
            font-size: 1.25rem !important;
        }

        .process-step-icon {
            top: -2px;
            right: -2px;
            width: 22px;
            height: 22px;
        }

        .process-step-title {
            font-size: 1rem !important;
            margin-bottom: 0.5rem;
        }

        .process-step-desc {
            font-size: 0.8rem !important;
            line-height: 1.7;
            max-width: 100%;
        }

        /* Duration badge — selalu tampil, di bawah desc */
        .process-step-duration {
            opacity: 1 !important;
            transform: none !important;
            font-size: 0.62rem !important;
            margin-top: 1rem !important;
        }


        /* ═══════════════════════════════════════
       9. FINAL CTA
       ═══════════════════════════════════════ */
        #creator-cta {
            padding: 5rem 0;
        }

        .creator-cta-blob-1 {
            width: 200px;
            height: 200px;
            top: -50px;
            right: -50px;
        }

        .creator-cta-blob-2 {
            width: 160px;
            height: 160px;
            bottom: -40px;
            left: -40px;
        }

        .creator-cta-inner {
            padding: 0 1.25rem !important;
            max-width: 100% !important;
        }

        .creator-cta-urgency {
            font-size: 0.6rem;
            padding: 0.3rem 0.875rem;
            margin-bottom: 1.25rem;
        }

        .creator-cta-title {
            font-size: clamp(1.75rem, 7.5vw, 2.5rem) !important;
            word-break: break-word;
        }

        .creator-cta-desc {
            font-size: 0.83rem;
            max-width: 100%;
            margin-bottom: 1.75rem;
        }

        .creator-cta-btns {
            flex-direction: column !important;
            align-items: stretch !important;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            width: 100%;
        }

        .creator-cta-btn-main,
        .creator-cta-btn-ghost {
            width: 100% !important;
            justify-content: center !important;
            padding: 0.925rem 1rem !important;
            font-size: 0.875rem !important;
            border-radius: 12px !important;
            min-height: 48px;
            box-sizing: border-box;
        }

        .creator-cta-trust {
            gap: 0.625rem 1rem;
            margin-bottom: 1.5rem;
            justify-content: center;
        }

        .creator-cta-trust-item {
            font-size: 0.68rem;
        }

        .creator-cta-bottom-copy {
            flex-direction: column !important;
            text-align: center !important;
            gap: 0.875rem;
            padding: 1.125rem;
            border-radius: 12px;
        }

        .creator-cta-bottom-icon {
            margin: 0 auto;
        }

        .creator-cta-bottom-text {
            font-size: 0.75rem;
            line-height: 1.6;
        }
    }

    /* ═══════════════════════════════════════
   Extra small — iPhone SE & layar < 380px
   ═══════════════════════════════════════ */
    @media (max-width: 379px) {
        .creator-headline {
            font-size: clamp(1.625rem, 9vw, 2rem) !important;
        }

        .creator-body {
            font-size: 0.78rem;
        }

        .creator-hook-num {
            font-size: 1rem;
        }

        .creator-hook-item {
            padding: 0.75rem 0.3rem;
        }

        .pain-card {
            padding: 1.25rem 1rem !important;
        }

        .pain-card-title {
            font-size: 0.9rem;
        }

        .svc-img-area {
            height: 140px;
        }

        .compare-header-cell {
            font-size: 0.56rem;
            padding: 0.625rem 0.5rem;
        }

        .compare-item {
            font-size: 0.66rem;
            padding: 0.625rem 0.5rem;
        }

        .gallery-cell,
        .gallery-cell-b,
        .gallery-cell-c,
        .gallery-cell-d {
            height: 150px !important;
        }

        .gallery-cell-a {
            height: 185px !important;
        }

        .process-step-num-wrap {
            width: 54px !important;
            height: 54px !important;
        }

        .creator-cta-title {
            font-size: clamp(1.5rem, 9.5vw, 2rem) !important;
        }
    }


/* ==========================================================================
   KAIZORA CREATOR — PREMIUM LIGHT SYSTEM OVERRIDES
   Target: #6d28d9 purple accent, white bg, clean elements, scroll snap
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Scroll Snapping on HTML level --- */
html {
    scroll-behavior: smooth !important;
}

/* --- Section backgrounds & alignments --- */
#creator-hero,
#creator-pain,
#layanan,
#creator-compare,
#creator-stats,
#creator-showcase,
#creator-data,
#creator-process,
#creator-cta {
    background: #ffffff !important;
    color: #374151 !important;
    scroll-margin-top: 80px !important;
}

#creator-hero {
    scroll-margin-top: 0 !important;
}

/* --- Top glows and light grid patterns --- */
#creator-hero::before,
#creator-pain::before,
#layanan::before,
#creator-compare::before,
#creator-stats::before,
#creator-showcase::before,
#creator-data::before,
#creator-process::before,
#creator-cta::before {
    background: radial-gradient(ellipse 72% 55% at 50% 0%, rgba(109, 40, 217, 0.04) 0%, transparent 65%) !important;
}

#creator-hero::after,
#creator-pain::after,
#layanan::after,
#creator-compare::after,
#creator-stats::after,
#creator-showcase::after,
#creator-data::after,
#creator-process::after,
#creator-cta::after {
    background-image:
        linear-gradient(rgba(109, 40, 217, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109, 40, 217, 0.012) 1px, transparent 1px) !important;
    background-size: 52px 52px !important;
    opacity: 1 !important;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 10%, transparent 100%) !important;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 10%, transparent 100%) !important;
}

/* --- Typography Normalization (Plus Jakarta Sans) --- */
.font-syne,
.creator-marquee-item,
.creator-eyebrow,
.creator-headline,
.creator-hook-num,
.pain-eyebrow,
.pain-title,
.pain-card-num,
.pain-card-title,
.pain-solution-cta,
.compare-title,
.compare-tab-btn,
.compare-cell.metric,
.benefit-title,
.creator-stat-num,
.showcase-title,
.showcase-tab,
.showcase-card-title,
.data-title,
.data-float-value,
.process-title,
.process-step-num-inner,
.creator-cta-urgency,
.creator-cta-title,
.creator-cta-btn-main,
.creator-cta-btn-ghost,
.process-step-title,
.compare-total-num,
.data-point-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* --- Main Heading Colors (FIX WHITE-ON-WHITE) --- */
.creator-headline,
.creator-headline-line1,
.pain-title,
.layanan-title,
.compare-title,
.showcase-title,
.data-title,
.process-title,
.creator-cta-title {
    color: #111827 !important;
}

/* --- Accent Gradients and Badges --- */
.creator-headline-line2,
.pain-title-accent,
.compare-title span,
.layanan-title span,
.showcase-title span,
.process-title span,
.creator-cta-title-gradient {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: #6d28d9 !important;
}

.creator-headline-line2::after {
    background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.4), rgba(109, 40, 217, 0.2), transparent) !important;
}

.creator-eyebrow,
.pain-eyebrow,
.process-eyebrow,
.showcase-eyebrow,
.layanan-eyebrow,
.creator-cta-urgency {
    background: rgba(109, 40, 217, 0.06) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
    color: #6d28d9 !important;
}

.creator-eyebrow-dot,
.creator-cta-urgency-dot {
    background: #6d28d9 !important;
    box-shadow: 0 0 10px rgba(109, 40, 217, 0.4) !important;
}

.pain-eyebrow-line,
.process-eyebrow-line,
.showcase-eyebrow-line,
.layanan-eyebrow-line {
    background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.3)) !important;
}

.pain-eyebrow-line.right,
.process-eyebrow-line.right,
.showcase-eyebrow-line.right,
.layanan-eyebrow-line.right {
    background: linear-gradient(90deg, rgba(109, 40, 217, 0.3), transparent) !important;
}

/* --- Hero Element Updates --- */
.creator-deco-stripe-1 {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.04), rgba(109, 40, 217, 0.01)) !important;
}
.creator-deco-stripe-2 {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.03), rgba(109, 40, 217, 0.01)) !important;
}
.creator-float-tag {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(109, 40, 217, 0.12) !important;
    color: #4b5563 !important;
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.06) !important;
}
.creator-marquee-item {
    color: rgba(109, 40, 217, 0.6) !important;
}
.creator-marquee-sep {
    color: rgba(109, 40, 217, 0.3) !important;
}
.creator-body,
.pain-subtitle,
.compare-subtitle,
.layanan-subtitle,
.showcase-subtitle,
.process-subtitle,
.creator-cta-desc {
    color: #4b5563 !important;
}

.creator-scroll-mouse {
    border: 1.5px solid rgba(109, 40, 217, 0.3) !important;
}
.creator-scroll-label {
    color: rgba(109, 40, 217, 0.6) !important;
}

/* --- Buttons --- */
.creator-btn-primary,
.creator-cta-btn-main,
.layanan-cta-btn {
    background: #6d28d9 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.2) !important;
    transition: all 0.3s ease !important;
}
.creator-btn-primary:hover,
.creator-cta-btn-main:hover,
.layanan-cta-btn:hover {
    background: #6d28d9 !important;
    filter: brightness(0.88) !important;
    box-shadow: 0 12px 30px rgba(109, 40, 217, 0.3) !important;
}
.creator-btn-secondary,
.creator-cta-btn-ghost {
    background: rgba(109, 40, 217, 0.02) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
    color: #6d28d9 !important;
}
.creator-btn-secondary:hover,
.creator-cta-btn-ghost:hover {
    background: rgba(109, 40, 217, 0.06) !important;
    border-color: #6d28d9 !important;
    color: #6d28d9 !important;
}

/* --- 3s Hook --- */
.creator-hook-item {
    background: rgba(109, 40, 217, 0.01) !important;
    border: 1px solid rgba(109, 40, 217, 0.06) !important;
}
.creator-hook-item:hover {
    background: rgba(109, 40, 217, 0.03) !important;
    border-color: rgba(109, 40, 217, 0.12) !important;
}
.creator-hook-label {
    color: #6b7280 !important;
}

/* --- Pain Points Cards --- */
.pain-top-line {
    background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.3), transparent) !important;
}
.pain-grid {
    background: rgba(109, 40, 217, 0.04) !important;
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.pain-card {
    background: #ffffff !important;
}
.pain-card:hover {
    background: rgba(109, 40, 217, 0.01) !important;
}
.pain-card::before {
    background: linear-gradient(90deg, transparent, #6d28d9, transparent) !important;
}
.pain-card::after {
    background: rgba(109, 40, 217, 0.04) !important;
}
.pain-card-num {
    color: rgba(109, 40, 217, 0.2) !important;
}
.pain-card:hover .pain-card-num {
    color: #6d28d9 !important;
}
.pain-icon-box {
    background: rgba(109, 40, 217, 0.05) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
}
.pain-icon-box svg {
    stroke: #6d28d9 !important;
}
.pain-danger-badge {
    background: rgba(109, 40, 217, 0.06) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
    color: #6d28d9 !important;
}
.pain-card-title {
    color: #1f2937 !important;
}
.pain-card:hover .pain-card-title {
    color: #6d28d9 !important;
}
.pain-card-desc {
    color: #4b5563 !important;
}
.pain-quote {
    background: rgba(109, 40, 217, 0.02) !important;
    border: 1px solid rgba(109, 40, 217, 0.06) !important;
    color: #6b7280 !important;
}
.pain-solution-strip {
    background: rgba(109, 40, 217, 0.02) !important;
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.pain-solution-icon {
    background: rgba(109, 40, 217, 0.06) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
}
.pain-solution-icon svg {
    stroke: #6d28d9 !important;
}
.pain-solution-text {
    color: #4b5563 !important;
}
.pain-solution-text strong {
    color: #6d28d9 !important;
}
.pain-solution-cta {
    background: rgba(109, 40, 217, 0.08) !important;
    border: 1px solid rgba(109, 40, 217, 0.2) !important;
    color: #6d28d9 !important;
}
.pain-solution-cta:hover {
    background: #6d28d9 !important;
    border-color: #6d28d9 !important;
    color: #ffffff !important;
}

/* --- Services Bento Cards (FIX WHITE-ON-WHITE TEXT) --- */
.svc-card {
    background: #ffffff !important;
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
    box-shadow: 0 15px 35px rgba(109, 40, 217, 0.02) !important;
}
.svc-card:hover {
    border-color: rgba(109, 40, 217, 0.25) !important;
    box-shadow: 0 20px 45px rgba(109, 40, 217, 0.08) !important;
}
.svc-img-area img {
    opacity: 0.8 !important;
}
.svc-card:hover .svc-img-area img {
    opacity: 0.95 !important;
}
.svc-img-tint {
    background: linear-gradient(to bottom, rgba(109, 40, 217, 0.1), rgba(109, 40, 217, 0.05)) !important;
}
.svc-img-num {
    color: rgba(109, 40, 217, 0.1) !important;
}
.svc-img-tag {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(109, 40, 217, 0.12) !important;
    color: #6d28d9 !important;
}
.svc-img-tag-dot {
    background: #6d28d9 !important;
}
.svc-body {
    background: #ffffff !important;
}
.svc-icon {
    background: rgba(109, 40, 217, 0.05) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
    color: #6d28d9 !important;
}
.svc-title {
    color: #1f2937 !important;
}
.svc-card:hover .svc-title {
    color: #6d28d9 !important;
}
.svc-desc {
    color: #4b5563 !important;
}
.svc-card:hover .svc-desc {
    color: #374151 !important;
}
.svc-feature-pill {
    background: rgba(109, 40, 217, 0.04) !important;
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
    color: #4b5563 !important;
}
.svc-card:hover .svc-feature-pill {
    background: rgba(109, 40, 217, 0.08) !important;
    color: #6d28d9 !important;
}
.svc-link {
    color: #6d28d9 !important;
}

/* --- Comparison Section (FIX TEXT CONTRAST) --- */
.compare-table-wrap {
    background: #ffffff !important;
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.compare-header-row {
    background: rgba(109, 40, 217, 0.02) !important;
    border-bottom: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.compare-header-cell {
    color: #374151 !important;
    border-bottom: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.compare-header-cell.bad {
    background: rgba(239, 68, 68, 0.05) !important;
    color: #b91c1c !important;
    border-right: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.compare-header-cell.good {
    background: rgba(109, 40, 217, 0.05) !important;
    color: #6d28d9 !important;
}
.compare-body {
    background: #ffffff !important;
}
.compare-col.bad {
    background: #f9fafb !important;
    border-right: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.compare-col.good {
    background: rgba(109, 40, 217, 0.01) !important;
}
.compare-item {
    color: #4b5563 !important;
    border-bottom: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.compare-item.bad-item {
    color: #4b5563 !important;
}
.compare-item.good-item {
    color: #111827 !important;
}
.compare-total-row {
    background: rgba(109, 40, 217, 0.02) !important;
    border-top: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.compare-total-cell.bad {
    border-right: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.compare-total-label {
    color: #6b7280 !important;
}
.compare-total-num.bad-num {
    color: #ef4444 !important;
}
.compare-total-num.good-num {
    color: #6d28d9 !important;
}
.compare-savings-pill {
    background: rgba(109, 40, 217, 0.06) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
    color: #6d28d9 !important;
}
.compare-savings-badge div {
    color: #6b7280 !important;
}
.benefit-icon {
    background: rgba(109, 40, 217, 0.05) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
}
.benefit-icon svg {
    stroke: #6d28d9 !important;
}
.benefit-title {
    color: #1f2937 !important;
}
.benefit-desc {
    color: #4b5563 !important;
}

/* --- Stats Section --- */
.creator-stats-topline {
    background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.2), transparent) !important;
}
.creator-stat-item {
    background: #ffffff !important;
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.02) !important;
    --stat-glow: rgba(109, 40, 217, 0.05) !important;
    --stat-line: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.2), transparent) !important;
}
.creator-stat-num {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: #6d28d9 !important;
}
.creator-stat-label {
    color: #4b5563 !important;
}

/* --- Showcase Section --- */
.gallery-cell {
    background: #ffffff !important;
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.gallery-cell img {
    opacity: 0.8 !important;
}
.gallery-cell:hover img {
    opacity: 0.95 !important;
}
.gallery-cell-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.1) 60%, transparent 100%) !important;
}
.gallery-cell-name {
    color: #111827 !important;
}
.gallery-cell-tag {
    background: rgba(109, 40, 217, 0.05) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
    color: #6d28d9 !important;
}
.gallery-cell-tag-dot {
    background: #6d28d9 !important;
}
.gallery-expand-icon {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
    color: #6d28d9 !important;
}
.gallery-cell:hover .gallery-expand-icon {
    color: #6d28d9 !important;
    background: #ffffff !important;
    border-color: #6d28d9 !important;
}

/* --- Influencer block --- */
.influencer-grid {
    background: rgba(109, 40, 217, 0.04) !important;
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.influencer-card {
    background: #ffffff !important;
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
    --inf-accent-line: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.25), transparent) !important;
}
.influencer-card:hover {
    background: rgba(109, 40, 217, 0.02) !important;
}
.influencer-avatar-ring {
    background: #6d28d9 !important;
}
.influencer-tier {
    color: #111827 !important;
}
.influencer-niche {
    color: #6b7280 !important;
}
.influencer-stat-pill {
    background: rgba(109, 40, 217, 0.04) !important;
    border: 1px solid rgba(109, 40, 217, 0.1) !important;
    color: #4b5563 !important;
}
.influencer-stat-pill svg {
    stroke: #6d28d9 !important;
}
.influencer-cta-link {
    background: rgba(109, 40, 217, 0.04) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
    color: #6d28d9 !important;
}
.influencer-cta-link:hover {
    background: #6d28d9 !important;
    color: #ffffff !important;
    border-color: #6d28d9 !important;
}

/* --- Data driven Section --- */
.data-point {
    background: #ffffff !important;
}
.data-point-icon {
    background: rgba(109, 40, 217, 0.05) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
}
.data-point-icon svg {
    stroke: #6d28d9 !important;
}
.data-point-title {
    color: #1f2937 !important;
}
.data-point-desc {
    color: #4b5563 !important;
}
.data-img-wrap {
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
    box-shadow: 0 20px 45px rgba(109, 40, 217, 0.04) !important;
}
.data-img-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2) 0%, transparent 100%) !important;
}
.data-float-stat {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(109, 40, 217, 0.12) !important;
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.06) !important;
}
.data-float-icon {
    background: rgba(109, 40, 217, 0.06) !important;
    border: 1px solid rgba(109, 40, 217, 0.15) !important;
}
.data-float-icon svg {
    stroke: #6d28d9 !important;
}
.data-float-label {
    color: #6b7280 !important;
}
.data-float-value {
    color: #111827 !important;
}

/* --- Process Section (FIX CARD AND NUM STYLING) --- */
.process-step {
    background: #ffffff !important;
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
    --step-border: rgba(109, 40, 217, 0.1) !important;
    --step-glow: 0 0 40px rgba(109, 40, 217, 0.02) !important;
    --step-bg-glow: rgba(109, 40, 217, 0.04) !important;
    --step-ring-color: rgba(109, 40, 217, 0.15) !important;
    --step-line: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.3), transparent) !important;
    --step-icon-bg: rgba(109, 40, 217, 0.06) !important;
    --step-icon-color: #6d28d9 !important;
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.02) !important;
}
.process-step:hover {
    border-color: #6d28d9 !important;
    box-shadow: 0 15px 35px rgba(109, 40, 217, 0.08) !important;
}
.process-step-num-inner {
    background: rgba(109, 40, 217, 0.04) !important;
    border: 1px solid rgba(109, 40, 217, 0.1) !important;
    color: #6d28d9 !important;
}
.process-step:hover .process-step-num-inner {
    background: rgba(109, 40, 217, 0.08) !important;
    border-color: #6d28d9 !important;
}
.process-connector-line {
    background: rgba(109, 40, 217, 0.1) !important;
}
.process-connector-dot {
    background: #6d28d9 !important;
    box-shadow: 0 0 10px rgba(109, 40, 217, 0.8) !important;
    animation: none !important;
}
.process-step-title {
    color: #1f2937 !important;
}
.process-step-desc {
    color: #4b5563 !important;
}
.process-step:hover .process-step-title {
    color: #6d28d9 !important;
}
.process-step:hover .process-step-desc {
    color: #374151 !important;
}
.process-step-duration {
    background: rgba(109, 40, 217, 0.04) !important;
    border: 1px solid rgba(109, 40, 217, 0.1) !important;
    color: #6d28d9 !important;
}

/* --- Final CTA Section --- */
.creator-cta-blob-1 {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05), rgba(109, 40, 217, 0.01)) !important;
}
.creator-cta-blob-2 {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.03), rgba(109, 40, 217, 0.01)) !important;
}
.creator-cta-trust-item {
    color: #4b5563 !important;
}
.creator-cta-bottom-copy {
    background: rgba(109, 40, 217, 0.02) !important;
    border: 1px solid rgba(109, 40, 217, 0.08) !important;
}
.creator-cta-bottom-text {
    color: #4b5563 !important;
}
.creator-cta-bottom-text strong {
    color: #6d28d9 !important;
}
