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

:root {
    /* Colors - BOLD & VIBRANT */
    --primary-blue: #0066FF;
    --primary-dark: #0047B3;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;
    --accent-orange: #F97316;
    --gradient-start: #0066FF;
    --gradient-end: #8B5CF6;
    --gradient-accent: linear-gradient(135deg, #0066FF 0%, #8B5CF6 50%, #EC4899 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, #0066FF22 0%, transparent 50%),
                     radial-gradient(at 100% 0%, #8B5CF622 0%, transparent 50%),
                     radial-gradient(at 100% 100%, #EC489922 0%, transparent 50%),
                     radial-gradient(at 0% 100%, #06B6D422 0%, transparent 50%);
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-dark: #0F172A;
    --bg-light: #F8FAFC;
    --bg-card: #FFFFFF;
    --border-light: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0, 102, 255, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 102, 255, 0.12);
    --shadow-lg: 0 20px 40px rgba(0, 102, 255, 0.15);
    --shadow-xl: 0 40px 80px rgba(0, 102, 255, 0.20);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.4);
    --shadow-glow-purple: 0 0 60px rgba(139, 92, 246, 0.5);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--bg-white);
    background-image: var(--gradient-mesh);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.08);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-blue);
}

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0066FF, #8B5CF6);
    color: white;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: heroGlow1 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    animation: heroGlow2 10s ease-in-out infinite alternate;
}

@keyframes heroGlow1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 5%) scale(1.1); }
}

@keyframes heroGlow2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10%, -5%) scale(1.15); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #0066FF 0%, #8B5CF6 50%, #EC4899 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0066FF 0%, #8B5CF6 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.5;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* New Hero Enhancements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(80, 227, 194, 0.1);
    border: 1px solid rgba(80, 227, 194, 0.3);
    border-radius: 50px;
    color: #0d9488;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(80, 227, 194, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(80, 227, 194, 0); }
}

.hero-subtitle strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(139, 92, 246, 0.1));
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.hero-value-props {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.value-prop strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.btn-pulse {
    animation: btn-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    position: relative;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 102, 255, 0);
    }
}

/* Social proof removed from hero */

