/* ═══════════════════════════════════════════════════════════════════════════════
   HOME.CSS — Cinematic & Ultra-Premium Stage
   Sections: Hero, Value Prop, Services Bento, Process Timeline, Stats,
             AI Studio Feature, Digital Solutions, FAQ, CTA
   5-stage responsive with perfect centering, fluid clamping, and pro-grade glassmorphism
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── HOME HERO OVERRIDES ───────────────────────────────────────────────────── */
.hero-content-wrap {
    max-width: 600px;
    margin: 0 auto; /* Perfect centering fallback */
    width: 100%;
}

.text-gradient-gold { display: inline; }

.hero-subtitle {
    font-size: clamp(1rem, 1.2vw + 0.2rem, 1.2rem);
    line-height: 1.7;
    max-width: 500px;
}

/* Ambient Orbiting Glows */
.topology-bg .glow-orb {
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    animation: drift 20s infinite alternate ease-in-out;
}

/* Ambient Brand Watermark */
.ambient-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80vh;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.015);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    filter: blur(8px);
    animation: pulseWatermark 10s infinite alternate;
}

@keyframes pulseWatermark {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.02); opacity: 1; }
}

.glow-tr { top: -20%; right: -10%; background: rgba(255, 215, 0, 0.08); }
.glow-bl { bottom: -20%; left: -10%; background: rgba(0, 240, 255, 0.05); }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, 50px) scale(1.1); }
}

/* Platform Avatar Group */
.platform-avatar-group {
    display: inline-flex;
    align-items: center;
    padding-left: 10px; /* offset for negative margin */
}

.platform-avatar-group .avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 2px solid #030304; /* Matches body background to slice cleanly */
    margin-left: -14px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), z-index 0s, box-shadow 0.4s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.platform-avatar-group .avatar:first-child {
    margin-left: 0;
}

.platform-avatar-group .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    background: #fff;
}

.platform-avatar-group .avatar:hover {
    transform: translateY(-8px) scale(1.15) rotate(3deg);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}

.platform-avatar-group .avatar-more {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 2px solid #030304;
    margin-left: -14px;
    background: linear-gradient(135deg, rgba(40, 40, 45, 0.9), rgba(20, 20, 25, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    position: relative;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), z-index 0s;
}

.platform-avatar-group .avatar-more:hover {
    transform: translateY(-8px) scale(1.15) rotate(3deg);
    z-index: 10;
}



/* ─── VALUE PROPOSITION ─────────────────────────────────────────────────────── */
.section-value-prop {
    overflow: hidden;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.6), rgba(20, 20, 25, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
    background: linear-gradient(145deg, rgba(40, 40, 45, 0.7), rgba(25, 25, 30, 0.9));
    border-color: rgba(255, 215, 0, 0.15);
    transform: translateY(-5px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 15px 40px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-subtle);
    border-radius: var(--radius-md);
    color: var(--primary-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-text h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.benefit-text p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Dashboard — The Wilx Difference */
.difference-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: transform var(--transition-base);
}

.difference-item:hover {
    transform: translateX(5px);
}

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

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

.diff-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-gold);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    flex-shrink: 0;
    width: 45px;
}

.diff-content h5 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.diff-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.6;
}


/* ─── SERVICES BENTO GRID ───────────────────────────────────────────────────── */
.services-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.bento-card {
    position: relative;
    background: linear-gradient(160deg, rgba(25, 25, 30, 0.7), rgba(15, 15, 20, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.03), 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.01);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 20px 40px rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
}

.bento-card.growth:hover {
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 20px 40px rgba(255, 215, 0, 0.05);
}

.bento-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(0, 240, 255, 0.04) 0%, transparent 60%);
    transition: opacity var(--transition-base);
}

.bento-bg.gold {
    background: radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
}

.bento-card:hover .bento-bg {
    opacity: 1;
    background: radial-gradient(ellipse at top right, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
}

.bento-card.growth:hover .bento-bg.gold {
    background: radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
}

/* Primary Bento */
.bento-primary {
    padding: 2.5rem;
}

.bento-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.bento-content {
    flex: 1;
}

.bento-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    display: inline-block;
}

.bento-label.gold { color: var(--primary-gold); }

.bento-content h3 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.bento-content p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-cyan);
    transition: gap var(--transition-fast);
}

.bento-cta.gold { color: var(--primary-gold); }
.bento-cta.purple { color: var(--primary-purple); }
.bento-cta.cyan { color: var(--primary-cyan); }

.bento-card:hover .bento-cta { gap: 0.75rem; }

.bento-visual-right {
    flex-shrink: 0;
    text-align: center;
}

/* Orbit Cluster */
.bento-orbit-cluster {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    z-index: 2;
    transition: transform 0.5s var(--ease-out);
}

.bento-card:hover .orbit-center {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.6);
}

.orbit-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: spin 20s linear infinite;
    z-index: 1;
}

.orbit-satellite-wrap {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    padding: 6px;
    top: 50%;
    left: 50%;
    margin: -22px 0 0 -22px;
}

.orbit-satellite-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: counter-spin 20s linear infinite;
}

