/* ========================================
   AETHER — Premium Futuristic Website
   Complete CSS Stylesheet
   ======================================== */

/* ---- CSS Custom Properties ---- */
:root {
    --bg-primary: #050816;
    --bg-secondary: #0a0e27;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);

    --color-primary: #00E5FF;
    --color-secondary: #7C3AED;
    --color-accent: #22C55E;
    --color-text: #FFFFFF;
    --color-muted: #94A3B8;

    --gradient-primary: linear-gradient(135deg, #00E5FF, #7C3AED);
    --gradient-glow: radial-gradient(circle, rgba(0,229,255,0.15) 0%, transparent 70%);
    --gradient-text: linear-gradient(135deg, #00E5FF, #7C3AED, #22C55E);

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 229, 255, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(0, 229, 255, 0.3);
    color: var(--color-text);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #00E5FF, #7C3AED);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #7C3AED, #00E5FF);
}

/* ---- Custom Cursor ---- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(0,229,255,0.8);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 229, 255, 0.5);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

body:hover .cursor-outline {
    opacity: 1;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-primary);
    background: rgba(0, 229, 255, 0.05);
}

/* Cursor trail */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.5);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: none;
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-outline, .cursor-trail {
        display: none;
    }
    body {
        cursor: auto;
    }
}



@keyframes scanLineAnim {
    0% { transform: translateY(0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 0.8; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* ---- Floating Particles ---- */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.p-dot {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    animation: particleRiseAnim linear infinite;
}

@keyframes particleRiseAnim {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) translateX(var(--dx, 20px)); opacity: 0; }
}

/* ---- Animated Background ---- */
.bg-animated {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 229, 255, 0.12);
    top: -10%;
    left: -5%;
    animation: orb1Float 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(124, 58, 237, 0.1);
    top: 40%;
    right: -10%;
    animation: orb2Float 25s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: rgba(34, 197, 94, 0.07);
    bottom: 10%;
    left: 20%;
    animation: orb3Float 18s ease-in-out infinite;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: rgba(0, 229, 255, 0.08);
    top: 60%;
    right: 30%;
    animation: orb4Float 22s ease-in-out infinite;
}

@keyframes orb1Float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.1); }
    66% { transform: translate(-40px, 80px) scale(0.95); }
}

@keyframes orb2Float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, -60px) scale(1.15); }
    66% { transform: translate(60px, -40px) scale(0.9); }
}

@keyframes orb3Float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -60px) scale(1.1); }
}

@keyframes orb4Float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 40px) scale(1.05); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ---- Glassmorphism ---- */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: rgba(5, 8, 22, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    padding: 0.75rem 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo-icon {
    color: var(--color-primary);
    font-size: 1.75rem;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 20px rgba(0, 229, 255, 0.5); }
    50% { opacity: 0.7; text-shadow: 0 0 40px rgba(0, 229, 255, 0.9); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary);
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--bg-primary) !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

/* Auth buttons in nav */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}

.btn-nav-login {
    padding: 8px 18px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-nav-login:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.6);
    color: #fff;
    box-shadow: 0 0 20px rgba(0,229,255,0.15);
}

.btn-nav-signup {
    padding: 8px 18px;
    background: var(--gradient-primary);
    border-radius: 100px;
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.25);
}

.btn-nav-signup:hover {
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-base);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 40px rgba(0, 229, 255, 0.55);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(0, 229, 255, 0.06);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ---- Section Common ---- */
section {
    position: relative;
    z-index: 1;
    padding: 8rem 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 100px;
    animation: tagGlow 3s ease-in-out infinite;
}

