/* ===== Service Pages - Unique Styles & Animations ===== */

/* --- Shared Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }

/* --- Stats Section (shared) --- */
.service-stats {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 24px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   PAGE: CRÉATION SITE WEB - Browser/Code Theme
   ============================================ */

.page-siteweb .service-hero {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.05) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-siteweb .service-hero::before {
    content: '</>';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.04);
    font-family: 'Courier New', monospace;
    pointer-events: none;
}

.page-siteweb .service-tag {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
    color: #3B82F6;
}

.page-siteweb .stat-number {
    color: #3B82F6;
}

.page-siteweb .service-hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.page-siteweb .service-hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* Browser mockup wrapper */
.browser-mockup {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-url {
    flex: 1;
    margin-left: 12px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
}

.browser-body img {
    width: 100%;
    display: block;
}

/* Code snippet decoration */
.code-decoration {
    position: absolute;
    bottom: -20px;
    left: 40px;
    background: rgba(15, 15, 20, 0.9);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #28c840;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.code-decoration .code-line {
    margin-bottom: 4px;
    white-space: nowrap;
}

.code-decoration .code-keyword { color: #c678dd; }
.code-decoration .code-string { color: #98c379; }
.code-decoration .code-func { color: #61afef; }

/* ============================================
   PAGE: APPLICATIONS MOBILES - Mobile/App Theme
   ============================================ */

.page-mobile .service-hero {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-mobile .service-tag {
    background: rgba(168, 85, 247, 0.12);
    border-color: rgba(168, 85, 247, 0.25);
    color: #A855F7;
}

.page-mobile .stat-number {
    color: #A855F7;
}

.page-mobile .service-hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

/* Phone mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.phone-frame {
    background: #1a1a2e;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(168, 85, 247, 0.2), 0 0 0 1px rgba(168, 85, 247, 0.1);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 24px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: -1px;
}

.phone-screen {
    border-radius: 24px;
    overflow: hidden;
    margin-top: -12px;
}

.phone-screen img {
    width: 100%;
    display: block;
}

/* Floating app icons */
.floating-apps {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-app {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-app:nth-child(1) {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.floating-app:nth-child(2) {
    background: linear-gradient(135deg, #4ECDC4, #44CF6C);
    top: 40%;
    right: -35px;
    animation-delay: 0.5s;
}

.floating-app:nth-child(3) {
    background: linear-gradient(135deg, #6C63FF, #3B82F6);
    bottom: 20%;
    left: -25px;
    animation-delay: 1s;
}

.floating-app:nth-child(4) {
    background: linear-gradient(135deg, #F093FB, #F5576C);
    bottom: 5%;
    right: -20px;
    animation-delay: 1.5s;
}

/* ============================================
   PAGE: DASHBOARDS - Data/Analytics Theme
   ============================================ */

.page-dashboard .service-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(6, 182, 212, 0.05) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-dashboard .service-tag {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.25);
    color: #10B981;
}

.page-dashboard .stat-number {
    color: #10B981;
}

.page-dashboard .service-hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

/* Dashboard mockup */
.dashboard-mockup {
    animation: fadeInRight 0.8s ease-out 0.2s both;
    position: relative;
}

.dashboard-mockup .browser-mockup {
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.15);
}

/* Mini chart bars animation */
.mini-charts {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: float 5s ease-in-out infinite;
}

.chart-bar {
    width: 12px;
    border-radius: 4px 4px 0 0;
    animation: chartGrow 1.5s ease-out forwards;
    transform-origin: bottom;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--h); }
}

.chart-bar:nth-child(1) { background: #10B981; --h: 20px; animation-delay: 0.2s; }
.chart-bar:nth-child(2) { background: #06B6D4; --h: 35px; animation-delay: 0.4s; }
.chart-bar:nth-child(3) { background: #10B981; --h: 25px; animation-delay: 0.6s; }
.chart-bar:nth-child(4) { background: #06B6D4; --h: 45px; animation-delay: 0.8s; }
.chart-bar:nth-child(5) { background: #10B981; --h: 30px; animation-delay: 1.0s; }
.chart-bar:nth-child(6) { background: #06B6D4; --h: 50px; animation-delay: 1.2s; }

/* KPI card floating */
.kpi-float {
    position: absolute;
    top: -10px;
    left: -20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite 0.5s;
}

.kpi-float-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #10B981;
}

.kpi-float-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.kpi-float-trend {
    font-size: 0.75rem;
    color: #10B981;
    font-weight: 600;
}

/* ============================================
   PAGE: SEO - Search/Growth Theme
   ============================================ */

.page-seo .service-hero {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(239, 68, 68, 0.04) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-seo .service-tag {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.25);
    color: #F59E0B;
}

.page-seo .stat-number {
    color: #F59E0B;
}

.page-seo .service-hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

/* Search bar mockup */
.search-mockup {
    animation: fadeInRight 0.8s ease-out 0.2s both;
    position: relative;
}

.search-box {
    background: #fff;
    border-radius: 28px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.search-box svg {
    color: #9CA3AF;
    flex-shrink: 0;
}

.search-typing {
    font-size: 1rem;
    color: #333;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #333;
    animation: typewriter 3s steps(35) 0.5s both, blink 0.8s step-end infinite;
    width: 0;
}

/* Search results */
.search-results {
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.search-result-item {
    padding: 16px;
    border-radius: 10px;
    transition: background 0.3s;
}

.search-result-item:hover {
    background: #f3f4f6;
}

.search-result-item.highlighted {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.result-url {
    font-size: 0.75rem;
    color: #10B981;
    margin-bottom: 4px;
}

.result-title {
    font-size: 1rem;
    color: #1a0dab;
    font-weight: 600;
    margin-bottom: 4px;
}

.result-desc {
    font-size: 0.8rem;
    color: #545454;
    line-height: 1.5;
}

.result-rank {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Growth arrow */
.growth-indicator {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    text-align: center;
}

.growth-indicator svg {
    color: #10B981;
}

.growth-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #10B981;
}

.growth-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

/* ============================================
   PAGE: DESIGN UX/UI - Creative/Artistic Theme
   ============================================ */

.page-design .service-hero {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(168, 85, 247, 0.05) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-design .service-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
}

.page-design .service-tag {
    background: rgba(236, 72, 153, 0.12);
    border-color: rgba(236, 72, 153, 0.25);
    color: #EC4899;
}

.page-design .stat-number {
    color: #EC4899;
}

.page-design .service-hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

/* Design canvas mockup */
.design-canvas {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.design-frame {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.15);
}

.design-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.toolbar-item {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.toolbar-item.active {
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.design-body {
    position: relative;
}

.design-body img {
    width: 100%;
    display: block;
}

/* Color palette floating */
.color-palette {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.palette-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.palette-dot:hover {
    transform: scale(1.2);
}

/* Cursor mockup */
.design-cursor {
    position: absolute;
    top: 30%;
    right: 25%;
    z-index: 3;
    animation: float 3s ease-in-out infinite 1s;
}

.cursor-icon {
    width: 20px;
    height: 20px;
    border-left: 2px solid #EC4899;
    border-top: 2px solid #EC4899;
    transform: rotate(-45deg);
}

.cursor-label {
    background: #EC4899;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: -5px;
    margin-left: 15px;
    white-space: nowrap;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .phone-mockup {
        width: 220px;
    }

    .floating-app {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .search-mockup,
    .dashboard-mockup,
    .design-canvas {
        margin-top: 20px;
    }

    .code-decoration,
    .mini-charts,
    .kpi-float,
    .growth-indicator,
    .color-palette,
    .design-cursor {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 200px;
    }
}

/* ==============================================
   UNIQUE SECTION STYLES PER PAGE
   ============================================== */

/* ---- SITE WEB: Process as timeline ---- */
.page-siteweb .process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 700px;
    margin: 48px auto 0;
}

.page-siteweb .process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3B82F6, #10B981);
}

.page-siteweb .process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
    border: none;
    border-radius: 0;
    background: none;
}

.page-siteweb .process-step:hover {
    transform: none;
    border-color: transparent;
}

.page-siteweb .step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid #3B82F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.page-siteweb .feature-item {
    background: transparent;
    border: none;
    border-left: 3px solid #3B82F6;
    border-radius: 0;
    padding: 16px 20px;
    transition: border-color 0.3s, background 0.3s;
}

.page-siteweb .feature-item:hover {
    border-left-color: #10B981;
    background: rgba(59, 130, 246, 0.04);
}

.page-siteweb .tech-tags .tech-tag {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.02em;
}

.page-siteweb .tech-tag:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: #3B82F6;
}

.page-siteweb .service-cta .cta-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(16, 185, 129, 0.08));
    border-color: rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.page-siteweb .service-cta .cta-box::before {
    content: '<html>';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Courier New', monospace;
    font-size: 4rem;
    color: rgba(59, 130, 246, 0.06);
    font-weight: 900;
}

.page-siteweb .faq-item {
    border-left: 3px solid transparent;
    transition: border-left-color 0.3s;
}

.page-siteweb .faq-item:hover {
    border-left-color: #3B82F6;
}

/* ---- MOBILE: Process as horizontal swipe cards ---- */
.page-mobile .service-process {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.04), rgba(236, 72, 153, 0.03));
}

.page-mobile .process-steps {
    display: flex;
    gap: 0;
    overflow: visible;
    position: relative;
}

.page-mobile .process-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #A855F7, #EC4899);
    z-index: 0;
}

.page-mobile .process-step {
    flex: 1;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background: var(--bg);
}

.page-mobile .process-step:hover {
    border-color: #A855F7;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.15);
}

.page-mobile .step-number {
    background: linear-gradient(135deg, #A855F7, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-mobile .feature-item {
    border-radius: 20px;
    background: linear-gradient(135deg, var(--card-bg), rgba(168, 85, 247, 0.03));
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-mobile .feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #A855F7, #EC4899);
    border-radius: 4px 0 0 4px;
}

.page-mobile .feature-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(4px);
    transition: transform 0.3s, border-color 0.3s;
}

.page-mobile .tech-tag {
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.06), rgba(236, 72, 153, 0.04));
    border-color: rgba(168, 85, 247, 0.15);
}

.page-mobile .tech-tag:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1));
    border-color: #A855F7;
    transform: scale(1.05);
    transition: transform 0.3s;
}

.page-mobile .service-cta .cta-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(236, 72, 153, 0.08));
    border-color: rgba(168, 85, 247, 0.25);
    border-radius: 32px;
}

.page-mobile .faq-item {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.page-mobile .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #A855F7, #EC4899);
    transition: height 0.4s;
}

.page-mobile .faq-item:hover::before {
    height: 100%;
}

/* ---- DASHBOARD: Process as pipeline flow ---- */
.page-dashboard .service-process {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04), rgba(6, 182, 212, 0.03));
}

.page-dashboard .process-steps {
    position: relative;
}

.page-dashboard .process-step {
    background: linear-gradient(135deg, var(--card-bg), rgba(16, 185, 129, 0.02));
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-dashboard .process-step::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #10B981, #06B6D4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.page-dashboard .process-step:hover::before {
    transform: scaleX(1);
}

.page-dashboard .process-step:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.page-dashboard .step-number {
    background: linear-gradient(135deg, #10B981, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-dashboard .feature-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
}

.page-dashboard .feature-item::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.page-dashboard .feature-item:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
}

.page-dashboard .tech-tag {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
}

.page-dashboard .tech-tag:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10B981;
}

