
			/* === Using Your Exact Color Variables === */
			.futuristic-section {
				background: var(--ambient);
				padding: 110px 20px;
				position: relative;
				overflow: hidden;
			}

			.container {
				max-width: 1380px;
				margin: 0 auto;
			}

			/* Header */
			.section-head {
				text-align: center;
				margin-bottom: 5rem;
			}

			.eyebrow {
				font-size: 0.95rem;
				font-weight: 600;
				letter-spacing: 4px;
				color: var(--lilac);
				text-transform: uppercase;
				margin-bottom: 0.8rem;
			}

			.section-title {
				font-size: clamp(2.5rem, 5.5vw, 3.8rem);
				font-weight: 700;
				line-height: 1.1;
				color: var(--text);
				margin-bottom: 1rem;
			}

			.section-title .italic {
			
				color: var(--bright);
			}

			.section-subtitle {
				font-size: 1.15rem;
				color: var(--text-2);
				max-width: 560px;
				margin: 0 auto;
			}

			/* Grid - 4 columns */
			.services-grid {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
				gap: 2rem;
			}

			@media (min-width: 1200px) {
				.services-grid {
					grid-template-columns: repeat(4, 1fr);
					/* Forces 4 boxes in a line */
				}
			}

			/* Card */
			.service-card {
				background: var(--panel);
				border: 1px solid var(--border);
				border-radius: 24px;
				padding: 2.4rem 1.9rem;
				transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
				position: relative;
				overflow: hidden;
			}

			.service-card::before {
				content: '';
				position: absolute;
				inset: 0;
				background: var(--grad-orb);
				opacity: 0;
				transition: opacity 0.5s ease;
				z-index: -1;
			}

			.service-card:hover {
				transform: translateY(-12px);
				border-color: var(--border-2);
				box-shadow: var(--shadow-lg);
			}

			.service-card:hover::before {
				opacity: 0.55;
			}

			/* Icon */
			.service-icon-wrapper {
				width: 76px;
				height: 76px;
				background: var(--panel-2);
				border: 1px solid rgba(157, 124, 255, 0.25);
				border-radius: 20px;
				display: flex;
				align-items: center;
				justify-content: center;
				margin-bottom: 1.8rem;
				color: var(--lilac);
				transition: all 0.4s ease;
			}

			.service-card:hover .service-icon-wrapper {
				background: rgba(109, 60, 255, 0.18);
				color: var(--bright);
				transform: rotate(10deg) scale(1.1);
				border-color: var(--bright);
			}

			.service-card h3 {
				font-size: 1.48rem;
				font-weight: 600;
				color: var(--text);
				margin-bottom: 0.85rem;
			}

			.service-card p {
				color: var(--text-2);
				line-height: 1.65;
				margin-bottom: 1.6rem;
				font-size: 1.02rem;
			}

			.service-count {
				display: inline-block;
				font-size: 0.86rem;
				font-weight: 600;
				color: var(--mist);
				background: rgba(157, 124, 255, 0.08);
				padding: 8px 18px;
				border-radius: 50px;
				border: 1px solid var(--border);
			}

			/* Responsive */
			@media (max-width: 768px) {
				.services-grid {
					grid-template-columns: 1fr;
					gap: 1.8rem;
				}
			}
			/* Flow Section - Improved Design */
.flow-section {
    background: var(--ambient);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.integration-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 2rem 0;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar */
}

.integration-flow::-webkit-scrollbar {
    display: none;
}

/* Flow Box */
.flow-box {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.4rem 2rem;
    min-width: 260px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.flow-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-orb);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.flow-box:hover {
    transform: translateY(-12px);
    border-color: var(--bright);
    box-shadow: var(--shadow-lg);
}

.flow-box:hover::before {
    opacity: 0.6;
}

.flow-number {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: var(--bright);
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.flow-box h4 {
    color: var(--text);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.flow-box p {
    color: var(--text-2);
    line-height: 1.65;
    font-size: 1.02rem;
}

/* Connector */
.flow-connector {
    display: flex;
    align-items: center;
    min-width: 60px;
    justify-content: center;
    position: relative;
}

.flow-arrow {
    font-size: 2.4rem;
    color: var(--lilac);
    transition: all 0.4s ease;
}

.flow-box:hover ~ .flow-connector .flow-arrow,
.flow-connector:hover .flow-arrow {
    color: var(--bright);
    transform: scale(1.2);
}

/* Subtle connecting line */
.flow-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    right: -20%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--border-2), transparent);
    z-index: -1;
}

