/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-lime: #7FFF7F; /* Light Green */
    --primary-cyan: #00D4FF; /* Bright Cyan */
    --primary-blue: #00AFFF; /* Electric Blue */
    --primary-green: #5EE66E; /* Softer Green */
    --primary-orange: #FFB830; /* Kept for contrast */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7FFF7F 0%, #A8FF9E 100%);
    --gradient-secondary: linear-gradient(135deg, #5EE66E 0%, #7FFF7F 100%);
    --gradient-accent: linear-gradient(135deg, #7FFF7F 0%, #00D4FF 100%);
    
    /* Dark Theme */
    --bg-primary: #0A0A0F;
    --bg-secondary: #1A1A2E;
    --bg-tertiary: #16213E;
    --bg-card: rgba(26, 26, 46, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B8BCC8;
    --text-muted: #6B7280;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-glow: 0 0 40px rgba(127, 255, 127, 0.4);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-elevated: 0 16px 64px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.loading-logo {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo-img {
    height: 72px;
    width: auto;
    animation: logoFloat 3s ease-in-out infinite;
}

/* Remove loading brand text area */

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

.loading-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

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

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.15);
    border-bottom: 1px solid rgba(0, 212, 255, 0.4);
}

.nav-wrapper, .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo, .nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.logo-icon, .brand-icon {
    font-size: 2.5rem;
    width: auto; /* allow wide logo */
    height: 48px; /* fill navbar area */
    border-radius: 0;
    display: block;
    overflow: visible;
}

.logo-icon img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Hide brand text and remove leftover gap when using icon-only logo */
.logo .logo-text, .footer-logo .logo-text {
    display: none;
}

.logo, .footer-logo {
    gap: 0;
}

/* Footer logo a bit larger */
.footer-logo .logo-icon {
    height: 56px;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.logo-text, .brand-text {
    font-family: 'Space Grotesk', sans-serif;
}

.ai-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link, .nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover, .nav-menu a:hover {
    color: var(--text-primary);
}

.nav-link::after, .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-menu a:hover::after {
    width: 100%;
}

.btn-primary-nav, .cta-link {
    background: var(--gradient-primary) !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    color: #0A0A0F !important;
    font-weight: 700 !important;
}

.btn-primary-nav::after, .cta-link::after {
    display: none !important;
}

.mobile-menu-btn, .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
    gap: 0;
}

.mobile-menu-btn:hover, .nav-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-btn:hover span, .nav-toggle:hover span {
    background: var(--primary-green, #A8FF9E);
    box-shadow: 0 0 8px rgba(127, 255, 127, 0.5);
}

.mobile-menu-btn span, .nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-lime, #7FFF7F);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-btn span:nth-child(1), .nav-toggle span:nth-child(1) {
    top: 10px;
}

.mobile-menu-btn span:nth-child(2), .nav-toggle span:nth-child(2) {
    top: 18px;
}

.mobile-menu-btn span:nth-child(3), .nav-toggle span:nth-child(3) {
    top: 26px;
}

.mobile-menu-btn.active span:nth-child(1) {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridShift 60s infinite linear;
    opacity: 0.4;
}

@keyframes gridShift {
    0% { 
        transform: translate(0, 0); 
        opacity: 0.4;
    }
    50% { 
        transform: translate(50px, 50px); 
        opacity: 0.2;
    }
    100% { 
        transform: translate(0, 0); 
        opacity: 0.4;
    }
}

.neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 175, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(139, 95, 191, 0.04) 0%, transparent 70%),
        linear-gradient(45deg, transparent 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%);
    animation: subtleShift 30s infinite ease-in-out;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.3), rgba(139, 95, 191, 0.2));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    animation: organicFloat 20s infinite ease-in-out;
}

.dot-1 {
    left: 15%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.dot-2 {
    left: 30%;
    top: 60%;
    animation-delay: -8s;
    animation-duration: 22s;
}

.dot-3 {
    left: 60%;
    top: 30%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.dot-4 {
    left: 75%;
    top: 70%;
    animation-delay: -22s;
    animation-duration: 24s;
}

.dot-5 {
    left: 85%;
    top: 40%;
    animation-delay: -12s;
    animation-duration: 30s;
}

.dot-6 {
    left: 45%;
    top: 80%;
    animation-delay: -18s;
    animation-duration: 26s;
}

@keyframes organicFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) translateX(-10px) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(20px) translateX(15px) scale(1.05);
        opacity: 0.4;
    }
}

