/* ============================================
   PROJECTS PAGE STYLES
   ============================================ */

/* Hero Section */
.projectsHeroSection {
    padding: 100px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.projectsHeroGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.projectsHeroContent {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.projectsHeroBadge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 60px;
    width: fit-content;
    margin-bottom: 24px;
    /* animation: fadeInUp 0.6s ease-out; */
}

[data-theme="dark"] .projectsHeroBadge {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.85), rgba(7, 15, 32, 0.9));
    border: 1px solid rgba(30, 58, 138, 0.4);
    box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.12);
}

.companyLogo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logoIcon {
    width: 36px;
    height: 36px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.logoText {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text);
}

.companyTagline {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: 600;
    padding-left: 16px;
    border-left: 2px solid var(--color-border);
}

.projectsHeroTitle {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-text);
}

[data-theme="dark"] .projectsHeroTitle {
    color: #f1f5f9;
}

.titleGradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .titleGradient {
    background: linear-gradient(135deg, #a78bfa, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projectsHeroDescription {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

[data-theme="dark"] .projectsHeroDescription {
    color: #cbd5e1;
}

.heroActions {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

/* Hero and Service Primary Buttons - Unified Styles (Identical to Home Page) */
.btnHeroPrimary,
.btnServicePrimary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: fit-content;
}

[data-theme="dark"] .btnHeroPrimary,
[data-theme="dark"] .btnServicePrimary {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.btnHeroPrimary::before,
.btnServicePrimary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btnHeroPrimary span,
.btnServicePrimary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btnHeroPrimary svg,
.btnServicePrimary svg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
}

.btnHeroPrimary:hover,
.btnServicePrimary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btnHeroPrimary:hover,
[data-theme="dark"] .btnServicePrimary:hover {
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(59, 130, 246, 0.25);
}

.btnHeroPrimary:hover::before,
.btnServicePrimary:hover::before {
    opacity: 1;
}

.btnHeroPrimary:hover span,
.btnHeroPrimary:hover svg,
.btnServicePrimary:hover span,
.btnServicePrimary:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Hero Visual - Solar System */
.projectsHeroVisual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.projectSolarSystem {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbit Rings */
.orbit {
    position: absolute;
    border: 2px dashed rgba(30, 58, 138, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

[data-theme="dark"] .orbit {
    border: 2px dashed rgba(59, 130, 246, 0.3);
}

.orbit1 {
    width: 240px;
    height: 240px;
}

.orbit2 {
    width: 380px;
    height: 380px;
}

.orbit3 {
    width: 520px;
    height: 520px;
}

/* Central Hub */
.centralHub {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 40px rgba(30, 58, 138, 0.6);
    z-index: 10;
    animation: pulse 3s ease-in-out infinite;
}

[data-theme="dark"] .centralHub {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6), rgba(59, 130, 246, 0.5));
    border: 2px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    animation: pulseDark 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(30, 58, 138, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(30, 58, 138, 0.8), 0 0 80px rgba(59, 130, 246, 0.4);
    }
}

[data-theme="dark"] .centralHub {
    /* animation: pulseDark 3s ease-in-out infinite; */
}

@keyframes pulseDark {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(59, 130, 246, 0.7), 0 0 80px rgba(59, 130, 246, 0.3);
    }
}

.hubIcon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hubIcon svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

[data-theme="dark"] .hubIcon svg {
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.hubLabel {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hubLabel {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Planets/Services */
.planet {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
}

/* Individual Planet Animations */
/* Orbit 1: planet1 and planet2 - 180° apart on 120px radius */
.planet1 {
    animation: orbit1 20s linear infinite;
    animation-delay: 0s; /* Web Dev at 0° */
}

.planet2 {
    animation: orbit1 20s linear infinite;
    animation-delay: -10s; /* N8N at 180° (half of 20s = 10s) */
}

/* Orbit 2: planet3 and planet4 - 180° apart on 190px radius */
.planet3 {
    animation: orbit2 30s linear infinite;
    animation-delay: 0s; /* DevOps at 0° */
}

.planet4 {
    animation: orbit2 30s linear infinite;
    animation-delay: -15s; /* Analytics at 180° (half of 30s = 15s) */
}

/* Orbit 3: planet5 and planet6 - 180° apart on 260px radius */
.planet5 {
    animation: orbit3 40s linear infinite;
    animation-delay: 0s; /* AI at 0° */
}

.planet6 {
    animation: orbit3 40s linear infinite;
    animation-delay: -20s; /* UI/UX at 180° (half of 40s = 20s) */
}

@keyframes orbit1 {
    from {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    from {
        transform: rotate(0deg) translateX(190px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(190px) rotate(-360deg);
    }
}

@keyframes orbit3 {
    from {
        transform: rotate(0deg) translateX(260px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(260px) rotate(-360deg);
    }
}

.planetContent {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15), rgba(59, 130, 246, 0.12));
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .planetContent {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(59, 130, 246, 0.25));
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.planet:hover .planetContent {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(59, 130, 246, 0.28));
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5), 0 0 32px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .planet:hover .planetContent {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.5), rgba(59, 130, 246, 0.42));
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6), 0 0 32px rgba(59, 130, 246, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.planetContent svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(30, 58, 138, 0.3));
}

[data-theme="dark"] .planetContent svg {
    color: #60a5fa;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.5));
}

.planet:hover .planetContent svg {
    color: #1e3a8a;
    transform: scale(1.1);
}

[data-theme="dark"] .planet:hover .planetContent svg {
    color: #93c5fd;
}

.planetLabel {
    font-size: 10px;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(30, 58, 138, 0.2);
}

[data-theme="dark"] .planetLabel {
    color: #93c5fd;
    text-shadow: 0 1px 3px rgba(59, 130, 246, 0.3);
}

.planet.featured .planetContent {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.25));
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.4), 0 0 24px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .planet.featured .planetContent {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.45), rgba(59, 130, 246, 0.38));
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5), 0 0 24px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.newBadge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 2px 6px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-size: 8px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Links - Tab-like Navigation */
.projectsQuickLinks,
.servicesQuickLinks {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.08), rgba(92, 23, 243, 0.05));
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.12);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(157, 78, 221, 0.15);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(157, 78, 221, 0.3) transparent;
}