/* Responsive */
@media (max-width: 1200px) {
    .flow-box {
        min-width: 240px;
        padding: 2rem 1.6rem;
    }
}

@media (max-width: 768px) {
    .integration-flow {
        flex-wrap: nowrap;     /* Keeps them in one line */
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .flow-box {
        min-width: 220px;
        padding: 1.8rem 1.4rem;
    }
    
    .flow-number {
        font-size: 2.6rem;
    }
}

       

        .futuristic-title {
            font-size: clamp(3.6rem, 8.5vw, 6.5rem);
            font-weight: 700;
            line-height: 1.05;
            background: linear-gradient(90deg, #EDEAFB, #9D7CFF, #6D3CFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.4rem;
        }

        .hero-subtitle {
            font-size: clamp(1.35rem, 3.2vw, 1.7rem);
            color: var(--text-2);
            line-height: 1.45;
        }

        .neon-divider {
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--bright), var(--lilac));
            margin: 2.8rem 0;
            border-radius: 4px;
        }

        /* Sections */
        .partner-section {
            padding: 130px 20px;
        }

        .section-head {
            text-align: center;
            margin-bottom: 5.5rem;
        }

        .eyebrow {
            color: var(--lilac);
            letter-spacing: 5px;
            font-weight: 600;
        }

        .section-title {
            font-size: clamp(2.4rem, 5.5vw, 3.6rem);
            color: var(--text);
            margin-top: 1rem;
        }

        /* Benefits Grid */
        .partner-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2.4rem;
        }

        .futuristic-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: 26px;
            padding: 2.8rem 2.3rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .futuristic-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--grad-orb);
            opacity: 0;
            transition: 0.5s;
            z-index: -1;
        }

        .futuristic-card:hover {
            transform: translateY(-16px);
            border-color: var(--bright);
            box-shadow: var(--shadow-lg);
        }

        .futuristic-card:hover::before {
            opacity: 0.6;
        }

        .benefit-num {
            font-size: 3.6rem;
            font-weight: 700;
            color: var(--bright);
            opacity: 0.9;
            margin-bottom: 1.4rem;
            line-height: 1;
        }


/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

    /* HERO TITLE */
    .futuristic-title {
        font-size: clamp(2.2rem, 7vw, 3rem);
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .neon-divider {
        height: 3px;
        margin: 1.8rem 0;
    }

    /* SECTION SPACING */
    .partner-section {
        padding: 60px 16px;
    }

    .section-head {
        margin-bottom: 2.5rem;
    }

    .eyebrow {
        letter-spacing: 2px;
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-top: 0.6rem;
        line-height: 1.3;
    }

    /* GRID FIX */
    .partner-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* CARD FIX */
    .futuristic-card {
        padding: 1.6rem 1.4rem;
        border-radius: 18px;
    }

    /* REMOVE HOVER EFFECTS (mobile doesn't need them) */
    .futuristic-card:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--border);
    }

    .futuristic-card::before {
        display: none;
    }

    /* NUMBER SIZE */
    .benefit-num {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
}
        /* Flow Section */
       /* Partner Flow - All 4 in One Line */
.partner-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar */
    scroll-snap-type: x mandatory;
}

.partner-flow::-webkit-scrollbar {
    display: none;
}

.flow-step {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.6rem 2.1rem;
    min-width: 260px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: center;
}

.flow-step:hover {
    transform: translateY(-12px);
    border-color: var(--bright);
    box-shadow: var(--shadow-lg);
}

.step-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bright);
    margin-bottom: 1.2rem;
    line-height: 1;
}

.flow-step h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.flow-step p {
    color: var(--text-2);
    line-height: 1.6;
}

/* Arrow Styling */
.flow-arrow {
    font-size: 2.8rem;
    color: var(--lilac);
    display: flex;
    align-items: center;
    min-width: 50px;
    justify-content: center;
    transition: color 0.3s ease;
}

