:root {
    --primary: #111827;
    --secondary: #1f2937;
    --accent: #7c3aed;
    --accent-light: #8b5cf6;
    --accent-dark: #6d28d9;
    --light: #f9fafb;
    --dark: #111827;
    --gray: #6b7280;
    --gray-light: #d1d5db;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
    font-weight: 400;
}

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

/* Trust Banner */
.trust-banner {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    z-index: 999;
    margin-top: 0;
}

.trust-banner-content {
    animation: marquee-glow 3s infinite;
}

@keyframes marquee-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Mobile CTA Enhancements */
.cta-primary {
    font-size: 16px !important;
    padding: 16px 32px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4) !important;
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.cta-subtext {
    margin-top: 12px;
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
    text-align: center;
}

/* Value Props Grid */
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(124, 58, 237, 0.05);
    border-radius: var(--border-radius);
    border: 2px solid rgba(124, 58, 237, 0.1);
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary);
}

.value-text p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.4;
    margin: 0;
}

/* Enhanced Pricing Card */
.price-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.price-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    animation: pulse 1.5s infinite;
}

.price-comparison {
    margin: 20px 0;
}

.old-price {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.new-price {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.savings-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

.pricing-benefits {
    margin: 30px 0;
    text-align: left;
}

.benefit-row {
    margin-bottom: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.urgency-text {
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-align: center;
}

/* Testimonial Results */
.testimonial-results {
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: inline-block;
}

/* CTA Final Button */
.cta-final {
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase;
    animation: urgent-pulse 1.5s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes urgent-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4), 0 8px 25px rgba(124, 58, 237, 0.3);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0), 0 8px 25px rgba(124, 58, 237, 0.3);
    }
}

/* Floating CTA Animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    animation: slideUp 0.5s ease;
}

/* Critical Performance Optimizations */
.video-container iframe[data-src] {
    display: none;
}

.video-placeholder {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover {
    opacity: 0.8;
}

/* Mobile-Specific Performance Optimizations */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    input, textarea, button, .option-button, .cta-button {
        -webkit-user-select: auto;
        user-select: auto;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Prevent zoom on input focus for iOS */
    input[type="email"],
    input[type="text"],
    input[type="tel"],
    textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    /* Optimize animations for mobile performance */
    .cta-button, .video-container, .testimonial-video-container, .mobile-menu-btn {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    /* Optimize video containers for mobile */
    .video-container, .testimonial-video-container {
        contain: layout style paint;
    }
    
    /* Reduce motion for battery saving */
    @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;
        }
    }
}

/* Enhanced Mobile CTA Visibility and Touch Support */
@media (max-width: 576px) {
    .cta-primary {
        font-size: 15px !important;
        padding: 15px 28px !important;
        font-weight: 700 !important;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hero .cta-primary {
        position: static;
        width: auto;
        margin: 0;
        display: inline-flex;
    }
    
    .cta-button {
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }
}


header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links .cta-button {
    background: linear-gradient(135deg, #00BFA5, #00A693);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 191, 165, 0.25);
    font-size: 15px;
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
}

.nav-links .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 165, 0.35);
    background: linear-gradient(135deg, #00A693, #008A7B);
}

.cta-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
    font-size: 15px;
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.cta-button.highlighted {
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3), 0 6px 20px rgba(124, 58, 237, 0.35);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4), 0 6px 20px rgba(124, 58, 237, 0.35);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(124, 58, 237, 0), 0 6px 20px rgba(124, 58, 237, 0.35);
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
    padding: 8px;
    border-radius: 6px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-btn:hover {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent);
}

.mobile-menu-btn.menu-open {
    color: var(--accent);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0.03) 100%);
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.video-container {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: #000;
}

.video-container.desktop-size {
    max-width: 560px;
    aspect-ratio: 16/9;
}

