/* ===========================
   Root Variables & Reset
   =========================== */
:root {
    /* Colors */
    --primary-blue: #0EA5E9;
    --primary-blue-dark: #0284C7;
    --accent-green: #22C55E;
    --accent-green-dark: #16A34A;
    
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(198, 84%, 51%, 1) 0px, transparent 50%),
                      radial-gradient(at 80% 0%, hsla(142, 53%, 46%, 1) 0px, transparent 50%),
                      radial-gradient(at 0% 50%, hsla(210, 100%, 40%, 1) 0px, transparent 50%);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: clamp(0.75rem, 1.5vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 2vw, 1rem);
    --font-size-base: clamp(1rem, 2.5vw, 1.125rem);
    --font-size-lg: clamp(1.125rem, 3vw, 1.25rem);
    --font-size-xl: clamp(1.25rem, 3.5vw, 1.5rem);
    --font-size-2xl: clamp(1.5rem, 4vw, 2rem);
    --font-size-3xl: clamp(2rem, 5vw, 3rem);
    --font-size-4xl: clamp(2.5rem, 6vw, 4rem);
    
    /* Animations */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.3);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--slate-700);
    background: var(--slate-50);
    overflow-x: hidden;
    position: relative;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


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

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

.loader {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 3px solid var(--slate-700);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: var(--slate-100);
    font-size: var(--font-size-xl);
    font-weight: 700;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* ===========================
   Progress Bar
   =========================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9998;
    transition: width 0.3s ease;
}

/* ===========================
   Background Animations
   =========================== */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Gradient Blobs */
.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-blue-dark));
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--accent-green-dark));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-50px, 50px) scale(0.9);
    }
    75% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    opacity: 0.05;
    animation: float-shape 30s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-blue);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 20%;
    right: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-green);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: var(--primary-blue-dark);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    top: 60%;
    right: 30%;
    animation-delay: 20s;
}

@keyframes float-shape {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    50% {
        transform: rotate(180deg) translateY(-50px);
    }
}

/* Particle Canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    transition: var(--transition-base);
}

.navbar.scrolled .logo-icon {
    width: 35px;
    height: 35px;
}

.logo-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    background: linear-gradient(135deg, #1a365d 0%, #00d4ff 30%, #1e40af 70%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
    margin-left: -9px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--slate-600);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-base);
    padding: 0.5rem 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow), 0 0 30px rgba(14, 165, 233, 0.5);
    animation: nav-cta-pulse 1.5s ease-in-out infinite;
}

@keyframes nav-cta-pulse {
    0%, 100% { transform: translateY(-3px) scale(1.05); }
    50% { transform: translateY(-5px) scale(1.08); }
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta:hover .btn-glow {
    opacity: 1;
    animation: glow-pulse 1.5s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--slate-600);
    transition: var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.7));
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fade-in-up 0.6s ease-out;
}

.badge-icon {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
}

.title-line {
    display: block;
    overflow: hidden;
}

.animated-text {
    display: inline-block;
    animation: slide-up 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    animation-delay: 0.1s;
    opacity: 0;
    transform: translateY(100%);
}

.title-line:nth-child(2) .animated-text {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) .animated-text {
    animation-delay: 0.3s;
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animated-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Typewriter Effect */
.typewriter {
    color: var(--primary-blue);
    font-weight: 600;
    position: relative;
}

.typewriter::after {
    content: '|';
    position: absolute;
    right: -5px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    animation: stats-slide-up 1s ease-out 0.6s both;
}

@keyframes stats-slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.stat-item {
    animation: stat-item-entrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    animation: number-glow 2s ease-in-out infinite alternate;
}

@keyframes number-glow {
    from {
        text-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(14, 165, 233, 0.6), 0 0 30px rgba(14, 165, 233, 0.3);
    }
}

@keyframes stat-item-entrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--slate-500);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: hero-actions-slide 1s ease-out 0.8s both;
}

@keyframes hero-actions-slide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow), 0 0 40px rgba(14, 165, 233, 0.4);
    animation: button-glow 0.6s ease-in-out;
}