.gradient-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(ellipse 50% 30% at center, rgba(0, 212, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: gentleFlow 40s infinite ease-in-out;
}

.wave-1 {
    top: -25%;
    left: -25%;
    animation-delay: 0s;
    animation-duration: 35s;
}

.wave-2 {
    bottom: -25%;
    right: -25%;
    animation-delay: -20s;
    animation-duration: 45s;
}

@keyframes gentleFlow {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.05);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-10px) translateX(-5px) scale(0.95);
        opacity: 0.8;
    }
    75% {
        transform: translateY(15px) translateX(15px) scale(1.02);
        opacity: 0.3;
    }
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-primary, .cta-primary, .cta-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-bounce);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary, .cta-primary {
    background: var(--gradient-primary);
    color: #0A0A0F;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover, .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(127, 255, 127, 0.6);
}

.btn-secondary, .cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover, .cta-secondary:hover {
    background: var(--bg-glass);
    border-color: var(--primary-blue);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition-smooth);
}

.stat:hover {
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-visual {
    animation: slideInRight 1s ease-out;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero video */
.hero-video-container {
    width: 100%;
    max-width: 650px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-audio-toggle {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.video-audio-toggle:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(127, 255, 127, 0.6);
}

.hero-center-graphic {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.pulse-ring {
    position: absolute;
    border: 3px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: pulse 2s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 0.5s;
}

.pulse-ring.delay-2 {
    animation-delay: 1s;
}

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

.center-icon {
    font-size: 4rem;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.card-icon {
    font-size: 2rem;
}

.card-text {
    color: var(--text-primary);
    font-weight: 600;
}

.floating-card.card-1 {
    top: 10%;
    left: 10%;
}

.floating-card.card-2 {
    top: 15%;
    right: 5%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.scroll-arrow {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

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

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.feature i {
    color: var(--primary-blue);
}

/* Trust Credentials Section */
.trust-credentials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 0.98) 0%,
        rgba(15, 25, 40, 0.95) 100%
    );
    border-top: 1px solid rgba(127, 255, 127, 0.1);
    border-bottom: 1px solid rgba(127, 255, 127, 0.1);
}

.credentials-content {
    max-width: 1100px;
    margin: 0 auto;
}

.credentials-badge {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, 
        rgba(127, 255, 127, 0.08) 0%,
        rgba(0, 212, 255, 0.05) 100%
    );
    border-radius: 16px;
    border: 1px solid rgba(127, 255, 127, 0.2);
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(127, 255, 127, 0.1);
}

.credentials-badge i {
    font-size: 48px;
    color: var(--primary-lime);
}

.badge-text h3 {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.badge-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.credentials-highlights {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

.credential-item i {
    font-size: 24px;
    color: var(--primary-cyan);
}

.quick-win-cta {
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%,
        rgba(127, 255, 127, 0.05) 100%
    );
    border-radius: 16px;
    border: 1px solid rgba(127, 255, 127, 0.15);
}

.quick-win-cta h3 {
    font-size: 28px;
    margin-bottom: 12px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quick-win-cta p {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 24px;
}

.quick-win-cta .btn-primary {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    background: var(--gradient-accent);
    border: none;
    border-radius: 12px;
    color: var(--bg-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.quick-win-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(127, 255, 127, 0.3);
}

@media (max-width: 768px) {
    .credentials-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .badge-text h3 {
        font-size: 20px;
    }
    
    .credentials-highlights {
        flex-direction: column;
        gap: 24px;
    }
    
    .quick-win-cta h3 {
        font-size: 22px;
    }
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

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

.pain-points, .services, .solutions, .testimonials, .industries-section {
    background: var(--bg-primary);
}

.pain-points {
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 95, 191, 0.03) 0%, transparent 50%),
        var(--bg-primary);
}

.solution {
    background: 
        radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.04) 0%, transparent 60%),
        var(--bg-primary);
}

.services-preview, .packages-section, .faq-section {
    background: var(--bg-secondary);
    position: relative;
}

.services-preview::before, .packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--primary-cyan);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards */
.pain-card, .service-card, .industry-card, .testimonial-card, .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Package Cards - Clean Professional Business Style */
.package-card {
    background: rgba(25, 25, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    background: rgba(30, 30, 40, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
}

.pain-card::before, .service-card::before, .industry-card::before, .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pain-card:hover, .service-card:hover, .industry-card:hover, .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.pain-card:hover::before, .service-card:hover::before, .industry-card:hover::before, .testimonial-card:hover::before {
    opacity: 1;
}

.pain-grid, .services-grid, .industries-grid, .testimonials-grid, .packages-grid, .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.pain-icon, .service-icon, .industry-icon {
    position: relative;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(139, 95, 191, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.pain-card:hover .pain-icon,
.service-card:hover .service-icon,
.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 16px;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

.service-card h3, .pain-card h3, .industry-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-price {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-lime);
    background: linear-gradient(135deg, rgba(127, 255, 127, 0.1), rgba(94, 230, 110, 0.1));
    border: 1px solid rgba(127, 255, 127, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.service-card p, .pain-card p, .industry-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Solutions */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.solution-text .lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.benefit-list li {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-list li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(8px);
}

.benefit-list li div {
    flex: 1;
}

.benefit-list li strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.benefit-list li p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #00FF88, #00D4FF);
    color: #0A0A0F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

/* Impact Showcase */
.solution-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-showcase {
    width: 100%;
    max-width: 500px;
    padding: 48px 40px;
    background: 
        linear-gradient(135deg, rgba(127, 255, 127, 0.05), rgba(0, 212, 255, 0.05)),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.impact-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.impact-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.impact-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

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

.impact-stat {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(127, 255, 127, 0.3);
    box-shadow: 0 12px 32px rgba(127, 255, 127, 0.15);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1;
}

.impact-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.impact-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.service-features li::before {
    content: '→';
    color: var(--primary-cyan);
    font-weight: 700;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--text-primary);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 12px;
    right: 24px;
    background: var(--gradient-primary);
    color: #0A0A0F;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.service-card.featured {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* CTA Center */
.cta-center {
    text-align: center;
    margin-top: 48px;
}

/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        var(--bg-primary);
    text-align: center;
}

.page-hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-image-container {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 212, 255, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-image-container img:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 212, 255, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 212, 255, 0.4);
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.expect-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.expect-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.expect-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(8px);
}

.expect-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(139, 95, 191, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
}

.expect-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.expect-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.contact-method {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.method-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 95, 191, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-method p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    padding: 10px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-cyan);
    font-weight: 600;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

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

/* Contact Form */
.contact {
    background: var(--bg-primary);
}

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

.contact-form-container {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition-smooth);
    font-family: 'Inter', sans-serif;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1A1A2E;
    color: #FFFFFF;
    padding: 12px;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    background: var(--bg-primary);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 60px;
}

.legal-update {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-top: 20px;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-lime);
    margin: 24px 0 16px 0;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.legal-section ul li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 700;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-document {
        padding: 40px 32px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo, .footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 16px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--primary-blue);
}

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

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes subtleShift {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
    25% { 
        transform: translateY(-15px) scale(1.02);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-10px) scale(1.01);
        opacity: 0.95;
    }
    75% { 
        transform: translateY(5px) scale(1.01);
        opacity: 0.85;
    }
}

/* N8N Pipeline Visualization */
.n8n-pipeline-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pipeline-title {
    color: var(--primary-cyan);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 28px;
    text-align: center;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.n8n-pipeline {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 480px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 70%),
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 100% 100%, 20px 20px;
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.pipeline-node {
    position: absolute;
    background: linear-gradient(135deg, #2D2D3A 0%, #252530 100%);
    border: 2px solid #4A4A5A;
    border-radius: 12px;
    padding: 14px 18px;
    color: white;
    cursor: grab;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 60px;
    backdrop-filter: blur(10px);
}

.pipeline-node:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
}

.pipeline-node:active {
    cursor: grabbing;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.3);
    transform: scale(1.03);
}

.node-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.node-label {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.node-sublabel {
    position: absolute;
    bottom: -24px;
    left: 0;
    font-size: 0.75rem;
    color: var(--primary-cyan);
    white-space: nowrap;
    opacity: 0.8;
    font-weight: 500;
}

.trigger-node {
    border-color: #22c55e;
    background: linear-gradient(135deg, #1a2e1a, #254025);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 24px rgba(34, 197, 94, 0.15),
        inset 0 1px 0 rgba(34, 197, 94, 0.1);
}

.trigger-node:hover {
    border-color: #22c55e;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 36px rgba(34, 197, 94, 0.25),
        inset 0 1px 0 rgba(34, 197, 94, 0.15);
}

.agent-node {
    padding: 18px 24px;
    min-width: 280px;
    min-height: 85px;
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, #1a2e3a, #253545);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.35),
        0 0 32px rgba(0, 175, 255, 0.2),
        inset 0 1px 0 rgba(0, 175, 255, 0.15);
}

.agent-node:hover {
    border-color: var(--primary-cyan);
    box-shadow: 
        0 10px 28px rgba(0, 0, 0, 0.45),
        0 0 48px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(0, 212, 255, 0.2);
}

.agent-node .fa-robot {
    font-size: 1.6rem;
    color: var(--primary-cyan);
    filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.4));
}

.agent-text h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.agent-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--primary-cyan);
    font-weight: 500;
    opacity: 0.9;
}

.node-connector-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3a3a4a;
    border: 1px solid #5a5a6a;
    border-radius: 50%;
}