/* Satellite Positions */
.s1 { transform: rotate(0deg) translate(100px); }
.s2 { transform: rotate(120deg) translate(100px); }
.s3 { transform: rotate(240deg) translate(100px); }

/* Spin Animations */
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes counter-spin { 100% { transform: rotate(-360deg); } }

/* Fast-forward on hover */
.bento-card:hover .orbit-ring {
    animation-duration: 10s;
}
.bento-card:hover .orbit-satellite-wrap img {
    animation-duration: 10s;
}

/* Mini Chart */
.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
    padding: 0 10px;
}

.mini-chart .chart-bar {
    width: 14px;
    height: var(--h);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px 4px 0 0;
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1), background var(--transition-base);
}

.bento-card:hover .mini-chart .chart-bar {
    background: rgba(255, 255, 255, 0.15);
}

.bento-card:hover .mini-chart .chart-bar.active {
    background: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.mini-chart .chart-bar.active {
    background: rgba(255, 215, 0, 0.3);
}

.growth-stat {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-top: 0.75rem;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Secondary Bento */
.bento-secondary {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.bento-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-icon {
    transform: scale(1.1);
}

.bento-secondary.ai .bento-icon {
    background: var(--purple-subtle);
    color: #e879f9;
    border: 1px solid var(--purple-border);
}

.bento-secondary.digital .bento-icon {
    background: var(--cyan-subtle);
    color: #38bdf8;
    border: 1px solid var(--cyan-border);
}

.bento-secondary h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bento-secondary p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Pushes CTA to bottom */
}


/* ─── PROCESS TIMELINE ──────────────────────────────────────────────────────── */
.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary-gold), var(--primary-cyan), transparent);
    opacity: 0.5;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.step-node {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-circle);
    color: var(--text-muted);
    font-weight: 800;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.step-node.active {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(30, 25, 5, 0.9);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    animation: pulseNode 3s infinite alternate;
}

@keyframes pulseNode {
    0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); transform: scale(1); }
    100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); transform: scale(1.05); }
}

.step-card {
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.5), rgba(20, 20, 25, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    flex: 1;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.step-card:hover {
    background: linear-gradient(145deg, rgba(40, 40, 45, 0.6), rgba(25, 25, 30, 0.8));
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-card.active {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(145deg, rgba(40, 35, 20, 0.5), rgba(25, 20, 10, 0.7));
}

.step-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-subtle);
    border-radius: var(--radius-sm);
    color: var(--primary-cyan);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.step-card.active .step-icon {
    background: var(--gold-subtle);
    color: var(--primary-gold);
}

.step-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}


/* ─── IMPACT STATS ──────────────────────────────────────────────────────────── */
.section-stats {
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%, rgba(0, 240, 255, 0.02) 100%);
}

.stats-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.stats-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: skewX(-20deg);
    transition: 0.8s;
}