.projectsQuickLinks::-webkit-scrollbar,
.servicesQuickLinks::-webkit-scrollbar {
    height: 6px;
}

.projectsQuickLinks::-webkit-scrollbar-track,
.servicesQuickLinks::-webkit-scrollbar-track {
    background: transparent;
}

.projectsQuickLinks::-webkit-scrollbar-thumb,
.servicesQuickLinks::-webkit-scrollbar-thumb {
    background: rgba(157, 78, 221, 0.3);
    border-radius: 3px;
}

.projectsQuickLinks::-webkit-scrollbar-thumb:hover,
.servicesQuickLinks::-webkit-scrollbar-thumb:hover {
    background: rgba(157, 78, 221, 0.5);
}

[data-theme="dark"] .projectsQuickLinks,
[data-theme="dark"] .servicesQuickLinks {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.12), rgba(92, 23, 243, 0.08));
    border: 2px solid rgba(157, 78, 221, 0.25);
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.2);
}

.quickLink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 14px;
    color: #5C17F3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.08);
}

[data-theme="dark"] .quickLink {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border-color: rgba(157, 78, 221, 0.35);
    color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.15);
}

.quickLink::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9D4EDD, #5C17F3);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.quickLink:hover {
    border-color: #9D4EDD;
    color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(157, 78, 221, 0.3);
}

.quickLink:hover::before {
    opacity: 1;
}

[data-theme="dark"] .quickLink:hover {
    border-color: #C77DFF;
    box-shadow: 0 12px 32px rgba(157, 78, 221, 0.4);
}

.quickLink:active {
    transform: translateY(-2px) scale(1.01);
}

.quickLink svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.quickLink:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.quickLink.featured {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(92, 23, 243, 0.1));
    border-color: #9D4EDD;
    position: relative;
}

[data-theme="dark"] .quickLink.featured {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.25), rgba(92, 23, 243, 0.2));
    border-color: #C77DFF;
}

.quickLink.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #9D4EDD, #5C17F3);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.98);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.newBadge {
    padding: 4px 10px;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

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

/* Service Sections */
.projectSection {
    padding: 80px 0;
    position: relative;
    background: transparent;
}

.serviceGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Layout (Content Left, Visual Right) */
.projectSectionLeft .serviceGrid {
    grid-template-columns: 1fr 1fr;
}

/* Right Layout (Visual Left, Content Right) */
.projectSectionRight .serviceGrid {
    grid-template-columns: 1fr 1fr;
}

.serviceContent {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.projectBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(92, 23, 243, 0.1);
    border: 1px solid rgba(92, 23, 243, 0.2);
    border-radius: 50px;
    width: fit-content;
}

[data-theme="dark"] .projectBadge {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.3);
}

.projectBadge.featured {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.15), rgba(157, 78, 221, 0.15));
    border-color: var(--color-primary);
}

[data-theme="dark"] .projectBadge.featured {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(196, 181, 253, 0.15));
    border-color: #a78bfa;
}

.projectBadgeIcon {
    font-size: 18px;
}

.projectBadgeText {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
}

[data-theme="dark"] .projectBadgeText {
    color: #a78bfa;
}

.projectTitle {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
}

[data-theme="dark"] .projectTitle {
    color: #f1f5f9;
}