.node-label-bottom {
    position: absolute;
    bottom: -28px;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--primary-cyan);
    white-space: nowrap;
    font-weight: 600;
    opacity: 0.85;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.node-output-handle {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #3a3a4a;
    border: 1px solid #5a5a6a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.circle-node {
    border-radius: 50%;
    width: 85px;
    height: 85px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #252540);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(0, 212, 255, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.circle-node:hover {
    transform: translateY(-3px) scale(1.05);
}

.circle-node .node-content {
    font-size: 2rem;
    justify-content: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.circle-node .node-label {
    position: absolute;
    bottom: -28px;
    font-size: 0.85rem;
    white-space: nowrap;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    color: var(--text-primary);
}

.circle-node .node-sublabel {
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--primary-cyan);
    font-weight: 500;
}

.model-node {
    border-color: #10B981;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(16, 185, 129, 0.2),
        inset 0 2px 0 rgba(16, 185, 129, 0.15);
}

.model-node:hover {
    border-color: #22c55e;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 36px rgba(16, 185, 129, 0.3),
        inset 0 2px 0 rgba(16, 185, 129, 0.2);
}

.model-node .fas {
    color: #10B981;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.4));
}

.memory-node {
    border-color: #3B82F6;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(59, 130, 246, 0.2),
        inset 0 2px 0 rgba(59, 130, 246, 0.15);
}

