/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-primary: #030303;
    --bg-secondary: #0a0a0c;
    --bg-card: #0f0f12;
    --bg-glass: rgba(255,255,255,0.02);
    --bg-glass-strong: rgba(255,255,255,0.04);
    --accent-1: #5b21b6;
    --accent-2: #4f46e5;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-amber: #f59e0b;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    --glow: rgba(79,70,229,0.15);
    --glow-strong: rgba(79,70,229,0.3);
    --border: rgba(255,255,255,0.05);
    --border-glow: rgba(255,255,255,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at top, rgba(99,102,241,0.08) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 100% 100%, 80px 80px, 80px 80px;
    background-position: center top;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.gradient-text {
    background: linear-gradient(135deg, #a5b4fc 0%, var(--accent-1) 25%, var(--accent-2) 60%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(6, 182, 212, 0.06);
    border: 1px solid rgba(6, 182, 212, 0.15);
}

.section-title { margin-bottom: 20px; }
.section-desc { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    z-index: 1000;
    padding: 12px 32px;
    background: rgba(10, 10, 18, 0.5);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    top: 10px;
    padding: 8px 24px;
    background: rgba(8, 8, 12, 0.82);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1), 0 1px 1px rgba(99, 102, 241, 0.15);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.nav-logo:hover .logo-img {
    transform: scale(1.02);
}

.nav-links { display: flex; gap: 8px; align-items: center; flex-wrap: nowrap; }

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    letter-spacing: 0.3px;
    padding: 8px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.nav-links a.active { 
    color: #fff; 
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: inset 0 0 10px rgba(99, 102, 241, 0.08);
}

.nav-cta {
    padding: 8px 20px !important;
    background: linear-gradient(135deg, var(--accent-cyan), #6366f1) !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.25);
    border: none !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { 
    transform: translateY(-1.5px) scale(1.02) !important; 
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.45) !important; 
    filter: brightness(1.1);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

.btn-ghost {
    background: rgba(255,255,255,0.02);
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(139,92,246,0.1) 0%, transparent 60%),
                linear-gradient(to bottom, transparent 60%, var(--bg-primary) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    color: #a5b4fc;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    animation: dotPulse 1.8s infinite ease-out;
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hero-content h1 { margin-bottom: 24px; }
.hero-content p { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 40px; max-width: 620px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-integrations {
    max-width: 620px;
    margin-top: 10px;
}

.integrations-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.marquee-content {
    display: inline-flex;
    gap: 48px;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-content span {
    font-size: 0.82rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: var(--transition);
}

.marquee-content span i {
    font-size: 0.95rem;
}

.marquee-content span:hover {
    opacity: 1;
    color: #fff;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========== CYBER-SYNAPSE HERO OVERLAYS ========== */
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
        padding-top: 20px;
    }
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge-glowing {
    align-self: flex-start;
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.25);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.05);
}

@media (max-width: 991px) {
    .hero-badge-glowing {
        align-self: center;
    }
}

.hero-badge-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: pulseBadge 1.2s infinite alternate;
}

@keyframes pulseBadge {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.hero-title-main {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    letter-spacing: -0.5px;
}

@media (max-width: 767px) {
    .hero-title-main {
        font-size: 2.6rem;
    }
}

.hero-title-main .gradient-span {
    background: linear-gradient(90deg, #22d3ee 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description-main {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 550px;
}

@media (max-width: 991px) {
    .hero-description-main {
        margin: 0 auto;
    }
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

@media (max-width: 991px) {
    .hero-cta-buttons {
        justify-content: center;
    }
}

.hero-interactive-stage {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transform-style: preserve-3d;
    z-index: 10;
}

@media (max-width: 575px) {
    .hero-interactive-stage {
        height: 380px;
    }
}

.hero-global-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.hero-3d-models-scene {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform-style: preserve-3d;
}

@media (max-width: 575px) {
    .hero-3d-models-scene {
        gap: 20px;
    }
}

.hero-phone-mock {
    width: 175px;
    height: 290px;
    background: #06060c;
    border: 6px solid #141424;
    border-radius: 28px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.75),
        0 0 35px rgba(34, 211, 238, 0.18),
        inset 0 0 15px rgba(255, 255, 255, 0.02);
    position: relative;
    transform-style: preserve-3d;
    pointer-events: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease-out;
}

@media (max-width: 575px) {
    .hero-phone-mock {
        width: 135px;
        height: 230px;
        border-width: 4px;
        border-radius: 20px;
    }
}

.hero-phone-notch {
    width: 70px;
    height: 14px;
    background: #141424;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hero-phone-notch span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #22d3ee;
    display: inline-block;
}

.hero-phone-notch::after {
    content: '';
    width: 16px;
    height: 2px;
    border-radius: 1px;
    background: rgba(255,255,255,0.2);
    display: inline-block;
}

.hero-phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 14px 2px 14px;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: sans-serif;
    font-weight: bold;
    z-index: 5;
}

.hero-phone-status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.hero-phone-header {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-phone-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone-avatar i {
    font-size: 0.55rem;
    color: #fff;
}

.hero-phone-title {
    font-size: 0.65rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.hero-phone-screen {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    background: linear-gradient(180deg, #07070f 0%, #030308 100%);
}

.hero-chat-bubble {
    padding: 7px 10px;
    font-size: 0.6rem;
    max-width: 85%;
    line-height: 1.35;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-chat-bubble.sent {
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 10px 10px 0 10px;
    align-self: flex-end;
    color: #e2f8ff;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.05);
}

.hero-chat-bubble.received {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px 10px 10px 0;
    align-self: flex-start;
    color: #e2e8f0;
}

.hero-phone-badge {
    align-self: center;
    background: rgba(34, 211, 238, 0.06);
    border: 1px solid rgba(34, 211, 238, 0.18);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.5rem;
    font-family: 'Space Mono', monospace;
    color: #22d3ee;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 2px 0;
}

.hero-server-cabinet {
    width: 180px;
    height: 290px;
    background: linear-gradient(135deg, #090916 0%, #030308 100%);
    border: 2px solid rgba(99, 102, 241, 0.35);
    border-radius: 16px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.75),
        0 0 35px rgba(99, 102, 241, 0.18),
        inset 0 0 15px rgba(255, 255, 255, 0.02);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    pointer-events: auto;
}

@media (max-width: 575px) {
    .hero-server-cabinet {
        width: 140px;
        height: 230px;
        padding: 8px;
    }
}

.hero-server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 8px;
    margin-bottom: 6px;
}

.hero-server-title {
    font-size: 0.62rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.hero-server-status-pill {
    font-size: 0.48rem;
    font-family: 'Space Mono', monospace;
    color: #a855f7;
    border: 1px solid rgba(168,85,247,0.3);
    background: rgba(168,85,247,0.1);
    padding: 1px 4px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.hero-server-shelf {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-shelf-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-shelf-label {
    font-size: 0.52rem;
    font-family: 'Space Mono', monospace;
    color: #a5b4fc;
}

.hero-server-indicator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ef4444;
    display: inline-block;
}

.hero-server-indicator.active {
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    animation: blinkLed 0.5s infinite alternate;
}

.hero-shelf-grid {
    display: flex;
    gap: 3px;
    align-items: center;
    margin-top: 1px;
}

.hero-grid-dot {
    width: 3.5px;
    height: 3.5px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    opacity: 0.8;
}

.hero-grid-dot.yellow { background: #eab308; }
.hero-grid-dot.red { background: #ef4444; }

.hero-server-chart-box {
    margin-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 6px;
}

.hero-chart-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.48rem;
    color: rgba(255,255,255,0.3);
    font-family: 'Space Mono', monospace;
    margin-top: 2px;
}

.hero-integrations-block {
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 25px;
}

.hero-integrations-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: block;
}

/* Glass HUD Panels */
.hero-hud-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hud-widget {
    position: absolute;
    background: rgba(10, 10, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.01),
        0 0 15px rgba(34, 211, 238, 0.03);
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    will-change: transform;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 4px;
    color: var(--accent-cyan);
    font-weight: bold;
    letter-spacing: 0.5px;
}

.hud-value {
    color: rgba(255,255,255,0.85);
}

.hud-led {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    display: inline-block;
}

.hud-uptime {
    top: 15%;
    left: 5%;
    width: 140px;
}

.hud-code-snippet {
    bottom: 18%;
    left: 10%;
    width: 210px;
    font-size: 0.62rem;
}

.hud-cpu-load {
    top: 12%;
    right: 8%;
    width: 130px;
}

.hud-secure-key {
    bottom: 12%;
    right: 42%;
    width: 150px;
}

/* Floating Tech Stack Particle Badge Styles */
.tech-particle {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(10, 10, 22, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.35),
        inset 0 0 10px rgba(255, 255, 255, 0.02);
    will-change: transform;
    pointer-events: none;
    z-index: 3;
    transition: box-shadow 0.3s, color 0.3s, border-color 0.3s;
}

.tech-particle[data-tech="react"] {
    color: #61dafb;
    box-shadow: 0 0 15px rgba(97, 218, 251, 0.2), inset 0 0 5px rgba(97, 218, 251, 0.1);
    border-color: rgba(97, 218, 251, 0.25);
}
.tech-particle[data-tech="php"] {
    color: #777bb4;
    box-shadow: 0 0 15px rgba(119, 123, 180, 0.2), inset 0 0 5px rgba(119, 123, 180, 0.1);
    border-color: rgba(119, 123, 180, 0.25);
}
.tech-particle[data-tech="node"] {
    color: #68a063;
    box-shadow: 0 0 15px rgba(104, 160, 99, 0.2), inset 0 0 5px rgba(104, 160, 99, 0.1);
    border-color: rgba(104, 160, 99, 0.25);
}
.tech-particle[data-tech="python"] {
    color: #3776ab;
    box-shadow: 0 0 15px rgba(55, 118, 171, 0.2), inset 0 0 5px rgba(55, 118, 171, 0.1);
    border-color: rgba(55, 118, 171, 0.25);
}
.tech-particle[data-tech="aws"] {
    color: #ff9900;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.2), inset 0 0 5px rgba(255, 153, 0, 0.1);
    border-color: rgba(255, 153, 0, 0.25);
}
.tech-particle[data-tech="js"] {
    color: #f7df1e;
    box-shadow: 0 0 15px rgba(247, 223, 30, 0.2), inset 0 0 5px rgba(247, 223, 30, 0.1);
    border-color: rgba(247, 223, 30, 0.25);
}
.tech-particle[data-tech="docker"] {
    color: #2496ed;
    box-shadow: 0 0 15px rgba(36, 150, 237, 0.2), inset 0 0 5px rgba(36, 150, 237, 0.1);
    border-color: rgba(36, 150, 237, 0.25);
}
.tech-particle[data-tech="expo"] {
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), inset 0 0 5px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}
.tech-particle[data-tech="mongo"] {
    color: #4db33d;
    box-shadow: 0 0 15px rgba(77, 179, 61, 0.2), inset 0 0 5px rgba(77, 179, 61, 0.1);
    border-color: rgba(77, 179, 61, 0.25);
}
.tech-particle[data-tech="android"] {
    color: #3ddc84;
    box-shadow: 0 0 15px rgba(61, 220, 132, 0.2), inset 0 0 5px rgba(61, 220, 132, 0.1);
    border-color: rgba(61, 220, 132, 0.25);
}
.tech-particle[data-tech="ios"] {
    color: #f5f5f7;
    box-shadow: 0 0 15px rgba(245, 245, 247, 0.2), inset 0 0 5px rgba(245, 245, 247, 0.1);
    border-color: rgba(245, 245, 247, 0.25);
}
.tech-particle[data-tech="mysql"] {
    color: #00758f;
    box-shadow: 0 0 15px rgba(0, 117, 143, 0.2), inset 0 0 5px rgba(0, 117, 143, 0.1);
    border-color: rgba(0, 117, 143, 0.25);
}
.tech-particle[data-tech="postgres"] {
    color: #336791;
    box-shadow: 0 0 15px rgba(51, 103, 145, 0.2), inset 0 0 5px rgba(51, 103, 145, 0.1);
    border-color: rgba(51, 103, 145, 0.25);
}
.tech-particle[data-tech="redis"] {
    color: #d82c20;
    box-shadow: 0 0 15px rgba(216, 44, 32, 0.2), inset 0 0 5px rgba(216, 44, 32, 0.1);
    border-color: rgba(216, 44, 32, 0.25);
}
.tech-particle[data-tech="rabbitmq"] {
    color: #ff6600;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.2), inset 0 0 5px rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.25);
}
.tech-particle[data-tech="Esp"] {
    color: #e7352c;
    box-shadow: 0 0 15px rgba(231, 53, 44, 0.2), inset 0 0 5px rgba(231, 53, 44, 0.1);
    border-color: rgba(231, 53, 44, 0.25);
}
.tech-particle[data-tech="MQTT"] {
    color: #00a3e0;
    box-shadow: 0 0 15px rgba(0, 163, 224, 0.2), inset 0 0 5px rgba(0, 163, 224, 0.1);
    border-color: rgba(0, 163, 224, 0.25);
}
.tech-particle[data-tech="arduino"] {
    color: #00979d;
    box-shadow: 0 0 15px rgba(0, 151, 157, 0.2), inset 0 0 5px rgba(0, 151, 157, 0.1);
    border-color: rgba(0, 151, 157, 0.25);
}
.tech-particle[data-tech="angular"] {
    color: #dd0031;
    box-shadow: 0 0 15px rgba(221, 0, 49, 0.2), inset 0 0 5px rgba(221, 0, 49, 0.1);
    border-color: rgba(221, 0, 49, 0.25);
}
.tech-particle[data-tech="flutter"] {
    color: #02569b;
    box-shadow: 0 0 15px rgba(2, 86, 155, 0.2), inset 0 0 5px rgba(2, 86, 155, 0.1);
    border-color: rgba(2, 86, 155, 0.25);
}
.tech-particle[data-tech="bloom"] {
    color: #a78bfa;
    box-shadow: 0 0 15px rgba(167, 139, 250, 0.2), inset 0 0 5px rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.25);
}


.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
}

.hero-scroll:hover {
    color: var(--accent-cyan);
}

.scroll-mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scrollWheelAnim 1.6s infinite ease-in-out;
}

@keyframes scrollWheelAnim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ========== HERO MOBILE RESPONSIVE ========== */

/* Tablets and below — hide decorative overlays */
@media (max-width: 991px) {



    .hero-hud-layer {
        display: none !important;
    }

    .hero-interactive-stage {
        display: none !important;
    }



    #hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-text-block {
        max-width: 100%;
        width: 100%;
        padding: 0 8px;
        align-items: center;
        overflow: hidden;
    }

    .hero-title-main {
        font-size: 2.4rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-description-main {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 4px;
    }

    .hero-cta-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-integrations-block {
        max-width: 100%;
        overflow: hidden;
    }

    .marquee-container {
        max-width: 100%;
        overflow: hidden;
    }


}

/* Small phones */
@media (max-width: 575px) {
    #hero {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-text-block {
        gap: 18px;
        padding: 0 4px;
    }

    .hero-badge-glowing {
        font-size: 0.68rem;
        padding: 5px 12px;
    }

    .hero-title-main {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-description-main {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-integrations-block {
        margin-top: 4px;
    }

    .hero-integrations-label {
        font-size: 0.72rem;
    }
}

/* ========== STATS BAR ========== */
.stats {
    padding: 80px 0;
    background: rgba(3, 3, 3, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

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

.stat-item {
    padding: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
}

.stat-item h3 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ========== GLASS CARD ========== */
.glass-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.03);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.glass-card:hover::after {
    left: 150%;
}

.glass-card:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.7), 0 0 12px rgba(79,70,229,0.15), inset 0 1px 1px rgba(255,255,255,0.08);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.03);
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb 15s ease-in-out infinite;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb 20s ease-in-out infinite reverse;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.services-subtitle {
    text-align: center;
    margin-bottom: 48px;
}

.services-subtitle h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.services-subtitle h3::before,
.services-subtitle h3::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-1);
}

/* Communication Services */
.comm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 96px;
}

.comm-card {
    padding: 36px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.comm-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--card-accent) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(15px);
    transition: var(--transition);
    pointer-events: none;
}

.comm-card:hover::before {
    opacity: 0.35;
    width: 140px;
    height: 140px;
}

.comm-card:hover {
    border-color: var(--card-accent) !important;
}

.comm-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
    border: 1px solid var(--card-accent);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.comm-card h3 { margin-bottom: 10px; font-weight: 600; }
.comm-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }

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

.comm-features span {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    transition: var(--transition);
}

.comm-features span:hover {
    background: var(--card-accent);
    border-color: var(--card-accent);
    color: #fff;
}

/* Software Services Grid */
.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.software-card {
    padding: 36px;
    text-align: left;
    z-index: 1;
    position: relative;
}

.software-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 0 20px 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--accent-cyan);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.software-card:hover .software-card-icon {
    background: var(--accent-cyan);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.25);
    border-color: var(--accent-cyan);
}

