:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0e;
    --accent-blue: #648cff;
    --accent-green: #4dff9d;
    --accent-pink: #ff6eb4;
    --accent-orange: #ffb84d;
    --accent-purple: #8b5cf6;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-subtle: rgba(255, 255, 255, 0.065);
    --border-medium: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-nav-bg: rgba(0, 0, 0, 0.2);
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Cairo', 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Orbs */
.background-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 20s infinite alternate;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(ellipse at center, rgba(0, 40, 255, 0.4), transparent 60%);
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(ellipse at center, rgba(0, 20, 200, 0.25), transparent 60%);
    animation-delay: -5s;
}

.orb-3 {
    top: 20%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle at center, rgba(59,130,246,0.05), transparent 60%);
    animation-delay: -10s;
}

.orb-4 {
    bottom: 20%;
    right: 10%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle at center, rgba(139,92,246,0.05), transparent 60%);
    animation-delay: -15s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 50px); }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

/* Glassmorphism Utilities */
.glass-panel, .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}

.reveal.active {
    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; }

/* Navigation */
.glass-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    pointer-events: none;
    transition: 0.4s var(--easing);
}

.glass-nav {
    display: contents; /* We will style the internal parts to match React layout */
}

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

.nav-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    padding: 0.6rem 2.2rem;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    pointer-events: auto;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 10px 40px;
    direction: rtl;
}

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.3s var(--easing);
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.nav-actions {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    color: black;
    padding: 0.7rem 1.6rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: rgba(255, 255, 255, 0.15) 0px 10px 30px;
    transition: 0.3s;
}

.btn-nav-cta:hover {
    transform: scale(1.05);
    background-color: #f8f9fa;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 12, 18, 0.95);
    backdrop-filter: blur(40px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--easing);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
    max-width: 400px;
}

.mobile-link {
    font-size: 1.2rem;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
}

.mobile-cta {
    font-size: 1.2rem;
    padding: 16px 20px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 16px;
    text-align: center;
    font-weight: 800;
    margin-top: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--easing);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s var(--easing);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: transform 0.3s var(--easing);
}

.btn-link:hover {
    transform: translateX(-5px);
}

/* Section Common */
section {
    padding: 6rem 0;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-medium);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    margin: 0 auto 3rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    text-align: center;
    padding: 0px 2rem;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.glowing-dot {
    width: 8px;
    height: 8px;
    background: #4dff4d;
    border-radius: 50%;
    box-shadow: 0 0 10px #4dff4d;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 10px #4dff4d; }
    50% { box-shadow: 0 0 25px #4dff4d, 0 0 50px rgba(77, 255, 77, 0.5); }
    100% { box-shadow: 0 0 10px #4dff4d; }
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0px 0px 1.5rem;
    max-width: 1100px;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.8);
}

.outline-text-blue {
    color: transparent;
    -webkit-text-stroke: 1px rgba(100, 180, 255, 0.7);
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* SERVICES SECTION */
.services-section {
    position: relative;
    padding: 140px 0 180px;
    z-index: 10;
    overflow: hidden;
}

.services-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(90% 60% at 50% 0%, rgba(30, 10, 120, 0.3) 0%, transparent 65%), 
                radial-gradient(50% 40% at 10% 100%, rgba(20, 60, 120, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.services-top-line {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    z-index: 1;
}

.section-divider-animated {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    border-radius: 2px;
    margin: 2.4rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    border-radius: 22px;
    padding: 2.8rem 2.4rem 2.4rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.067);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
    overflow: hidden;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
}

.card-number {
    position: absolute;
    top: -1.5rem;
    right: 1.5rem;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
    transition: color 0.4s;
}

.service-card:hover .card-number {
    color: rgba(255, 255, 255, 0.05);
}

.card-top-line {
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--accent-card), transparent);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.5s ease;
}

.service-card:hover .card-top-line {
    opacity: 1;
    transform: scaleX(1);
}

.card-icon-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.15);
}