.memory-node:hover {
    border-color: #60A5FA;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 36px rgba(59, 130, 246, 0.3),
        inset 0 2px 0 rgba(59, 130, 246, 0.2);
}

.memory-node .fas {
    color: #3B82F6;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

.tool-node {
    border-color: #8B5CF6;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(139, 92, 246, 0.2),
        inset 0 2px 0 rgba(139, 92, 246, 0.15);
}

.tool-node:hover {
    border-color: #A78BFA;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 36px rgba(139, 92, 246, 0.3),
        inset 0 2px 0 rgba(139, 92, 246, 0.2);
}

.tool-node .fas {
    color: #8B5CF6;
    filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.4));
}

.connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connectors path {
    fill: none;
    stroke-linecap: round;
}

.data-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 16px var(--primary-cyan),
        0 0 8px rgba(0, 212, 255, 0.6),
        inset 0 0 4px rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Services Page */
.services-detail {
    padding: 80px 0;
}

.service-detail-block {
    margin-bottom: 100px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.service-detail-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-block:hover::before {
    opacity: 1;
}

.service-detail-block.alternate {
    background: rgba(139, 95, 191, 0.02);
}

.service-detail-block:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-badge {
    display: inline-block;
    background: rgba(127, 255, 127, 0.1);
    border: 1px solid rgba(127, 255, 127, 0.25);
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 0.8rem;
    color: var(--primary-lime);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.service-badge.featured {
    background: rgba(139, 95, 191, 0.15);
    border-color: rgba(139, 95, 191, 0.3);
    color: #A78BFA;
}

.service-detail-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.2;
}

.service-detail-text .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0.9;
}

