/* Modern AI Consulting Website Styles */

/* CSS Variables for Modern Color Palette */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    
    --primary-color: #667eea;
    --secondary-color: #f093fb;
    --accent-color: #4facfe;
    --success-color: #43e97b;
    --warning-color: #feca57;
    --danger-color: #ff6b6b;
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-hover: rgba(255, 255, 255, 0.2);
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.3);
    
    --font-primary: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--primary-color);
    color: white;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Safe-area padding for iOS devices */
.container {
    padding-left: calc(20px + env(safe-area-inset-left));
    padding-right: calc(20px + env(safe-area-inset-right));
}

/* Cursor Follower */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    opacity: 0;
}

/* Floating Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: float 8s infinite linear;
    opacity: 0.3;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: -2s; }
.particle:nth-child(3) { left: 30%; animation-delay: -4s; }
.particle:nth-child(4) { left: 40%; animation-delay: -6s; }
.particle:nth-child(5) { left: 60%; animation-delay: -1s; }
.particle:nth-child(6) { left: 70%; animation-delay: -3s; }
.particle:nth-child(7) { left: 80%; animation-delay: -5s; }
.particle:nth-child(8) { left: 90%; animation-delay: -7s; }

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav {
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 10px;
    font-size: 20px;
    color: white;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.logo-text .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-gradient) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: var(--border-radius);
    font-weight: 600 !important;
    transition: all var(--transition-normal) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-cta::after {
    display: none;
}

.nav-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.nav-burger span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Animated Background without video */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 1) 0%, 
        rgba(26, 26, 26, 1) 50%, 
        rgba(10, 10, 10, 1) 100%);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.bg-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.3) 0%, transparent 70%);
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.2) 0%, transparent 70%);
    bottom: 10%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.9); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

/* Neural Network Canvas */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#neuralCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both, subtlePulse 3s ease-in-out infinite;
}

/* Target Audience Section */
.target-audience {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.audience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    min-width: 80px;
    transition: all var(--transition-normal);
    animation: slideInUp 0.6s ease both;
}

.audience-item:nth-child(1) { animation-delay: 0.1s; }
.audience-item:nth-child(2) { animation-delay: 0.2s; }
.audience-item:nth-child(3) { animation-delay: 0.3s; }
.audience-item:nth-child(4) { animation-delay: 0.4s; }
.audience-item:nth-child(5) { animation-delay: 0.5s; }
.audience-item:nth-child(6) { animation-delay: 0.6s; }