.card-arrow {
    color: var(--accent-card);
    opacity: 0;
    transform: translate(8px, 8px);
    transition: all 0.4s;
}

.service-card:hover .card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.card-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-card);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.service-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

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

.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    font-weight: 600;
    transition: all 0.3s;
}

.service-card:hover .tag {
    border-color: var(--accent-card);
    color: var(--accent-card);
    background: rgba(255, 255, 255, 0.08);
}

.services-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: -0.04em;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0.3rem 0 0;
}

/* TECH MARQUEE SECTION */
.tech-marquee-section {
    padding: 80px 0 60px;
    background: transparent;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.tech-marquee-title {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 2.5rem;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

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

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 4.5rem;
    opacity: 0.4;
    transition: all 0.4s;
    flex-shrink: 0;
}

.tech-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.tech-item i {
    font-size: 32px;
}

.tech-svg {
    width: 32px;
    height: 32px;
}

.tech-item span {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* FEATURES SECTION */
.features-section {
    padding: 100px 0;
    background: #010103;
    position: relative;
    overflow: hidden;
}

.features-bg-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: rgb(59, 130, 246);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.features-accordion {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin-top: 4rem;
}

.feature-acc-item {
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex: 1;
    background-color: rgba(255, 255, 255, 0.01);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-acc-item.active {
    flex: 2.5;
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.acc-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--bg-rgba) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.feature-acc-item.active .acc-glow {
    opacity: 1;
}

.acc-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.acc-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    color: white;
    transition: all 0.6s ease;
}

.feature-acc-item.active .acc-icon-box {
    background: rgba(59, 130, 246, 0.125);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
    color: var(--accent-feature);
}

.acc-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
    transition: font-size 0.6s ease;
}

.feature-acc-item.active .acc-title {
    font-size: 2.2rem;
}

.acc-expanded-info {
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.feature-acc-item.active .acc-expanded-info {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.acc-expanded-info p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-size: 1.05rem;
    max-width: 90%;
}

.acc-link {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-feature);
    font-weight: 700;
}

.acc-number {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    font-size: 4rem;
    font-weight: 900;
.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
}

/* PROJECTS SECTION */
.projects-section {
    padding: 140px 0;
    background: #010103;
    position: relative;
    overflow: hidden;
}

.projects-bg-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(30, 80, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.project-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-tags {
    display: flex;
    gap: 10px;
}

.project-tags span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-info {
    padding: 2.2rem;
}

.project-info h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.project-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.project-link:hover {
    gap: 15px;
    color: var(--accent-blue);
}

/* AI AGENTS SECTION */;
    color: var(--accent-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-content h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem;
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Tech Section */
.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.tech-pill {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 600;
    transition: all 0.3s var(--easing);
}

.tech-pill:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

/* Chatbot Section */
.chatbot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chatbot-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.chatbot-content .tech-pills {
    justify-content: flex-start;
}

.chat-pane {
    display: flex;
    flex-direction: column;
    height: 400px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(255,255,255,0.02);
}

.bot-avatar {
    font-size: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-info {
    display: flex;
    flex-direction: column;
}

.online-status {
    color: var(--accent-green);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
}

.chat-messages {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;/* AI AGENTS SECTION */
.spatial-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.spatial-text-side {
    flex: 0 0 50%;
    position: relative;
}

.spatial-badge-wrapper {
    margin-bottom: 2.5rem;
}

.spatial-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    background: rgba(59, 130, 246, 0.08);
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.12);
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    margin-left: 6px;
    box-shadow: 0 0 10px #10b981;
}

.text-blue-italic {
    color: var(--accent-blue);
    font-style: italic;
    text-shadow: 0 0 50px rgba(59, 130, 246, 0.4);
}

.text-white-bold {
    color: white;
    font-weight: 700;
}

.spatial-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 48px;
    background: white;
    color: black !important;
    border-radius: 100px;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
}

.spatial-btn:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--accent-blue);
    color: white !important;
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.4);
}