.page-dashboard .service-cta .cta-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.08));
    border-color: rgba(16, 185, 129, 0.25);
    position: relative;
    overflow: hidden;
}

.page-dashboard .service-cta .cta-box::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 70%);
    border-radius: 50%;
}

.page-dashboard .faq-item {
    border-radius: 12px;
    border-left: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-left: 4px solid transparent;
    transition: border-left-color 0.3s;
}

.page-dashboard .faq-item:hover {
    border-left-color: #10B981;
}

/* ---- SEO: Process as funnel/ranking steps ---- */
.page-seo .service-process {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.04), rgba(239, 68, 68, 0.02));
}

.page-seo .process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 48px auto 0;
}

.page-seo .process-step {
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
    padding: 24px 28px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.page-seo .process-step:hover {
    transform: translateX(8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: -4px 0 20px rgba(245, 158, 11, 0.1);
}

.page-seo .step-number {
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0;
    background-clip: padding-box;
    -webkit-text-fill-color: unset;
    color: #F59E0B;
    font-weight: 800;
}

.page-seo .process-step h3 {
    margin-bottom: 4px;
}

.page-seo .process-step p {
    margin: 0;
}

.page-seo .feature-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
    position: relative;
}

.page-seo .feature-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.1);
}

.page-seo .tech-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.page-seo .tech-tag {
    text-align: center;
    border-radius: 12px;
    padding: 14px;
    background: rgba(245, 158, 11, 0.04);
    border-color: rgba(245, 158, 11, 0.15);
}

