/* Base Styles */
:root {
    /* Main colors */
    --color-primary: #111827;
    --color-secondary: #ffffff;
    --color-accent-purple: #8B5CF6; /* Purple accent */
    --color-accent-blue: #3B82F6; /* Blue accent */
    --color-premium-black: #000000; /* Premium black for accents */
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    --color-error: #EF4444;
    
    /* Typography */
--font-primary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Border radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-2xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

/* Prevent horizontal scroll and white spaces */
*, *::before, *::after {
    max-width: 100%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-primary);
    line-height: 1.6;
    background-color: var(--color-gray-50);
    overflow-x: hidden;
    min-width: 320px;
    width: 100%;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 4rem;
    letter-spacing: -0.02em;
    color: var(--color-gray-900);
    font-weight: 800;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

h1 .highlight {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.premium-text {
    color: var(--color-premium-black);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-gray-600);
}

a {
    color: var(--color-accent-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-accent-purple);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    outline: none;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    min-width: 220px;
    letter-spacing: -0.01em;
    font-size: 1.1rem;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.btn:hover::after {
    transform: translateY(0);
}

.btn-primary {
    background: var(--color-accent-blue);
    color: var(--color-secondary);
    border: none;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    background: #2563eb;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background-color: var(--color-gray-50);
    color: var(--color-gray-700);
    border-color: var(--color-gray-300);
    transform: translateY(-1px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-2xl);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.75rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-content .desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

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

.logo {
    flex: 0 0 auto;
}

.sidebar-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.sidebar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}



.sidebar-toggle:hover span {
    background: var(--color-accent-blue);
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-gray-600);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.sidebar-close:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

.sidebar-nav {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.sidebar-nav a {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
    background: var(--color-gray-50);
    color: var(--color-primary);
    border-left-color: var(--color-accent-blue);
    transform: translateX(5px);
}

.sidebar-nav a.active {
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-purple));
    color: white;
    border-left-color: transparent;
    font-weight: 600;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Sidebar Language Switcher */
.sidebar-language-switcher {
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
}

.sidebar-language-switcher .language-switcher {
    position: relative;
}

.sidebar-language-switcher .language-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--color-gray-700);
    font-family: var(--font-primary);
    width: 100%;
    justify-content: space-between;
    font-weight: 500;
}

.sidebar-language-switcher .language-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--color-accent-blue);
    transform: translateY(-1px);
}

.sidebar-language-switcher .language-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 1002;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.sidebar-language-switcher .language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sidebar-language-switcher .lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--color-gray-700);
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
}

.sidebar-language-switcher .lang-option:last-child {
    border-bottom: none;
}

.sidebar-language-switcher .lang-option:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    color: var(--color-accent-blue);
    transform: translateX(3px);
}

.sidebar-language-switcher .lang-option.active {
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-purple));
    color: white;
    font-weight: 600;
}