.software-card h3 { margin-bottom: 10px; font-size: 1.15rem; font-weight: 600; }
.software-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ========== ABOUT ========== */
.about { padding: 120px 0; background: var(--bg-secondary); }

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

.about-text .section-label { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 20px; }
.about-text > p { color: var(--text-secondary); margin-bottom: 36px; }

.about-features { display: flex; flex-direction: column; gap: 20px; }

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(139,92,246,0.08));
    border: 1px solid rgba(99,102,241,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(99,102,241,0.1);
    transition: var(--transition);
}

.about-feature:hover .about-feature-icon {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    box-shadow: 0 4px 24px rgba(99,102,241,0.3);
    border-color: transparent;
}

.about-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.about-feature p { font-size: 0.9rem; color: var(--text-secondary); }

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(99,102,241,0.1);
}

.about-image img { border-radius: var(--radius); width: 100%; }

.about-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-cyan));
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(to bottom, rgba(255,255,255,0.05), transparent);
    pointer-events: none;
}

/* ========== TECH MARQUEE ========== */
.tech { padding: 100px 0; overflow: hidden; }

.marquee-wrapper { overflow: hidden; margin-top: 48px; }

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

.tech-pill {
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-pill i {
    font-size: 1.15rem;
}

.tech-pill:hover {
    border-color: var(--border-glow);
    color: var(--text-primary);
    background: rgba(99,102,241,0.12);
    box-shadow: 0 4px 20px rgba(99,102,241,0.2);
    transform: translateY(-2px);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========== PROCESS ========== */
.process {
    padding: 120px 0;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.08) 80%, transparent);
    z-index: 0;
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-4px);
}