/* Hero Dashboard */
.hero-dashboard {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(229, 231, 235, 0.5);
    animation: float 6s ease-in-out infinite;
    max-width: 480px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 1.5rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.header-right {
    display: flex;
    align-items: center;
}

.live-indicator {
    font-size: 0.75rem;
    font-weight: 700;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.dashboard-main-stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.main-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.main-stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066FF, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.main-stat-growth {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #10B981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.1);
}

.stat-box-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.stat-box-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

.dashboard-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.footer-text {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Enhanced Contact Form Styles */
.form-select-large {
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.25rem;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s;
}

.form-select-large:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* ===========================
   AWESOME FEATURES STYLES
   =========================== */

/* Floating CTA Bar */
.floating-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid #0066FF;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    z-index: 998;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-cta.visible {
    bottom: 0;
}

.floating-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    gap: 2rem;
}

.floating-cta-text {
    display: flex;
    flex-direction: column;
    color: var(--text-primary);
}

.floating-cta-text strong {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-weight: 700;
}

.floating-cta-text span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.floating-cta .btn {
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    white-space: nowrap;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
}

.floating-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

.floating-cta-close {
    background: var(--bg-light);
    border: none;
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.floating-cta-close:hover {
    background: var(--border-light);
    color: var(--text-primary);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .floating-cta-content {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        text-align: center;
    }
}

/* Social Proof Notifications */
.social-proof-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 997;
    max-width: 320px;
}

.social-proof-notification {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-proof-notification.visible {
    opacity: 1;
    transform: translateX(0);
}

.social-proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF, #8B5CF6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.social-proof-text {
    flex: 1;
}

.social-proof-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.social-proof-action {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.social-proof-time {
    font-size: 0.75rem;
    color: var(--text-light);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .social-proof-container {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.exit-popup.visible {
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.exit-popup.visible .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.exit-popup-close:hover {
    background: var(--border-light);
}

.exit-popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.exit-popup h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.exit-popup p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.exit-popup-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.exit-popup-disclaimer {
    margin-top: 1rem !important;
    font-size: 0.875rem !important;
    color: var(--text-light) !important;
}

/* Scroll Progress Bar - already added in awesome-features.js */

/* Custom Cursor - styles added inline in JS */

/* Reduced Motion for Performance */
.reduced-motion * {
    animation: none !important;
    transition: none !important;
}

/* Blog Inline CTA */
.blog-inline-cta {
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .exit-popup-content {
        padding: 2rem 1.5rem;
    }
    
    .exit-popup h3 {
        font-size: 1.5rem;
    }
}

/* Funnel Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.funnel-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.funnel-stage {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: var(--spacing-lg) var(--spacing-xl);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    transform-style: preserve-3d;
}

.funnel-stage::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0066FF, #8B5CF6, #EC4899);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
    filter: blur(20px);
}

.funnel-stage:hover::before {
    opacity: 0.6;
}

.funnel-stage:hover {
    transform: translateY(-5px) translateZ(20px) rotateX(5deg);
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.25), 0 0 40px rgba(139, 92, 246, 0.3);
}

.funnel-stage:nth-child(1) {
    animation-delay: 0s;
    width: 280px;
}

.funnel-stage:nth-child(3) {
    animation-delay: 0.5s;
    width: 240px;
}

.funnel-stage:nth-child(5) {
    animation-delay: 1s;
    width: 200px;
}

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

.stage-label {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

.funnel-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    animation: bounce 2s ease-in-out infinite;
}

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orb-float 20s ease-in-out infinite;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #0066FF, #8B5CF6);
    top: -300px;
    right: -150px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #EC4899, #8B5CF6);
    bottom: -200px;
    left: -150px;
    animation-delay: 5s;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) scale(1.2) rotate(120deg);
    }
    66% {
        transform: translate(-40px, 40px) scale(0.8) rotate(240deg);
    }
}

/* ===========================
   Scroll Indicator
   =========================== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: fadeInUp 1s ease 1s both;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 3px solid rgba(0, 102, 255, 0.6);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}

.wheel {
    width: 4px;
    height: 10px;
    background: linear-gradient(180deg, #0066FF, #8B5CF6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===========================
   How It Works Modal
   =========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 32px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    position: relative;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(139, 92, 246, 0.08));
    border-bottom: 2px solid rgba(0, 102, 255, 0.1);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 102, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.modal-close:hover {
    background: #0066FF;
    color: white;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.modal-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #0066FF, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.modal-body {
    padding: 3rem 2rem;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(180deg, #0066FF, #8B5CF6, #EC4899);
    border-radius: 2px;
    opacity: 0.3;
}

.flow-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    animation: fadeInLeft 0.6s ease forwards;
    opacity: 0;
}

.flow-step:nth-child(1) { animation-delay: 0.2s; }
.flow-step:nth-child(2) { animation-delay: 0.4s; }
.flow-step:nth-child(3) { animation-delay: 0.6s; }
.flow-step:nth-child(4) { animation-delay: 0.8s; }
.flow-step:nth-child(5) { animation-delay: 1s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.flow-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF, #8B5CF6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    border: 4px solid white;
    position: relative;
    z-index: 2;
}

.flow-content {
    flex: 1;
    padding-top: 0.5rem;
}

.flow-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.flow-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.flow-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-pill {
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: #0066FF;
    font-weight: var(--font-weight-medium);
}

.flow-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.modal-footer {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(139, 92, 246, 0.05));
    border-top: 2px solid rgba(0, 102, 255, 0.1);
    text-align: center;
}

.modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #0066FF, #8B5CF6);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    font-family: inherit;
}

.modal-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.how-it-works-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #0066FF;
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
    animation: pulse-border 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    font-family: inherit;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 102, 255, 0.3);
    }
}

.how-it-works-cta:hover {
    background: #0066FF;
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.how-it-works-cta svg {
    transition: transform 0.3s ease;
}

.how-it-works-cta:hover svg {
    transform: rotate(90deg);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #73ade7;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #0066FF, #8B5CF6);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0066FF, #8B5CF6, #EC4899);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.4), 0 0 30px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-block {
    width: 100%;
}

/* ===========================
   Animations
   =========================== */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 102, 255, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.5));
    }
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    margin: 0 auto var(--spacing-lg);
    position: relative;
    border: 4px solid white;
    animation: float-subtle 6s ease-in-out infinite;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, #0066FF, #8B5CF6, #EC4899);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(20px);
    animation: rotate 10s linear infinite;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #0066FF;
    border-right-color: #8B5CF6;
    animation: rotate 3s linear infinite;
}

.image-placeholder svg {
    width: 120px;
    height: 120px;
}

.about-badges {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.4);
}

.badge-icon {
    font-size: 1rem;
}

.about-text {
    max-width: 600px;
}

.section-title {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #8B5CF6, #EC4899);
    border-radius: 2px;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, #0066FF, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 40px rgba(0, 102, 255, 0.3);
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.2));
}

.stat-number::after {
    content: '+';
}

.stat-card:nth-child(3) .stat-number::after {
    content: '%';
}

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

/* ===========================
   Services Section
   =========================== */