.nav-cta {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo img {
    height: 36px;
    transition: transform var(--transition-fast);
}

.logo img:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

.desktop-nav ul li a:hover {
    color: #3b82f6;
    transform: translateY(-1px);
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.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);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.sidebar-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.sidebar-nav {
    flex: 1;
    padding: 2rem 0;
}

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav ul li {
    margin: 0;
}

.sidebar-nav ul li a {
    display: block;
    padding: 1rem 2rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav ul li a:hover {
    background: #f8fafc;
    color: #3b82f6;
    border-left-color: #3b82f6;
}

.sidebar-cta {
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
}

.sidebar-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    padding: 120px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #1e293b;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0369a1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge:hover {
    animation: pulse 2s infinite;
}

/* Client Logos */
.client-logos {
    margin: 2rem 0;
    text-align: center;
}

.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.logo-item {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.client-count {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

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

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-logo {
    height: 24px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 0.8;
}

.trust-text {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.5rem;
    background: #f3f4f6;
    border-radius: 0.25rem;
}

/* Proof Rail Styling */
.proof-rail-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.proof-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.case-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.case-kpi {
    font-size: 1.5rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: #ecfdf5;
    border-radius: 0.5rem;
    display: inline-block;
}

.case-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.case-link {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.case-link:hover {
    color: #1d4ed8;
}

/* Audio Sample Styling */
.audio-sample-section {
    text-align: center;
    margin: 2rem 0;
}

.audio-sample-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.audio-sample-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.audio-sample-btn:active {
    transform: translateY(0);
}

.audio-icon {
    font-size: 1.25rem;
}

.audio-status {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
}

.audio-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #3b82f6;
    color: white;
}

.lang-btn:hover:not(.active) {
    background: #e5e7eb;
}

/* ROI Calculator Styling */
.roi-calculator-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.roi-calculator-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.calculator-result {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.result-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 1rem;
}

.result-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.result-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Sticky CTA Mobile */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

.sticky-cta-container {
    display: flex;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.sticky-btn {
    flex: 1;
    padding: 0.875rem 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sticky-btn.primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

.sticky-btn.secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.sticky-btn:hover {
    transform: translateY(-1px);
}

.sticky-btn.primary:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.sticky-btn.secondary:hover {
    background: #f8fafc;
}

/* Show sticky CTA only on mobile */
@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
    }
    
    /* Add bottom padding to body to prevent content overlap */
    body {
        padding-bottom: 80px;
    }
}

/* Cases Page Styling */
.cases-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.cases-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.cases-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cases-hero .hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.cases-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.cases-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.case-card-full {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.case-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.case-header .case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.case-meta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.case-sector {
    color: #64748b;
    font-size: 0.9rem;
}

.case-content {
    display: grid;
    gap: 2rem;
}

.case-challenge,
.case-solution,
.case-results {
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.case-challenge {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.case-solution {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
}

.case-results {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
}

.case-challenge h4,
.case-solution h4,
.case-results h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

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

.result-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.result-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.9rem;
    color: #64748b;
}

.cases-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.cases-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cases-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .cases-hero h1 {
        font-size: 2.5rem;
    }
    
    .case-card-full {
        padding: 1.5rem;
    }
    
    .case-header {
        flex-direction: column;
        text-align: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styling */
.legal-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.legal-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.legal-hero .hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.legal-content {
    padding: 6rem 0;
    background: #f8fafc;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}

.dpa-summary {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.dpa-summary h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

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

.summary-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.summary-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.summary-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.summary-item p {
    color: #64748b;
    font-size: 0.95rem;
}

.dpa-details {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.dpa-details h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.dpa-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.dpa-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.dpa-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.dpa-section p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.dpa-section ul {
    list-style: none;
    padding: 0;
}

.dpa-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.6;
}

.dpa-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
}

.contact-info {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

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

.contact-info a {
    color: #3b82f6;
    text-decoration: underline;
}

.legal-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.legal-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-cta .cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.5rem;
    }
    
    .dpa-summary,
    .dpa-details {
        padding: 2rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-cta .cta-content h2 {
        font-size: 2rem;
    }
}

/* Video Compression Placeholder */
.video-optimization {
    /* Future: MP4 compression ≤5-8MB with poster */
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
    position: relative;
}

.hero-content h1 {
    margin-bottom: var(--spacing-lg);
}

.hero-content .subheadline {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-xl);
    color: #64748b;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-demos {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.phone-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.iphone-mockup {
    width: 280px;
    height: 580px;
    background: #000;
    border-radius: 45px;
    padding: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.iphone-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
}

.ai-enhanced {
    border: 2px solid #3b82f6;
    box-shadow: 0 25px 80px rgba(59, 130, 246, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.ai-enhanced:hover {
    box-shadow: 0 35px 100px rgba(59, 130, 246, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.3);
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 37px;
    overflow: hidden;
    position: relative;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 4px;
    font-size: 14px;
}

.call-screen {
    padding: 60px 30px 40px;
    text-align: center;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.caller-number {
    color: white;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 8px;
}

.caller-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 40px;
}

.call-options {
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
}

.option-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    padding: 15px 20px;
    color: white;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.call-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.decline-call, .accept-call {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.decline-call {
    background: #ff3b30;
    color: white;
}

.accept-call {
    background: #34c759;
    color: white;
}

.decline-call:hover, .accept-call:hover {
    transform: scale(1.1);
}

/* AI Enhanced Styles */
.ai-active {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.ai-badge {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.ai-status {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.ai-message {
    color: #3b82f6;
    font-size: 14px;
    font-style: italic;
    line-height: 1.4;
}

.ai-handling {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 200px;
}

.ai-handling:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.demo-points {
    text-align: center;
    max-width: 280px;
}

.demo-points h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.demo-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.demo-points li {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    text-align: left;
}

/* CTA Sections Styling */
.solution-cta, .features-cta {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem 0;
}

.solution-cta h3, .features-cta h3 {
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.solution-cta .cta-button, .features-cta .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.solution-cta .cta-button:hover, .features-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Mobile: Hide problematic sections */
@media (max-width: 768px) {
    .hero {
        display: none;
    }
    
    .phone-demos {
        display: none;
    }
}

.phone-interface {
    width: 100%;
    max-width: 380px;
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transform: rotate(-2deg);
}

.phone-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 32px;
    pointer-events: none;
}

.phone-interface:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.05);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.phone-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.phone-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.phone-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.phone-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.call-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
    background: rgba(118, 75, 162, 0.2);
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.call-info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.call-info h3 {
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.call-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.call-actions {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.call-button {
    padding: 1rem 1.5rem;
    border-radius: 20px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    min-width: 140px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.call-button.answer {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.call-button.answer:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.call-button.decline {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.call-button.decline:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4);
}

/* Phone Mockup Styles */
.phone-mockup {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
}

.phone-screen {
    background: white;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 8px solid #1a1a1a;
    position: relative;
}

.call-interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
}

.caller-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    width: 100%;
    padding: var(--spacing-md);
    background-color: var(--color-gray-50);
    border-radius: var(--border-radius-lg);
}

.caller-info .avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.caller-details {
    flex: 1;
    text-align: left;
}

.caller-details h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-900);
}

.caller-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

.call-actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    width: 100%;
}

.answer-btn, .decline-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.answer-btn {
    background-color: #34c759;
    color: white;
}

.decline-btn {
    background-color: #ff3b30;
    color: white;
}

.answer-btn:hover, .decline-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Transition Section */
.transition-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    border-top: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
}

.transition-content {
    max-width: 800px;
    margin: 0 auto;
}

.transition-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.transition-description {
    font-size: 1.2rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

.hero-section h1 {
    margin-bottom: var(--spacing-md);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    max-width: 90%;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    align-items: center;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 8px 25px -8px rgba(59, 130, 246, 0.5);
}

.cta-button.primary::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;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px -8px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

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

.cta-button.primary:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

.cta-button.secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);
    position: relative;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #3b82f6;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button.secondary:hover {
    color: white;
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

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

.cta-button.secondary:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

/* Auto Calls Section */
.auto-calls-section {
    padding: 120px 0;
    background-color: var(--color-secondary);
}

.auto-calls-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.auto-calls-section h2 {
    text-align: center;
    grid-column: 1 / -1;
    margin-bottom: var(--spacing-lg);
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-xl);
    max-width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.key-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.key-feature {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.key-feature .feature-icon {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    color: var(--color-secondary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.key-feature h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--color-gray-900);
    font-size: 1.2rem;
}

.key-feature p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

.advanced-interface {
    max-width: 380px;
    margin-left: auto;
}

.confirmation-message {
    text-align: center;
    padding: var(--spacing-md) 0;
}

.confirmation-icon {
    font-size: 3rem;
    color: #34c759;
    margin-bottom: var(--spacing-md);
}

.confirmation-message h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray-900);
}

.confirmation-message p {
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.confirmation-details {
    background-color: var(--color-gray-50);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--color-gray-200);
}

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

.detail-label {
    color: var(--color-gray-600);
    font-weight: 500;
}

.detail-value {
    color: var(--color-gray-900);
    font-weight: 500;
}

.confirmation-actions {
    margin-top: var(--spacing-md);
    text-align: center;
}

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
}

/* Solution Section */
.solution-section {
    padding: 30px 0 60px 0;
    text-align: center;
    background-color: #f8fafc;
}

.solution-section h2 {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.solution-description {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.2rem;
}

.scarcity-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: var(--spacing-md);
}

/* Trust Section */
.trust-section {
    padding: 30px 0 30px 0;
    background-color: var(--color-gray-light);
    text-align: center;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.partner-logo {
    height: 40px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    opacity: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-accent {
    font-weight: bold;
    color: #1e40af;
}

.testimonial {
    padding: var(--spacing-xl);
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: transform var(--transition-normal);
}

.highlight-accent {
    font-weight: 600;
    color: #2563EB;
}

.testimonial blockquote {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
    margin: 1.5rem 0;
    color: #1f2937;
}

.testimonial-author strong {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.testimonial-author span {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6B7280;
}

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

.premium-testimonial {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.premium-testimonial:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.testimonial-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse-badge 2s infinite;
    z-index: 10;
}

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

.testimonial-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-md);
    display: block;
}

.testimonial-cta {
    display: inline-block;
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    color: var(--color-secondary);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.premium-cta {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    color: white;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    border: none;
}

.testimonial-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.premium-cta:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.testimonial blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.highlight-text {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-style: normal;
}

.money-highlight {
    color: #10b981;
    font-weight: 700;
    font-style: normal;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.success-highlight {
    color: #8b5cf6;
    font-weight: 700;
    font-style: normal;
    background: rgba(139, 92, 246, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.satisfaction-highlight {
    color: #f59e0b;
    font-weight: 700;
    font-style: normal;
    background: rgba(245, 158, 11, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

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

.testimonial-stats {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent-purple);
    display: inline-block;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-info {
    text-align: left;
}

.stats {
    margin-bottom: var(--spacing-sm);
}

.stat-item {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
}

.badge i {
    color: var(--color-accent);
/* Features Section */
.features-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.feature-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-purple), var(--color-accent-blue), transparent);
    margin: var(--spacing-lg) 0;
    border-radius: 1px;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-left: 4px solid var(--color-accent-purple);
    padding: var(--spacing-md);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin: var(--spacing-md) 0;
}   margin: 4rem 0;
}

.features-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin: 0 auto var(--spacing-xl);
    width: 100%;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.8s ease;
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    display: block;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
}

.feature p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Automation Section */
.automation-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-secondary);
    text-align: center;
    margin: 4rem 0;
    border-top: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
}

.automation-section h2 {
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin: 0 auto var(--spacing-md);
    width: 100%;
    text-align: center;
}

.automation-description {
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.2rem;
    color: var(--color-gray-600);
}

.automation-visual {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.phone-conversation {
    flex: 1;
    background-color: var(--color-gray-50);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
    max-width: 500px;
}

.conversation-header {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    color: var(--color-secondary);
    padding: var(--spacing-md);
    font-weight: 600;
    text-align: center;
}

.message-container {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-height: 400px;
    overflow-y: auto;
}

.message {
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    max-width: 80%;
}

.ai-message {
    background-color: var(--color-gray-100);
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.client-message {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    color: var(--color-secondary);
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.message p {
    margin: 0;
    color: inherit;
}

.automation-benefits {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: flex-start;
    text-align: left;
    padding: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background-color: var(--color-gray-50);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-gray-200);
    width: 100%;
}

.benefit-icon {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    color: var(--color-secondary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Cases Section */
.cases-section {
    padding: 120px 0;
    text-align: center;
    background-color: var(--color-gray-50);
}

.cases-section h2 {
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin: 0 auto var(--spacing-xl);
    width: 100%;
}

.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.premium-case {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    overflow: visible;
    transition: all 0.3s ease;
}

.premium-case::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-case:hover::before {
    opacity: 1;
}

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

.middle-case {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue)) !important;
    color: white;
}

.middle-case .case-icon {
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: none !important;
}

.middle-case h3 {
    color: white !important;
}

.middle-case .case-detail {
    color: rgba(255, 255, 255, 0.9) !important;
}

.middle-case .result-text {
    color: white !important;
}

.middle-case .result-number {
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: none !important;
}

.middle-case .case-result {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.case-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse-badge 2s infinite;
    z-index: 10;
}

.case-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid rgba(167, 139, 250, 0.4);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #374151;
    line-height: 1;
}

.result-text {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin-top: 0.25rem;
}

.case-detail {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
    text-align: center;
    margin: 0.5rem 0 1rem 0;
}

.case-study {
    padding: var(--spacing-lg);
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
}

.case-study h3 {
    color: #1f2937;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem 0;
    text-align: center;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gray-300);
}

.case-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: #6b7280;
}

.case-graph {
    margin-top: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.case-graph img {
    max-width: 100%;
    height: auto;
    transition: var(--transition-normal);
}

.case-study:hover .case-graph img {
    transform: scale(1.05);
}

.big-claim {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-top: var(--spacing-xl);
    text-align: center;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    border-top: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

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

.pricing-slider-container {
    position: relative;
    overflow: hidden;
}

.pricing-slider {
    display: flex;
    transition: transform 0.3s ease;
    gap: var(--spacing-xl);
}

.slider-controls {
    display: none;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.slider-btn {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    color: var(--color-secondary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.slider-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
}

.dot:hover {
    background-color: var(--color-gray-400);
}

.dot.active:hover {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
}

.pricing-section h2 {
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin: 0 auto var(--spacing-xl);
    width: 100%;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-gray-600);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.pricing-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.02);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

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

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
    margin-right: 0.25rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0.25rem;
}

.custom-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.plan-description {
    font-size: 0.95rem;
    color: #64748b;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

.pricing-features i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1rem;
    width: 16px;
    text-align: center;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-action {
    text-align: center;
    margin-top: auto;
}

/* Pricing trust */
.pricing-trust {
    text-align: center;
    margin: 40px 0 20px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Popular pricing card styling */
.pricing-card-popular {
    position: relative;
    border: 2px solid #3b82f6;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .pricing-card-popular {
        transform: scale(1);
    }
}

/* Demo Page Styles */
.demo-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f0f9ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.demo-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.demo-hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

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

.demo-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.demo-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.demo-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-proof-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.proof-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-weight: 500;
}

.proof-point i {
    color: #10b981;
    font-size: 1.1rem;
}

.demo-form-container {
    display: flex;
    justify-content: center;
}

.demo-form-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.15), 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
    width: 100%;
    max-width: 500px;
}

.demo-form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.2), transparent);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.demo-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

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

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.demo-submit-btn {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
}

.demo-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.demo-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Demo Testimonials */
.demo-testimonials {
    padding: 80px 0;
    background: white;
}

.demo-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.author-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.author-info h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.875rem;
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.success-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-body ul {
    color: #475569;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .demo-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .demo-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .demo-hero-text h1 {
        font-size: 2.25rem;
    }
    
    .demo-subtitle {
        font-size: 1.125rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .demo-form-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-testimonials h2 {
        font-size: 2rem;
    }
}

.pricing-guarantee {
    text-align: center;
    margin-top: 3rem;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 12px;
    border: 1px solid #10b981;
    color: #065f46;
    font-weight: 600;
    font-size: 0.95rem;
}

.guarantee-badge i {
    color: #10b981;
    font-size: 1.25rem;
}

.scarcity-note {
    margin-top: var(--spacing-lg);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-secondary);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    border-radius: var(--border-radius-lg);
    display: inline-block;
    margin: var(--spacing-lg) auto 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.scarcity-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    margin: var(--spacing-xl) 0;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: var(--color-gray-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.play-button i {
    color: var(--color-secondary);
    font-size: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: var(--color-gray-50);
    margin: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin: 0 auto var(--spacing-xl);
    width: 100%;
    text-align: center;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--border-radius-lg);
    background-color: var(--color-secondary);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: var(--spacing-lg);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: var(--color-gray-800);
}

.toggle {
    font-size: 1.2rem;
    transition: var(--transition-fast);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-gray-100);
    color: var(--color-accent-blue);
}

.faq-item:hover .toggle {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    color: var(--color-secondary);
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    display: none;
    color: var(--color-gray-600);
    border-top: 1px solid var(--color-gray-100);
}

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

.faq-item.active .faq-answer {
    display: block;
}

/* Final Close Section */
.final-close-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--color-gray-50), var(--color-gray-100));
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.final-close-section h2 {
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.final-close-section p {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.2rem;
}

.final-close-section .scarcity {
    color: var(--color-gray-800);
    font-weight: bold;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    background-color: var(--color-gray-50);
    display: inline-block;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
}

.final-close-section .trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.final-close-section .trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-gray-700);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    background-color: var(--color-secondary);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-normal);
}