.service-detail-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-lime);
    margin: 48px 0 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.detail-list li {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.detail-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.detail-list .check-icon {
    color: #00FF88;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-list li strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.detail-list li p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    opacity: 0.85;
}

.service-detail-visual {
    position: sticky;
    top: 120px;
}

.price-value-block {
    margin-top: 40px;
    padding: 32px;
    background: 
        linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(139, 95, 191, 0.08)),
        rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.price-hint {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.value-hint {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.service-detail-cta {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail-cta .btn-primary {
    width: 100%;
    text-align: center;
    padding: 18px 32px;
    font-size: 1.1rem;
}

.visual-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.visual-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.visual-card:last-child {
    margin-bottom: 0;
}

.visual-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-lime);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-list li {
    padding: 14px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.simple-list li:hover {
    color: var(--text-primary);
    padding-left: 8px;
}

.simple-list li:last-child {
    border-bottom: none;
}

.simple-list li strong {
    color: var(--primary-lime);
    font-weight: 600;
}

/* Package Card Content - Professional Business Style */
.package-card h4 {
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.package-price {
    margin-bottom: 16px;
}

.package-price .price {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 4px;
}

.package-price .period {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 400;
}

.package-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.package-features li {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.package-features .check {
    position: absolute;
    left: 0;
    color: rgba(127, 255, 127, 0.6);
    font-weight: 400;
    font-size: 16px;
}

.value-statement {
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.value-statement p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.value-statement strong {
    color: var(--text-primary);
    font-weight: 500;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

/* Package Categories */
.package-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.category-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

.category-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.category-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Card Badges - Professional Minimalist (All Same Style) */
.card-badge,
.new-badge,
.premium-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Remove special card styling - all cards look the same */
.glow-card,
.featured-card,
.premium-card {
    /* No special styling - inherit from .package-card */
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(127, 255, 127, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(127, 255, 127, 0.6);
    }
}

/* Futuristic Button */
.btn-glow {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: #0A0A0F;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(127, 255, 127, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 255, 127, 0.6);
}

.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}

/* Homepage Pricing Categories */
.pricing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.pricing-category-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 40px rgba(127, 255, 127, 0.2);
}

.pricing-category-card.featured {
    border: 2px solid #FF6B6B;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.2);
}

.pricing-category-card.featured:hover {
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

.pricing-category-card.premium {
    border: 2px solid var(--primary-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.pricing-category-card.premium:hover {
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}

.pricing-category-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin: 16px 0 12px;
    letter-spacing: 1px;
}

.pricing-category-card.featured h3 {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB830 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-category-card.premium h3 {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price-range {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
}

.category-highlights {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.category-highlights li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 24px;
}

.category-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-cyan);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.packages-note {
    margin-top: 48px;
    padding: 32px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    text-align: center;
}

.packages-note p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.packages-note p:last-child {
    margin-bottom: 0;
}

.packages-note strong {
    color: var(--text-primary);
}

.packages-note a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.packages-note a:hover {
    color: var(--text-primary);
}

.packages-note-secondary {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

/* Industries Page */
.industries-intro {
    padding: 80px 0 60px;
    text-align: center;
}

.intro-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.intro-content .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.9;
}

.industry-details {
    padding: 60px 0;
}

.industry-detail-block {
    margin-bottom: 60px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.industry-detail-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-detail-block:hover::before {
    opacity: 1;
}

.industry-detail-block.alternate {
    background: rgba(127, 255, 127, 0.015);
}

.industry-detail-header {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.industry-icon-large {
    font-size: 4.5rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(127, 255, 127, 0.12), rgba(0, 212, 255, 0.08));
    border: 2px solid rgba(127, 255, 127, 0.3);
    border-radius: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(127, 255, 127, 0.15);
}

.industry-detail-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.2;
}

.industry-detail-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.5;
}

.industry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.industry-challenges h3,
.industry-solutions h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-lime);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.industry-challenges ul {
    list-style: none;
    padding: 0;
}

.industry-challenges li {
    padding: 16px 0 16px 40px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.industry-challenges li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 1.4rem;
    top: 14px;
}

.solution-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(127, 255, 127, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(127, 255, 127, 0.15);
}

.solution-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.solution-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.solution-card .impact {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background: rgba(127, 255, 127, 0.12);
    border: 1px solid rgba(127, 255, 127, 0.3);
    border-radius: 16px;
    color: var(--primary-lime);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-cta {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.industry-cta .btn-primary {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Use Cases Section */
.use-cases-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.use-case-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.15);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1;
}

.use-case-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.use-case-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(127, 255, 127, 0.05) 0%, transparent 60%),
        var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px 24px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(127, 255, 127, 0.15);
    border-color: rgba(127, 255, 127, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-lime);
    opacity: 0.3;
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(127, 255, 127, 0.2), rgba(94, 230, 110, 0.2));
    border: 2px solid rgba(127, 255, 127, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-lime);
    flex-shrink: 0;
}

/* Optional: Use this class when adding real client photos */
.author-avatar-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(127, 255, 127, 0.3);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(127, 255, 127, 0.2);
    transition: all 0.3s ease;
}

.author-avatar-photo:hover {
    border-color: var(--primary-lime);
    box-shadow: 0 6px 16px rgba(127, 255, 127, 0.35);
    transform: scale(1.05);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(127, 255, 127, 0.08), rgba(94, 230, 110, 0.05)),
        var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.2;
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-secondary-light {
    background: transparent;
    border: 2px solid var(--primary-lime);
    color: var(--primary-lime);
}

.btn-secondary-light:hover {
    background: var(--primary-lime);
    color: #0A0A0F;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
    margin: 0;
}

/* About Page */
.mission-section {
    padding: 80px 0;
}

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

.mission-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.mission-text .lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-box {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
}

.stat-box .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Approach Section */
.approach-section {
    display: none;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.approach-card {
    padding: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.approach-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.approach-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}

.approach-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.approach-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 60%),
        var(--bg-primary);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.story-text {
    text-align: left;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

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

.story-text p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    display: none;
}
/* Founder Section */
.founder-section {
    padding: 80px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.founder-photo img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 12px 40px rgba(127, 255, 127, 0.12);
    display: block;
}

.founder-copy h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.founder-copy .lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.bio-highlights {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.bio-highlights li {
    padding-left: 22px;
    position: relative;
    color: var(--text-secondary);
}

.bio-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-lime);
}

.badge-row {
    margin-top: 20px;
}

.badge-img {
    height: 64px;
    width: auto;
}

/* Founder Badge */
.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(127, 255, 127, 0.15), rgba(94, 230, 110, 0.15));
    border: 1px solid rgba(127, 255, 127, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-lime);
}

.founder-badge i {
    font-size: 1.1rem;
}

/* Portfolio Link */
.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(127, 255, 127, 0.3);
    border-radius: 12px;
    color: var(--primary-lime);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: rgba(127, 255, 127, 0.1);
    border-color: var(--primary-lime);
    transform: translateX(4px);
}