.projectDescription {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

[data-theme="dark"] .projectDescription {
    color: #cbd5e1;
}

.projectFeatures {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.projectFeatures li {
    position: relative;
    padding-left: 32px;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

[data-theme="dark"] .projectFeatures li {
    color: #cbd5e1;
}

.projectFeatures li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

[data-theme="dark"] .projectFeatures li::before {
    background: linear-gradient(135deg, #a78bfa, #c4b5fd);
}

/* Button styles already defined in unified section above */

/* Service Visual */
.projectVisual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Visual Mockup Container */
.visualMockup {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   WEB DEVELOPMENT MOCKUP
   ============================================ */
.webDevMockup {
    /* animation: float 6s ease-in-out infinite; */
}

.browserWindow {
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.25);
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.15);
}

[data-theme="dark"] .browserWindow {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.browserHeader {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .browserHeader {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.8), rgba(30, 41, 59, 0.9));
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

.browserDots {
    display: flex;
    gap: 6px;
}

.browserDots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.browserDots span:nth-child(1) { background: #ef4444; }
.browserDots span:nth-child(2) { background: #f59e0b; }
.browserDots span:nth-child(3) { background: #10b981; }

.browserUrl {
    flex: 1;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

[data-theme="dark"] .browserUrl {
    background: rgba(15, 23, 42, 0.8);
    color: #94a3b8;
}

.browserContent {
    padding: 24px;
    background: #1e293b;
}

.codeEditor {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
}

.codeLine {
    color: #e2e8f0;
}

.codeLine.indent1 {
    padding-left: 20px;
}

.codeTag { color: #60a5fa; }
.codeAttr { color: #a78bfa; }
.codeString { color: #34d399; }

.floatingElement {
    position: absolute;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    /* animation: floatElement 4s ease-in-out infinite; */
}

.floatingElement.elem1 {
    top: 20px;
    right: -40px;
}

.floatingElement.elem2 {
    top: 100px;
    left: -60px;
}

.floatingElement.elem3 {
    top: 200px;
    right: -50px;
}

.floatingElement.elem4 {
    bottom: 80px;
    left: -50px;
}

.floatingElement.elem5 {
    bottom: 20px;
    right: -30px;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

/* ============================================
   WEB APPLICATIONS 3D STACKED SCREENS MOCKUP
   ============================================ */
.webAppStack {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.appScreen {
    position: absolute;
    width: 480px;
    height: 420px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.15);
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

[data-theme="dark"] .appScreen {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border-color: rgba(157, 78, 221, 0.4);
}

/* Screen Positioning - 3D Stack Effect */
.screen1 {
    transform: translateX(0) translateY(0) rotateY(0deg) translateZ(0px);
    z-index: 3;
}

.screen2 {
    transform: translateX(-30px) translateY(-20px) rotateY(-8deg) translateZ(-80px);
    z-index: 2;
    opacity: 0.85;
}

.screen3 {
    transform: translateX(-60px) translateY(-40px) rotateY(-15deg) translateZ(-160px);
    z-index: 1;
    opacity: 0.7;
}

.webAppStack:hover .screen1 {
    transform: translateX(20px) translateY(-10px) rotateY(5deg) translateZ(20px);
}

.webAppStack:hover .screen2 {
    transform: translateX(-15px) translateY(-15px) rotateY(-5deg) translateZ(-60px);
    opacity: 0.9;
}

.webAppStack:hover .screen3 {
    transform: translateX(-45px) translateY(-30px) rotateY(-12deg) translateZ(-140px);
    opacity: 0.8;
}

/* Screen Glow Effect */
.screenGlow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #9D4EDD, #5C17F3);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(15px);
}

.appScreen:hover .screenGlow {
    opacity: 0.15;
}

/* Screen Content */
.screenContent {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.appPreview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Preview Header */
.previewHeader {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(157, 78, 221, 0.15);
    margin-bottom: 16px;
}

.headerDots {
    display: flex;
    gap: 6px;
}

.headerDots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
}

.headerDots span:nth-child(1) { background: #ef4444; }
.headerDots span:nth-child(2) { background: #f59e0b; }
.headerDots span:nth-child(3) { background: #10b981; }

.headerTitle {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    flex: 1;
    text-align: center;
}

[data-theme="dark"] .headerTitle {
    color: #f1f5f9;
}

/* Preview Body */
.previewBody {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Preview Card */
.previewCard {
    background: white;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(157, 78, 221, 0.15);
    box-shadow: 0 2px 6px rgba(157, 78, 221, 0.06);
}

[data-theme="dark"] .previewCard {
    background: rgba(51, 65, 85, 0.6);
    border-color: rgba(157, 78, 221, 0.25);
}

.cardImage {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.cardImage.gradient1 {
    background: linear-gradient(135deg, #1e293b, #334155);
}

.cardDetails {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cardTitle {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

[data-theme="dark"] .cardTitle {
    color: #f1f5f9;
}

.cardStats {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #64748b;
}

[data-theme="dark"] .cardStats {
    color: #94a3b8;
}

/* Mini Chart */
.miniChart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 160px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(157, 78, 221, 0.15);
}

[data-theme="dark"] .miniChart {
    background: rgba(51, 65, 85, 0.6);
    border-color: rgba(157, 78, 221, 0.25);
}

.chartBar {
    flex: 1;
    background: linear-gradient(180deg, #9D4EDD, #5C17F3);
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
    min-height: 30%;
}

.chartBar:hover {
    filter: brightness(0.92);
}

/* User List */
.userList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.userItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(157, 78, 221, 0.15);
}

[data-theme="dark"] .userItem {
    background: rgba(51, 65, 85, 0.6);
    border-color: rgba(157, 78, 221, 0.25);
}

.userAvatar {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(92, 23, 243, 0.15));
    border-radius: 8px;
    font-size: 16px;
}

.userName {
    font-size: 11px;
    font-weight: 600;
    color: #1e293b;
}

[data-theme="dark"] .userName {
    color: #f1f5f9;
}

/* Tech Badges */
.techBadge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #9D4EDD, #5C17F3);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.4);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 4;
}

[data-theme="dark"] .techBadge {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.9), rgba(92, 23, 243, 0.85));
}

.techBadge svg {
    width: 16px;
    height: 16px;
}

.badge1 {
    top: 40px;
    right: -20px;
    animation-delay: 0s;
}

.badge2 {
    top: 160px;
    right: -40px;
    animation-delay: 1s;
}

.badge3 {
    bottom: 60px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

/* ============================================
   N8N AUTOMATION MOCKUP
   ============================================ */
.n8nMockup {
    /* animation: float 6s ease-in-out infinite; */
}

.workflowCanvas {
    position: relative;
    width: 100%;
    min-height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    overflow: visible;
}

[data-theme="dark"] .workflowCanvas {
    background: transparent;
    border-color: transparent;
}

/* Workflow Header */
.workflowHeader {
    display: none;
}

/* Workflow Flow */
.workflowFlow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    overflow-x: visible;
    overflow-y: visible;
    padding: 20px 0;
    justify-content: flex-start;
}

.flowColumn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.flowColumn.split {
    flex-direction: column;
    gap: 30px;
    justify-content: space-around;
    padding: 10px 0;
}

/* Workflow Nodes */
.workflowNode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
    /* transition: all 0.3s ease; */
    min-width: 130px;
    max-width: 130px;
    min-height: 120px;
    text-align: center;
    justify-content: center;
}

[data-theme="dark"] .workflowNode {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-color: rgba(59, 130, 246, 0.3);
}

.workflowNode:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
    border-color: rgba(30, 58, 138, 0.4);
}

[data-theme="dark"] .workflowNode:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Node Types */
.workflowNode.trigger {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(30, 58, 138, 0.05));
}

[data-theme="dark"] .workflowNode.trigger {
    border-color: rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(30, 58, 138, 0.1));
}

.workflowNode.condition {
    border-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(251, 191, 36, 0.05));
}

[data-theme="dark"] .workflowNode.condition {
    border-color: rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.1));
}

.workflowNode.urgent {
    border-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(248, 113, 113, 0.05));
}

[data-theme="dark"] .workflowNode.urgent {
    border-color: rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(248, 113, 113, 0.1));
}

.workflowNode.normal {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(167, 139, 250, 0.05));
}

[data-theme="dark"] .workflowNode.normal {
    border-color: rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(167, 139, 250, 0.1));
}

.workflowNode.final {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(52, 211, 153, 0.05));
}

[data-theme="dark"] .workflowNode.final {
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.1));
}

.nodeIcon {
    font-size: 36px;
    flex-shrink: 0;
}

.nodeContent {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.nodeTitle {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.3;
}

[data-theme="dark"] .nodeTitle {
    color: #e2e8f0;
}

.nodeDesc {
    font-size: 11px;
    color: #64748b;
    line-height: 1.3;
}

[data-theme="dark"] .nodeDesc {
    color: #94a3b8;
}

/* Flow Arrows */
.flowArrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 8px 0;
}

.flowArrow.horizontal {
    flex-direction: row;
    margin: 0 8px;
}

.arrowLine {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
}

.flowArrow.horizontal .arrowLine {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.arrowHead {
    color: #3b82f6;
    font-size: 16px;
    line-height: 1;
    margin-top: -4px;
}

.flowArrow.horizontal .arrowHead {
    margin-top: 0;
    margin-left: -4px;
}

/* Split Flow */
.flowSplit {
    position: relative;
    display: flex;
    justify-content: space-around;
    padding: 0 40px;
}

.flowSplit.horizontal {
    width: 80px;
    height: 100%;
    flex-direction: column;
    padding: 20px 0;
}

.splitArrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.flowSplit.horizontal .splitArrow {
    flex-direction: row;
    width: 100%;
    height: 50%;
}

.splitLabel {
    font-size: 11px;
    font-weight: 700;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

[data-theme="dark"] .splitLabel {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.flowSplit.horizontal .splitLabel {
    margin-bottom: 0;
    margin-right: 6px;
}

.splitLine {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
}

.flowSplit.horizontal .splitLine {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.flowSplit.horizontal .topArrow .splitLine {
    transform: translateY(-20px);
}

.flowSplit.horizontal .bottomArrow .splitLine {
    transform: translateY(20px);
}

/* Merge Flow */
.flowMerge {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 8px 0;
}

.flowMerge.horizontal {
    width: 50px;
    height: 100%;
    flex-direction: column;
}

.mergeLine {
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #60a5fa, #3b82f6);
}

.flowMerge.horizontal .mergeLine {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.flowMerge.horizontal .mergeLine.topLine {
    top: 30%;
    left: 0;
    transform: rotate(-15deg);
    transform-origin: right;
}

.flowMerge.horizontal .mergeLine.bottomLine {
    bottom: 30%;
    left: 0;
    transform: rotate(15deg);
    transform-origin: right;
}

/* ============================================
   DEVOPS MOCKUP
   ============================================ */
.devOpsMockup {
    /* animation: float 6s ease-in-out infinite; */
}

.terminalWindow {
    width: 380px;
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

[data-theme="dark"] .terminalWindow {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.terminalHeader {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.terminalDots {
    display: flex;
    gap: 6px;
}

.terminalDots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #475569;
}

.terminalDots span:nth-child(1) { background: #ef4444; }
.terminalDots span:nth-child(2) { background: #f59e0b; }
.terminalDots span:nth-child(3) { background: #10b981; }

.terminalTitle {
    color: #94a3b8;
    font-size: 12px;
    font-family: 'Courier New', monospace;
}

.terminalContent {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.terminalLine {
    color: #e2e8f0;
    margin-bottom: 12px;
    line-height: 1.6;
}

.terminalLine .prompt {
    color: #3b82f6;
    margin-right: 8px;
}

.terminalLine.success {
    color: #10b981;
    margin-left: 16px;
}

.terminalLine.cursor {
    /* animation: blink 1s step-end infinite; */
}

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

.cloudIcon {
    position: absolute;
    font-size: 40px;
    /* animation: floatCloud 8s ease-in-out infinite; */
}

.cloudIcon.cloud1 {
    top: -20px;
    right: -40px;
}

.cloudIcon.cloud2 {
    bottom: -20px;
    left: -50px;
}

@keyframes floatCloud {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px);
        opacity: 0.9;
    }
}

/* ============================================
   ANALYTICS MOCKUP
   ============================================ */
.analyticsMockup {
    /* animation: float 6s ease-in-out infinite; */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Dashboard Header */
.analyticsMockup .dashboardHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 16px 0;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

[data-theme="dark"] .analyticsMockup .dashboardHeader {
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

.headerTitle {
    font-size: 20px;
    font-weight: 800;
    color: #1e3a8a;
}

[data-theme="dark"] .headerTitle {
    color: #60a5fa;
}

.headerPeriod {
    font-size: 12px;
    color: #64748b;
    background: rgba(30, 58, 138, 0.08);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
}

[data-theme="dark"] .headerPeriod {
    color: #94a3b8;
    background: rgba(59, 130, 246, 0.15);
}

/* Main Stats Grid */
.mainStatsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mainStatCard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.95));
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    /* transition: all 0.3s ease; */
}

[data-theme="dark"] .mainStatCard {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-color: rgba(59, 130, 246, 0.3);
}

.mainStatCard:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.statIcon {
    font-size: 32px;
    flex-shrink: 0;
}

.statInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.statInfo .statLabel {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .statInfo .statLabel {
    color: #94a3b8;
}

.statInfo .statValue {
    font-size: 24px;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1;
}

[data-theme="dark"] .statInfo .statValue {
    color: #60a5fa;
}

.statChange {
    font-size: 12px;
    font-weight: 700;
    margin-top: 4px;
}

.statChange.positive {
    color: #10b981;
}

.statChange.negative {
    color: #ef4444;
}

/* Chart Section */
.chartSection {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.95));
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    width: 100%;
}

[data-theme="dark"] .chartSection {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-color: rgba(59, 130, 246, 0.3);
}

.chartTitle {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
}

[data-theme="dark"] .chartTitle {
    color: #60a5fa;
}

.chartBars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    height: 180px;
    padding: 20px 12px 40px 12px;
    position: relative;
}

.chartBar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
}

.barFill {
    width: 100%;
    background: linear-gradient(180deg, #3b82f6, #1e3a8a);
    border-radius: 8px 8px 0 0;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}

.chartBar.bar1 .barFill { height: 60%; /* animation: growBar 1s ease-out 0s; */ }
.chartBar.bar2 .barFill { height: 85%; /* animation: growBar 1s ease-out 0.1s; */ }
.chartBar.bar3 .barFill { height: 70%; /* animation: growBar 1s ease-out 0.2s; */ }
.chartBar.bar4 .barFill { height: 95%; /* animation: growBar 1s ease-out 0.3s; */ }
.chartBar.bar5 .barFill { height: 78%; /* animation: growBar 1s ease-out 0.4s; */ }
.chartBar.bar6 .barFill { height: 65%; /* animation: growBar 1s ease-out 0.5s; */ }
.chartBar.bar7 .barFill { height: 50%; /* animation: growBar 1s ease-out 0.6s; */ }

@keyframes growBar {
    from {
        height: 0;
        opacity: 0;
    }
}

.chartBar:hover .barFill {
    filter: brightness(1.1);
    transform: scaleY(1.02);
}

.barLabel {
    position: absolute;
    bottom: -28px;
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

[data-theme="dark"] .barLabel {
    color: #94a3b8;
}

/* Bottom Stats */
.bottomStatsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bottomStatCard {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    /* transition: all 0.3s ease; */
}

[data-theme="dark"] .bottomStatCard {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.15));
    border-color: rgba(59, 130, 246, 0.3);
}

.bottomStatCard:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.bottomStatValue {
    font-size: 20px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 4px;
}

[data-theme="dark"] .bottomStatValue {
    color: #60a5fa;
}

.bottomStatLabel {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

[data-theme="dark"] .bottomStatLabel {
    color: #94a3b8;
}

/* ============================================
   UI/UX MOCKUP
   ============================================ */
.uiuxMockup {
    /* animation: float 6s ease-in-out infinite; */
}

.designCanvas {
    position: relative;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 251, 0.98));
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.25);
    border: 1px solid rgba(30, 58, 138, 0.15);
}

[data-theme="dark"] .designCanvas {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border-color: rgba(59, 130, 246, 0.3);
}

.artboard {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
    border: 2px solid rgba(30, 58, 138, 0.1);
}

[data-theme="dark"] .artboard {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(59, 130, 246, 0.2);
}

.mobileMockup {
    width: 180px;
    height: 320px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.4);
    margin: 0 auto;
}

.mockupScreen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

[data-theme="dark"] .mockupScreen {
    background: rgba(15, 23, 42, 0.95);
}

.mockupHeader {
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 16px 16px 0 0;
}

.mockupBody {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockupElement {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.08));
    border-radius: 8px;
    /* animation: shimmer 2s ease-in-out infinite; */
}

.mockupElement.elem1 {
    height: 40px;
}

.mockupElement.elem2 {
    height: 80px;
}

.mockupElement.elem3 {
    height: 60px;
}

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

.colorPalette {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 8px;
}

.colorSwatch {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* animation: popIn 0.6s ease-out; */
}

.colorSwatch.color1 {
    background: #3b82f6;
}

.colorSwatch.color2 {
    background: #8b5cf6;
}

.colorSwatch.color3 {
    background: #ec4899;
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
}

.designCursor {
    position: absolute;
    top: 50%;
    right: 40px;
    font-size: 32px;
    /* animation: moveCursor 4s ease-in-out infinite; */
}

@keyframes moveCursor {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
}

/* ============================================
   API MOCKUP
   ============================================ */
.apiMockup {
    /* animation: float 6s ease-in-out infinite; */
}

.apiWindow {
    width: 360px;
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

[data-theme="dark"] .apiWindow {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.apiHeader {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.httpMethod {
    padding: 4px 12px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
}

.apiEndpoint {
    color: #94a3b8;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

.apiContent {
    padding: 20px;
}

.apiSection {
    margin-bottom: 20px;
}

.apiLabel {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.statusCode {
    color: #10b981;
    margin-left: 8px;
}

.jsonCode {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    background: rgba(15, 23, 42, 0.5);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.jsonLine {
    color: #e2e8f0;
}

.jsonLine.indent {
    padding-left: 20px;
    color: #60a5fa;
}

.dataFlow {
    position: absolute;
    top: 50%;
    right: -30px;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, transparent);
    /* animation: flowData 2s ease-in-out infinite; */
}

@keyframes flowData {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

/* ============================================
   VS CODE EXTENSIONS MOCKUP
   ============================================ */
.vscodeMockup {
    /* animation: float 6s ease-in-out infinite; */
}

.vscodeWindow {
    width: 380px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.25);
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.15);
}

[data-theme="dark"] .vscodeWindow {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.vscodeHeader {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.vscodeTitle {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vscodeContent {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 340px;
}

[data-theme="dark"] .vscodeContent {
    background: rgba(15, 23, 42, 0.5);
}

.extensionCard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.95));
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

[data-theme="dark"] .extensionCard {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-color: rgba(59, 130, 246, 0.3);
}

.extensionCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
    border-color: rgba(30, 58, 138, 0.3);
}

[data-theme="dark"] .extensionCard:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.extIcon {
    font-size: 36px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.08));
    border-radius: 10px;
}

[data-theme="dark"] .extIcon {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.2));
}

.extInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.extName {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
}

[data-theme="dark"] .extName {
    color: #60a5fa;
}

.extDesc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

[data-theme="dark"] .extDesc {
    color: #94a3b8;
}

.extStats {
    font-size: 11px;
    color: #3b82f6;
    font-weight: 600;
    margin-top: 2px;
}

[data-theme="dark"] .extStats {
    color: #60a5fa;
}

/* ============================================
   WEB APPLICATIONS MOCKUP
   ============================================ */
.webAppMockup {
    /* animation: float 6s ease-in-out infinite; */
}

.appDashboard {
    width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.25);
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.15);
    display: flex;
    height: 360px;
}