.process-number {
    width: 44px;
    height: 44px;
    margin: 0 auto 20px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--accent-cyan);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.process-card:hover .process-number {
    background: var(--accent-cyan);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.25);
    border-color: var(--accent-cyan);
}

.process-card h3 { margin-bottom: 10px; font-size: 1.1rem; font-weight: 600; }
.process-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 120px 0; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card { padding: 36px; }

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--accent-amber);
    font-size: 0.8rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-info h4 { font-size: 0.95rem; }
.testimonial-info p { font-size: 0.8rem; color: var(--text-muted); }

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.06), rgba(6,182,212,0.04));
    border: 1px solid rgba(99,102,241,0.25);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 60px rgba(99,102,241,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(99,102,241,0.05), transparent, rgba(139,92,246,0.05), transparent);
    animation: rotateConic 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateConic {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--text-secondary); margin-bottom: 36px; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p { color: var(--text-secondary); margin-top: 16px; font-size: 0.9rem; max-width: 300px; }

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social-link:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    background: rgba(99,102,241,0.08);
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--accent-1); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .comm-grid { grid-template-columns: 1fr 1fr; }
    .software-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 12px 20px;
    }
    .navbar.scrolled {
        padding: 8px 16px;
    }
    .hero {
        min-height: auto;
        padding: 140px 0 60px;
        overflow: visible;
    }
    .page-hero {
        padding: 130px 0 50px;
    }
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(10, 10, 18, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 24px;
        gap: 12px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        z-index: 999;
        max-height: 75vh;
        overflow-y: auto;
    }
    .nav-links.active a {
        text-align: center;
        width: 100%;
    }
    .nav-toggle { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .comm-grid { grid-template-columns: 1fr; }
    .software-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px !important;
    }
    .footer-brand {
        grid-column: span 2 !important;
    }
    .footer-col:last-child {
        grid-column: span 2 !important;
    }
    .footer {
        padding: 60px 0 90px !important;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    #apiStatusPill {
        bottom: 20px !important;
        left: 20px !important;
        padding: 8px 12px !important;
    }
    #cliToggleBtn {
        bottom: 20px !important;
        left: 210px !important;
    }
    #apiStatusDashboard {
        bottom: 72px !important;
        left: 20px !important;
        width: calc(100% - 40px) !important;
        max-width: 320px !important;
    }
    #cliPanel {
        bottom: 72px !important;
        left: 20px !important;
        width: calc(100% - 40px) !important;
        max-width: 340px !important;
    }
    .hero-content h1 { font-size: 2.2rem; }
    .page-hero-content h1 { font-size: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .cta-inner { padding: 48px 24px; }
}