.portfolio-link i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .founder-photo img {
        margin: 0 auto;
    }
}

/* Skills Section */
.skills-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.skill-card {
    padding: 40px 32px;
    background: 
        linear-gradient(135deg, rgba(127, 255, 127, 0.03), rgba(94, 230, 110, 0.03)),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 255, 127, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(127, 255, 127, 0.15);
}

.skill-card:hover::before {
    opacity: 1;
}

.skill-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(127, 255, 127, 0.15), rgba(94, 230, 110, 0.15));
    border: 1px solid rgba(127, 255, 127, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-lime);
}

.skill-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.skill-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* What My Expertise Means Section */
.what-my-expertise-means-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.benefit-item {
    padding: 40px 32px;
    background: 
        linear-gradient(135deg, rgba(127, 255, 127, 0.03), rgba(94, 230, 110, 0.03)),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 255, 127, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(127, 255, 127, 0.15);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item i {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.benefit-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Icon color classes */
.icon-green {
    color: #7fff7f;
}

.icon-blue {
    color: #4db8ff;
}

.icon-yellow {
    color: #ffd966;
}

.icon-purple {
    color: #b19cd9;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.project-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 255, 127, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(127, 255, 127, 0.15);
}

.project-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(127, 255, 127, 0.15), rgba(94, 230, 110, 0.15));
    border: 1px solid rgba(127, 255, 127, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-lime);
}