[data-theme="dark"] .appDashboard {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dashboardSidebar {
    width: 70px;
    background: linear-gradient(180deg, #1e3a8a, #3b82f6);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 8px;
    gap: 16px;
}

.sidebarItem {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebarItem:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.sidebarItem.active {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.dashboardMain {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

[data-theme="dark"] .dashboardMain {
    background: rgba(15, 23, 42, 0.5);
}

.dashboardHeader {
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

[data-theme="dark"] .dashboardHeader {
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

.dashboardHeader h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0;
}

[data-theme="dark"] .dashboardHeader h3 {
    color: #60a5fa;
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.statCard {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .statCard {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.15));
    border-color: rgba(59, 130, 246, 0.3);
}

.statCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.statCard .statLabel {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .statCard .statLabel {
    color: #94a3b8;
}

.statCard .statValue {
    font-size: 26px;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1;
}

[data-theme="dark"] .statCard .statValue {
    color: #60a5fa;
}

.statCard .statChange {
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
}

/* ============================================
   DESKTOP APPLICATIONS MOCKUP
   ============================================ */
.desktopAppMockup {
    /* animation: float 6s ease-in-out infinite; */
}

.desktopWindow {
    width: 380px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.25);
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.15);
}

[data-theme="dark"] .desktopWindow {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.desktopHeader {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .desktopHeader {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.8), rgba(30, 41, 59, 0.9));
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

.desktopTitle {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    gap: 8px;
}

[data-theme="dark"] .desktopTitle {
    color: #e2e8f0;
}

.desktopControls {
    display: flex;
    gap: 6px;
}

.desktopControls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.desktopControls span:nth-child(1) { background: #ef4444; }
.desktopControls span:nth-child(2) { background: #f59e0b; }
.desktopControls span:nth-child(3) { background: #10b981; }

.desktopContent {
    display: flex;
    flex-direction: column;
    height: 320px;
}

.desktopToolbar {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(59, 130, 246, 0.05));
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

[data-theme="dark"] .desktopToolbar {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.15));
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

.toolbarBtn {
    padding: 8px 14px;
    background: white;
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

[data-theme="dark"] .toolbarBtn {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
    color: #e2e8f0;
}

.toolbarBtn:hover {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-color: transparent;
}

.desktopMain {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

[data-theme="dark"] .desktopMain {
    background: rgba(15, 23, 42, 0.3);
}

.appFeature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.03));
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .appFeature {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15), rgba(59, 130, 246, 0.1));
    border-color: rgba(59, 130, 246, 0.2);
}

.appFeature:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.08));
    border-color: rgba(30, 58, 138, 0.2);
}

[data-theme="dark"] .appFeature:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.25), rgba(59, 130, 246, 0.18));
    border-color: rgba(59, 130, 246, 0.4);
}