.video-container.mobile-size {
    max-width: 100%;
    aspect-ratio: 9/16;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(124, 58, 237, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 8px;
}

.trust-indicators {
    display: flex;
    align-items: center;
    margin-top: 40px;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-text {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.trust-logos {
    display: flex;
    gap: 20px;
}

.trust-logo {
    height: 24px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--transition);
}

.social-proof-stats {
    display: flex;
    gap: 20px;
}

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

.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
}

/* Problem Section */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.problem-section {
    background-color: var(--light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.problem-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.problem-card.negative::before {
    background: linear-gradient(90deg, var(--error), #f97316);
}

.problem-card.positive::before {
    background: linear-gradient(90deg, var(--success), #10b981);
}

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

.problem-icon {
    font-size: 24px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.problem-card.negative .problem-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.problem-card.positive .problem-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.problem-list li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Lead Magnet Section */
.lead-magnet-section {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    padding: 60px 0;
}

.lead-magnet-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--box-shadow-lg);
    border: 3px solid #fbbf24;
}

.lead-magnet-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
}

.lead-magnet-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.lead-magnet-form {
    margin-bottom: 16px;
}

.form-row {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.form-row input {
    flex: 1;
    min-width: 280px;
    padding: 16px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    transition: var(--transition);
}

.form-row input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-row .cta-button {
    white-space: nowrap;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
}

.form-disclaimer {
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 576px) {
    .lead-magnet-card {
        padding: 30px 20px;
        margin: 0 16px;
    }
    
    .form-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-row input {
        min-width: auto;
        margin-bottom: 12px;
        min-height: 48px;
        font-size: 16px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .form-row .cta-button {
        width: 100%;
        min-height: 48px;
        font-size: 16px;
    }
    
    .popup-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .popup-form {
        gap: 12px;
    }
    
    .popup-form input {
        font-size: 16px;
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .popup-form .cta-button {
        min-height: 48px;
    }
    
    .social-proof-stats {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }
}

/* Solution Section */
.solution-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.member-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.member-role {
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 16px;
}

.member-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--box-shadow-lg);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.price {
    font-size: 52px;
    font-weight: 800;
    margin: 20px 0;
    position: relative;
}

.price-period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hours {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.testimonial-video-container {
    width: 100%;
    background: #000;
    border-radius: 0;
    overflow: hidden;
}

.testimonial-video-container.mobile-format {
    aspect-ratio: 9/16;
    max-height: 400px;
}

.testimonial-video-container iframe,
.testimonial-video-container video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.testimonial-content {
    padding: 24px;
}

.testimonial-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.testimonial-company {
    color: var(--gray);
    font-size: 14px;
}

/* Comparison Section */
.comparison-section {
    background: white;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    padding: 40px;
}

.hirecouncil-column {
    background: white;
    position: relative;
}

.hirecouncil-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light));
}

.traditional-column {
    background: #f8fafc;
}

.column-header {
    text-align: center;
    margin-bottom: 30px;
}

.column-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hirecouncil-column .column-title {
    color: var(--accent);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.comparison-list li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 12px;
    width: 22px;
    height: 22px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
}

.traditional-column .comparison-list li::before {
    content: "✗";
    color: var(--error);
    background-color: rgba(239, 68, 68, 0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    position: relative;
    line-height: 1.5;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.urgency-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fbbf24;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

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

.benefits-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.benefit-text {
    font-size: 15px;
    opacity: 0.9;
}

/* Exit Intent Popup */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-intent-popup.show {
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--box-shadow-lg);
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
    padding: 5px;
    border-radius: 4px;
    transition: var(--transition);
}

.popup-close:hover {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.popup-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary);
}

.popup-content p {
    margin-bottom: 24px;
    color: var(--gray);
    line-height: 1.6;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.popup-form input {
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    transition: var(--transition);
}

.popup-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.popup-disclaimer {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}
footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--accent-light);
}

.footer-description {
    max-width: 500px;
    margin: 0 auto 30px;
    opacity: 0.7;
    line-height: 1.6;
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
    }
    
    .trust-banner {
        top: 82px;
        font-size: 12px;
        padding: 6px 0;
    }
    
    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
        padding: 20px;
    }
    
    .value-prop {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .cta-subtext {
        font-size: 13px;
        margin-top: 8px;
    }
    
    .price-comparison .new-price {
        font-size: 42px;
    }
    
    .cta-final {
        font-size: 16px !important;
        padding: 18px 24px !important;
    }
}

@media (max-width: 576px) {
    .trust-banner {
        top: 78px;
        font-size: 11px;
    }
    
    .hero {
        padding: 180px 0 80px;
    }
    
    .value-props-grid {
        margin: 20px 0;
        padding: 16px;
    }
    
    .price-comparison .new-price {
        font-size: 36px;
    }
    
    .pricing-benefits {
        margin: 20px 0;
    }
    
    .benefit-row {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

/* Header & Navigation */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 60px;
        max-width: 100%;
    }
    
    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .cta-title {
        font-size: 34px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 16px 16px;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-links.mobile-active {
        display: flex !important;
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 10px 0;
        margin-left: 0;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    .video-container.desktop-size {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 34px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero {
        padding: 160px 0 80px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-card, .comparison-column, .pricing-card {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 42px;
    }
    
    .testimonial-video-container.mobile-format {
        max-height: 350px;
        border-radius: 12px;
    }
    
    .video-container.desktop-size {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .video-placeholder {
        border-radius: 12px;
        min-height: 250px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Additional mobile improvements */
@media (max-width: 576px) {
    .popup-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .popup-form {
        gap: 12px;
    }
    
    .popup-form input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .social-proof-stats {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }
}

/* Loading states and animations */
.video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--gray);
    z-index: 2;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(124, 58, 237, 0.1);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

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

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

.error-message {
    color: var(--error);
    font-size: 12px;
    margin-top: 4px;
    animation: shake 0.3s ease-in-out;
}

.popup-form input.invalid {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Animation states */
.problem-card,
.team-member,
.testimonial-card,
.benefit-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card.animate-in,
.team-member.animate-in,
.testimonial-card.animate-in,
.benefit-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.problem-card:nth-child(2).animate-in { transition-delay: 0.1s; }
.team-member:nth-child(2).animate-in { transition-delay: 0.1s; }
.team-member:nth-child(3).animate-in { transition-delay: 0.2s; }
.team-member:nth-child(4).animate-in { transition-delay: 0.3s; }
.team-member:nth-child(5).animate-in { transition-delay: 0.4s; }
.team-member:nth-child(6).animate-in { transition-delay: 0.5s; }
.team-member:nth-child(7).animate-in { transition-delay: 0.6s; }
.team-member:nth-child(8).animate-in { transition-delay: 0.7s; }

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
    /* Ensure container doesn't cause overflow on mobile */
    max-width: calc(100vw - 40px);
}

.chatbot-bubble {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.chatbot-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.chatbot-bubble svg {
    fill: white;
    width: 28px;
    height: 28px;
}

.chatbot-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 500px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    /* Prevent horizontal overflow on all devices */
    contain: layout style paint;
}

.chatbot-window.active {
    display: flex;
    transform: translateY(0) scale(1);
    opacity: 1;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
    animation: slideIn 0.3s ease;
}

.message.bot {
    background: #f3f4f6;
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}

.message.user {
    background: var(--accent);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

.message-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.option-button {
    background: white;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.option-button:hover {
    background: var(--accent);
    color: white;
}

.contact-form {
    padding: 16px;
    background: #f9fafb;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-submit {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: #f3f4f6;
    border-radius: 16px;
    border-bottom-left-radius: 6px;
    align-self: flex-start;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--gray);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

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

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

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Enhanced mobile responsiveness for all devices */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 20px;
        right: 20px;
        left: auto;
        position: fixed;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 70vh;
        max-height: 500px;
        min-height: 400px;
        left: 0;
        right: auto;
        bottom: 75px;
        position: absolute;
        transform: translateX(-100%) translateX(56px);
        max-width: none;
    }
    
    .chatbot-window.active {
        transform: translateX(-100%) translateX(56px) translateY(0) scale(1);
    }
    
    .chatbot-messages {
        padding: 16px;
    }
    
    .contact-form {
        padding: 12px 16px;
    }
    
    .form-group input {
        font-size: 16px;
        padding: 12px;
    }
    
    .form-submit {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .chatbot-bubble {
        width: 56px;
        height: 56px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .chatbot-bubble svg {
        width: 24px;
        height: 24px;
    }
    
    .option-button {
        padding: 10px 16px;
        font-size: 14px;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Ensure chatbot doesn't conflict with floating CTA */
    .floating-cta {
        bottom: 90px;
    }
}

/* Smaller mobile devices */
@media (max-width: 576px) {
    .chatbot-container {
        bottom: 20px;
        right: 20px;
        left: auto;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        left: 0;
        right: auto;
        height: calc(var(--vh, 1vh) * 60);
        max-height: 450px;
        min-height: 380px;
        bottom: 70px;
        transform: translateX(-100%) translateX(52px);
        max-width: none;
    }
    
    .chatbot-window.active {
        transform: translateX(-100%) translateX(52px) translateY(0) scale(1);
    }
    
    .chatbot-bubble {
        width: 52px;
        height: 52px;
    }
    
    .chatbot-bubble svg {
        width: 22px;
        height: 22px;
    }
}

/* iPhone Pro Max and similar large mobile screens (414px - 428px width) */
@media (max-width: 430px) and (min-width: 414px) {
    .chatbot-container {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        max-width: 390px;
        left: 0;
        right: auto;
        transform: translateX(-100%) translateX(52px);
    }
    
    .chatbot-window.active {
        transform: translateX(-100%) translateX(52px) translateY(0) scale(1);
    }
}

/* Standard iPhone sizes and smaller Android devices */
@media (max-width: 414px) and (min-width: 360px) {
    .chatbot-container {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        max-width: 374px;
        transform: translateX(-100%) translateX(52px);
    }
    
    .chatbot-window.active {
        transform: translateX(-100%) translateX(52px) translateY(0) scale(1);
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        max-width: 320px;
        transform: translateX(-100%) translateX(52px);
    }
    
    .chatbot-window.active {
        transform: translateX(-100%) translateX(52px) translateY(0) scale(1);
    }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .chatbot-window {
        height: calc(var(--vh, 1vh) * 75);
        max-height: 400px;
        min-height: 320px;
    }
}

