@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --electric-blue: #00f0ff;
    --neon-purple: #a855f7;
    --cyber-pink: #ff006e;
    --neon-green: #39ff14;
    --deep-black: #000000;
    --soft-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--deep-black);
    color: var(--soft-white);
    overflow-x: hidden;
    overflow-y: auto;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--electric-blue);
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: screen;
    transition: transform 0.2s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--electric-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease-out;
    opacity: 0.6;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: 
        radial-gradient(at 20% 30%, rgba(0, 240, 255, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(168, 85, 247, 0.15) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(255, 0, 110, 0.1) 0px, transparent 50%);
    animation: bg-shift 15s ease infinite;
}

@keyframes bg-shift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.grid-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    pointer-events: none;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.container {
    position: relative;
    z-index: 10;
}

/* ============================================
   HEADER & NAV
   ============================================ */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 6%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
    height: 60px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple), var(--cyber-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    animation: logo-glow 3s ease-in-out infinite;
    z-index: 1001;
    text-decoration: none;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.logo img {
    height: 90px;
    width: 90px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple), var(--cyber-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: -18px;
    letter-spacing: -2px;
}

@keyframes logo-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.8)); }
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li { margin: 0; }

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    cursor: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric-blue), var(--neon-purple));
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--electric-blue); text-shadow: 0 0 20px rgba(0, 240, 255, 0.8); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    padding: 0.9rem 2.2rem !important;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple)) !important;
    border-radius: 50px !important;
    color: var(--deep-black) !important;
    font-weight: 700 !important;
    position: relative;
    overflow: hidden;
}

.nav-cta::after { display: none !important; }

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -20%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.nav-cta:hover::before { left: 100%; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 240, 255, 0.5); }

/* Mobile Hamburger */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--electric-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 6% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2), transparent 70%);
    filter: blur(80px);
    animation: hero-pulse 4s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.hero-content {
    padding-top: 25px;
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid rgba(0, 240, 255, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-green);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.8rem;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.glitch {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--soft-white), var(--electric-blue), var(--neon-purple), var(--cyber-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn {
    padding: 1.4rem 3rem;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple), var(--cyber-pink));
    background-size: 200% auto;
    color: var(--deep-black);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    animation: btn-shimmer 3s ease infinite;
}

@keyframes btn-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 0 60px rgba(0, 240, 255, 0.8); }

.btn-outline {
    background: transparent;
    border: 3px solid var(--electric-blue);
    color: var(--electric-blue);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    padding-top: 5%;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(0, 240, 255, 0.05);
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.stat-card:hover::before { left: 100%; }

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--electric-blue);
    box-shadow: 0 25px 60px rgba(0, 240, 255, 0.4);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SERVICES
   ============================================ */
.maxw {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5vw 4rem;
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 0.6rem;
    text-align: center;
}

.section-desc {
    color: #8f9db2;
    font-size: 1.23rem;
    max-width: 650px;
    margin: 0 auto 2.7rem;
    line-height: 1.8;
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: linear-gradient(120deg, #191e26 75%, rgba(0, 240, 255, 0.08));
    border-radius: 18px;
    box-shadow: 0 6px 48px #00e4ff23, 0 2px 12px #a855f740;
    padding: 2rem 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border: 1.5px solid #00f0ff18;
    transition: transform 0.24s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 46px #00f0ffaa;
}

.service-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #00f0ff, #a855f7);
    border-radius: 14px;
    box-shadow: 0 2px 28px #00f0ff38;
    flex-shrink: 0;
}

.service-icon svg { width: 30px; height: 30px; fill: #fff; display: block; }

.service-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    background: linear-gradient(90deg, #00f0ff, #a855f7 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-desc { color: #8f9db2; font-size: 1rem; font-weight: 500; line-height: 1.6; }

.service-points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.9rem;
    margin: 0; padding: 0;
}

.service-points li {
    font-size: 0.9rem;
    color: #00f0ff;
    background: rgba(0, 240, 255, 0.07);
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    font-weight: 700;
}

/* ============================================
   SHOWCASE
   ============================================ */
.showcase {
    padding: 8rem 6%;
    background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.03));
}