@keyframes tagGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0,229,255,0.1); }
    50% { box-shadow: 0 0 25px rgba(0,229,255,0.3); }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.section-desc {
    color: var(--color-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    animation: badgeFadeIn 0.8s ease 0.2s both;
}

@keyframes badgeFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0,229,255,0.6);
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(0, 229, 255, 0.5); }
    50% { opacity: 0.5; box-shadow: 0 0 20px rgba(0, 229, 255, 0.9); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: titleReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.title-line:nth-child(2) {
    animation-delay: 0.15s;
}

@keyframes titleReveal {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.title-accent {
    background: linear-gradient(90deg, #00E5FF, #7C3AED, #22C55E, #00E5FF);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 5s linear infinite;
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
    animation: fadeUpAnim 0.8s ease 0.5s both;
}

@keyframes fadeUpAnim {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUpAnim 0.8s ease 0.65s both;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroVisualFloat 6s ease-in-out infinite;
}

@keyframes heroVisualFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: ringRotate 30s linear infinite;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(124, 58, 237, 0.2);
    animation: ringRotate 20s linear infinite reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(0, 229, 255, 0.3);
    animation: ringRotate 15s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.visual-core {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-inner {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.5), 0 0 120px rgba(124, 58, 237, 0.3);
    animation: corePulse 3s ease-in-out infinite;
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 229, 255, 0.3);
    animation: pulseExpand 3s ease-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(0, 229, 255, 0.5), 0 0 120px rgba(124, 58, 237, 0.3); }
    50% { transform: scale(1.15); box-shadow: 0 0 80px rgba(0, 229, 255, 0.7), 0 0 160px rgba(124, 58, 237, 0.4); }
}

@keyframes pulseExpand {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.visual-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Scroll Reveal Classes ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Features Section ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: var(--shadow-glow), 0 30px 60px rgba(0,0,0,0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.feature-card:hover .feature-icon {
    background: rgba(0, 229, 255, 0.15);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: var(--color-primary);
}

.feature-desc {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

/* ---- Statistics Section ---- */
.statistics {
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
}

.stat-item:hover {
    background: rgba(0, 229, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 0.5em;
    color: var(--color-secondary);
    font-weight: 500;
}

.stat-label {
    color: var(--color-muted);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0;
    transition: var(--transition-base);
}

.stat-item.visible .stat-line {
    opacity: 1;
    width: 60px;
}

/* ---- Showcase Section ---- */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.showcase-card {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), var(--shadow-glow);
}

.showcase-card.large {
    grid-column: span 2;
}

.showcase-image {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-visual {
    width: 100%;
    max-width: 500px;
}

/* Dashboard Visual */
.visual-dashboard {
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }

.dash-title {
    font-size: 0.8rem;
    color: var(--color-muted);
    font-family: var(--font-display);
}

.dashboard-body {
    padding: 1.5rem;
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: chartGrow 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: bottom;
    opacity: 0.8;
}

.chart-bar:nth-child(odd) {
    background: linear-gradient(to top, var(--color-secondary), var(--color-primary));
}

@keyframes chartGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.dash-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-val {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.metric-lbl {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Code Visual */
.visual-code {
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.code-line {
    opacity: 0;
    animation: codeReveal 0.5s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.3s; }
.code-line:nth-child(4) { animation-delay: 0.4s; }
.code-line:nth-child(5) { animation-delay: 0.5s; }
.code-line:nth-child(6) { animation-delay: 0.6s; }

@keyframes codeReveal {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.code-kw { color: #c678dd; }
.code-var { color: #e5c07b; }
.code-cls { color: #e5c07b; }
.code-func { color: #61afef; }
.code-str { color: #98c379; }

/* Security Visual */
.visual-security {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--color-primary);
}

.ring-a {
    width: 100%;
    height: 100%;
    animation: secSpin 4s linear infinite;
}

.ring-b {
    width: 75%;
    height: 75%;
    border-top-color: var(--color-secondary);
    animation: secSpin 3s linear infinite reverse;
}

.ring-c {
    width: 50%;
    height: 50%;
    border-top-color: var(--color-accent);
    animation: secSpin 2s linear infinite;
}

@keyframes secSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.security-lock {
    font-size: 2.5rem;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.7)); }
}

.showcase-info {
    padding: 1.5rem 2rem 2rem;
}

.showcase-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.showcase-card:hover .showcase-info h3 {
    color: var(--color-primary);
}

.showcase-info p {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.showcase-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.showcase-link:hover {
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
    letter-spacing: 0.5px;
}

/* ---- Team Section ---- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 40px rgba(0,229,255,0.08);
}

.team-image {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.team-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover .team-avatar {
    transform: scale(1.08);
}

.avatar-1 { background: linear-gradient(135deg, #00E5FF, #0099cc); box-shadow: 0 0 20px rgba(0,229,255,0.3); }
.avatar-2 { background: linear-gradient(135deg, #7C3AED, #a855f7); box-shadow: 0 0 20px rgba(124,58,237,0.3); }
.avatar-3 { background: linear-gradient(135deg, #22C55E, #16a34a); box-shadow: 0 0 20px rgba(34,197,94,0.3); }
.avatar-4 { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 0 20px rgba(245,158,11,0.3); }

.team-glow {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(15px);
    transition: var(--transition-base);
}

.team-card:hover .team-glow {
    opacity: 0.5;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.team-card:hover .team-name {
    color: var(--color-primary);
}

.team-role {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--color-muted);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-social a:hover {
    color: var(--color-primary);
    transform: translateY(-4px) scale(1.1);
}

.team-social svg {
    width: 18px;
    height: 18px;
}

/* ---- Testimonials Section ---- */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: calc(50% - 0.75rem);
    padding: 2.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    animation: starShine 2s ease-in-out infinite;
}

@keyframes starShine {
    0%, 100% { text-shadow: none; }
    50% { text-shadow: 0 0 15px rgba(251,191,36,0.6); }
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(0,229,255,0.2);
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.author-title {
    display: block;
    color: var(--color-muted);
    font-size: 0.85rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-glass);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-btn:hover {
    border-color: var(--color-primary);
    background: rgba(0, 229, 255, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0,229,255,0.2);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,229,255,0.5);
}

/* ---- Pricing Section ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover::before { opacity: 1; }

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.3), 0 0 50px rgba(0,229,255,0.05);
}

.pricing-card.featured {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.12);
    transform: scale(1.03);
    animation: featuredGlow 3s ease-in-out infinite;
}

@keyframes featuredGlow {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 229, 255, 0.1); }
    50% { box-shadow: 0 0 70px rgba(0, 229, 255, 0.25), 0 0 100px rgba(124,58,237,0.1); }
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured::before { opacity: 1; }

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1.5rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 0.5rem;
}

.pricing-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 0.25rem;
}

.price-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--color-muted);
    font-size: 0.9rem;
    align-self: flex-end;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--color-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: color 0.3s;
}

.pricing-features li:hover {
    color: var(--color-text);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ---- FAQ Section ---- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.15);
    transform: translateX(4px);
}

.faq-item.active {
    border-color: rgba(0, 229, 255, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: none;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    background: var(--color-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0,229,255,0.4);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ---- Contact Section ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-header {
    text-align: left;
    margin: 0 0 2.5rem;
    max-width: none;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(0, 229, 255, 0.15);
    box-shadow: 0 0 20px rgba(0,229,255,0.2);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    color: var(--color-muted);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.contact-text a,
.contact-text span:last-child {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--color-primary);
}

/* Contact Form */
.contact-form-wrapper {
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.contact-form-wrapper:hover {
    border-color: rgba(0, 229, 255, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
    cursor: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(0, 229, 255, 0.5);
    background: rgba(0, 229, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08), 0 0 20px rgba(0, 229, 255, 0.05);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(148, 163, 184, 0.4);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 18px;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--color-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ---- Footer ---- */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-icon {
    text-shadow: 0 0 30px rgba(0,229,255,0.8);
}

.footer-desc {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-muted);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(0, 229, 255, 0.06);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,229,255,0.2);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* ---- Animation Utilities ---- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-in"] {
    opacity: 0;
    transform: scale(0.95);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-auth {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card.large {
        grid-column: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(5, 8, 22, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1000;
    }

    section {
        padding: 5rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        max-width: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .scan-line { display: none; }
}

@media (max-width: 480px) {
    .section-container,
    .nav-container,
    .hero-container,
    .footer-container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Ultrawide screens */
@media (min-width: 1920px) {
    .section-container,
    .nav-container,
    .hero-container,
    .footer-container {
        max-width: 1600px;
    }

    .hero-title {
        font-size: 7rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: 120px 0;
    position: relative;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 60px 0 50px;
    flex-wrap: wrap;
}

.services-tab {
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.55);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.services-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(124,58,237,0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.services-tab:hover::before { opacity: 1; }

.services-tab:hover {
    border-color: rgba(0,229,255,0.4);
    color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.services-tab.active {
    background: linear-gradient(135deg, #00E5FF, #7C3AED);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 40px rgba(0,229,255,0.35), 0 8px 24px rgba(0,229,255,0.2);
    transform: translateY(-3px);
}

.tab-icon { font-size: 16px; }

.services-panel {
    display: none;
}

.services-panel.active {
    display: block;
    animation: panelFadeIn 0.5s cubic-bezier(0.16,1,0.3,1);
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Panel Grid */
.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.panel-grid.reverse { direction: rtl; }
.panel-grid.reverse > * { direction: ltr; }

.panel-content h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.panel-content p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.panel-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.panel-features-list li {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.panel-features-list li:hover { color: #fff; }

.panel-features-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00E5FF, #7C3AED);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.panel-features-list li:hover::before { transform: scale(1.5); }

.panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00E5FF, #7C3AED);
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 24px rgba(0,229,255,0.3);
    position: relative;
    overflow: hidden;
}

.panel-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.panel-cta:hover::before { opacity: 1; }
.panel-cta:hover {
    box-shadow: 0 0 50px rgba(0,229,255,0.6);
    transform: translateY(-3px);
}

.panel-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(0,229,255,0.4);
    color: rgba(255,255,255,0.8);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 12px;
}

.panel-cta-outline:hover {
    background: rgba(0,229,255,0.08);
    border-color: rgba(0,229,255,0.7);
    transform: translateY(-3px);
}

/* Panel Visual Box */
.panel-visual {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    animation: borderPulseAnim 4s ease-in-out infinite;
}

@keyframes borderPulseAnim {
    0%,100% { border-color: rgba(255,255,255,0.08); }
    50% { border-color: rgba(0,229,255,0.2); box-shadow: 0 0 30px rgba(0,229,255,0.05); }
}

.panel-visual:hover {
    border-color: rgba(0,229,255,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(0,229,255,0.06);
}

/* Service Pricing Strip */
.service-pricing-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.service-price-tag {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 20px;
    font-family: var(--font-display);
    flex: 1;
    min-width: 100px;
    transition: all 0.3s ease;
}

.service-price-tag:hover {
    border-color: rgba(0,229,255,0.35);
    background: rgba(0,229,255,0.05);
    transform: translateY(-3px);
}

.spt-name { font-size: 12px; color: var(--color-muted); margin-bottom: 6px; display: block; }
.spt-price { font-size: 22px; font-weight: 700; color: #fff; }
.spt-price sup { font-size: 13px; font-weight: 400; color: var(--color-muted); vertical-align: super; }
.spt-period { font-size: 12px; color: var(--color-muted); }

/* ---- DOMAIN VISUAL ---- */
.domain-visual-inner { width: 100%; padding: 32px; }

.domain-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.domain-search-bar span { color: var(--color-muted); font-family: var(--font-display); font-size: 14px; }
.domain-input-fake { flex: 1; color: #fff; font-size: 15px; font-family: var(--font-display); }

.domain-check-btn {
    background: linear-gradient(135deg, #00E5FF, #7C3AED);
    color: var(--bg-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-display);
}

.domain-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.domain-result:hover { transform: translateX(4px); }
.domain-result.available { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); }
.domain-result.taken { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15); opacity: 0.6; }
.domain-name { color: #fff; font-weight: 600; }
.domain-status { font-size: 12px; padding: 4px 10px; border-radius: 100px; }
.domain-result.available .domain-status { background: rgba(34,197,94,0.2); color: #22c55e; }
.domain-result.taken .domain-status { background: rgba(239,68,68,0.15); color: #ef4444; }
.domain-price { color: var(--color-muted); font-size: 13px; }

/* ---- SAAS VISUAL ---- */
.saas-visual-inner { width: 100%; padding: 28px; }

.saas-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.saas-plan-badge {
    background: linear-gradient(135deg, #00E5FF, #7C3AED);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.saas-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.saas-metric-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.saas-metric-card:hover { border-color: rgba(0,229,255,0.25); transform: translateY(-2px); }
.s-val { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; display: block; }
.s-lbl { font-family: var(--font-body); font-size: 11px; color: var(--color-muted); margin-top: 4px; display: block; }
.s-trend { font-size: 11px; color: var(--color-accent); font-family: var(--font-body); }

.saas-progress-row { margin-bottom: 12px; }
.saas-progress-label { display: flex; justify-content: space-between; font-family: var(--font-body); font-size: 12px; color: var(--color-muted); margin-bottom: 6px; }
.saas-progress-bar { height: 5px; border-radius: 100px; background: rgba(255,255,255,0.08); overflow: hidden; }
.saas-progress-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, #00E5FF, #7C3AED); transition: width 1s ease; }

/* ---- WEBSITE VISUAL ---- */
.website-visual-inner { width: 100%; padding: 24px; }

.website-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px 10px 0 0;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dot { width: 9px; height: 9px; border-radius: 50%; }
.browser-dot.r { background: #ef4444; }
.browser-dot.y { background: #f59e0b; }
.browser-dot.g { background: #22c55e; }

.browser-url {
    flex: 1;
    margin-left: 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 5px 12px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-muted);
}

.website-canvas {
    background: rgba(255,255,255,0.02);
    border-radius: 0 0 10px 10px;
    border: 1px solid rgba(255,255,255,0.06);
    border-top: none;
    padding: 20px;
}

.website-canvas-hero {
    background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(124,58,237,0.08));
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    margin-bottom: 16px;
}

.w-tag { font-size: 10px; font-family: var(--font-display); color: #00E5FF; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.w-title { font-size: 18px; font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: 10px; }
.w-subtitle { font-size: 11px; font-family: var(--font-body); color: var(--color-muted); margin-bottom: 14px; }

.w-btn-fake {
    display: inline-block;
    background: linear-gradient(135deg, #00E5FF, #7C3AED);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    font-family: var(--font-display);
}

.website-canvas-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }

.w-card-fake {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.w-card-fake:hover { background: rgba(0,229,255,0.08); border-color: rgba(0,229,255,0.25); transform: translateY(-3px); }
.w-card-icon { font-size: 18px; margin-bottom: 6px; }
.w-card-label { font-size: 10px; font-family: var(--font-body); color: var(--color-muted); }

/* ---- DESKTOP VISUAL ---- */
.desktop-visual-inner { width: 100%; padding: 20px; }

.desktop-window {
    background: rgba(5,8,22,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
}

.desktop-titlebar {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 8px;
}

.d-dots { display: flex; gap: 6px; }
.d-dot { width: 10px; height: 10px; border-radius: 50%; }
.d-dot.r { background: #ff5f57; }
.d-dot.y { background: #febc2e; }
.d-dot.g { background: #28c840; }
.d-title { flex: 1; text-align: center; font-family: var(--font-display); font-size: 12px; color: var(--color-muted); }

.desktop-body { display: flex; min-height: 280px; }

.desktop-sidebar {
    width: 56px;
    background: rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.sidebar-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-icon:hover { background: rgba(0,229,255,0.15); transform: scale(1.1); }
.sidebar-icon.active { background: linear-gradient(135deg, #00E5FF, #7C3AED); }

.desktop-main { flex: 1; padding: 18px; }
.desktop-main-header { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 14px; }
.desktop-rows { display: flex; flex-direction: column; gap: 8px; }

.desktop-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.desktop-row:hover { background: rgba(0,229,255,0.05); border-color: rgba(0,229,255,0.15); }
.desktop-row-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.desktop-row-text { flex: 1; font-family: var(--font-body); font-size: 12px; color: var(--color-muted); }
.desktop-row-badge { font-size: 10px; font-family: var(--font-body); padding: 3px 8px; border-radius: 100px; }

/* ========================================
   HOW WE WORK SECTION
   ======================================== */

.howwework { padding: 120px 0; position: relative; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.4), rgba(124,58,237,0.4), transparent);
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.process-step:hover { transform: translateY(-8px); }

.process-step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid rgba(0,229,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.process-step:hover .process-step-number {
    background: linear-gradient(135deg, #00E5FF, #7C3AED);
    border-color: transparent;
    box-shadow: 0 0 40px rgba(0,229,255,0.5);
    transform: scale(1.1) rotate(5deg);
}

.step-icon { font-size: 26px; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.process-step:hover .step-icon { transform: scale(1.2); }

.process-step h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.process-step:hover h4 { color: var(--color-primary); }

.process-step p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.7;
}

/* ---- Responsive for Services & How We Work ---- */
@media (max-width: 900px) {
    .panel-grid { grid-template-columns: 1fr; gap: 32px; }
    .panel-grid.reverse { direction: ltr; }
    .panel-features-list { grid-template-columns: 1fr; }
    .services-tabs { gap: 8px; }
    .services-tab { padding: 10px 18px; font-size: 13px; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-steps::before { display: none; }
}

@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
    .panel-cta-outline { margin-left: 0; margin-top: 12px; }
}
.mobile-auth-btns {
    display: none;
}

@media (max-width: 992px) {
    .mobile-auth-btns {
        display: flex;
        gap: 12px;
        margin-top: 16px;
    }
}