.services {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #8B5CF6, #EC4899);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0066FF, #8B5CF6, #EC4899);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
    filter: blur(20px);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.service-card:hover::after {
    opacity: 0.3;
}

.service-icon {
    margin-bottom: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 102, 255, 0.2));
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 8px 16px rgba(0, 102, 255, 0.3));
    animation: glow 2s ease-in-out infinite;
}

.service-icon svg {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon svg {
    transform: rotate(5deg);
}

.service-title {
    font-size: 1.375rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ===========================
   Portfolio Section
   =========================== */
.portfolio {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    gap: var(--spacing-3xl);
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 32px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: conic-gradient(from 0deg at 50% 50%, transparent, rgba(0, 102, 255, 0.1), transparent 30%);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.6s;
}

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

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.portfolio-item:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.portfolio-item:nth-child(even) .portfolio-preview {
    order: 2;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.15), 0 0 40px rgba(139, 92, 246, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
}

.demo-browser {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    overflow: hidden;
    border: 2px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
}

.portfolio-item:hover .demo-browser {
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.2);
    transform: translateY(-5px);
}

.browser-header {
    background: #F5F5F5;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    border-bottom: 1px solid var(--border-light);
}

.browser-dots {
    display: flex;
    gap: 0.375rem;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DDD;
}

.browser-dots span:nth-child(1) {
    background: #FF5F56;
}

.browser-dots span:nth-child(2) {
    background: #FFBD2E;
}

.browser-dots span:nth-child(3) {
    background: #27C93F;
}

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
}

.browser-content {
    padding: var(--spacing-xl);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-content {
    text-align: center;
    width: 100%;
}

.demo-content h4 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.demo-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.demo-btn {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: inherit;
}

.demo-btn:hover {
    transform: scale(1.05);
}

.gym-demo {
    background: linear-gradient(135deg, #FFE8E8, #FFF5F5);
}

.clinic-demo {
    background: linear-gradient(135deg, #E8F5FF, #F0F9FF);
}

.coach-demo {
    background: linear-gradient(135deg, #F0E8FF, #F8F5FF);
}

.portfolio-info {
    padding: var(--spacing-md);
}

.portfolio-title {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.portfolio-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.portfolio-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.feature-tag {
    padding: 0.375rem 0.875rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-blue);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all var(--transition-base);
}

.portfolio-link:hover {
    gap: 0.75rem;
}

.portfolio-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0066FF, #8B5CF6);
    color: white;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 1.0625rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.portfolio-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.portfolio-cta-btn:hover::before {
    left: 100%;
}

.portfolio-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.portfolio-cta-btn svg {
    flex-shrink: 0;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 24px;
    border: 2px solid rgba(226, 232, 240, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.testimonial-card:hover::before {
    transform: scale(1);
}

.testimonial-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
}

.author-name {
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

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

/* ===========================
   Process Section
   =========================== */
.process {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.process-step {
    position: relative;
    text-align: center;
    padding: var(--spacing-xl);
    padding-top: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(226, 232, 240, 0.8);
    overflow: visible;
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.step-number {
    position: absolute;
    top: -28px;
    right: var(--spacing-md);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0066FF, #8B5CF6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-extrabold);
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
    border: 4px solid white;
    z-index: 10;
}

.step-icon {
    margin: 0 auto var(--spacing-md);
    display: flex;
    justify-content: center;
}

.step-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    position: relative;
}

.process-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -8px;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    padding: var(--spacing-xl);
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    border: 2px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 32px 32px 0 0;
    z-index: 0;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-base);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066FF;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1), 0 8px 24px rgba(0, 102, 255, 0.15);
    transform: translateY(-2px);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: var(--spacing-sm);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066FF, #8B5CF6, #EC4899);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 100%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: white;
    display: block;
}

.footer-brand .logo-subtitle {
    font-size: 0.875rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: var(--spacing-sm);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: white;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .modal-container {
        width: 95%;
        max-height: 85vh;
    }
    
    .flow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .process-flow::before {
        display: none;
    }
    
    .flow-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item,
    .portfolio-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item:nth-child(even) .portfolio-preview {
        order: 0;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }
    
    .process-connector::after {
        content: '↓';
        right: -8px;
        top: auto;
        bottom: -10px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .contact-info {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-base);
        pointer-events: none;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn-large, .how-it-works-cta {
        width: 100%;
        justify-content: center;
    }
    
    .funnel-stage {
        width: 100% !important;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.75rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 2rem 1.5rem;
    }
    
    .flow-title {
        font-size: 1.25rem;
    }
    
    .flow-description {
        font-size: 0.9375rem;
    }
    
    .modal-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-image {
        width: 200px;
        height: 200px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