@keyframes button-glow {
    0%, 100% { box-shadow: var(--shadow-glow); }
    50% { box-shadow: var(--shadow-glow), 0 0 50px rgba(14, 165, 233, 0.6); }
}

.btn-secondary {
    background: transparent;
    color: var(--slate-700);
    border: 2px solid var(--slate-200);
}

.btn-secondary:hover {
    background: var(--slate-100);
    transform: translateY(-2px);
}

/* Magnetic Button Effect */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ripple Effect */
.ripple-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ripple-active {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    filter: grayscale(30%) opacity(0.8);
}

.trust-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    filter: grayscale(0%) opacity(1);
}

.more-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: white;
    border-radius: 12px;
    padding: 1rem;
    min-width: 80px;
    text-align: center;
    transition: var(--transition-base);
}

.more-platforms:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.more-count {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.more-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: float-dashboard 6s ease-in-out infinite;
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

@keyframes float-dashboard {
    0%, 100% { 
        transform: translateY(0) rotateY(0deg) rotateX(0deg); 
    }
    33% { 
        transform: translateY(-15px) rotateY(2deg) rotateX(1deg); 
    }
    66% { 
        transform: translateY(-25px) rotateY(-1deg) rotateX(-0.5deg); 
    }
}

.preview-header {
    padding: 1rem;
    background: var(--slate-100);
    border-bottom: 1px solid var(--slate-200);
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--slate-300);
}

.preview-dots span:first-child {
    background: #ef4444;
}

.preview-dots span:nth-child(2) {
    background: #eab308;
}

.preview-dots span:last-child {
    background: #22c55e;
}

.preview-content {
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.preview-card {
    background: var(--slate-50);
    padding: 1.5rem;
    border-radius: 10px;
    animation: fade-in 1s ease-out forwards;
    opacity: 0;
}

.card-1 {
    animation-delay: 0.5s;
}

.card-2 {
    animation-delay: 0.7s;
}

.card-3 {
    animation-delay: 0.9s;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

.mini-chart {
    height: 60px;
    background: linear-gradient(to right, var(--primary-blue) 0%, var(--accent-green) 100%);
    border-radius: 5px;
    opacity: 0.3;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-stars i {
    animation: star-pop 0.5s ease-out forwards;
    opacity: 0;
    transform: scale(0);
}

.rating-stars i:nth-child(1) { animation-delay: 0.1s; }
.rating-stars i:nth-child(2) { animation-delay: 0.2s; }
.rating-stars i:nth-child(3) { animation-delay: 0.3s; }
.rating-stars i:nth-child(4) { animation-delay: 0.4s; }
.rating-stars i:nth-child(5) { animation-delay: 0.5s; }

@keyframes star-pop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.progress-ring {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.progress-circle {
    animation: progress-fill 2s ease-out forwards;
    animation-delay: 1s;
}

@keyframes progress-fill {
    to {
        stroke-dashoffset: 62.8;
    }
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: 80px 0;
    background: var(--slate-50);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--slate-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Tabs */
.features-tabs {
    margin-bottom: 4rem;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--slate-600);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.tab-btn:hover {
    color: var(--primary-blue);
}

.tab-btn.active {
    color: var(--primary-blue);
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: tab-fade-in 0.5s ease-out;
}

.tab-pane.active {
    display: block;
}

@keyframes tab-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: card-shimmer 0.8s ease-in-out;
}

@keyframes card-shimmer {
    0% { transform: translateY(-15px) rotateY(5deg); }
    50% { transform: translateY(-18px) rotateY(3deg) scale(1.02); }
    100% { transform: translateY(-15px) rotateY(5deg); }
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-svg {
    width: 100%;
    height: 100%;
}

.icon-circle,
.icon-check,
.icon-rect,
.icon-dot,
.icon-hex {
    animation: draw-icon 1.5s ease-out forwards;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

@keyframes draw-icon {
    to {
        stroke-dashoffset: 0;
    }
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--slate-600);
    line-height: 1.6;
}

.feature-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-hover-content {
    transform: translateY(0);
}

.feature-hover-content ul {
    list-style: none;
}

.feature-hover-content li {
    padding: 0.25rem 0;
    color: var(--slate-600);
    font-size: var(--font-size-sm);
}

/* Comparison Slider */
.comparison-section {
    margin-top: 4rem;
    text-align: center;
}

.comparison-title {
    font-size: var(--font-size-2xl);
    color: var(--slate-900);
    margin-bottom: 2rem;
}

.comparison-slider {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    height: 200px;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.comparison-before {
    left: 0;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.comparison-after {
    right: 0;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.comparison-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
}

.comparison-before .rating-number {
    color: #dc2626;
}

.comparison-after .rating-number {
    color: #16a34a;
}

.review-count {
    font-size: var(--font-size-sm);
    opacity: 0.7;
}

.comparison-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===========================
   How It Works Section
   =========================== */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--slate-50) 0%, white 100%);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
}

.timeline-progress {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
}

.timeline-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--slate-200);
}

.timeline-line-fill {
    position: absolute;
    width: 100%;
    height: 0%;
    background: var(--gradient-primary);
    transition: height 1s ease-out;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-number {
    margin-left: auto;
}

.step-number {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    z-index: 1;
}

.step-number span {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-blue);
}

.step-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.step-progress {
    animation: step-progress-fill 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes step-progress-fill {
    to {
        stroke-dashoffset: 0;
    }
}

.step-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-content h3 {
    font-size: var(--font-size-xl);
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--slate-600);
    line-height: 1.6;
}

.step-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

/* Demo Video */
.demo-video {
    margin-top: 4rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--slate-900);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 2rem;
    color: var(--primary-blue);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(34, 197, 94, 0.3));
}