.project-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.project-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.project-tech span {
    padding: 6px 14px;
    background: rgba(127, 255, 127, 0.1);
    border: 1px solid rgba(127, 255, 127, 0.25);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-lime);
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.tech-categories {
    display: grid;
    gap: 40px;
    margin-top: 48px;
}

.tech-category {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.tech-category h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-category h3 i {
    color: var(--primary-lime);
    font-size: 1.4rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tags span {
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(127, 255, 127, 0.1), rgba(94, 230, 110, 0.1));
    border: 1px solid rgba(127, 255, 127, 0.25);
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tech-tags span:hover {
    background: rgba(127, 255, 127, 0.15);
    border-color: var(--primary-lime);
    color: var(--primary-lime);
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 0.95) 0%, 
        rgba(15, 25, 35, 0.98) 50%,
        rgba(10, 10, 15, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-primary) 50%, 
        transparent 100%
    );
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-primary) 50%, 
        transparent 100%
    );
}

.trust-section .section-header h2 {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

.trust-card {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, 
        rgba(127, 255, 127, 0.03) 0%, 
        rgba(15, 25, 35, 0.8) 100%
    );
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(127, 255, 127, 0.3) 0%, 
        transparent 50%,
        rgba(127, 255, 127, 0.3) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(127, 255, 127, 0.15),
        0 0 0 1px rgba(127, 255, 127, 0.2);
}

.trust-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(127, 255, 127, 0.3));
    animation: float 3s ease-in-out infinite;
}

.trust-card:nth-child(2) .trust-icon {
    animation-delay: 0.5s;
}

.trust-card:nth-child(3) .trust-icon {
    animation-delay: 1s;
}

.trust-card:nth-child(4) .trust-icon {
    animation-delay: 1.5s;
}