/* ========================================================================= */
/* ========== SUBPAGE STYLES ========== */
/* ========================================================================= */

/* --- Page Hero Banner --- */
.page-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,15,0.4) 0%, var(--bg-primary) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-content h1 {
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.page-hero-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 540px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--accent-1); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent-2); }

/* --- Services Page --- */
.service-detail {
    padding: 100px 0;
    position: relative;
}

.service-detail:nth-child(even) {
    background: var(--bg-secondary);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}

.service-detail-content .section-label {
    margin-bottom: 12px;
}

.service-detail-content h2 {
    margin-bottom: 16px;
}

.service-detail-content > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-features-list li i {
    color: var(--accent-green);
    font-size: 0.85rem;
    min-width: 18px;
}

.service-detail-visual {
    position: relative;
}

.service-detail-visual .service-icon-large {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
}

.service-icon-large::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

/* Software Services on services page */
.software-section { padding: 100px 0; background: var(--bg-secondary); }

/* --- About Page --- */
.about-story { padding: 100px 0; }

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-story-text h2 { margin-bottom: 20px; }

.about-story-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-story-image {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(99,102,241,0.1);
}

.about-story-image img { width: 100%; border-radius: var(--radius); }

.about-story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
}

/* Mission/Vision Cards */
.mission-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mission-card {
    padding: 48px 36px;
    text-align: center;
}