/* ===========================
   Social Proof Section
   =========================== */
.social-proof {
    padding: 80px 0;
    background: var(--slate-50);
}

/* Stats Dashboard */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.stat-value {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--slate-900);
    display: inline-block;
}

.stat-suffix {
    font-size: var(--font-size-xl);
    color: var(--primary-blue);
    display: inline-block;
    margin-left: 0.25rem;
}

.stat-label {
    color: var(--slate-600);
    margin-top: 0.5rem;
}

.stat-chart {
    margin-top: 1rem;
    height: 40px;
}

.chart-line {
    animation: draw-chart 1.5s ease-out forwards;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

@keyframes draw-chart {
    to {
        stroke-dashoffset: 0;
    }
}

.progress-bar-stat {
    height: 8px;
    background: var(--slate-200);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    animation: fill-progress 1.5s ease-out forwards;
}

@keyframes fill-progress {
    to {
        width: 94%;
    }
}

.stat-gauge {
    height: 50px;
}

.gauge-fill {
    animation: gauge-fill-animation 1.5s ease-out forwards;
}

@keyframes gauge-fill-animation {
    to {
        stroke-dashoffset: 20;
    }
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    animation: testimonial-entrance 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes testimonial-entrance {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateX(15deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05) rotateX(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(0);
    }
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: var(--font-size-lg);
    color: var(--slate-700);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-weight: 600;
    color: var(--slate-900);
}

.author-title {
    color: var(--slate-600);
    font-size: var(--font-size-sm);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    pointer-events: all;
}

.carousel-prev:hover,
.carousel-next:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 8px;
    height: 8px;
    background: var(--slate-300);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    width: 24px;
    background: var(--primary-blue);
    border-radius: 4px;
}

/* Logo Cloud */
.logo-cloud {
    overflow: hidden;
    padding: 2rem 0;
    background: white;
    border-radius: 20px;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll-logos 30s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    opacity: 0.7;
    transition: var(--transition-base);
    border-radius: 8px;
    filter: grayscale(50%);
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.more-platforms-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: white;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
    transition: var(--transition-base);
}

.more-platforms-scroll:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

/* ===========================
   Pricing Section
   =========================== */
/* ===========================
   Platform Showcase Section
   =========================== */
.platform-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, var(--slate-50) 100%);
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.showcase-item:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.showcase-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.device-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover .device-image {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.showcase-overlay h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 0.5rem;
    color: white;
}