.showcase-container { max-width: 1400px; margin: 0 auto; }

.showcase-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.showcase-content h2 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2.8rem;
}

.feature-list { list-style: none; margin: 0; }

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1.08rem;
    color: rgba(255,255,255,0.85);
}

.feature-list li:last-child { border-bottom: none; }

.check-icon {
    width: 30px; height: 30px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.showcase-visual { position: relative; }

.chat-container {
    background: linear-gradient(135deg, rgba(25,30,38,0.95), rgba(25,30,38,0.85));
    border-radius: 20px;
    border: 2px solid rgba(0,240,255,0.3);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,240,255,0.2);
    backdrop-filter: blur(10px);
}

.chat-header {
    background: linear-gradient(135deg, rgba(0,240,255,0.15), rgba(168,85,247,0.15));
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(0,240,255,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info { display: flex; align-items: center; gap: 0.7rem; }

.online-dot {
    width: 9px; height: 9px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.chat-header-text { font-weight: 700; font-size: 0.95rem; color: var(--electric-blue); }
.chat-status { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

.chat-messages {
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    min-height: 450px;
    overflow: hidden;
}

.chat-box { display: flex; flex-direction: column; animation: slideIn 0.4s ease; }

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-message { align-items: flex-end; }
.ai-message { align-items: flex-start; }

.chat-bubble {
    background: linear-gradient(135deg, rgba(0,240,255,0.15), rgba(0,240,255,0.08));
    border: 1px solid rgba(0,240,255,0.3);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    color: rgba(255,255,255,0.95);
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 90%;
    box-shadow: 0 4px 15px rgba(0,240,255,0.15);
}

.user-message .chat-bubble {
    background: linear-gradient(135deg, rgba(0,240,255,0.2), rgba(0,240,255,0.1));
    border-radius: 14px 14px 4px 14px;
}

.ai-message .chat-bubble {
    background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(168,85,247,0.1));
    border-color: rgba(168,85,247,0.3);
    border-radius: 14px 14px 14px 4px;
}

.chat-time { font-size: 0.68rem; color: rgba(255,255,255,0.4); margin-top: 0.3rem; padding: 0 0.4rem; }

.typing-indicator { display: flex; gap: 0.35rem; padding: 0.4rem 0; }

.typing-indicator span {
    width: 7px; height: 7px;
    background: var(--electric-blue);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.7; }
    30% { transform: translateY(-8px); opacity: 1; }
}

.showcase-cta { display: flex; justify-content: center; margin-top: 3rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 6rem 6%; position: relative; }
.contact-container { max-width: 1400px; margin: 0 auto; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.section-header { text-align: center; margin-bottom: 8rem; }

.section-tag {
    color: var(--electric-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0,240,255,0.6);
}

.section-description {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-info h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.contact-info p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details { list-style: none; }

.contact-details li {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.contact-details li:hover { padding-left: 15px; color: var(--electric-blue); }
.contact-details li:last-child { border-bottom: none; }

.contact-icon {
    width: 65px; height: 65px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(0,240,255,0.4);
}

.contact-icon svg { width: 32px; height: 32px; fill: var(--deep-black); }

.contact-form {
    background: linear-gradient(135deg, rgba(0,240,255,0.05), rgba(168,85,247,0.05));
    border: 2px solid rgba(0,240,255,0.2);
    border-radius: 32px;
    padding: 4rem 3.5rem;
}

.form-group { margin-bottom: 2.5rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}

input, textarea, select {
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(0,0,0,0.4);
    border: 2px solid rgba(0,240,255,0.2);
    border-radius: 15px;
    color: var(--soft-white);
    font-size: 1.05rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 30px rgba(0,240,255,0.4);
    background: rgba(0,0,0,0.6);
}

textarea { min-height: 180px; resize: vertical; }

.submit-btn {
    width: 100%;
    padding: 1.8rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple), var(--cyber-pink));
    background-size: 200% auto;
    color: var(--deep-black);
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: btn-shimmer 3s ease infinite;
}

.submit-btn:hover { transform: translateY(-5px); box-shadow: 0 25px 70px rgba(0,240,255,0.6); }

/* ============================================
   CTA
   ============================================ */
.cta { padding: 0 6% 4%; text-align: center; position: relative; }

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0,240,255,0.1), rgba(168,85,247,0.1));
    border: 3px solid rgba(0,240,255,0.3);
    border-radius: 40px;
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,240,255,0.15), transparent 60%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content { position: relative; z-index: 1; }