.flow-step:hover ~ .flow-arrow {
    color: var(--bright);
}

/* Responsive */
@media (max-width: 1200px) {
    .flow-step {
        min-width: 240px;
        padding: 2.2rem 1.8rem;
    }
}

@media (max-width: 768px) {
    .partner-flow {
        gap: 1.2rem;
        padding: 1.5rem 10px;
    }
    
    .flow-step {
        min-width: 220px;
        padding: 2rem 1.5rem;
    }
    
    .step-num {
        font-size: 2.6rem;
    }
}

        /* Success Stories */
        .success-stories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 2.4rem;
        }

        .story-quote {
           
            color: var(--text-2);
            line-height: 1.7;
        }

        .story-location {
            color: var(--lilac);
            margin: 1rem 0 1.2rem;
            font-weight: 500;
        }

        /* Categories */
        .categories-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.8rem;
        }

        .category-card {
            background: var(--panel);
            border: 1px solid var(--border);
            padding: 2rem 1.8rem;
            border-radius: 20px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text);
            transition: all 0.4s ease;
        }

        .category-card:hover {
            background: var(--panel-2);
            border-color: var(--bright);
            transform: translateY(-8px);
        }

        /* API Section */
        .api-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: 26px;
            padding: 3.5rem;
        }

        .api-endpoints code {
            background: rgba(0, 0, 0, 0.3);
            padding: 4px 10px;
            border-radius: 6px;
        }

        /* CTA */
        .final-cta {
            text-align: center;
            padding: 5rem 20px;
            background: var(--ambient);
        }

        .final-cta .futuristic-btn {
            background: linear-gradient(135deg, var(--violet), var(--bright));
            color: white;
            padding: 20px 56px;
            font-size: 1.25rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            margin-top: 1.5rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .partner-flow {
                flex-direction: column;
                gap: 2rem;
            }
            .flow-arrow {
                transform: rotate(90deg);
            }
            .api-info {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .partner-section {
                padding: 90px 16px;
            }
            .futuristic-card {
                padding: 2.2rem 1.8rem;
            }
        }


        /* ==================== MOMENTS GRID ==================== */
        #moments {
            padding: 120px 0;
            position: relative;
        }

        .moments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 64px;
        }

        @media (max-width: 980px) {
            .moments-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        .moment-card {
            position: relative;
            background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            border: 1px solid rgba(157, 124, 255, 0.15);
            border-radius: 32px;
            padding: 40px 32px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            overflow: hidden;
            transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .moment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(157, 124, 255, 0.3), transparent);
        }

        .moment-card::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(94,231,229,0.12), transparent 70%);
            filter: blur(32px);
            z-index: 0;
        }

        .moment-card:hover {
            transform: translateY(-8px);
            border-color: rgba(157, 124, 255, 0.3);
            box-shadow: 0 32px 80px rgba(6, 3, 15, 0.18);
        }

        .moment-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .moment-num {
            font-family: 'Geist', sans-serif;
            font-size: 13px;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--text-3);
            position: relative;
            z-index: 1;
        }

        .moment-card h3 {
            font-family: 'Geist', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .moment-card > p {
            font-family: 'Geist', sans-serif;
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-2);
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .moment-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .moment-features li {
            font-family: 'Geist', sans-serif;
            font-size: 14px;
            color: var(--text-2);
            padding-left: 24px;
            position: relative;
        }

        .moment-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 7px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--lilac);
            box-shadow: 0 0 8px rgba(157, 124, 255, 0.4);
        }

        /* ==================== ORCHESTRATION SHOWCASE ==================== */
        #flow {
            padding: 120px 0;
        }

        .orchestration-showcase {
            margin-top: 64px;
        }

        .showcase-frame {
            background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
            border: 1px solid rgba(157, 124, 255, 0.15);
            border-radius: 32px;
            padding: 48px 40px;
            overflow: hidden;
            position: relative;
        }

        .showcase-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--lilac), transparent);
            opacity: 0.3;
        }

        .showcase-input {
            font-family: 'Geist', sans-serif;
            font-size: 14px;
            color: var(--text-2);
            margin-bottom: 32px;
            padding: 16px;
            background: rgba(109, 60, 255, 0.08);
            border-radius: 12px;
            border-left: 3px solid var(--lilac);
        }

        .input-label {
            color: var(--lilac);
            font-weight: 600;
        }

        .showcase-flow {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .flow-step {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: rgba(109, 60, 255, 0.1);
            border: 1px solid rgba(157, 124, 255, 0.2);
            border-radius: 12px;
            flex-shrink: 0;
        }

        .flow-step.active {
            border-color: var(--lilac);
            background: rgba(109, 60, 255, 0.15);
            box-shadow: 0 0 20px rgba(109, 60, 255, 0.2);
        }

        .flow-step-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(94,231,229,0.2);
            border-radius: 8px;
            color: #5EE7E5;
            flex-shrink: 0;
        }

        .flow-step-label {
            font-family: 'Geist', sans-serif;
            font-size: 13px;
            color: var(--text-2);
            white-space: nowrap;
        }

        .flow-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            color: rgba(157, 124, 255, 0.4);
            flex-shrink: 0;
        }

        .showcase-output {
            font-family: 'Geist', sans-serif;
            font-size: 14px;
            color: var(--text-2);
            margin-top: 32px;
            padding: 16px;
            background: rgba(94, 231, 176, 0.08);
            border-radius: 12px;
            border-left: 3px solid #5EE7B0;
        }

        .output-label {
            color: #5EE7B0;
            font-weight: 600;
        }

        /* ==================== TECH GRID ==================== */
        #tech {
            padding: 120px 0;
            background: linear-gradient(180deg, transparent, rgba(109, 60, 255, 0.04), transparent);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 64px;
        }

        @media (max-width: 980px) {
            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .tech-grid {
                grid-template-columns: 1fr;
            }
        }

        .tech-card {
            background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
            border: 1px solid rgba(157, 124, 255, 0.12);
            border-radius: 24px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            overflow: hidden;
            transition: transform 0.35s ease, border-color 0.3s ease;
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(157, 124, 255, 0.2), transparent);
        }

        .tech-card:hover {
            transform: translateY(-4px);
            border-color: rgba(157, 124, 255, 0.25);
        }

        .tech-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .tech-card h4 {
            font-family: 'Geist', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .tech-card p {
            font-family: 'Geist', sans-serif;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-2);
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* ==================== EXAMPLES SHOWCASE ==================== */
        #examples {
            padding: 120px 0;
        }

        .examples-showcase {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 64px;
        }

        .example-item {
            background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            border: 1px solid rgba(157, 124, 255, 0.12);
            border-radius: 28px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: transform 0.35s ease, border-color 0.3s ease;
        }

        .example-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(157, 124, 255, 0.25), transparent);
        }

        .example-item:hover {
            transform: translateY(-4px);
            border-color: rgba(157, 124, 255, 0.25);
        }

        .example-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 8px;
            font-family: 'Geist', sans-serif;
            font-size: 11px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .example-item h4 {
            font-family: 'Geist', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            margin: 0 0 24px;
            position: relative;
            z-index: 1;
        }

        .example-steps {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .example-steps li {
            font-family: 'Geist', sans-serif;
            font-size: 14px;
            color: var(--text-2);
            padding-left: 28px;
            position: relative;
        }

        .example-steps li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 7px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--lilac);
            opacity: 0.6;
        }

        .example-result {
            font-family: 'Geist', sans-serif;
            font-size: 12px;
            color: var(--text-3);
            margin: 0;
            padding-top: 12px;
            border-top: 1px solid rgba(157, 124, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .moments-grid {
                grid-template-columns: 1fr;
            }

            .tech-grid {
                grid-template-columns: 1fr;
            }

            .examples-showcase {
                grid-template-columns: 1fr;
            }

            .showcase-frame {
                padding: 24px;
            }

            .example-item {
                padding: 24px;
            }
        }

        /* ==================== FAQ ==================== */
        .faq {
            padding: 120px 0;
        }

        .heading-wrap {
            text-align: center;
            margin-bottom: 64px;
        }

        .faq-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            max-width: 880px;
            margin: 0 auto;
        }

        .faq-item {
            background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
            border: 1px solid rgba(157, 124, 255, 0.12);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .faq-item summary {
            padding: 20px 24px;
            cursor: pointer;
            font-family: 'Geist', sans-serif;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            display: flex;
            align-items: center;
            justify-content: space-between;
            user-select: none;
            transition: background 0.2s ease;
        }

        .faq-item summary::marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 20px;
            color: var(--lilac);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 16px;
        }

        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-item:hover {
            border-color: rgba(157, 124, 255, 0.2);
        }

        .faq-item[open] {
            border-color: rgba(157, 124, 255, 0.25);
        }

        .faq-item summary:hover {
            background: rgba(109, 60, 255, 0.06);
        }

        .faq-answer {
            padding: 0 24px 20px;
            border-top: 1px solid rgba(157, 124, 255, 0.1);
        }

        .faq-answer p {
            font-family: 'Geist', sans-serif;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-2);
            margin: 0;
        }