.appFeature .featureIcon {
    font-size: 28px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.08));
    border-radius: 10px;
}

[data-theme="dark"] .appFeature .featureIcon {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.2));
}

.appFeature .featureText {
    font-size: 13px;
    font-weight: 600;
    color: #1e3a8a;
}

[data-theme="dark"] .appFeature .featureText {
    color: #e2e8f0;
}

/* ============================================
   PYPI PACKAGES MOCKUP
   ============================================ */
.pypiMockup {
    /* Reuses terminalWindow styles */
}

/* ============================================
   GITHUB REPOSITORY MOCKUP
   ============================================ */
.githubMockup {
    /* animation: float 6s ease-in-out infinite; */
}

.githubWindow {
    width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.25);
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.15);
}

[data-theme="dark"] .githubWindow {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.githubHeader {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.githubLogo {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.githubLogo svg {
    width: 100%;
    height: 100%;
    color: white;
}

.githubTitle {
    color: white;
    font-size: 14px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.githubContent {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

[data-theme="dark"] .githubContent {
    background: rgba(15, 23, 42, 0.5);
}

.repoStats {
    display: flex;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

[data-theme="dark"] .repoStats {
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

.repoStat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.repoStat .statIcon {
    font-size: 16px;
    color: #64748b;
}

[data-theme="dark"] .repoStat .statIcon {
    color: #94a3b8;
}

.repoStat .statValue {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a8a;
}

[data-theme="dark"] .repoStat .statValue {
    color: #60a5fa;
}

.repoStat .statLabel {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

[data-theme="dark"] .repoStat .statLabel {
    color: #94a3b8;
}

.repoFiles {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.03));
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 10px;
    padding: 12px;
}

[data-theme="dark"] .repoFiles {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15), rgba(59, 130, 246, 0.1));
    border-color: rgba(59, 130, 246, 0.2);
}

.repoFile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: white;
    border-radius: 6px;
    font-size: 13px;
    color: #1e3a8a;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

[data-theme="dark"] .repoFile {
    background: rgba(15, 23, 42, 0.8);
    color: #e2e8f0;
}

.repoFile:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.08));
}

[data-theme="dark"] .repoFile:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.2));
}

