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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --primary-lighter: #60a5fa;
    --secondary-color: #1d4ed8;
    --accent-blue: #0ea5e9;
    --text-dark: #0f172a;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --border-color: #cbd5e1;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #0ea5e9 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-blue: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #1e40af 100%);
    --shadow-sm: 0 1px 2px 0 rgba(37, 99, 235, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(37, 99, 235, 0.15), 0 2px 4px -1px rgba(37, 99, 235, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(37, 99, 235, 0.2), 0 4px 6px -2px rgba(37, 99, 235, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(37, 99, 235, 0.25), 0 10px 10px -5px rgba(37, 99, 235, 0.2);
    --glow-blue: 0 0 20px rgba(37, 99, 235, 0.3), 0 0 40px rgba(37, 99, 235, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: 0.75rem 0;
    min-height: 70px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    flex-shrink: 0;
    z-index: 1;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.navbar-logo {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.navbar-brand a:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand a:hover {
    transform: none;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-menu a:hover {
    color: var(--primary-color);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

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

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite 2s;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.clients-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Animated Popup Clients Badge */
/* Floating Social Card Container */
.floating-social-card {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    top: auto !important;
    left: auto !important;
    z-index: 10000 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: flex-end !important;
}

/* Social Icons Container */
.social-icons {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

/* Social Icon Links */
.social-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(37, 99, 235, 0.2) !important;
    box-shadow: var(--shadow-md), 0 0 15px rgba(37, 99, 235, 0.15) !important;
    color: var(--text-dark) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    animation: floatIcon 3s ease-in-out infinite !important;
    pointer-events: all !important;
    cursor: pointer !important;
}

.social-icon:nth-child(1) {
    animation-delay: 0s !important;
}

.social-icon:nth-child(2) {
    animation-delay: 0.5s !important;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(37, 99, 235, 0.3) !important;
}

.whatsapp-icon {
    color: #25D366 !important;
}

.whatsapp-icon:hover {
    background: rgba(37, 211, 102, 0.1) !important;
    border-color: rgba(37, 211, 102, 0.3) !important;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(37, 211, 102, 0.3) !important;
}

.telegram-icon {
    color: #0088cc !important;
}

.telegram-icon:hover {
    background: rgba(0, 136, 204, 0.1) !important;
    border-color: rgba(0, 136, 204, 0.3) !important;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(0, 136, 204, 0.3) !important;
}

.social-icon i,
.social-icon svg {
    font-size: 1.5rem !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
}

/* Clients Badge */
body .clients-badge-popup,
.clients-badge-popup {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.2) !important;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(37, 99, 235, 0.2) !important;
    font-size: 0.8rem !important;
    color: var(--text-dark) !important;
    z-index: 1 !important;
    pointer-events: none;
    white-space: nowrap;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
    float: none !important;
    clear: none !important;
    opacity: 1 !important;
}

.clients-badge-popup i {
    font-size: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.clients-badge-popup .clients-count {
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients-badge-popup .clients-text {
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.2px;
    font-size: 0.75rem;
}

.clients-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.clients-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.clients-count {
    font-weight: 700;
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients-text {
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-mockup {
    position: relative;
    padding: 0.2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    box-shadow: var(--shadow-xl), var(--glow-blue);
    border: 1px solid rgba(37, 99, 235, 0.2);
    animation: float 3s ease-in-out infinite;
    aspect-ratio: 16/10;
}

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

.mockup-screen {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mockup-screen:hover .play-button-overlay {
    opacity: 1;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    pointer-events: all;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button:active {
    transform: scale(0.95);
}

.play-button svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    z-index: 1;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--bg-white);
}

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

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--glow-blue);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md), 0 0 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: var(--shadow-lg), var(--glow-blue);
}

.feature-card:hover .feature-icon::before {
    animation: shine 0.5s ease;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    background: var(--bg-light);
}

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

.step-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

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

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(37, 99, 235, 0.3);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    background: var(--bg-white);
}

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

.tab-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

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

.pricing-grid.active {
    display: grid !important;
    /* Instant display - no transitions, no opacity changes */
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.2s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--glow-blue);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(37, 99, 235, 0.2);
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-xl), var(--glow-blue);
}

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

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

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-light);
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Why Choose */
.why-choose {
    background: var(--bg-light);
}

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

.benefit-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ Section */
/* Demo Section */
.demo {
    background: var(--bg-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    z-index: 0;
}

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

.demo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.demo-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.demo-card:hover::before {
    transform: scaleX(1);
}

.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
}

.demo-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.demo-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    flex-shrink: 0;
}

.demo-icon.reseller {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

.demo-icon i {
    font-size: 1.5rem;
    color: white;
}

.demo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.demo-credentials {
    margin-bottom: 2rem;
}

.credential-item {
    margin-bottom: 1.25rem;
}

.credential-item:last-child {
    margin-bottom: 0;
}

.credential-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.875rem;
}

.credential-label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.credential-value-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8fafc;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.credential-value-wrapper:hover {
    border-color: var(--primary-color);
    background: #f1f5f9;
}

.credential-value {
    flex: 1;
    font-family: 'SF Mono', 'Monaco', 'Cascadia Code', 'Roboto Mono', 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    word-break: break-all;
    line-height: 1.5;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 36px;
    height: 36px;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn i {
    font-size: 0.95rem;
}

.copy-btn.copied {
    background: var(--success-color);
}

.copy-btn.copied i::before {
    content: "\f26b"; /* check icon */
}

.btn-demo-access {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    border: none;
}

.btn-demo-access:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-demo-access i {
    font-size: 1.1rem;
}

.demo-note {
    margin-top: 3rem;
    padding: 1.25rem 1.5rem;
    background: #fef3c7;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.demo-note i {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.demo-note p {
    margin: 0;
    color: #92400e;
    font-size: 0.95rem;
    line-height: 1.6;
}

.demo-note strong {
    color: #78350f;
}

@media (max-width: 768px) {
    .demo {
        padding: 3rem 0;
    }
    
    .demo-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .demo-card {
        padding: 1.75rem;
    }
    
    .demo-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .credential-value-wrapper {
        flex-wrap: wrap;
    }
    
    .credential-value {
        width: 100%;
        font-size: 0.85rem;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
}

.faq {
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 99, 235, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: all 0.2s ease;
}

.testimonial-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 99, 235, 0.2);
    border-left-width: 6px;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: var(--gradient-blue);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-light);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

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

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

.newsletter-form button {
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .navbar-logo {
        height: 45px;
        max-width: 200px;
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .navbar-menu.active {
        transform: translateX(0);
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .features-grid,
    .steps-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .clients-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
        font-size: 1rem;
    }

    .clients-badge i {
        font-size: 1.3rem;
    }

    .clients-count {
        font-size: 1.2rem;
    }

    .clients-text {
        font-size: 0.95rem;
    }

    .floating-social-card {
        bottom: 20px !important;
        right: 20px !important;
        gap: 0.75rem !important;
    }

    .social-icon {
        width: 45px !important;
        height: 45px !important;
    }

    .social-icon i,
    .social-icon svg {
        font-size: 1.3rem !important;
        width: 1.3rem !important;
        height: 1.3rem !important;
    }

    .clients-badge-popup {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        gap: 0.32rem;
    }
    
    .clients-badge-popup i {
        font-size: 0.88rem;
    }
    
    .clients-badge-popup .clients-count {
        font-size: 0.8rem;
    }
    
    .clients-badge-popup .clients-text {
        font-size: 0.65rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional Attention-Grabbing Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 99, 235, 0.5);
    }
}

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

/* Animated gradient background for buttons */
.btn-primary {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

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

/* Pulse animation for CTA button */
.cta .btn-primary {
    animation: glow-pulse 2s ease-in-out infinite, gradient-shift 3s ease infinite;
}

/* Hover effects with more impact */
.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--glow-blue);
}

/* Feature cards with staggered entrance */
.features-grid .feature-card:nth-child(1) { animation-delay: 0s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.05s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.1s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.15s; }
.features-grid .feature-card:nth-child(5) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(6) { animation-delay: 0.25s; }
.features-grid .feature-card:nth-child(7) { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(8) { animation-delay: 0.35s; }
.features-grid .feature-card:nth-child(9) { animation-delay: 0.4s; }
.features-grid .feature-card:nth-child(10) { animation-delay: 0.45s; }
.features-grid .feature-card:nth-child(11) { animation-delay: 0.5s; }
.features-grid .feature-card:nth-child(12) { animation-delay: 0.55s; }
.features-grid .feature-card:nth-child(13) { animation-delay: 0.6s; }
.features-grid .feature-card:nth-child(14) { animation-delay: 0.65s; }
.features-grid .feature-card:nth-child(15) { animation-delay: 0.7s; }
.features-grid .feature-card:nth-child(16) { animation-delay: 0.75s; }
.features-grid .feature-card:nth-child(17) { animation-delay: 0.8s; }
.features-grid .feature-card:nth-child(18) { animation-delay: 0.85s; }

/* Badge animation */
.badge {
    animation: bounce 2s ease-in-out infinite;
}

/* Step number animation */
.step-number {
    animation: scaleIn 0.5s ease-out;
    display: inline-block;
}

.step-card:hover .step-number {
    animation: bounce 0.6s ease;
}

/* Pricing card featured glow - only on hover, not initial load */
.pricing-card.featured:hover {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* Hero title animation */
.hero-title {
    animation: fadeInUp 0.5s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 0.5s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    animation: fadeInUp 0.5s ease-out 0.4s;
    animation-fill-mode: both;
}

/* Loading Animation - Faster */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Faster scaleIn for pricing */
@keyframes scaleInFast {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-card {
    animation: fadeInUp 0.3s ease-out;
}

.step-card {
    animation: scaleIn 0.3s ease-out;
}

.benefit-card {
    animation: fadeInUp 0.3s ease-out;
}

.testimonial-card {
    animation: fadeInUp 0.3s ease-out;
}

.pricing-card {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: none !important; /* Remove all transitions for instant display */
    animation: none !important; /* Remove all animations */
}

/* Show pricing cards immediately when in active grid - NO ANIMATION */
.pricing-grid.active .pricing-card {
    opacity: 1 !important;
    transform: scale(1) !important;
    animation: none !important;
    transition: none !important;
}

/* Tech Specs Section */
.tech-specs {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 80px 0;
}

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

.spec-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.2s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.spec-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spec-card ul {
    list-style: none;
    padding: 0;
}

.spec-card li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.2s ease;
}

.spec-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.spec-card li:hover {
    color: var(--primary-color);
    padding-left: 2rem;
}

.spec-card li:last-child {
    border-bottom: none;
}

/* Active Navbar Link */
.navbar-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