.audience-item:hover {
    transform: translateY(-4px);
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.audience-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.audience-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Typing Animation */
.typing-text {
    position: relative;
    color: var(--accent-color);
}

.typing-text::after {
    content: '|';
    color: var(--accent-color);
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Value Proposition */
.value-proposition {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(67, 233, 123, 0.1);
    border: 1px solid var(--success-color);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    animation: bounceIn 0.6s ease both;
}

.value-item:nth-child(1) { animation-delay: 0.2s; }
.value-item:nth-child(2) { animation-delay: 0.4s; }
.value-item:nth-child(3) { animation-delay: 0.6s; }

.value-item:hover {
    transform: scale(1.05);
    background: rgba(67, 233, 123, 0.2);
    box-shadow: 0 10px 20px rgba(67, 233, 123, 0.3);
}

.value-icon {
    font-size: 1.8rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.value-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-text i {
    color: var(--accent-color);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease both;
}

.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }
.title-line:nth-child(3) { animation-delay: 0.8s; }

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ensure dynamic typing text is visible inside gradient wrappers */
.gradient-text .typing-text {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
    background: none !important;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.price-highlight {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.ai-letter {
    display: inline-block;
    animation: bounce 2s infinite;
}

.ai-letter:nth-child(2) {
    animation-delay: 0.1s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 1s both;
}

.highlight {
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 1.2s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 120px;
}

.hero-cta {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 1.4s both;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.mega-cta {
    position: relative;
    padding: 24px 48px !important;
    font-size: 1.2rem !important;
    border-radius: var(--border-radius-lg) !important;
    background: var(--primary-gradient) !important;
    border: none !important;
    color: white !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all var(--transition-normal) !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    min-width: 350px;
}

.mega-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mega-cta:hover::before {
    left: 100%;
}

.mega-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.btn-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.btn-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.urgency-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--warning-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: var(--warning-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.social-proof {
    animation: fadeInUp 1s ease 1.6s both;
}

.proof-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cost-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.comparison-item {
    text-align: center;
}

.comparison-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.comparison-price {
    font-size: 1.4rem;
    font-weight: 700;
}

.old-way .comparison-price {
    color: var(--danger-color);
}

.new-way .comparison-price {
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vs-divider {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0 16px;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.6;
    animation: floatIcon 8s infinite ease-in-out;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; }
.floating-icon:nth-child(2) { top: 30%; right: 15%; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; }
.floating-icon:nth-child(4) { bottom: 20%; right: 10%; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

/* WhatsApp Demo Mockup */
.whatsapp-demo {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 2;
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-mockup {
    width: 250px;
    height: 450px;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border-radius: 25px;
    padding: 20px 15px;
    border: 3px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0d1421;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #25d366;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.online-status {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-left: auto;
}

.chat-messages {
    flex: 1;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.4;
    position: relative;
    animation: messageAppear 0.5s ease;
}

.bot-message {
    background: #128c7e;
    color: white;
    align-self: flex-start;
    animation-delay: 1s;
}

.user-message {
    background: #075e54;
    color: white;
    align-self: flex-end;
    animation-delay: 3s;
}

.typing-indicator {
    display: flex;
    gap: 3px;
    margin-top: 8px;
}

.typing-indicator span {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: typingDot 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes phoneFloat {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(-50%) translateX(-10px); }
}

@keyframes messageAppear {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes typingDot {
    0%, 60%, 100% { transform: scale(1); opacity: 0.6; }
    30% { transform: scale(1.2); opacity: 1; }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
}

.btn-full {
    width: 100%;
}

/* Problems Section */
.problems-section {
    background: var(--bg-primary);
    position: relative;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    animation: slideInUp 0.6s ease both;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.5s ease;
}

.problem-card:hover::before {
    left: 100%;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--danger-color);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.problem-card p {
    color: var(--danger-color);
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.solution-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(67, 233, 123, 0.1);
    border: 1px solid var(--success-color);
    border-radius: var(--border-radius);
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.solution-preview:hover {
    background: rgba(67, 233, 123, 0.2);
    transform: scale(1.02);
}

.solution-preview i {
    animation: arrowBounce 2s ease-in-out infinite;
}

.problems-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.cta-question {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(5px); }
}

/* Services Section */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--warning-color);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-pricing {
    text-align: center;
    margin: 24px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.price-from {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.service-delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-btn {
    margin-top: 16px;
    font-weight: 600;
}

/* Popular Combo */
.popular-combo {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.1) 0%, rgba(56, 249, 215, 0.1) 100%);
    border: 2px solid var(--success-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin-top: 60px;
    text-align: center;
}

.combo-badge {
    display: inline-block;
    background: var(--success-gradient);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.combo-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.combo-header p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.combo-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.combo-price {
    text-align: left;
}

.price-original {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-combo {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.savings {
    display: inline-block;
    background: var(--success-color);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.combo-btn {
    font-size: 1.1rem;
    padding: 18px 36px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.feature {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
}

.service-result {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.result-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.services-cta {
    text-align: center;
}

/* ROI Section */
.roi-section {
    background: var(--bg-primary);
    position: relative;
}

.roi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(67, 233, 123, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.vs-item {
    text-align: center;
    padding: 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.vs-item.employee {
    background: rgba(255, 107, 107, 0.1);
    border-color: var(--danger-color);
}

.vs-item.automation {
    background: rgba(67, 233, 123, 0.1);
    border-color: var(--success-color);
}

.vs-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.monthly-cost {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.vs-item.employee .monthly-cost {
    color: var(--danger-color);
}

.vs-item.automation .monthly-cost {
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-features {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 40px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 600;
    color: var(--text-primary);
}

.employee-feature {
    color: var(--danger-color);
}

.automation-feature {
    color: var(--success-color);
    font-weight: 600;
}

.savings-highlight {
    text-align: center;
    padding: 32px;
    background: var(--success-gradient);
    color: #000;
    border-radius: var(--border-radius-lg);
    margin-top: 40px;
}

.savings-text {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.savings-text .amount {
    font-size: 2.2rem;
}

.roi-time {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Process Section */
.process {
    background: var(--bg-secondary);
}

.simple-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.step-time {
    background: var(--accent-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.process-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 800;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: 60px;
    background: var(--primary-gradient);
    opacity: 0.3;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.step-content {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-features span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-visual {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.process-cta {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
}

/* Results Section */
.results {
    background: var(--bg-secondary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.result-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-color-hover);
}

.result-company {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 0.9rem;
}

.company-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.company-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.result-challenge,
.result-solution {
    margin-bottom: 20px;
}

.result-challenge h5,
.result-solution h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-challenge p,
.result-solution p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.result-metrics {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonials {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Consultation Section */
.consultation {
    background: var(--bg-primary);
    position: relative;
}

.consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.consultation-value {
    margin: 40px 0;
}

.value-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    padding: 20px 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.value-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.value-free {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consultation-form-container {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

/* Remove form UI in favor of WhatsApp CTA */
.consultation-form,
.urgency-footer,
.form-security { display: none !important; }

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.urgency-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--warning-color);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section.main {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-gradient);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Touch devices: hide cursor follower and lighten transitions */
@media (hover: none) and (pointer: coarse) {
    .cursor-follower { display: none !important; }
    .nav-burger { padding: 10px; }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    70% {
        transform: scale(0.95) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

/* Subtle hover animations for all interactive elements */
.btn:hover {
    animation: buttonPulse 0.3s ease;
}

@keyframes buttonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Enhanced service cards animations */
.service-card:hover {
    animation: cardLift 0.3s ease forwards;
}

@keyframes cardLift {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-12px) scale(1.02); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .consultation-form-container {
        position: static;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr 60px;
        gap: 30px;
    }
    
    .step-number,
    .step-visual {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-burger {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .target-audience {
        gap: 12px;
    }
    
    .audience-item {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .audience-item span {
        font-size: 0.7rem;
    }
    
    .value-proposition {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 20px;
    }
    
    .cost-comparison {
        flex-direction: column;
        gap: 16px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .vs-divider {
        transform: rotate(90deg);
    }
    
    .whatsapp-demo {
        position: static;
        transform: none;
        margin: 40px auto 0;
    }
    
    .phone-mockup {
        width: min(320px, 90vw);
        height: auto;
        aspect-ratio: 250 / 450;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .combo-pricing {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .comparison-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-features {
        display: block;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
        padding: 20px;
    }
    
    .feature-name {
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .employee-feature,
    .automation-feature {
        display: flex;
        justify-content: space-between;
        margin-bottom: 4px;
    }
    
    .employee-feature::before {
        content: 'Empleado: ';
        font-weight: 600;
    }
    
    .automation-feature::before {
        content: 'Chatbot: ';
        font-weight: 600;
    }
    
    .simple-process {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mega-cta {
        min-width: auto !important;
        width: 100% !important;
    }
    
    .hero-content {
        padding: 0 15px;
    }

    /* Hide heavy decorative layers on small screens for performance */
    .bg-grid,
    .bg-orbs,
    .floating-elements,
    .particles-container,
    .neural-network { display: none !important; }

    /* Expand mobile nav to full overlay panel */
    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        left: 0;
        width: 100vw;
        height: calc(100vh - 72px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1100;
    }
    .nav-menu a { font-size: 1.1rem; }

    /* Friendlier card paddings on mobile */
    .service-card,
    .problem-card,
    .result-card,
    .process-cta,
    .consultation-form-container,
    .step-content,
    .testimonial,
    .popular-combo { padding: 24px; }

    /* CTA buttons fill width inside hero */
    .hero-cta .btn { width: 100%; }

    /* Tweak large numbers for small screens */
    .stat-number { font-size: 2.2rem; }
    .monthly-cost { font-size: 2rem; }
    .price-amount,
    .price-combo { font-size: 2rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .nav {
        padding: 15px 0;
    }
    
    .hero-cta {
        margin-bottom: 40px;
    }
    
    .social-proof {
        margin-bottom: 0;
    }
    
    .company-logos {
        gap: 15px;
    }
    
    .logo-placeholder {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Make primary buttons easier to tap */
    .btn { width: 100%; min-height: 48px; }
    .btn-primary, .btn-secondary { padding: 14px 18px; }

    /* Slightly reduce headline extremes for very small screens */
    .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
    .price-highlight { font-size: clamp(2.2rem, 9vw, 3rem); }

    /* More compact card padding on very small devices */
    .service-card,
    .problem-card,
    .result-card,
    .process-cta,
    .consultation-form-container,
    .step-content,
    .testimonial,
    .popular-combo { padding: 20px; }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 100vw;
        height: calc(100vh - 72px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        transition: right var(--transition-normal);
        border-left: 1px solid var(--border-color);
        gap: 20px;
        z-index: 1100;
    }
    
    .nav-menu.active {
        right: 0;
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 30px;
        width: 100%;
    }
    
    .nav-cta {
        margin-top: 20px;
    }
    
    .nav-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .bg-grid { animation: none !important; }
    .orb { animation: none !important; }
    .floating-icon { animation: none !important; }
    .message { animation: none !important; }
}