.spatial-chat-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.glow-path {
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: 35px;
    width: 2px;
    background: linear-gradient(transparent, rgba(59, 130, 246, 0.4), transparent);
    z-index: 0;
}

.spatial-user-bubble {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 0 32px 32px 32px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 90%;
    line-height: 1.7;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 2px 0 rgba(255, 255, 255, 0.15) inset;
    position: relative;
    z-index: 10;
}

.spatial-bot-bubble {
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(10, 12, 18, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 1.5rem 2rem;
    border-radius: 32px 0 32px 32px;
    color: white;
    font-size: 1.1rem;
    max-width: 90%;
    line-height: 1.7;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 2px 0 rgba(59, 130, 246, 0.2) inset;
    position: relative;
    z-index: 10;
}

.bot-avatar-badge {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 48px;
    height: 48px;
    background: #0a0a0e;
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
}

.interactive-options-wrapper {
    align-self: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 10;
}

.chat-interactive-pill {
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.chat-interactive-pill:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

.typing-indicator {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 28px;
    border-radius: 32px 0 32px 32px;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-blue);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@media (max-width: 1024px) {
    .spatial-container {
        flex-direction: column;
        gap: 4rem;
        text-align: right;
    }
    .spatial-text-side, .spatial-chat-side {
        width: 100%;
        flex: auto;
    }
}

@media (max-width: 768px) {
    .spatial-text-side h2 { font-size: 2.8rem; }
    .spatial-bot-bubble, .spatial-user-bubble {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

/* CONTACT SECTION */}

.message {
    padding: 1rem;
    border-radius: 16px;
    max-width: 80%;
    font-size: 0.95rem;
}

.user-msg {
    background: rgba(255,255,255,0.1);
    align-self: flex-start;
    border-bottom-right-radius: 4px;
}

.bot-msg {
    background: rgba(100, 140, 255, 0.15);
    color: #e0e7ff;
    align-self: flex-end;
    border-bottom-left-radius: 4px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.4s var(--easing);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.15);
}

.pricing-card.featured {
    border-color: var(--accent-blue);
    background: linear-gradient(145deg, rgba(100,140,255,0.08), rgba(255,255,255,0.02));
    padding: 4rem 2rem;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-blue);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(100,140,255,0.3);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.pricing-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 50px;
}

.pricing-features {
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-medium);
    border-radius: 30px;
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: #010103;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(30, 80, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.text-blue {
    color: var(--accent-blue);
    background: linear-gradient(to bottom, #fff 30%, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
    background: rgba(0,0,0,0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.brand-desc {
    color: var(--text-secondary);
    max-width: 400px;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-icon {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Utilities */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 99;
    animation: float-wa 3s infinite ease-in-out;
    transition: transform 0.3s var(--easing);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

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

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-medium);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--easing);
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-to-top:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

/* Basic Pages */
.page-container {
    padding: 12rem 2rem 6rem;
    min-height: 80vh;
}

.narrow-width {
    max-width: 900px;
}

.page-fallback {
    padding: 4rem 2rem;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.page-content {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Mobile Navigation */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1.2rem;
        padding: 0.6rem 1.5rem;
    }
    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .nav-links { 
        display: none !important; 
    }
    
    .glass-nav-wrapper { 
        top: 15px !important;
        left: 5% !important;
        width: 90% !important;
        padding: 0.8rem 1.2rem !important;
        border-radius: 9999px !important;
        background-color: rgba(20, 25, 35, 0.5) !important;
        backdrop-filter: blur(30px) saturate(150%) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.4) !important;
        pointer-events: auto !important;
    }

    .mobile-hamburger { 
        display: flex !important;
        padding: 10px;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-logo img { 
        height: 28px !important; 
    }

    .btn-nav-cta {
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        color: white !important;
        gap: 6px !important;
        border-radius: 0 !important;
        font-weight: 700 !important;
    }
    
    .btn-nav-cta svg {
        fill: white !important;
        stroke: white !important;
    }
    
    .btn-nav-cta .contact-text {
        font-size: 0.8rem;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links, .btn-nav-cta {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .chatbot-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 2rem;
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .brand-desc {
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        padding: 3rem 2rem;
    }
}

/* --- Features Accordion --- */
.features-accordion {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}
.feature-accordion-item {
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(30px);
    background-color: var(--bg-rgba);
    flex: 1 1 0%;
    transition: flex 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s;
}
.feature-accordion-item:hover, .feature-accordion-item.active {
    flex: 2.5 1 0%;
}
.feature-accordion-item:first-child:not(:hover) {
    /* If we want first active by default, handle in JS */
}
.feature-accordion-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s;
}
.feature-accordion-item:hover .feature-accordion-glow, .feature-accordion-item.active .feature-accordion-glow {
    opacity: 1;
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    margin-bottom: 2rem;
}
.feature-accordion-details {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s, max-height 0.4s;
    pointer-events: none;
    max-height: 0;
}
.feature-accordion-item:hover .feature-accordion-details, .feature-accordion-item.active .feature-accordion-details {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: 300px;
    margin-top: 1.5rem;
}
.feature-accordion-details p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-size: 1.05rem;
    max-width: 90%;
}
.feature-link {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}
.feature-number {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    opacity: 0.1;
    transition: opacity 0.4s;
}
.feature-accordion-item:hover .feature-number, .feature-accordion-item.active .feature-number {
    opacity: 0;
}

/* --- Creative Cards (Work Section) --- */
.creative-card-bg {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 500px;
    height: 500px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}
.creative-card-content {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}
.creative-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
}
.creative-card-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: black;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.creative-card-btn:hover {
    transform: scale(1.05);
}
.creative-card-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.creative-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-text-side {
    flex: 0 0 40%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-image-side {
    flex: 1;
    padding: 1.5rem;
    position: relative;
}

@media (max-width: 1024px) {
    .features-accordion {
        flex-direction: column;
        gap: 1rem;
    }
    .feature-accordion-item {
        height: auto;
        min-height: 180px;
        flex: initial !important;
    }
    .card-text-side {
        flex: 0 0 100%;
        padding: 2rem;
    }
    .card-image-side {
        flex: 0 0 100%;
        padding: 0 2rem 2rem;
    }
    .creative-card-wrapper {
        height: auto !important;
        max-height: none !important;
        position: relative !important;
        top: 0 !important;
        margin-bottom: 2rem !important;
    }
}

/* Extracted React Inline Styles */

                .header-contact-btn:hover {
                    transform: scale(1.05);
                    background-color: #f8f9fa !important;
                }
                .header-contact-btn:active {
                    transform: scale(0.95);
                }

                @media (max-width: 1200px) {
                    .desktop-nav-pill {
                        gap: 1.2rem !important;
                        padding: 0.6rem 1.5rem !important;
                    }
                    .desktop-nav-pill a {
                        font-size: 0.8rem !important;
                    }
                }

                @media (max-width: 900px) {
                    .desktop-nav-pill { 
                        display: none !important; 
                    }
                    
                    .header-container { 
                        top: 15px !important;
                        left: 5% !important;
                        width: 90% !important;
                        padding: 0.8rem 1.2rem !important;
                        border-radius: 9999px !important;
                        background-color: rgba(20, 25, 35, 0.5) !important;
                        backdrop-filter: blur(30px) saturate(150%) !important;
                        border: 1px solid rgba(255, 255, 255, 0.08) !important;
                        box-shadow: 0 10px 40px rgba(0,0,0,0.4) !important;
                        pointer-events: auto !important;
                    }
                }

/* SERVICE & PROJECT HOVER EFFECTS */
.service-card {
    transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing), border-color 0.4s var(--easing);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-card);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--accent-rgb), 0.1);
}