.stat-card:hover::after {
    left: 200%;
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-card.highlight {
    border-color: rgba(255, 215, 0, 0.2);
    background: linear-gradient(180deg, rgba(40, 35, 10, 0.5), rgba(15, 15, 15, 0.5));
}

.stat-value {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.stat-value.gold { color: var(--primary-gold); text-shadow: 0 0 30px rgba(255, 215, 0, 0.3); }

.stat-suffix {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.stat-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.5rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.stat-bar .bar-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    transition: width 1.5s var(--ease-out);
}

.stat-bar.gold .bar-fill {
    background: var(--gradient-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}


/* ─── AI STUDIO FEATURE ─────────────────────────────────────────────────────── */
.ai-visual-card {
    background: linear-gradient(145deg, rgba(30, 20, 40, 0.6), rgba(15, 10, 20, 0.8));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.1);
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-feature i {
    color: var(--primary-purple);
    font-size: 0.9rem;
}

.gen-steps-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.gen-step {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gen-step.done {
    background: rgba(39, 201, 63, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(39, 201, 63, 0.2);
}

.gen-step.active {
    background: rgba(138, 43, 226, 0.15);
    color: #e879f9;
    border: 1px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}


/* ─── DIGITAL SOLUTIONS GRID ────────────────────────────────────────────────── */
.digital-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.digital-card {
    background: linear-gradient(145deg, rgba(20, 30, 40, 0.6), rgba(10, 15, 20, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.digital-card:hover {
    background: linear-gradient(145deg, rgba(25, 35, 45, 0.8), rgba(15, 20, 25, 0.9));
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.digital-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-subtle);
    border-radius: var(--radius-md);
    color: var(--primary-cyan);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    transition: transform var(--transition-base);
}

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

.digital-card h5 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.digital-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}


/* ─── FAQ ACCORDION ─────────────────────────────────────────────────────────── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(30, 30, 35, 0.7);
}

.faq-item.active {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(40, 35, 20, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(135deg); /* Smoother cross to close */
    color: var(--primary-gold);
}

.faq-item.active .faq-question span {
    color: var(--primary-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   5-STAGE RESPONSIVE — HOME PAGE (XS, SM, MD, LG, XL)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* 1. XS (<576px) — Mobile Portrait */
@media (max-width: 575.98px) {
    /* Hero Center Alignment */
    .hero-container-fit .row { text-align: center; }
    .hero-content-col { align-items: center !important; }
    .hero-content-wrap { align-items: center; display: flex; flex-direction: column; }
    
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-social-proof { justify-content: center; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
    .hero-social-proof .d-inline-flex { justify-content: center; }

    /* Section Global Typography */
    .section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
    .section-label.center { margin-left: auto; margin-right: auto; justify-content: center; display: flex; }
    .section-desc.center { margin-left: auto; margin-right: auto; text-align: center; }

    /* Alignment Fixes for Standard Left-Aligned Sections on Mobile */
    .value-prop-content, .ai-studio-content { text-align: center; display: flex; flex-direction: column; align-items: center;}
    .digital-build-content, .faq-header-content { text-align: center; display: flex; flex-direction: column; align-items: center;}
    
    .section-label { align-self: center; }
    .ai-feature { justify-content: center; }
    .d-flex.flex-wrap.gap-3.mb-4 { justify-content: center; }

    /* Value Prop */
    .benefit-cards { align-items: stretch; width: 100%; text-align: left; }
    
    /* Bento Grid */
    .services-bento { gap: 1rem; }
    .bento-primary, .bento-secondary { padding: 1.5rem; }
    .bento-row { flex-direction: column; gap: 1.25rem; text-align: center; }
    .bento-visual-right { display: none; }
    .bento-cta { margin: 0 auto; }
    .bento-icon { margin: 0 auto 1rem; }

    /* Timeline */
    .timeline-line { left: 24px; top: 1.5rem; bottom: 1.5rem; }
    .step-node { width: 44px; height: 44px; font-size: 0.85rem; }
    .process-step { padding: 1rem 0; gap: 1rem; text-align: left; }
    .step-card { padding: 1.25rem; }
    .step-card h5 { font-size: 1rem; }

    /* Stats */
    .stats-grid-cards { grid-template-columns: 1fr; gap: 1rem; }
    .stat-card { padding: 1.5rem; }
    .stat-value { font-size: 2rem; }

    /* Digital Grid */
    .digital-grid { gap: 1rem; }
    .digital-card { padding: 1.5rem; text-align: center; }
    .digital-icon { margin: 0 auto 1rem; }
    
    /* FAQ */
    .faq-question { padding: 1.25rem; }
    .faq-question span { font-size: 0.95rem; }
    .faq-answer p { padding: 0 1.25rem 1.25rem; font-size: 0.85rem; }
}

/* 2. SM (576px - 767.98px) — Mobile Landscape / Small Tablet */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Most defaults from XS carry over, but we want better grids */
    .stats-grid-cards { grid-template-columns: repeat(2, 1fr); }
    
    /* Center align headers for cleaner look */
    .value-prop-content, .ai-studio-content { text-align: center; display: flex; flex-direction: column; align-items: center;}
    .digital-build-content, .faq-header-content { text-align: center; display: flex; flex-direction: column; align-items: center;}
    .section-label { align-self: center; }
    .d-flex.flex-wrap.gap-3.mb-4 { justify-content: center; }
    
    .digital-grid { grid-template-columns: 1fr 1fr; }
    
    .timeline-line { left: 28px; }
}

/* 3. MD (768px - 991.98px) — Tablet Portrait */
@media (min-width: 768px) {
    .stats-grid-cards { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    
    /* Process Timeline becomes Horizontal */
    .process-timeline {
        flex-direction: row;
        gap: 0;
        padding: 3rem 0;
    }

    .timeline-line {
        left: 0;
        right: 0;
        top: 3rem; 
        margin-top: 28px; /* Offset half node height */
        bottom: auto;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary-gold), var(--primary-cyan), transparent);
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 0.5rem;
        flex: 1;
        text-align: center;
    }

    .step-card { text-align: center; }
    .step-icon { margin: 0 auto 1rem; }
    
    /* Digital Grid */
    .digital-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    
    /* Left align default restored for tablet */
    .value-prop-content, .ai-studio-content { text-align: left; align-items: flex-start; }
    .digital-build-content, .faq-header-content { text-align: left; align-items: flex-start; }
    .section-label { align-self: flex-start; }
    .benefit-cards { align-items: stretch; }
}

/* 4. LG (992px - 1199.98px) — Laptop / Tablet Landscape */
@media (min-width: 992px) {
    /* Services Bento goes perfectly 2 columns */
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Make Primary cards span full width */
    .bento-primary {
        grid-column: span 2;
    }

    .bento-row {
        flex-direction: row;
    }

    .bento-visual-right {
        display: block;
        margin-left: auto;
    }
    
    .stats-grid-cards { grid-template-columns: repeat(4, 1fr); }
}

/* 5. XL (1200px+) — Desktop Widescreen */
@media (min-width: 1200px) {
    .bento-primary {
        padding: 3rem;
    }
    
    .bento-row {
        gap: 4rem;
    }

    .stat-card {
        padding: 3rem 2rem;
    }
    
    .digital-grid {
        gap: 2rem;
    }

    .digital-card {
        padding: 2.25rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
}