.mission-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.mission-card h3 { margin-bottom: 14px; font-size: 1.4rem; }
.mission-card p { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; }

/* Values */
.values-section { padding: 100px 0; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 36px;
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.value-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* --- Contact Page --- */
.contact-section { padding: 100px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(139,92,246,0.08));
    border: 1px solid rgba(99,102,241,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    font-size: 1.2rem;
}

.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--text-secondary); font-size: 0.9rem; }
.contact-info-card a { color: var(--text-secondary); transition: var(--transition); }
.contact-info-card a:hover { color: var(--accent-1); }

/* Contact Form */
.contact-form-wrapper { padding: 40px; }

.contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.contact-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.78rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.contact-tag:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.contact-tag.active {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
    background: rgba(255,255,255,0.06);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-group select option { background: var(--bg-primary); color: var(--text-primary); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    align-self: flex-start;
    margin-top: 8px;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.2);
    background-color: #20ba5a;
    color: #fff;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form-wrapper {
        padding: 32px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 24px;
        right: 24px;
        font-size: 26px;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
}

/* ========== API PLAYGROUND ========== */
.playground-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.playground-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: center;
}

/* IDE Window */
.ide-window {
    background: rgba(10, 10, 12, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
}

.ide-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mac-dots {
    display: flex;
    gap: 6px;
}

.mac-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.mac-dots .close { background: #ff5f56; }
.mac-dots .minimize { background: #ffbd2e; }
.mac-dots .expand { background: #27c93f; }

.ide-title {
    font-size: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-secondary);
}

.ide-status {
    font-size: 0.75rem;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ide-status-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ide-copy-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 4px;
}

.ide-copy-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.ide-copy-btn.copied {
    color: var(--accent-green);
}

.ide-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ide-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ide-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.01);
}

.ide-tab.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 2px solid var(--accent-2);
}

.ide-workspace {
    padding: 24px;
    background: rgba(0, 0, 0, 0.15);
    min-height: 240px;
    overflow-y: auto;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.88rem;
    line-height: 1.6;
}

.code-view {
    display: none;
    margin: 0;
}

.code-view.active {
    display: block;
}