.project-card {
    transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.project-card:hover img {
    transform: scale(1.05);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
}

.project-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--easing);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-tags {
    display: flex;
    gap: 8px;
}

.project-tags span {
    background: var(--accent-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.8rem;
}

.project-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: 12px;
}

.feature-acc-item {
    transition: flex 0.6s var(--easing), background 0.4s var(--easing);
}

.feature-acc-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.03);
}

/* PRICING SECTION */
.pricing-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing-bg-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid-prism {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 3rem 2rem;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1), background 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-card:hover .pricing-card-glow {
    opacity: 1;
}

.pricing-card.featured {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.04);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.07);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.pricing-header {
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.price {
    font-size: 3.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    margin-right: 4px;
}

.pricing-features {
    margin-bottom: 3rem;
    flex-grow: 1;
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.pricing-features li:hover {
    color: white;
}

.pricing-features li svg {
    color: var(--accent-blue);
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

.pricing-features li.disabled {
    opacity: 0.35;
    text-decoration: line-through;
}

.pricing-features li.disabled svg {
    color: rgba(255, 255, 255, 0.2);
    filter: none;
}
    color: rgba(255, 255, 255, 0.3);
}

.btn-pricing, .btn-pricing-featured {
    padding: 16px;
    border-radius: 100px;
    text-align: center;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-pricing {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-pricing:hover {
    background: white;
    color: black;
}

.btn-pricing-featured {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.btn-pricing-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.5);
    background: #4f8ff7;
}

/* CONTACT SECTION */
.contact-section {
    padding: 140px 0;
    position: relative;
}

.contact-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(10, 12, 18, 0.4) 100%);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 48px;
    padding: 5rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.contact-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-actions .btn-primary, .contact-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s var(--easing);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-5px);
}