.showcase-overlay p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Features Demo */
.features-demo {
    margin-top: 4rem;
}

.demo-title {
    font-size: var(--font-size-2xl);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--slate-900);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.demo-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.demo-card::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.6s ease;
}

.demo-card:hover::before {
    left: 100%;
}

.demo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.demo-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    animation: demo-icon-float 3s ease-in-out infinite;
}

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

.demo-card h4 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.demo-card p {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
}

/* Demo Animations */
.demo-progress {
    margin-top: 1rem;
}

.progress-bar {
    height: 8px;
    background: var(--slate-200);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

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

@keyframes progress-animation {
    0% { width: 0%; }
    50% { width: 85%; }
    100% { width: 85%; }
}

.progress-text {
    font-size: var(--font-size-sm);
    color: var(--slate-600);
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: typing-bounce 1.4s ease-in-out infinite both;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.16s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.demo-notification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--slate-100);
    border-radius: 50px;
    margin: 0 auto;
    width: fit-content;
}

.notification-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
}

.pulse {
    animation: pulse-animation 2s ease-in-out infinite;
}

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

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    color: var(--slate-600);
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    display: none;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--slate-300);
    border-radius: 30px;
    transition: var(--transition-base);
    cursor: pointer;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-base);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary-blue);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(30px);
}

.discount-badge {
    padding: 0.25rem 0.5rem;
    background: var(--accent-green);
    color: white;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 600;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--slate-200);
}

.plan-name {
    font-size: var(--font-size-xl);
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: var(--font-size-xl);
    color: var(--slate-600);
}

.amount {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--slate-900);
    margin: 0 0.25rem;
}

.period {
    color: var(--slate-600);
}

.custom-price {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--slate-900);
}

.plan-description {
    color: var(--slate-600);
    font-size: var(--font-size-sm);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features i {
    color: var(--accent-green);
}

.plan-cta {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--slate-200);
    background: transparent;
    color: var(--slate-700);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.plan-cta:hover {
    background: var(--slate-100);
    transform: translateY(-2px);
}

.plan-cta.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.plan-cta.primary:hover {
    box-shadow: var(--shadow-glow);
}

/* ROI Calculator */
.roi-calculator {
    max-width: 800px;
    margin: 4rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.calculator-title {
    font-size: var(--font-size-2xl);
    color: var(--slate-900);
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--slate-200);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
}

.input-value {
    display: inline-block;
    margin-left: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--slate-200);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: var(--slate-600);
}

.result-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

/* ===========================
   Integrations Section
   =========================== */
.integrations {
    padding: 80px 0;
    background: var(--slate-50);
    overflow: hidden;
}

.integration-network {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 4rem auto;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.center-logo {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 3s linear infinite;
}

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

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

@keyframes pulse-ring {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.integration-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-orbit 30s linear infinite;
}

.orbit-1 {
    width: 350px;
    height: 350px;
}

.orbit-2 {
    width: 500px;
    height: 500px;
    animation-direction: reverse;
    animation-duration: 40s;
}

@keyframes rotate-orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.integration-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(var(--angle)) translateX(175px) rotate(calc(-1 * var(--angle)));
    transition: transform 0.3s ease;
}

.orbit-2 .integration-item {
    transform: rotate(var(--angle)) translateX(250px) rotate(calc(-1 * var(--angle)));
}

.integration-item:hover {
    transform: rotate(var(--angle)) translateX(175px) rotate(calc(-1 * var(--angle))) scale(1.3);
    animation: integration-bounce 0.6s ease-in-out;
}

@keyframes integration-bounce {
    0%, 100% { transform: rotate(var(--angle)) translateX(175px) rotate(calc(-1 * var(--angle))) scale(1.3); }
    50% { transform: rotate(var(--angle)) translateX(185px) rotate(calc(-1 * var(--angle))) scale(1.4); }
}

.integration-icon {
    font-size: 1.5rem;
    color: var(--slate-700);
}

