/* 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;
}

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

/* 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 */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    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;
}

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.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px; /* Fixed height for consistency */
}

.logo {
    flex: 0 0 auto;
    width: 140px;
    display: flex;
    align-items: center;
}

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

.sidebar-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    background: transparent;
    border: none;
    z-index: 1002;
}

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

.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: 0.5rem;
}

.sidebar-nav a {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.sidebar-nav a:hover {
    background: var(--color-gray-50);
    color: var(--color-primary);
    transform: translateX(4px);
}

.sidebar-nav a.active {
    background: var(--color-gray-100);
    color: var(--color-accent-blue);
    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;
}

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

/* 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: #e2e8f0;
    color: #475569;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.lang-btn:hover:not(.active) {
    background: #cbd5e1;
    color: #1e293b;
}

/* 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);
}

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

/* 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;
}

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

.trust-strip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: #e5edff;
    color: #1f2933;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.4;
}

.reviews-compact {
    margin-top: 8px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.review-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 18px 20px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: #0f172a;
}

.review-author small {
    display: block;
    margin-top: 2px;
    font-weight: 400;
    font-size: 0.8rem;
    color: #64748b;
}

.review-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .trust-section {
        padding: 24px 0 24px 0;
    }

    .review-grid {
        gap: 16px;
    }

    .review-card {
        padding: 16px 18px;
    }
}

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

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

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

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

.reviews-compact .review-author img,
.full-review-card .author-img {
    width: 100%;
    height: auto;
    max-height: 260px;
    display: block;
    object-fit: cover;
}

@media (max-width: 640px) {
    .reviews-compact .review-author img,
    .full-review-card .author-img {
        max-height: 220px;
        border-radius: 16px;
    }
}

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

/* 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;
    }
}

/* 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-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;
}

/* 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);
}

/* 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;
    }
    
    .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;
    }
    
    .audio-sample-section {
        max-width: 600px;
        margin: 2rem auto;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@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;
    }
    
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    header {
        padding: 0.75rem 0;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    header .container {
        flex-wrap: wrap;
        padding: 0.5rem 1.25rem;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.375rem;
        font-weight: 700;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    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;
    }
    
    .cta-header {
        margin-left: auto;
    }
    
    .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;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
}

@media (max-width: 900px) {
    /* Show mobile menu toggle, hide desktop nav */
    .sidebar-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-nav,
    .header-auth {
        display: none;
    }
    
    .cta-header {
        display: none;
    }
    
    /* 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;
     }
 }

@media (max-width: 576px) {
    .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;
    }
    
    .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;
    }
    
    .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;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .transition-section {
        padding: 60px 0;
    }
    
    .transition-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .transition-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Enterprise Page Specific Styles */

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

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

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