.page-seo .tech-tag:hover {
    background: rgba(245, 158, 11, 0.12);
    border-color: #F59E0B;
    transform: translateY(-2px);
    transition: transform 0.3s;
}

.page-seo .service-cta .cta-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(239, 68, 68, 0.06));
    border-color: rgba(245, 158, 11, 0.25);
}

.page-seo .faq-item {
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.page-seo .faq-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.08);
}

.page-seo .faq-item h3::before {
    content: '🔍 ';
}

/* ---- DESIGN: Creative masonry/zigzag ---- */
.page-design .service-process {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.04), rgba(168, 85, 247, 0.03));
}

.page-design .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.page-design .process-step {
    border: none;
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid var(--border);
}

.page-design .process-step:nth-child(even) {
    transform: translateY(20px);
}

.page-design .process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #EC4899, #A855F7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.page-design .process-step:hover::before {
    transform: scaleX(1);
}

.page-design .process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(236, 72, 153, 0.3);
}

.page-design .process-step:nth-child(even):hover {
    transform: translateY(16px);
}

.page-design .step-number {
    background: linear-gradient(135deg, #EC4899, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-design .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.page-design .feature-item {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    padding: 28px 20px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--card-bg), rgba(236, 72, 153, 0.02));
    transition: all 0.3s;
}

.page-design .feature-item:hover {
    border-color: rgba(236, 72, 153, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.08);
}

.page-design .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
    margin: 0 auto 8px;
    border-radius: 16px;
    background: rgba(236, 72, 153, 0.08);
}