.integration-name {
    position: absolute;
    bottom: -25px;
    font-size: var(--font-size-xs);
    color: var(--slate-600);
    white-space: nowrap;
}

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

.connection-line {
    stroke: var(--slate-300);
    stroke-width: 1;
    stroke-dasharray: 5, 5;
    opacity: 0.3;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.integration-category {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.integration-category h3 {
    font-size: var(--font-size-lg);
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.platform-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform-tag {
    padding: 0.5rem 1rem;
    background: var(--slate-100);
    color: var(--slate-700);
    border-radius: 20px;
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
}

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

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 80px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-bg-mesh {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-mesh);
    opacity: 0.1;
    animation: rotate-mesh 30s linear infinite;
}

@keyframes rotate-mesh {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-title {
    font-size: var(--font-size-3xl);
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    color: var(--slate-400);
    margin-bottom: 3rem;
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: var(--font-size-base);
    transition: var(--transition-base);
}

.form-input::placeholder {
    color: transparent;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-blue);
}

.floating-label {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    pointer-events: none;
    transition: var(--transition-base);
}

.form-input:focus + .floating-label,
.form-input:not(:placeholder-shown) + .floating-label {
    top: -10px;
    left: 1rem;
    font-size: var(--font-size-sm);
    background: var(--slate-900);
    padding: 0 0.5rem;
    color: var(--primary-blue);
}

.cta-submit {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.button-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-submit:hover .button-bg {
    width: 300px;
    height: 300px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--slate-400);
    font-size: var(--font-size-sm);
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-features i {
    color: var(--accent-green);
}

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

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-5px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--slate-400);
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
}

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

.footer-newsletter {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-newsletter h4 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
}

.newsletter-input::placeholder {
    color: var(--slate-500);
}

.newsletter-submit {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-top {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .process-step {
        flex-direction: column !important;
    }
    
    .process-step:nth-child(even) {
        flex-direction: column !important;
    }
    
    .timeline-progress {
        left: 20px;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-network {
        transform: scale(0.6);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===========================
   Scroll Animations
   =========================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px) rotate(-2deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0) rotate(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px) rotate(2deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0) rotate(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.scroll-reveal-rotate {
    opacity: 0;
    transform: translateY(30px) rotate3d(1, 0, 0, 45deg);
    transform-origin: center bottom;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-rotate.revealed {
    opacity: 1;
    transform: translateY(0) rotate3d(1, 0, 0, 0);
}

/* Staggered animations */
.stagger-animation {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-animation.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Blur effect on scroll */
.scroll-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-blur.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* ===========================
   Utility Classes
   =========================== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform, filter;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
    filter: blur(5px);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    filter: blur(0);
}

[data-aos="flip-up"] {
    transform: perspective(1000px) rotateX(45deg);
    transform-origin: bottom;
}

[data-aos="flip-up"].aos-animate {
    transform: perspective(1000px) rotateX(0);
}

[data-aos="slide-rotate"] {
    transform: translateX(-100px) rotate(-10deg);
    opacity: 0;
}

[data-aos="slide-rotate"].aos-animate {
    transform: translateX(0) rotate(0);
    opacity: 1;
}

/* Contact Form Styles */
.contact-form-wrapper {
    margin: 2rem 0;
}

.reputation-contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.form-full-width {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.875rem;
}

.form-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--slate-800);
    color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    color: rgba(255, 255, 255, 0.9);
}

.form-checkbox {
    width: 1rem;
    height: 1rem;
    accent-color: var(--accent-green);
    cursor: pointer;
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.form-submit-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.form-disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stats .stat-item {
    text-align: center;
}

.cta-stats .stat-number {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-blue));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.cta-stats .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Form Status Messages */
.form-status {
    margin-bottom: 2rem;
}

.status-message {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    animation: slideIn 0.3s ease-out;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.status-message i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Contact Styles */
.footer-contact {
    margin: 1rem 0;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-email i {
    color: var(--accent-green);
    font-size: 1rem;
}

.contact-email a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--accent-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-stats .stat-number {
        font-size: 1.5rem;
    }
}