/* AI AGENTS SECTION */
.ai-agents-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: 140px 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: rgb(2, 2, 4);
}

.watermark-top {
    position: absolute;
    top: 5%;
    right: -5%;
    font-size: 18vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    text-transform: uppercase;
}

.watermark-bottom {
    position: absolute;
    bottom: 5%;
    left: -5%;
    font-size: 18vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    text-transform: uppercase;
}

.section-glow-orb {
    position: absolute;
    top: 15%;
    left: 35%;
    width: 900px;
    height: 900px;
    background: rgb(59, 130, 246);
    filter: blur(350px);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.spatial-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.spatial-text-side {
    flex: 0 0 50%;
    position: relative;
}

.spatial-chat-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

@media (max-width: 1100px) {
    .projects-grid, .pricing-grid-prism {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid, .pricing-grid-prism {
        grid-template-columns: 1fr;
    }
}

/* FOOTER STYLES */
.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 6rem 0 3rem;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 2rem;
}

.brand-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 400px;
}

.footer-col h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* FLOATING BUTTONS */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s var(--easing);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.scroll-to-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--easing);
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
}

/* RESPONSIVE FOOTER */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .brand-desc {
        margin: 0 auto;
    }
    .social-links {
        justify-content: center;
    }
}

/* AI AGENTS MISSING STYLES */
.spatial-badge-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.spatial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-blue);
    position: relative;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

.text-blue-italic {
    color: var(--accent-blue);
    font-style: italic;
}

.text-white-bold {
    color: white;
    font-weight: 800;
}

.spatial-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s var(--easing);
    margin-top: 2rem;
}

.spatial-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.glow-path {
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: 20px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-blue), transparent);
    opacity: 0.3;
}

.spatial-user-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 32px 0 32px 32px;
    color: white;
    max-width: 85%;
    align-self: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-size: 1.1rem;
}

.spatial-bot-bubble {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 0 32px 32px 32px;
    color: rgba(255,255,255,0.9);
    max-width: 85%;
    align-self: flex-start;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-size: 1.1rem;
    line-height: 1.6;
}

.bot-avatar-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #1a1c23;
    border: 2px solid rgba(59, 130, 246, 0.5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.interactive-options-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.chat-interactive-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-interactive-pill:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent-blue);
    color: white;
}

.typing-indicator {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 0 32px 32px 32px;
    display: inline-flex;
    gap: 6px;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); background: var(--accent-blue); }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