/* IDE Code Highlight Colors */
.c-tag { color: #f43f5e; }
.c-keyword { color: #3b82f6; }
.c-className { color: #10b981; }
.c-variable { color: #fb7185; }
.c-method { color: #60a5fa; }
.c-string { color: #a855f7; }
.c-property { color: #38bdf8; }
.c-comment { color: #71717a; font-style: italic; }

/* IDE Console */
.ide-console {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.console-header {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.01);
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
}

.console-body {
    padding: 16px 20px;
    min-height: 70px;
    font-family: monospace;
    font-size: 0.8rem;
    color: #38bdf8;
    line-height: 1.5;
}

.console-line {
    display: block;
    margin-bottom: 4px;
}

.console-line.success { color: var(--accent-green); }
.console-line.error { color: #f43f5e; }
.console-line.loading { color: var(--text-secondary); }

.ide-footer {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: flex-end;
}

.btn-run {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 6px;
    background: #fff;
    color: #000;
}

.btn-run:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Phone Mockup */
.phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 290px;
    height: 580px;
    border-radius: 36px;
    background: rgba(10, 10, 12, 0.5) !important;
    border: 8px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255,255,255,0.02);
    padding: 10px;
    position: relative;
    box-sizing: border-box;
}

.phone-speaker {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #030303;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-sizing: border-box;
}

.phone-status-bar {
    height: 38px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    color: #fff;
    font-weight: 600;
    z-index: 10;
    position: relative;
}

.dynamic-island {
    width: 80px;
    height: 18px;
    background: #000;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
}

.phone-status-bar .icons {
    display: flex;
    gap: 4px;
}

.phone-content {
    height: calc(100% - 38px);
    width: 100%;
    position: relative;
}

/* Lock Screen */
.phone-lock-screen {
    padding: 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center bottom, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
}

.lock-clock {
    font-size: 3.2rem;
    font-weight: 300;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.1;
    margin-bottom: 2px;
}

.lock-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: auto;
}

.lock-hint {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 14px;
    border-radius: 12px;
}

.lock-bottom-glow {
    height: 10px;
    width: 80%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(8px);
    margin-top: 20px;
}

/* App Views */
.phone-app-view {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #030303;
    animation: fadeIn 0.3s ease-out;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    font-weight: 600;
}

.app-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-contact .avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-1);
}

.chat-body {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.date-header {
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.78rem;
    line-height: 1.4;
    max-width: 85%;
}

.bubble-incoming {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* WhatsApp View */
.wa-header {
    background: #0b141a;
    border-bottom: none;
}

.wa-header .app-contact { gap: 10px; }
.wa-avatar { background: var(--bg-card) !important; padding: 4px; }
.wa-avatar img { height: 100%; object-fit: contain; }

.name-status {
    display: flex;
    flex-direction: column;
}

.name-status .name { font-size: 0.8rem; color: #fff; }
.name-status .status { font-size: 0.6rem; color: var(--accent-green); }

.wa-chat-body {
    background: #0b141a;
}

.wa-bubble {
    padding: 10px;
    border-radius: 12px;
    font-size: 0.78rem;
    line-height: 1.4;
    max-width: 85%;
    background: #202c33;
    border: 1px solid rgba(255, 255, 255, 0.02);
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-action-btn {
    margin-top: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    color: var(--accent-green);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.75rem;
}

/* RCS Card View */
.rcs-chat-body {
    background: #000;
}

.rcs-card {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    width: 90%;
    align-self: flex-start;
}

.rcs-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.rcs-card-content {
    padding: 14px;
}

.rcs-card-content h4 { font-size: 0.85rem; margin-bottom: 6px; color: #fff; }
.rcs-card-content p { font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.4; }

.rcs-card-btn {
    padding: 8px;
    text-align: center;
    background: var(--accent-cyan);
    color: #000;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 6px;
    margin-bottom: 6px;
}

.rcs-card-btn.outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Mail App View */
.mail-body {
    flex: 1;
    padding: 12px;
    background: #000;
}

.mail-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px;
    border-radius: 12px;
}

.mail-sender {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.mail-avatar {
    width: 28px;
    height: 28px;
    background: var(--accent-cyan) !important;
    color: #000 !important;
}

.mail-sender .meta {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sender-name { font-size: 0.75rem; font-weight: 700; color: #fff; }
.sender-subject { font-size: 0.68rem; color: var(--text-secondary); }
.mail-sender .time { font-size: 0.65rem; color: var(--text-muted); }

.mail-preview h4 { font-size: 0.8rem; margin-bottom: 4px; color: #fff; }
.mail-preview p { font-size: 0.72rem; color: var(--text-secondary); line-height: 1.4; }

/* Micro animations */
.scale-up-anim {
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes scaleUp {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@media (max-width: 992px) {
    .playground-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========== CLIENTS SECTION ========== */
.clients-section {
    padding: 100px 0;
    position: relative;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.client-card {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.client-card:hover {
    border-color: rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.client-logo-wrapper {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.client-logo {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1) brightness(0.75);
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    filter: grayscale(0) brightness(1);
}

.client-name {
    font-size: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.85;
    transition: var(--transition);
}

.client-card:hover .client-name {
    color: #fff;
    opacity: 1;
}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

/* ==========================================================================
   PREMIUM UI/UX ENHANCEMENTS (STATUS, SCROLL BAR, BACK-TO-TOP, CLI, FLOWCHART, CAROUSEL)
   ========================================================================== */

@keyframes pulseGreen {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Back To Top Button Circle Animation */
.back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.15) !important;
    background: rgba(40, 40, 50, 0.85) !important;
}
.back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Status Pill Hover Effect */
#apiStatusPill:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(16, 185, 129, 0.4) !important;
    background: rgba(16, 185, 129, 0.08) !important;
}
#apiStatusDashboard.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* CLI toggle btn hover */
#cliToggleBtn:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--accent-1) !important;
    color: var(--text-primary) !important;
}
#cliPanel.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Interactive FAQ Accordion */
.faq-item.active {
    border-color: var(--accent-1) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* System Message Flowchart */
.flowchart-section {
    padding: 100px 0;
    position: relative;
    background: rgba(0, 0, 0, 0.1);
}
.pipeline-flow-wrapper {
    margin-top: 50px;
}
.pipeline-nodes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 12px;
}
.pipeline-node {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    min-height: 190px;
}
.pipeline-node .node-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.pipeline-node .node-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}
.pipeline-node .node-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-muted);
}
.pipeline-connector {
    flex: 0.5;
    display: flex;
    align-items: center;
}
.pipeline-connector svg {
    overflow: visible;
}
.glow-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 0.5s ease;
}

/* Flowchart hover states */
.pipeline-node:hover, .pipeline-node.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.pipeline-node.active[data-step="1"] { border-color: var(--accent-1) !important; }
.pipeline-node.active[data-step="2"] { border-color: var(--accent-cyan) !important; }
.pipeline-node.active[data-step="3"] { border-color: var(--accent-green) !important; }
.pipeline-node.active[data-step="4"] { border-color: var(--accent-amber) !important; }
.pipeline-node.active[data-step="5"] { border-color: var(--accent-1) !important; }

.pipeline-node:hover .node-icon, .pipeline-node.active .node-icon {
    background: var(--accent-gradient) !important;
    border-color: transparent !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.35);
}

.pipeline-connector.active .glow-line {
    stroke-dashoffset: 0;
    animation: flowPulse 2s linear infinite;
}

@keyframes flowPulse {
    0% { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
}

/* Testimonial slider styles */
.slider-dot.active {
    background: var(--accent-1) !important;
    width: 24px !important;
}
.slider-btn:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    transform: scale(1.05);
}
@media (max-width: 992px) {
    .pipeline-nodes {
        flex-direction: column;
        gap: 32px;
    }
    .pipeline-node {
        width: 100%;
        min-height: auto;
    }
    .pipeline-connector {
        transform: rotate(90deg);
        width: 40px;
        margin: 0 auto;
    }
}

/* Stack Architect styles */
.domain-opt:hover {
    border-color: rgba(34, 211, 238, 0.4) !important;
    background: rgba(34, 211, 238, 0.02) !important;
    transform: translateY(-2px);
}
.domain-opt:hover i {
    transform: scale(1.15);
}
.domain-opt.active i {
    transform: scale(1.1);
}
.goal-opt:hover {
    border-color: rgba(34, 211, 238, 0.4) !important;
    background: rgba(34, 211, 238, 0.02) !important;
    transform: translateX(4px);
}
#bpActionBtn:hover {
    background: #22d3ee !important;
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
}
@media (max-width: 768px) {
    .architect-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Before-After comparison & Exploder styles */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.exploder-layer:hover {
    border-color: rgba(34, 211, 238, 0.4) !important;
    background: rgba(34, 211, 238, 0.02) !important;
}
@media (max-width: 992px) {
    .slider-wrapper-grid, .exploder-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .layer-stack-visual {
        padding: 0 !important;
    }
    .exploder-layer {
        transform: none !important;
    }
    .exploder-layer:hover {
        transform: scale(1.02) !important;
    }
}

/* Client Success Stories styles */
.story-tab-btn:hover {
    background: rgba(34, 211, 238, 0.02) !important;
    border-color: rgba(34, 211, 238, 0.3) !important;
    color: #fff !important;
}
.story-tab-btn.active {
    background: rgba(34, 211, 238, 0.05) !important;
    border-color: var(--accent-cyan) !important;
    color: #fff !important;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.15);
}
@media (max-width: 768px) {
    #storyContentCard {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 30px !important;
    }
}

/* Services page updates */
.services-pill:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.03) !important;
}
.services-pill.active {
    background: rgba(34, 211, 238, 0.08) !important;
    border: 1px solid rgba(34, 211, 238, 0.2) !important;
}
.est-item:hover {
    border-color: rgba(34, 211, 238, 0.2) !important;
    background: rgba(15, 15, 25, 0.8) !important;
    transform: translateY(-2px);
}
@media (max-width: 992px) {
    .hero-services-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding-top: 40px !important;
    }
    .estimator-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .tech-stacks-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .service-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    .service-detail:nth-child(even) .service-detail-grid {
        direction: ltr !important;
    }
    .service-detail-grid .service-detail-visual {
        display: none !important;
    }
    .service-detail-content {
        text-align: center !important;
    }
    .service-features-list {
        display: inline-block !important;
        text-align: left !important;
    }
    .service-detail-grid[style*="margin-bottom"], 
    .service-detail-grid[style*="margin-top"],
    .software-section .glass-card[style*="margin-bottom"] {
        margin-bottom: 50px !important;
        margin-top: 50px !important;
    }
    /* About Us page overrides */
    .about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .about-story-image {
        display: none !important;
    }
    .mission-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}
@media (max-width: 768px) {
    .services-nav-bar-container {
        top: 70px !important;
        margin-top: -10px !important;
        margin-bottom: 25px !important;
        padding: 0 15px !important;
    }
    .services-nav-pills {
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        justify-content: flex-start !important;
        border-radius: 20px !important;
        padding: 6px !important;
        -webkit-overflow-scrolling: touch;
        gap: 6px !important;
    }
    .services-pill {
        padding: 8px 14px !important;
        font-size: 0.78rem !important;
        flex-shrink: 0 !important;
    }
}
@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .mission-card {
        padding: 30px 20px !important;
    }
    .value-card {
        padding: 24px 20px !important;
    }
    .tech-stacks-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .blueprint-diagram {
        flex-direction: column !important;
        gap: 15px !important;
        height: auto !important;
        padding: 10px 0;
    }
    .blueprint-diagram > div[style*="height:2px"] {
        width: 2px !important;
        height: 35px !important;
        border-left: 2px dotted rgba(255,255,255,0.15) !important;
        border-top: none !important;
        margin: 5px 0 !important;
        flex-grow: 0 !important;
    }
    .blueprint-diagram .flow-pulse {
        top: 0 !important;
        left: -4px !important;
        animation: flowMoveVertical 1.5s infinite linear !important;
    }
    .estimator-section .glass-card div[style*="justify-content: space-between"] {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 15px !important;
        text-align: center;
    }
    #estInquireBtn {
        width: 100% !important;
        justify-content: center !important;
    }
}

@keyframes flowMoveVertical {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Software blueprint dashboard animation */
@keyframes flowMove {
    0% { left: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}
.blueprint-tab:hover {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
.blueprint-tab.active {
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}
@media (max-width: 992px) {
    .software-section .glass-card {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 25px !important;
    }
}

/* Accessibility screen-reader/SEO-only helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Global Currency Switcher */
.currency-switcher-wrapper {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 3px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.currency-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.currency-btn:hover {
    color: #fff;
}

.currency-btn.active {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .currency-switcher-wrapper {
        margin-right: 0;
        margin-bottom: 12px;
        width: 100%;
        justify-content: center;
    }
    .currency-btn {
        flex: 1;
        text-align: center;
    }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(10, 10, 15, 0.8);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.4) 0%, rgba(6, 182, 212, 0.4) 100%);
    border-radius: 5px;
    border: 2px solid rgba(10, 10, 15, 0.8);
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.8) 0%, rgba(6, 182, 212, 0.8) 100%);
}

/* Custom Context Menu */
.custom-context-menu {
    position: fixed;
    z-index: 100000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.02);
    width: 200px;
    display: none;
    padding: 6px 0;
    font-family: 'Space Grotesk', sans-serif;
    user-select: none;
    animation: fadeIn 0.15s ease-out;
}

.context-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.context-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.context-item i:first-child {
    width: 20px;
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin-right: 8px;
}

.context-item .submenu-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.context-submenu {
    position: absolute;
    top: -6px;
    left: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    width: 220px;
    display: none;
    padding: 6px 0;
    z-index: 100001;
    animation: fadeIn 0.15s ease-out;
}

.context-item.has-submenu:hover .context-submenu {
    display: block;
}

.submenu-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.submenu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.submenu-item i {
    width: 20px;
    font-size: 0.85rem;
    color: #818cf8;
    margin-right: 8px;
}

/* Dev Modal Dialog Intercept */
.dev-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dev-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.dev-modal-card {
    background: rgba(15, 15, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

.dev-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dev-modal-title {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dev-modal-body {
    padding: 30px;
    text-align: center;
}

.dev-icon-glow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.dev-modal-body h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 12px;
}

.dev-modal-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.dev-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 8px;
}

.dev-stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dev-stat-box .lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.dev-stat-box .val {
    font-size: 1rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.dev-modal-footer {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
}

.dev-modal-footer button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dev-modal-footer button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Custom Mouse Cursor */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.2s, height 0.2s, background-color 0.2s, opacity 0.3s;
}

.custom-cursor-ring {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(34, 211, 238, 0.4);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s, opacity 0.3s;
}

/* Hover States for Interactive Items */
.custom-cursor-ring.hovered {
    width: 52px;
    height: 52px;
    border-color: #6366f1;
    background-color: rgba(99, 102, 241, 0.1);
}

.custom-cursor-dot.hovered {
    background-color: #6366f1;
    width: 4px;
    height: 4px;
}

/* Hide cursor on desktop pointers */
@media (pointer: fine) {
    body, a, button, select, input, textarea, .currency-btn, .nav-links a, .est-check, .contact-tag {
        cursor: none !important;
    }
}

/* Tech Stack Card Hover Animation */
.tech-stack-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.25) !important;
    background: rgba(34, 211, 238, 0.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 211, 238, 0.1);
}
.tech-p {
    transition: all 0.2s ease;
}
.tech-stack-card:hover .tech-p {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

@media (max-width: 992px) {
    .tech-stacks-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .tech-stacks-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