.final-close-section .trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.final-close-section .trust-badge i {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--color-gray-100);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.trust-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-gray-700);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--color-accent-blue);
    font-size: 1rem;
}

.trust-divider {
    color: var(--color-gray-400);
    font-weight: 300;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .trust-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .trust-divider {
        display: none;
    }
    
    .trust-item {
        justify-content: center;
    }
}

/* Footer */
footer {
    background-color: var(--color-gray-900);
    color: var(--color-gray-300);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--color-gray-800);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    height: 40px;
    margin-bottom: var(--spacing-md);
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: var(--color-gray-400);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

.link-group h4 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: var(--spacing-sm);
}

.link-group ul li a {
    color: var(--color-gray-400);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.link-group ul li a:hover {
    color: var(--color-accent-purple);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

/* Gold accent glow effect */
.gold-accent {
    position: relative;
}

.gold-accent:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

/* Desktop Optimization */
@media (min-width: 1200px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        max-width: 1000px;
        margin: 0 auto 2rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.3rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        line-height: 1.6;
    }
    
    .hero-visual {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .phone-demos {
        justify-content: center;
        gap: 4rem;
    }
    
    .phone-demo {
        max-width: 350px;
    }
    
    .roi-calculator-section {
        max-width: 900px;
        margin: 3rem auto;
    }
    
    .calculator-form {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto 2rem;
    }
    
    .hero-stats {
        gap: 4rem;
        margin: 3rem 0;
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .client-logos {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .trust-badges {
        max-width: 800px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .audio-sample-section {
        max-width: 600px;
        margin: 2rem auto;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    /* Pricing Section Tablet */
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: var(--spacing-xl);
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .comparison {
        flex-direction: column;
        align-items: center;
    }
    
    .before, .after {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    header {
        padding: 0.75rem 0;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    header .container {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
        gap: 1rem;
        max-width: 100%;
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-height: 44px;
    }
    
    .logo {
        font-size: 1.375rem;
        font-weight: 700;
    }
    
    nav {
        display: none;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.25rem;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        padding: 0.875rem 0.5rem;
        font-size: 0.95rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    nav ul li a:hover {
        background: rgba(99, 102, 241, 0.1);
        color: var(--color-accent-purple);
    }
    
    .nav-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
        border-radius: 10px;
        font-weight: 600;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
    }
    

    
    .cta-header {
        margin: 0;
    }
    
    .cta-header .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-height: 44px;
        border-radius: 8px;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .hero-section {
        padding: 100px 0 80px;
        margin-top: var(--spacing-lg);
        min-height: 70vh;
    }
    
    .features-section {
        padding: 80px 0;
    }
    
    .pricing-section {
        padding: 80px 0;
    }
    
    .auto-calls-section,
    .solution-section,
    .cases-section,
    .faq-section,
    .final-close-section {
        padding: 80px 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
        border-radius: 20px;
        font-weight: 500;
    }
    
    .hero-section .container {
        gap: var(--spacing-lg);
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: var(--color-gray-900) !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        font-weight: 700;
    }
    
    .hero-content .subheadline {
        font-size: 1.1rem;
        margin: 1.5rem 0;
        line-height: 1.6;
    }
    
    .hero-stats {
        gap: 2rem;
        margin: 2.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2.5rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        min-height: 56px;
        border-radius: 14px;
        font-weight: 600;
    }
    
    .btn, .cta-button {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
        touch-action: manipulation;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .phone-interface {
        max-width: 300px;
    }
    
    .auto-calls-section .container {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .auto-calls-section .section-content {
        order: 1;
    }
    
    .auto-calls-section .section-visual {
        order: 2;
    }
    
    .section-content {
        text-align: center;
    }
    
    .key-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .key-feature {
        text-align: center;
        align-items: center;
    }
    
    .key-feature .feature-icon {
        margin: 0 auto var(--spacing-sm);
        display: flex;
        align-self: center;
    }
    
    .section-visual {
        display: flex;
        justify-content: center;
    }
    
    .advanced-interface {
        max-width: 350px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 auto 2rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
        margin: 0 0.5rem;
        border-radius: 16px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: 0;
        margin: 0 0.25rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .pricing-header h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .amount {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }
    
    .pricing-features {
        margin: 1rem 0;
    }
    
    .pricing-features li {
        padding: 0.375rem 0;
        font-size: 0.9rem;
    }
    
    .trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-purple), var(--color-accent-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.trust-item:hover::before {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .trust-items {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        margin: 1.5rem 0;
    }
    
    .trust-item {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
    
    .pricing-guarantee {
        margin-top: 2rem;
    }
    
    .guarantee-badge {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
    
    .pricing-slider .pricing-card:first-child {
        margin-left: var(--spacing-sm);
    }
    
    .pricing-slider .pricing-card:last-child {
        margin-right: var(--spacing-lg);
    }
    
    .slider-controls {
        display: none;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .case-studies {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .final-close-section .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    /* Show mobile menu toggle, hide desktop nav */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .cta-header {
        display: none !important;
    }
    
    /* Mobile layout improvements */
    .hero-section {
        padding: 100px 0 80px;
        min-height: 85vh;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-badge {
        margin-bottom: 2.5rem;
        padding: 0.75rem 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        gap: 2rem;
        margin: 2.5rem 0;
        padding: 0 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta {
        gap: 1rem;
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .cta-button {
         padding: 1rem 2rem;
         font-size: 1rem;
         min-width: 200px;
     }
 }

/* Platform Proof in Solution Section */
.platform-proof {
    margin: 3rem 0;
    text-align: center;
}

.proof-text {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-proof .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.platform-proof .partner-logo {
    height: 32px;
    opacity: 0.7;
    transition: var(--transition-fast);
    filter: grayscale(100%);
}

.platform-proof .partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .platform-proof .logos {
        gap: 1.5rem;
    }
    
    .platform-proof .partner-logo {
        height: 28px;
    }
}

/* Visual Transition Section */
.visual-transition-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.transition-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.problem-side, .solution-side {
    flex: 1;
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.problem-side {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #fca5a5;
}

.solution-side {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 2px solid #86efac;
}

.problem-side h3, .solution-side h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.problem-side h3 {
    color: #dc2626;
}

.solution-side h3 {
    color: #16a34a;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-negative, .stat-positive {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
}

.stat-negative {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.stat-positive {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.stat-icon {
    font-size: 1.25rem;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.cta-transition {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-primary-100);
    margin-top: 0.5rem;
}

.cta-transition h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.cta-transition p {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
}

/* Problem Blocks Desktop Styling */
.problem-blocks {
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-block {
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.problem-block .icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 0.25rem;
}

.problem-block .feature-highlight {
    flex: 1;
}

.problem-block h3 {
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.problem-block p {
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .visual-transition-section {
        display: block !important;
        padding: 2rem 0;
    }
    
    .transition-visual {
        flex-direction: column;
        gap: 2rem;
    }
    
    .vs-divider {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .problem-side, .solution-side {
        padding: 1.5rem;
    }
    
    .cta-transition {
        padding: 2rem 1.5rem;
    }
    
    .cta-transition h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .visual-transition-section {
        display: block !important;
        padding: 1.5rem 0;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .transition-visual {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .problem-side, .solution-side {
        padding: 1rem;
        margin: 0;
    }
    
    .vs-divider {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
        margin: 1rem auto;
    }
    
    .visual-stats {
        gap: 0.75rem;
    }
    
    .stat-negative, .stat-positive {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .cta-transition {
        padding: 1.5rem 1rem;
    }
    
    .cta-transition h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 390px) {
    .visual-transition-section {
        display: block !important;
        padding: 0.75rem 0;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 999;
        background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%) !important;
    }
    
    .transition-visual {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .problem-side, .solution-side {
        padding: 0.75rem;
        margin: 0;
        font-size: 0.85rem;
    }
    
    .vs-divider {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
        margin: 0.75rem auto;
    }
}

@media (max-width: 576px) {
    .visual-transition-section {
        display: block !important;
        padding: 1rem 0;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 1;
    }
    
    .container {
        padding: 0 0.875rem;
    }
    
    header .container {
        padding: 0.5rem 0.875rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .mobile-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .sidebar-header {
        padding: 1rem 1.5rem;
    }
    
    .sidebar-nav ul li a {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .sidebar-cta {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.875rem;
        line-height: 1.25;
        margin-bottom: var(--spacing-lg);
    }
    
    h2 {
        font-size: 1.625rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-lg);
    }
    
    h3 {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-content .subheadline {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-xl);
        max-width: 100%;
        padding: 0 0.25rem;
        text-align: center;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: var(--spacing-xl);
        padding: 0 0.5rem;
    }
    
    .problem-blocks {
        gap: var(--spacing-xl);
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
    
    .problem-block {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }
    
    .problem-block .icon {
        flex-shrink: 0;
        font-size: 1.5rem;
        color: var(--color-primary);
        margin-top: 0.25rem;
    }
    
    .problem-block .feature-highlight {
        flex: 1;
    }
    
    .problem-block h3 {
        margin-bottom: var(--spacing-md);
        line-height: 1.4;
    }
    
    .problem-block p {
        margin-bottom: 0;
        line-height: 1.5;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 0.5rem;
    }
    
    .btn {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
        font-weight: 600;
        padding: 1rem 1.5rem;
        border-radius: 12px;
    }
    
    .cta-button {
        min-height: 52px;
        font-size: 1rem;
        font-weight: 600;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        width: 100%;
        max-width: none;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0;
    }
    
    .pricing-card {
        padding: 1rem 0.875rem;
        margin: 0 0.25rem;
        border-radius: 12px;
    }
    
    .pricing-header h3 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .amount {
        font-size: 1.625rem;
        margin-bottom: 0.5rem;
    }
    
    .pricing-features li {
        padding: 0.25rem 0;
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-section {
        padding: 5rem 0 4rem;
        margin-top: 1rem;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 1.875rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
        text-align: center;
        color: var(--color-text-primary);
        font-weight: 700;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
        display: inline-block;
        text-align: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin: 2rem 0;
        padding: 0 0.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.25rem 0.875rem;
        margin: 0 0.25rem;
        border-radius: 12px;
    }
    
    .feature h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .feature p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .case-studies {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .transition-section {
        padding: 60px 0;
    }
    
    .transition-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .transition-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* How It Works Page Styles */
.how-it-works-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.how-it-works-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.how-it-works-hero .hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.how-it-works-hero .hero-text-centered {
    margin-bottom: 50px;
    max-width: 800px;
}

.how-it-works-hero .hero-text-centered h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.how-it-works-hero .hero-subtitle {
    font-size: 1.4rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
}

/* Video Wrapper Styling */
.video-wrapper {
    text-align: center;
    margin: 0 auto;
}

.demo-video {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.demo-video:hover {
    transform: scale(1.02);
}

.video-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
}

.hero-video-centered {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    background: #000;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-cta-centered {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Steps Section */
.steps-section {
    padding: 120px 0;
    background: white;
}

.steps-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.steps-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.steps-section .section-subtitle {
    font-size: 1.3rem;
    color: var(--color-gray-600);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 0 auto;
    max-width: 1100px;
}

.step-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

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

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.step-content p {
    color: var(--color-gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
    max-width: 280px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.trust-banner {
    display: flex;
    justify-content: center;
}

.trust-banner h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--color-gray-700);
    font-weight: 600;
}

.trust-items {
    display: flex;
    gap: 50px;
    align-items: center;
    color: var(--color-gray-600);
    font-weight: 500;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-items span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-items i {
    color: var(--color-accent-blue);
}

/* Calendly Section */
.calendly-section {
    padding: 60px 0;
    background: white;
}

.calendly-embed-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mini FAQ Section */
.mini-faq-section {
    padding: 60px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-purple), var(--color-accent-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.faq-item p {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .faq-item {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .faq-item h4 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
}

/* Responsive Design for How It Works */
@media (max-width: 768px) {
    .how-it-works-hero {
        padding: 100px 0 80px;
        min-height: 90vh;
    }
    
    .how-it-works-hero .container {
        padding: 0 1.5rem;
    }
    
    .how-it-works-hero .hero-text-centered h1 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    
    .how-it-works-hero .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .hero-video-centered {
        margin: 40px auto;
        max-width: 90%;
    }
    
    .video-container {
        border-radius: 16px;
        transform: none;
    }
    
    .hero-cta-centered {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }
    
    .steps-section {
        padding: 80px 0;
    }
    
    .steps-section .container {
        padding: 0 1.5rem;
    }
    
    .steps-section h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .steps-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .step-item {
        padding: 35px 25px;
        margin: 0 auto;
        max-width: 380px;
        border-radius: 16px;
    }
    
    .step-icon {
        width: 75px;
        height: 75px;
        font-size: 1.9rem;
        margin-bottom: 20px;
    }
    
    .step-content h3 {
        font-size: 1.35rem;
        margin-bottom: 15px;
    }
    
    .step-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-section .container {
        padding: 0 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 25px;
    }
    
    header .container {
        padding: 1rem 1.5rem;
    }
    
    .logo img {
        width: 140px;
        height: 47px;
    }
    
    .sidebar {
        width: 100%;
        right: -100%;
    }
    
    .sidebar.active {
        right: 0;
    }
    
    .sidebar-header {
        padding: 1.5rem;
    }
    
    .sidebar-nav {
        padding: 1.5rem;
    }
    
    .sidebar-nav a {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-hero {
        padding: 80px 0 60px;
        min-height: 85vh;
    }
    
    .how-it-works-hero .container {
        padding: 0 1rem;
    }
    
    .how-it-works-hero .hero-text-centered h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .how-it-works-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .hero-video-centered {
        margin: 35px auto;
        max-width: 95%;
    }
    
    .hero-cta-centered {
        gap: 15px;
        margin-top: 35px;
    }
    
    .steps-section {
        padding: 60px 0;
    }
    
    .steps-section .container {
        padding: 0 1rem;
    }
    
    .steps-section h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .steps-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    
    .steps-grid {
        gap: 25px;
        padding: 0 0.5rem;
    }
    
    .step-item {
        padding: 25px 20px;
        max-width: 320px;
        border-radius: 14px;
    }
    
    .step-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 18px;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section .container {
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .cta-buttons {
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .trust-items {
        gap: 20px;
    }
    
    header .container {
        padding: 0.8rem 1rem;
    }
}

/* TidyCal Container Styles */
.tidycal-container {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.tidycal-container h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tidycal-embed {
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .tidycal-container {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .tidycal-container h4 {
        font-size: 1.1rem;
    }
    
    .tidycal-embed {
        min-height: 500px;
    }
}

/* Removed old conflicting Enterprise styles - using new consistent branding below */

/* Global CSS Variables and Base Styles for Enterprise */

/* Enterprise Page Specific Styles */
.enterprise-benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.enterprise-benefits h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.enterprise-process {
    padding: 80px 0;
    background: white;
}

.enterprise-process h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #667eea;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-right: 25px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

.enterprise-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.enterprise-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.enterprise-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.typeform-container {
    margin-top: 20px;
    min-height: 500px;
}

.form-intro {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .enterprise-benefits h2,
    .enterprise-process h2,
    .enterprise-cta h2 {
        font-size: 2rem;
    }
}
/* Removed conflicting root and body styles */

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

.site-header,
.site-footer {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.site-footer {
    border-top: 1px solid var(--border);
    border-bottom: none;
}

.site-header .container,
.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-weight: 700;
    text-decoration: none;
    color: var(--ink);
}

.nav a {
    margin-left: 16px;
    text-decoration: none;
    color: var(--ink);
}

.nav a[href$="enterprise.html"] {
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 12px 16px;
    font-weight: 600;
}

.btn-sm {
    padding: 8px 12px;
    font-size: .9rem;
}

/* Removed conflicting btn-primary definition */

.btn-ghost {
    background: #fff;
    border-color: var(--border);
    color: var(--ink);
}

.btn-block {
    width: 100%;
}





/* Sidebar & Navigation Styles */
:root {
    --sidebar-width: 280px;
}

/* Removed conflicting body styles */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: var(--brand);
    border: none;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--brand2);
    transform: scale(1.05);
}

.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);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -var(--sidebar-width);
    width: var(--sidebar-width);
    height: 100vh;
    background: white;
    border-right: 1px solid var(--border);
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.sidebar.open {
    left: 0;
}

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

.sidebar .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar .logo:hover {
    color: var(--brand);
}

.sidebar .logo span {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ink-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.sidebar-close:hover {
    background: var(--bg);
    color: var(--ink);
}

.sidebar-menu {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover {
    background: var(--bg);
    border-left-color: var(--brand);
    color: var(--brand);
}

.sidebar-menu a.btn {
    margin: 1rem 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: none;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Main Header */
.main-header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-left: 0;
    transition: margin-left 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5rem;
}

.main-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.2s ease;
}

.main-logo:hover {
    transform: scale(1.02);
}

.main-logo span {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 980px) {
    .page.enterprise .hero {
        grid-template-columns: 1fr;
    }
    
    body.sidebar-open {
        padding-left: 0;
    }
    
    .main-header .container {
        padding-left: 5rem;
    }
}

/* Image optimization placeholder */
.image-optimization {
    /* Future: WebP/AVIF with loading='lazy' */
}
}