.page-design .tech-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.page-design .tech-tag {
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.04), rgba(168, 85, 247, 0.04));
    border-color: rgba(236, 72, 153, 0.15);
    transition: all 0.3s;
}

.page-design .tech-tag:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.1));
    border-color: #EC4899;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.1);
}

.page-design .service-cta .cta-box {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(168, 85, 247, 0.08));
    border-color: rgba(236, 72, 153, 0.25);
    border-radius: 32px;
}

.page-design .faq-item {
    border-radius: 20px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--card-bg), rgba(236, 72, 153, 0.02));
    transition: all 0.4s;
}

.page-design .faq-item:hover {
    border-color: rgba(236, 72, 153, 0.3);
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.06);
}

/* ===== Additional responsive for unique sections ===== */
@media (max-width: 768px) {
    .page-siteweb .process-steps::before {
        left: 20px;
    }

    .page-seo .process-steps {
        max-width: 100%;
    }

    .page-seo .tech-tags {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-design .feature-list {
        grid-template-columns: 1fr;
    }

    .page-design .process-steps {
        grid-template-columns: 1fr;
    }

    .page-design .process-step:nth-child(even) {
        transform: none;
    }

    .page-design .tech-tags {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-mobile .process-steps {
        flex-direction: column;
    }

    .page-mobile .process-steps::before {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .page-siteweb .process-step {
        flex-direction: column;
        text-align: center;
    }

    .page-seo .process-step {
        flex-direction: column;
        text-align: center;
    }

    .page-seo .tech-tags {
        grid-template-columns: 1fr 1fr;
    }

    .page-design .tech-tags {
        grid-template-columns: 1fr 1fr;
    }
}