.benefits-section {
    background: var(--ambient);
    padding: 110px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.8rem;
}

/* Benefit Card */
.benefit-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    border-left: 5px solid var(--lilac);
    padding: 2.8rem 2.4rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-orb);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.benefit-item:hover {
    transform: translateY(-12px);
    border-color: var(--bright);
    border-left-color: var(--bright);
    box-shadow: var(--shadow-lg);
}

.benefit-item:hover::before {
    opacity: 0.55;
}

/* Icon */
.benefit-icon-wrapper {
    width: 78px;
    height: 78px;
    background: var(--panel-2);
    border: 1px solid rgba(157, 124, 255, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: var(--lilac);
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon-wrapper {
    color: var(--bright);
    background: rgba(109, 60, 255, 0.18);
    border-color: var(--bright);
    transform: scale(1.08) rotate(8deg);
}

.benefit-item h3 {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-item p {
    color: var(--text-2);
    line-height: 1.65;
    font-size: 1.02rem;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .benefit-item {
        padding: 2rem 1.6rem;
    }
}

/* Partners Benefits Section */
.benefits-section {
    background: var(--ambient);
    padding: 110px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.8rem;
}

/* Benefit Card */
.benefit-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    border-left: 5px solid var(--lilac);
    padding: 2.8rem 2.4rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-orb);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.benefit-item:hover {
    transform: translateY(-14px);
    border-color: var(--bright);
    border-left-color: var(--bright);
    box-shadow: var(--shadow-lg);
}

.benefit-item:hover::before {
    opacity: 0.6;
}

/* Icon */
.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--panel-2);
    border: 1px solid rgba(157, 124, 255, 0.25);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: var(--lilac);
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon-wrapper {
    color: var(--bright);
    background: rgba(109, 60, 255, 0.18);
    border-color: var(--bright);
    transform: scale(1.1) rotate(10deg);
}

.benefit-item h3 {
    font-size: 1.48rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-item p {
    color: var(--text-2);
    line-height: 1.65;
    font-size: 1.02rem;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
}

	/* Blog Section */
.blog-section {
    background: var(--ambient);
    padding: 120px 20px;
}

.featured-blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.featured-blog:hover {
    transform: translateY(-8px);
    border-color: var(--bright);
    box-shadow: 0 35px 80px rgba(109, 60, 255, 0.25);
}

/* Image Side */
.featured-image {
    position: relative;
    min-height: 520px;
    background: linear-gradient(45deg, #1A1144, #4A1FB8);
    display: flex;
    align-items: flex-start;
    padding: 2.5rem;
    background-size: cover;
    background-position: center;
}

.featured-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('s1.png') center/cover;
    opacity: 0.85;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6, 3, 15, 0.85) 85%);
}