.cta h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.cta p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================================
   FOOTER — FIXED & POLISHED
   ============================================ */
footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 5rem 6% 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 240, 255, 0.15);
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), var(--neon-purple), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 3fr; /* Brand left, nav sections right */
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}
.footer-sections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 equal nav columns */
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-right: -10px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    margin-left: -15px;
    line-height: 1.1;
    letter-spacing: -1px;
    white-space: nowrap;
}

.footer-brand p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 280px;
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

.footer-section h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--electric-blue), var(--neon-purple));
    border-radius: 2px;
}

.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section li { margin-bottom: 0.9rem; }

.footer-section a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--electric-blue);
    transform: translateX(6px);
    text-shadow: 0 0 10px rgba(0,240,255,0.5);
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .hero-stats { grid-template-columns: repeat(4, 1fr); }
    .service-cards { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    header { padding: 1rem 5%; }
    .logo img { height: 75px; width: 75px; }
    .logo span { font-size: 1.5rem; margin-left: -12px; }
    .nav-links { gap: 2rem; }
    .nav-links a { font-size: 0.9rem; }
    .nav-cta { padding: 0.7rem 1.6rem !important; }

    h1 { font-size: clamp(3rem, 8vw, 5rem); }
    .hero { padding: 6rem 5% 3rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    .service-cards { grid-template-columns: repeat(2, 1fr); }

    .showcase { padding: 5rem 5%; }
    .showcase-grid { grid-template-columns: 1fr; gap: 3rem; }
    .showcase-visual { max-width: 500px; margin: 0 auto; }

    .contact { padding: 5rem 5%; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .section-header { margin-bottom: 4rem; }
    .contact-form { padding: 3rem 2.5rem; }

    .cta { padding: 0 5% 4%; }
    .cta-container { padding: 3.5rem 3rem; }

    /* Footer — tablet */
    footer { padding: 4rem 5% 2rem; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .brand-wrapper { justify-content: flex-start; }
    .footer-brand p { max-width: 400px; }
    .footer-sections-grid { display: contents; }
}

/* Tablet Portrait / Mobile (768px) */
@media (max-width: 768px) {
    body { cursor: auto; overflow-x: hidden; }
    .cursor, .cursor-follower { display: none; }

    header { padding: 0.8rem 4%; }
    nav { height: 56px; }
    .logo img { height: 65px; width: 65px; }
    .logo span { font-size: 1.3rem; margin-left: -10px; }

    .mobile-menu-btn { display: flex; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: rgba(0,0,0,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        transition: right 0.4s ease;
        border-left: 2px solid rgba(0,240,255,0.3);
        z-index: 1001;
        padding: 2rem;
    }

    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a { display: block; font-size: 1.1rem; padding: 0.8rem; cursor: pointer; }
    .nav-cta { width: 100% !important; padding: 1rem 2rem !important; cursor: pointer; }

    h1 { font-size: clamp(2.5rem, 9vw, 3.5rem); letter-spacing: -2px; }
    .hero { padding: 5rem 4% 3rem; }
    .hero-badge { font-size: 0.78rem; padding: 0.5rem 1rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: center; gap: 1rem; }
    .btn { width: 100%; max-width: 320px; padding: 1.1rem 2rem; font-size: 0.95rem; cursor: pointer; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding-top: 3rem; }
    .stat-card { padding: 1.8rem 1rem; }
    .stat-number { font-size: 2.8rem; }
    .stat-label { font-size: 0.85rem; }

    .maxw { padding: 4rem 4% 3rem; }
    .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .section-desc { font-size: 1rem; }
    .service-cards { grid-template-columns: 1fr; gap: 1rem; }

    .showcase { padding: 4rem 4%; }
    .showcase-content h2 { font-size: clamp(2rem, 7vw, 3rem); }
    .feature-list li { font-size: 0.95rem; padding: 0.9rem 0; }
    .chat-messages { min-height: 320px; }

    .contact { padding: 4rem 4%; }
    .section-header { margin-bottom: 3rem; }
    .contact-info h2 { font-size: clamp(2rem, 7vw, 3rem); }
    .contact-info p { font-size: 1.05rem; }
    .contact-details li { gap: 1.2rem; padding: 1.2rem 0; font-size: 0.95rem; }
    .contact-icon { width: 48px; height: 48px; border-radius: 12px; }
    .contact-icon svg { width: 24px; height: 24px; }
    .contact-form { padding: 2rem 1.5rem; border-radius: 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    input, textarea, select { padding: 1.1rem 1.3rem; font-size: 0.95rem; cursor: pointer; }
    .submit-btn { padding: 1.3rem; font-size: 1rem; }

    .cta { padding: 0 4% 3%; }
    .cta-container { padding: 2.5rem 1.5rem; border-radius: 24px; }
    .cta h2 { font-size: clamp(2rem, 8vw, 3rem); }
    .cta p { font-size: 1.1rem; }

    /* Footer — mobile */
    footer { padding: 3.5rem 4% 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-brand {
        grid-column: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }
    .brand-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
    }
    .footer-logo { height: 70px; margin-right: 0; }
    .footer-brand h3 { font-size: 1.6rem; margin-left: 0; }
    .footer-brand p { margin: 0 auto; max-width: 280px; text-align: center; font-size: 0.9rem; }
    .footer-sections-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        width: 100%;
    }
    .footer-section h4::after { left: 50%; transform: translateX(-50%); }
    .footer-section a:hover { transform: none; }
    .footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.82rem; }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
    header { padding: 0.7rem 4%; }
    nav { height: 52px; }
    .logo img { height: 55px; width: 55px; }
    .logo span { font-size: 1.1rem; margin-left: -8px; }
    .nav-links { width: 260px; }

    h1 { font-size: clamp(2rem, 10vw, 2.8rem); letter-spacing: -2px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2.2rem; }

    .contact-form { padding: 1.5rem 1.2rem; }
    .cta-container { padding: 2rem 1.2rem; }
    .cta p { font-size: 1rem; }

    /* Footer — small mobile */
    footer { padding: 3rem 4% 1.5rem; }
    .footer-logo { height: 60px; }
    .footer-brand h3 { font-size: 1.4rem; }
    .footer-brand p { font-size: 0.85rem; }
    .footer-sections-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-section li { margin-bottom: 0.7rem; }
    .footer-section a { font-size: 0.9rem; }
    .footer-bottom { margin-top: 2rem; font-size: 0.8rem; }
}

/* Very Small (360px) */
@media (max-width: 360px) {
    .logo span { font-size: 0.95rem; }
    .hero-badge { font-size: 0.7rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .stat-number { font-size: 1.8rem; }

    /* Footer — tiny screens */
    footer { padding: 2.5rem 4% 1.2rem; }
    .footer-logo { height: 55px; }
    .footer-brand h3 { font-size: 1.2rem; }
}