.repoFile::before {
    content: '📄';
    font-size: 16px;
}

.repoBadges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.repoBadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.08));
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #1e3a8a;
}

[data-theme="dark"] .repoBadge {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.15));
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.repoBadge.license {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.1));
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

[data-theme="dark"] .repoBadge.license {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.15));
    border-color: rgba(16, 185, 129, 0.4);
}

.repoBadge.ci {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.1));
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

[data-theme="dark"] .repoBadge.ci {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.15));
    border-color: rgba(59, 130, 246, 0.4);
}

/* ============================================
   NPM PACKAGES MOCKUP
   ============================================ */
.npmMockup {
    /* Reuses terminalWindow styles */
}

/* ============================================
   LLM ON-PREMISE MOCKUP
   ============================================ */
.llmMockup {
    /* animation: float 6s ease-in-out infinite; */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* LLM Section */
.llmSection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sectionTitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

[data-theme="dark"] .sectionTitle {
    color: #60a5fa;
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

.titleIcon {
    font-size: 18px;
}

/* Server Grid */
.serverGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.serverCard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.95));
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    /* transition: all 0.3s ease; */
}

[data-theme="dark"] .serverCard {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-color: rgba(59, 130, 246, 0.3);
}

.serverCard:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.serverIcon {
    font-size: 28px;
}

.serverInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.serverName {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a8a;
}

[data-theme="dark"] .serverName {
    color: #e2e8f0;
}

.serverStatus {
    font-size: 11px;
    font-weight: 600;
}

.serverStatus.active {
    color: #10b981;
}

/* Models Grid */
.modelsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.modelCard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.95));
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    /* transition: all 0.3s ease; */
}

[data-theme="dark"] .modelCard {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-color: rgba(59, 130, 246, 0.3);
}

.modelCard:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
    border-color: rgba(30, 58, 138, 0.3);
}

[data-theme="dark"] .modelCard:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.modelHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modelName {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
}

[data-theme="dark"] .modelName {
    color: #60a5fa;
}

.modelBadge {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
}

.modelMeta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metaItem {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.metaLabel {
    color: #64748b;
    font-weight: 600;
}

[data-theme="dark"] .metaLabel {
    color: #94a3b8;
}

.metaValue {
    color: #1e3a8a;
    font-weight: 700;
}

[data-theme="dark"] .metaValue {
    color: #60a5fa;
}

.modelStatus {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modelStatus.running {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

[data-theme="dark"] .modelStatus.running {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.modelStatus.standby {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

[data-theme="dark"] .modelStatus.standby {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}

/* Features Grid */
.featuresGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.featureItem {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    /* transition: all 0.3s ease; */
}

[data-theme="dark"] .featureItem {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.15));
    border-color: rgba(59, 130, 246, 0.3);
}

.featureItem:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
    border-color: rgba(30, 58, 138, 0.3);
}

[data-theme="dark"] .featureItem:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.featureIcon {
    font-size: 24px;
}

.featureText {
    font-size: 11px;
    font-weight: 700;
    color: #1e3a8a;
}

[data-theme="dark"] .featureText {
    color: #60a5fa;
}

/* Featured Service Section */
.serviceFeatured {
    background: transparent;
}

/* CTA Section */
.projectsCTASection {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.projectsCTA {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ctaTitle {
    font-size: 44px;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 20px;
}

[data-theme="dark"] .ctaTitle {
    color: #f1f5f9;
}

.ctaDescription {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

[data-theme="dark"] .ctaDescription {
    color: #cbd5e1;
}

.ctaButtons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btnCTAPrimary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-theme="dark"] .btnCTAPrimary {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.btnCTAPrimary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btnCTAPrimary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btnCTAPrimary svg {
    position: relative;
    z-index: 1;
}

.btnCTAPrimary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btnCTAPrimary:hover {
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(59, 130, 246, 0.25);
}

.btnCTAPrimary:hover::before {
    opacity: 1;
}

.btnCTAPrimary:hover span,
.btnCTAPrimary:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btnCTASecondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

[data-theme="dark"] .btnCTASecondary {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.7), rgba(7, 15, 32, 0.75));
    border: 1px solid rgba(30, 58, 138, 0.35);
    color: #f1f5f9;
    box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.12);
    backdrop-filter: blur(5px);
}

.btnCTASecondary:hover {
    background: rgba(30, 58, 138, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
}

[data-theme="dark"] .btnCTASecondary:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(14, 31, 64, 0.5));
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.3),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.btnCTAPrimary svg,
.btnCTASecondary svg {
    width: 20px;
    height: 20px;
}

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

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

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

.animateFadeUp {
    /* animation: fadeInUp 0.8s ease-out; */
}

.animateSlideLeft {
    /* animation: slideInLeft 0.8s ease-out; */
}

.animateSlideRight {
    /* animation: slideInRight 0.8s ease-out; */
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .projectsHeroGrid {
        gap: 60px;
    }

    .projectsHeroTitle {
        font-size: 40px;
    }

    .projectSolarSystem {
        width: 500px;
        height: 500px;
    }

    .orbit1 {
        width: 200px;
        height: 200px;
    }

    .orbit2 {
        width: 320px;
        height: 320px;
    }

    .orbit3 {
        width: 440px;
        height: 440px;
    }

    .centralHub {
        width: 100px;
        height: 100px;
    }

    .hubIcon {
        width: 40px;
        height: 40px;
    }

    .planet {
        width: 70px;
        height: 70px;
        margin: -35px 0 0 -35px;
    }

    .planetContent svg {
        width: 28px;
        height: 28px;
    }

    @keyframes orbit1 {
        from {
            transform: rotate(0deg) translateX(100px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(100px) rotate(-360deg);
        }
    }

    @keyframes orbit2 {
        from {
            transform: rotate(0deg) translateX(160px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(160px) rotate(-360deg);
        }
    }

    @keyframes orbit3 {
        from {
            transform: rotate(0deg) translateX(220px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(220px) rotate(-360deg);
        }
    }

    .serviceGrid {
        gap: 60px;
    }

    .projectTitle {
        font-size: 34px;
    }

    .serviceIcon {
        width: 220px;
        height: 220px;
    }

    .serviceIcon svg {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .projectsHeroSection {
        padding: 100px 0 60px;
    }

    .projectsHeroGrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projectsHeroTitle {
        font-size: 32px;
    }

    .projectsHeroDescription {
        font-size: 16px;
    }

    .projectSolarSystem {
        width: 380px;
        height: 380px;
    }

    .orbit1 {
        width: 140px;
        height: 140px;
    }

    .orbit2 {
        width: 230px;
        height: 230px;
    }

    .orbit3 {
        width: 320px;
        height: 320px;
    }

    .centralHub {
        width: 80px;
        height: 80px;
    }

    .hubIcon {
        width: 32px;
        height: 32px;
    }

    .hubLabel {
        font-size: 9px;
    }

    .planet {
        width: 60px;
        height: 60px;
        margin: -30px 0 0 -30px;
    }

    .planetContent svg {
        width: 24px;
        height: 24px;
    }

    .planetLabel {
        font-size: 9px;
    }

    @keyframes orbit1 {
        from {
            transform: rotate(0deg) translateX(70px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(70px) rotate(-360deg);
        }
    }

    @keyframes orbit2 {
        from {
            transform: rotate(0deg) translateX(115px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(115px) rotate(-360deg);
        }
    }

    @keyframes orbit3 {
        from {
            transform: rotate(0deg) translateX(160px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(160px) rotate(-360deg);
        }
    }

    .projectSection {
        padding: 60px 0;
    }

    .serviceGrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Reset grid order for mobile */
    .projectSectionLeft .serviceGrid,
    .projectSectionRight .serviceGrid {
        grid-template-columns: 1fr;
    }

    /* Always show content first on mobile */
    .projectSectionRight .serviceContent {
        order: 1;
    }

    .projectSectionRight .projectVisual {
        order: 2;
    }

    .projectTitle {
        font-size: 28px;
    }

    .projectDescription {
        font-size: 16px;
    }

    /* Mobile Mockup Adjustments */
    .visualMockup {
        width: 100%;
        height: 300px;
    }

    .browserWindow,
    .workflowCanvas,
    .terminalWindow,
    .dashboardWindow,
    .designCanvas,
    .apiWindow,
    .aiWindow,
    .vscodeWindow,
    .appDashboard,
    .desktopWindow,
    .githubWindow {
        width: 100%;
        max-width: 320px;
        transform: scale(0.9);
    }

    .floatingElement,
    .cloudIcon {
        display: none;
    }

    .projectSolarSystem {
        transform: scale(0.85);
    }

    /* Quick Links Mobile */
    .projectsQuickLinks,
    .servicesQuickLinks {
        padding: 12px 16px;
        gap: 8px;
        margin: 30px auto 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        border-radius: 16px;
    }

    .quickLink {
        padding: 12px 20px;
        font-size: 13px;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .quickLink svg {
        width: 18px;
        height: 18px;
    }

    .newBadge {
        font-size: 9px;
        padding: 3px 8px;
    }

    .quickLink:hover {
        transform: translateY(-2px) scale(1.01);
    }

    /* New Mockup Specific Mobile Adjustments */
    .extensionCard {
        padding: 10px;
        gap: 10px;
    }

    .extIcon {
        font-size: 28px;
        width: 36px;
        height: 36px;
    }

    .extName {
        font-size: 12px;
    }

    .extDesc,
    .extStats {
        font-size: 10px;
    }

    .dashboardSidebar {
        width: 60px;
        padding: 16px 6px;
    }

    .sidebarItem {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .statsGrid {
        grid-template-columns: 1fr;
    }

    .desktopToolbar {
        padding: 10px 12px;
        gap: 6px;
    }

    .toolbarBtn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .appFeature {
        padding: 10px;
        gap: 10px;
    }

    .appFeature .featureIcon {
        font-size: 24px;
        width: 36px;
        height: 36px;
    }

    .appFeature .featureText {
        font-size: 12px;
    }

    .repoStats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .repoFile {
        font-size: 11px;
        padding: 6px;
    }

    .projectsCTASection {
        padding: 60px 0;
    }

    .ctaTitle {
        font-size: 32px;
    }

    .ctaDescription {
        font-size: 16px;
    }

    .ctaButtons {
        flex-direction: column;
    }

    .btnCTAPrimary,
    .btnCTASecondary {
        width: 100%;
        justify-content: center;
    }
}