.featured-tag {
    background: rgba(109, 60, 255, 0.9);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
}

/* Content Side */
.featured-content-wrapper {
    padding: 3.5rem 3.2rem;
    display: flex;
    flex-direction: column;
}

.featured-header h2 {
    font-size: 2.4rem;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1rem;
}

.featured-subtitle {
    font-size: 1.15rem;
    color: var(--text-2);
    margin-bottom: 1.5rem;
}

.featured-meta {
    color: var(--text-3);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.meta-dot {
    margin: 0 8px;
}

/* Body */
.featured-body p {
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.featured-body h3 {
    color: var(--bright);
    margin: 2rem 0 1rem;
    font-size: 1.35rem;
}

.featured-body ul {
    margin: 1.2rem 0 2rem;
    padding-left: 1.2rem;
}

.featured-body li {
    color: var(--text-2);
    margin-bottom: 0.9rem;
    line-height: 1.6;
}

.read-more {
    color: var(--lilac);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--bright);
    gap: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-blog {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 320px;
    }
    
    .featured-content-wrapper {
        padding: 2.8rem 2.2rem;
    }
}

@media (max-width: 640px) {
    .featured-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
	.fe-blog{
		display: none;
	}
	}


    .wave-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0.35;
}

.wave-bg svg {
    width: 200%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Waves */
.wave {
    fill: none;
    stroke-width: 2;
}

/* Primary wave */
.wave-1 {
    stroke: rgba(157, 124, 255, 0.35);
    animation: waveMove 10s linear infinite;
}

/* Secondary wave */
.wave-2 {
    stroke: rgba(237, 234, 251, 0.2);
    animation: waveMove 16s linear infinite reverse;
}

/* Animation */
@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


        /* ====================== CAREERS PAGE - ENHANCED ====================== */

        .hero-content {
            max-width: 920px;
            z-index: 2;
            width: 100%;
        }

        

        .hero-subtitle {
            font-size: clamp(1.35rem, 3vw, 1.65rem);
            color: var(--text-2);
            line-height: 1.45;
            margin-bottom: 2rem;
        }

        .neon-divider {
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--bright), var(--lilac), transparent);
            margin: 2.5rem 0;
            border-radius: 4px;
        }

        .hero-tagline {
            font-size: 1.4rem;
            color: var(--mist);
            font-weight: 500;
        }

        /* Sections */
        .careers-section {
            padding: 130px 20px;
        }

        .section-head {
            text-align: center;
            margin-bottom: 5.5rem;
        }

        .eyebrow {
            color: var(--lilac);
            letter-spacing: 5px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .section-title {
            font-size: clamp(2.3rem, 5vw, 3.5rem);
            color: var(--text);
            margin-top: 1rem;
        }

        /* Why HeiBuddy */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.4rem;
        }

        .why-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: 26px;
            padding: 2.8rem 2.3rem;
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--grad-orb);
            opacity: 0;
            transition: 0.5s;
        }

        .why-card:hover {
            transform: translateY(-15px);
            border-color: var(--bright);
            box-shadow: var(--shadow-lg);
        }

        .why-card:hover::before {
            opacity: 0.65;
        }

        .why-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--bright);
            margin-bottom: 1.4rem;
            line-height: 1;
        }

        /* Culture & Values */
        .culture-grid,
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.2rem;
        }

        .culture-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 2.5rem 2rem;
            transition: all 0.4s ease;
        }

        .culture-card:hover {
            border-color: var(--lilac);
            transform: translateY(-10px);
        }

        .culture-card h4 {
            color: var(--text);
            margin-bottom: 1.1rem;
            font-size: 1.4rem;
        }

        /* Talent Network Card */
        .talent-network {
            max-width: 820px;
            margin: 0 auto;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 5rem 3rem;
            text-align: center;
        }

        .status-badge {
            background: rgba(109, 60, 255, 0.15);
            color: var(--bright);
            padding: 10px 32px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 2rem;
            display: inline-block;
        }

        .talent-network h2 {
            font-size: clamp(2.2rem, 4.5vw, 2.8rem);
            margin-bottom: 1.4rem;
        }

        .large-text {
            font-size: 1.25rem;
            color: var(--text-2);
            line-height: 1.8;
            max-width: 620px;
            margin: 0 auto 2.5rem;
        }


        .email-contact {
            margin-top: 3rem;
            color: var(--text-3);
        }

        .email-contact strong {
            color: var(--mist);
        }

        /* ====================== RESPONSIVE ====================== */
        @media (max-width: 768px) {
            .careers-section {
                padding: 90px 16px;
            }
            
            .section-head {
                margin-bottom: 3.5rem;
            }
            
            .why-card,
            .culture-card {
                padding: 2.2rem 1.8rem;
            }
            
            .talent-network {
                padding: 3.5rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .why-grid,
            .culture-grid,
            .values-grid {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
            
            .hero-content {
                text-align: center;
            }
        }