.trust-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.trust-card:hover h3 {
    color: var(--accent-primary);
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.trust-card:hover p {
    color: var(--text-primary);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: 
        linear-gradient(135deg, rgba(127, 255, 127, 0.05), rgba(94, 230, 110, 0.05)),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 255, 127, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(127, 255, 127, 0.15);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.values-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card,
.value-item {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover,
.value-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3,
.value-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card p,
.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-member {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 95, 191, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.team-role {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}

.team-member p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
        padding: 60px 32px;
    }
    
    .n8n-pipeline {
        max-width: 550px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 60px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn, .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px 24px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-visual {
        min-height: 400px;
        order: 2;
    }
    
    .n8n-pipeline {
        max-width: 100%;
        height: 400px;
    }
    
    .pipeline-title {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .pipeline-node {
        font-size: 0.65rem;
        padding: 6px 8px;
        min-height: 40px;
    }
    
    .agent-node {
        min-width: 180px;
        padding: 8px 10px;
        min-height: 50px;
    }
    
    .agent-node .fa-robot {
        font-size: 1.2rem;
    }
    
    .agent-text h4 {
        font-size: 0.9rem;
    }
    
    .agent-text p {
        font-size: 0.7rem;
    }
    
    .circle-node {
        width: 55px;
        height: 55px;
    }
    
    .circle-node .node-content {
        font-size: 1.4rem;
    }
    
    .solution-content, .contact-content, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content,
    .industry-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .service-detail-block {
        padding: 40px 32px;
    }
    
    .service-detail-visual {
        position: static;
    }
    
    .industry-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .solution-visual {
        order: -1;
    }
    
    .impact-showcase {
        padding: 32px 24px;
    }
    
    .impact-stats {
        gap: 20px;
    }
    
    .impact-stat {
        padding: 20px 12px;
    }
    
    .impact-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .impact-value {
        font-size: 2rem;
    }
    
    .services-grid, .industries-grid, .testimonials-grid, .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 32px 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .n8n-pipeline {
        height: 350px;
    }
    
    .pipeline-node {
        font-size: 0.6rem;
        padding: 5px 6px;
        min-height: 35px;
    }
    
    .agent-node {
        min-width: 150px;
        min-height: 45px;
    }
    
    .circle-node {
        width: 48px;
        height: 48px;
    }
    
    .impact-showcase {
        padding: 28px 20px;
    }
    
    .impact-header h3 {
        font-size: 1.4rem;
    }
    
    .impact-stats {
        gap: 16px;
    }
    
    .impact-stat {
        padding: 16px 12px;
    }
    
    .impact-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .impact-value {
        font-size: 1.8rem;
    }
    
    .impact-desc {
        font-size: 0.8rem;
    }
    
    .industry-detail-block {
        padding: 24px;
    }
    
    .industry-icon-large {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .stat-box {
        padding: 24px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-number {
        font-size: 3rem;
    }
    
    .story-text {
        padding: 32px 24px;
    }
    
    .value-statement {
        font-size: 0.9rem;
    }
    
    .popular-badge {
        right: 12px;
    }
    
    .service-detail-block {
        padding: 28px 20px;
    }
    
    .detail-list li {
        padding: 16px;
    }
    
    .detail-list li strong {
        font-size: 1rem;
    }
    
    .price-hint {
        font-size: 1.8rem;
    }
    
    .visual-card {
        padding: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .quote-mark {
        font-size: 4rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary-light {
        width: 100%;
    }
}

/* ===================================
   AI Success Flow Section - Clean Professional
   =================================== */
.ai-flow-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.9) 0%, rgba(20, 20, 30, 0.95) 100%);
    position: relative;
}

.flow-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin: 60px 0 40px;
}

.flow-card {
    background: rgba(25, 25, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.flow-card:hover {
    background: rgba(30, 30, 40, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
}

.flow-number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
}

.flow-arrow {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.flow-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.flow-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.flow-meta {
    color: rgba(127, 255, 127, 0.7);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.flow-desc {
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.5;
}

.flow-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.flow-features li {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.flow-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(127, 255, 127, 0.5);
}

.flow-outcome {
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
}

.flow-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Flow */
@media (max-width: 1200px) {
    .flow-grid {
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .flow-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .flow-arrow:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .flow-card:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
    }

    .flow-arrow:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
        transform: rotate(90deg);
    }

    .flow-card:nth-child(5) {
        grid-column: 1;
        grid-row: 2;
    }

    .flow-arrow:nth-child(6) {
        grid-column: 2;
        grid-row: 2;
    }

    .flow-card:nth-child(7) {
        grid-column: 3;
        grid-row: 2;
    }
}

@media (max-width: 768px) {
    .flow-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 40px 0 30px;
    }

    .flow-card {
        padding: 24px 16px;
        width: 100%;
    }

    .flow-arrow {
        font-size: 20px;
        margin: 0;
        padding: 4px 0;
        transform: rotate(90deg);
        align-self: center;
    }

    .flow-card h3 {
        font-size: 17px;
    }

    .flow-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
        top: 12px;
        right: 12px;
        left: auto;
    }

    .flow-icon {
        font-size: 36px;
        margin-bottom: 12px;
        margin-top: 8px;
    }

    .flow-meta {
        font-size: 12px;
    }

    .flow-desc {
        font-size: 13px;
    }

    .flow-features li {
        font-size: 12px;
        padding: 3px 0;
    }

    .flow-outcome {
        font-size: 12px;
        padding: 10px 12px;
    }
}

