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

/* Rubik Font Family */
.rubik-font {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6,
.hero-title, .hero-subtitle,
.step-title, .option-text strong,
.btn, .nav-link, .brand-name,
label, input, textarea, select {
    font-family: "Rubik", sans-serif !important;
}

body {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
}

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

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

/* Modern SaaS Color Variables */
:root {
    --primary-navy: #0A1647;
    --accent-violet: #6D5DFC;
    --accent-violet-light: #8B7CF8;
    --accent-violet-dark: #5A4FCF;
    --success-green: #16a34a;
    --warning-red: #dc2626;
    --text-primary: #0A1647;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-subtle: #f1f5f9;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --border-light: #e2e8f0;
    --border-subtle: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 50px rgba(109, 93, 252, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-violet-light) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(109, 93, 252, 0.05) 0%, rgba(139, 124, 248, 0.05) 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

h1 { 
    font-size: 3.75rem; 
    font-weight: 800;
    line-height: 1.1;
}
h2 { 
    font-size: 2.25rem; 
    font-weight: 700;
}
h3 { 
    font-size: 1.875rem; 
    font-weight: 600;
}
h4 { 
    font-size: 1.5rem; 
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    p { font-size: 1rem; }
}

/* Modern SaaS Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), 0 0 20px rgba(109, 93, 252, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-violet-dark) 0%, var(--accent-violet) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(109, 93, 252, 0.35);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--accent-violet);
    border: 2px solid var(--accent-violet);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--accent-violet);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    border-radius: 16px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
    border-radius: 8px;
}

/* Modern Navigation */
.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.nav-logo h2 {
    color: var(--primary-navy);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.nav-cta {
    margin-left: 1.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-gray-700);
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Modern Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e293b 100%);
    color: white;
    padding: 160px 0 120px;
    text-align: center;
}

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

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: #cbd5e1;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.8;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
}

.trust-indicators i {
    color: var(--success-green);
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 100px;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}





/* Modern Benefits Section */
.benefits {
    padding: 120px 0;
    background: var(--bg-light);
}

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

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

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

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-violet), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(109, 93, 252, 0.15);
}

.benefit-card:hover::before {
    opacity: 1;
}

.blue-theme {
    border-top: 4px solid var(--accent-violet);
}

.green-theme {
    border-top: 4px solid var(--success-green);
}

.purple-theme {
    border-top: 4px solid #8b5cf6;
}

.orange-theme {
    border-top: 4px solid #f59e0b;
}

/* New Benefit Themes */
.revenue-theme {
    border-top: 4px solid #059669;
}

.savings-theme {
    border-top: 4px solid #dc2626;
}

.language-theme {
    border-top: 4px solid var(--accent-violet);
}

.efficiency-theme {
    border-top: 4px solid #0891b2;
}

.speed-theme {
    border-top: 4px solid #ea580c;
}

.scale-theme {
    border-top: 4px solid #7c3aed;
}

.natural-theme {
    border-top: 4px solid #0d9488;
}

.confirmation-theme {
    border-top: 4px solid #16a34a;
}

.dashboard-theme {
    border-top: 4px solid #2563eb;
}

.professional-theme {
    border-top: 4px solid #374151;
}

.infrastructure-theme {
    border-top: 4px solid #6366f1;
}

.roi-theme {
    border-top: 4px solid #059669;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.blue-theme .benefit-icon {
    background: linear-gradient(135deg, var(--accent-violet), #5b4bfc);
}

.green-theme .benefit-icon {
    background: linear-gradient(135deg, var(--success-green), #22c55e);
}

.purple-theme .benefit-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.orange-theme .benefit-icon {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* New Icon Gradients */
.revenue-theme .benefit-icon {
    background: linear-gradient(135deg, #059669, #10b981);
}

.savings-theme .benefit-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.language-theme .benefit-icon {
    background: linear-gradient(135deg, var(--accent-violet), #8b7cf8);
}

.efficiency-theme .benefit-icon {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.speed-theme .benefit-icon {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.scale-theme .benefit-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.natural-theme .benefit-icon {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.confirmation-theme .benefit-icon {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.dashboard-theme .benefit-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.professional-theme .benefit-icon {
    background: linear-gradient(135deg, #374151, #4b5563);
}

.infrastructure-theme .benefit-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.roi-theme .benefit-icon {
    background: linear-gradient(135deg, #059669, #10b981);
}

.benefit-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.benefit-card p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
    flex-grow: 1;
}

.benefit-feature {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-violet);
    background: rgba(109, 93, 252, 0.08);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(109, 93, 252, 0.15);
    margin-top: auto;
}

/* Modern Live Demo Section */
.live-demo {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2754 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.live-demo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(109, 93, 252, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

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

.demo-content .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.demo-content .section-description {
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.demo-phone {
    margin: 3.5rem 0;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-violet), #5b4bfc);
    padding: 2rem 3.5rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(109, 93, 252, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.phone-number::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;
}

.phone-number:hover::before {
    left: 100%;
}

.phone-number:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(109, 93, 252, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

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

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

.demo-actions {
    margin-top: 2.5rem;
}

.demo-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .phone-number {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
}

/* Modern How It Works */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--accent-violet);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-navy), #1e293b);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.step h3 {
    margin-bottom: 1.5rem;
    font-size: 1.625rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.125rem;
}

/* Modern Form Styles */
.lead-capture {
    padding: 140px 0 120px;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

/* Mobile-first improvements */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .form-container {
        padding: 1rem 0.75rem;
        border-radius: 12px;
        margin: 0 0.25rem;
        box-shadow: var(--shadow-lg);
        border: 2px solid rgba(109, 93, 252, 0.2);
    }

    .form-header h1 {
        font-size: 1.5rem;
        line-height: 1.1;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .step-header h3 {
        font-size: 1.125rem;
    }

    .option-card {
        padding: 12px;
    }

    .option-content {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .option-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.25rem !important;
        margin-right: 12px !important;
        flex-shrink: 0;
    }

    .channel-card {
        min-width: 70px;
        padding: 10px 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    .slider-container {
        padding: 16px;
    }

    .btn {
        padding: 12px 20px !important;
        min-height: 44px;
        font-size: 0.95rem !important;
    }
}
.lead-capture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(109, 93, 252, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 124, 248, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 32px;
    box-shadow: var(--shadow-xl), var(--shadow-glow), 0 0 0 4px rgba(109, 93, 252, 0.12);
    border: 3px solid rgba(109, 93, 252, 0.25);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h1 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 2.75rem;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-violet) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-header h2 {
    margin-bottom: 1rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    margin-bottom: 2.5rem;
    color: var(--primary-navy);
    font-weight: 700;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 20px 24px;
    border: 3px solid rgba(109, 93, 252, 0.2);
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm), 0 0 0 2px rgba(109, 93, 252, 0.08);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-violet);
    box-shadow: 0 0 0 6px rgba(109, 93, 252, 0.25), 0 8px 24px rgba(109, 93, 252, 0.15);
    transform: translateY(-2px);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background: var(--bg-gray-50);
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.form-navigation {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .lead-capture {
        padding: 120px 0 80px;
    }

    .form-container {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .form-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-step h3 {
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }
}

/* Modern Offer Banner */
.offer-banner {
    background: linear-gradient(135deg, var(--accent-violet), #5b4bfc);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.offer-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.75rem;
}

.offer-content p {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 0.5rem;
}

.offer-deadline {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.75rem;
    color: #e9e7ff;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray-500);
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-gray-100);
    color: var(--text-gray-700);
}

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

.demo-audio {
    width: 100%;
    margin: 1.5rem 0;
}

.audio-disclaimer {
    font-size: 0.875rem;
    color: var(--text-gray-600);
    margin-bottom: 1.5rem;
}

.quick-demo-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.quick-email {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-gray-200);
    border-radius: 8px;
    font-size: 1rem;
}

.quick-email:focus {
    outline: none;
    border-color: var(--primary-blue);
}

@media (max-width: 768px) {
    .quick-demo-form {
        flex-direction: column;
    }
}

/* Sticky Demo */
.sticky-demo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    max-width: 350px;
    z-index: 1500;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.sticky-demo.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.sticky-text {
    flex: 1;
}

.sticky-text strong {
    display: block;
    color: var(--text-gray-900);
    font-size: 0.875rem;
}

.sticky-text span {
    color: var(--text-gray-600);
    font-size: 0.75rem;
}

.sticky-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: var(--text-gray-500);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .sticky-demo {
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .sticky-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .sticky-cta {
        width: 100%;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slider Styles */
.slider-container {
    margin: 16px 0;
}

.call-length-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--bg-light);
    outline: none;
    opacity: 0.8;
    transition: opacity 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.call-length-slider:hover {
    opacity: 1;
}

.call-length-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-violet);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(109, 93, 252, 0.3);
}

.call-length-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-violet);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 8px rgba(109, 93, 252, 0.3);
}

.slider-display {
    text-align: center;
    margin: 12px 0 8px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Setup Note Styles */
.setup-note {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 16px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--accent-violet);
}

.note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.setup-note span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Enhanced Form Visibility */
.form-group label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(10, 22, 71, 0.1);
}

.section-label {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 1px 2px rgba(10, 22, 71, 0.1);
    padding: 8px 0;
}

.option-card {
    border: 4px solid rgba(109, 93, 252, 0.3) !important;
    padding: 32px !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(109, 93, 252, 0.15), 0 0 0 2px rgba(109, 93, 252, 0.08) !important;
    margin-bottom: 20px !important;
    position: relative;
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.8) 100%);
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-violet), rgba(109, 93, 252, 0.3), var(--accent-violet));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-card:hover::before {
    opacity: 1;
}

.option-card:hover {
    border-color: var(--accent-violet) !important;
    box-shadow: 0 8px 32px rgba(109, 93, 252, 0.2), 0 0 0 4px rgba(109, 93, 252, 0.15) !important;
    transform: translateY(-3px) !important;
}

.option-card input {
    display: none;
}

.option-card input:checked + .option-content {
    background: rgba(109, 93, 252, 0.1);
    border-radius: 12px;
    position: relative;
}

.option-card input:checked + .option-content::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 12px;
    background: var(--accent-violet);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.option-card {
    cursor: pointer;
    user-select: none;
}

.option-card:hover .option-content {
    background: rgba(109, 93, 252, 0.05);
}

.option-icon {
    font-size: 2rem !important;
    width: 64px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(109, 93, 252, 0.15), rgba(109, 93, 252, 0.05)) !important;
    border-radius: 50% !important;
    margin-right: 24px !important;
    border: 2px solid rgba(109, 93, 252, 0.2) !important;
    box-shadow: 0 4px 12px rgba(109, 93, 252, 0.1) !important;
    transition: all 0.3s ease !important;
}

.option-card:hover .option-icon {
    background: linear-gradient(135deg, rgba(109, 93, 252, 0.25), rgba(109, 93, 252, 0.1)) !important;
    border-color: var(--accent-violet) !important;
    box-shadow: 0 6px 20px rgba(109, 93, 252, 0.2) !important;
    transform: scale(1.05) !important;
}

.option-text strong {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: var(--primary-navy) !important;
}

.channel-card {
    border: 3px solid rgba(109, 93, 252, 0.25) !important;
    padding: 20px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(109, 93, 252, 0.1) !important;
}

.channel-card {
    cursor: pointer;
    user-select: none;
}

.channel-card input {
    display: none;
}

.channel-card input:checked + .channel-content {
    background: rgba(109, 93, 252, 0.1);
    border-radius: 8px;
    position: relative;
}

.channel-card input:checked + .channel-content::after {
    content: '✓';
    position: absolute;
    top: 4px;
    right: 8px;
    background: var(--accent-violet);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.channel-card:hover {
    border-color: var(--accent-violet) !important;
    box-shadow: 0 6px 20px rgba(109, 93, 252, 0.15) !important;
    transform: translateY(-2px) !important;
}

.channel-card:hover .channel-content {
    background: rgba(109, 93, 252, 0.05);
}

.btn {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 18px 32px !important;
    border-radius: 16px !important;
    border: 3px solid transparent !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}

.btn-primary {
    border-color: var(--accent-violet) !important;
    box-shadow: 0 6px 20px rgba(109, 93, 252, 0.3) !important;
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(109, 93, 252, 0.4) !important;
    transform: translateY(-2px) !important;
}

.btn-secondary {
    border-color: rgba(109, 93, 252, 0.3) !important;
}

.form-navigation {
    margin-top: 40px !important;
    padding: 24px 0 !important;
    border-top: 2px solid rgba(109, 93, 252, 0.1) !important;
}

.form-navigation .btn {
    min-width: 140px !important;
    margin: 0 8px !important;
}

/* Enhanced Visual Design Elements */
.progress-circle {
    background: linear-gradient(135deg, var(--accent-violet), rgba(109, 93, 252, 0.8));
    box-shadow: 0 4px 16px rgba(109, 93, 252, 0.3);
    border: 3px solid white;
    position: relative;
}

.progress-step.active .progress-circle {
    box-shadow: 0 6px 24px rgba(109, 93, 252, 0.4), 0 0 0 4px rgba(109, 93, 252, 0.2);
    transform: scale(1.1);
}

.step-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.step-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-violet), transparent);
    border-radius: 2px;
}

.step-header h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-violet));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 2rem;
}

.option-text {
    line-height: 1.5;
}

.option-text strong {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--primary-navy) !important;
    margin-bottom: 4px !important;
    display: block !important;
}

.option-text span {
    color: var(--text-secondary) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
}

.channel-content {
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.channel-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.channel-content span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.slider-container {
    background: rgba(109, 93, 252, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    border: 2px solid rgba(109, 93, 252, 0.1);
}

.call-length-slider {
    background: linear-gradient(90deg, rgba(109, 93, 252, 0.2), rgba(109, 93, 252, 0.05));
}

.slider-display {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(109, 93, 252, 0.1);
    border: 2px solid rgba(109, 93, 252, 0.1);
}

.setup-note {
    background: linear-gradient(135deg, rgba(109, 93, 252, 0.05), rgba(248, 250, 252, 0.8));
    border: 2px solid rgba(109, 93, 252, 0.15);
    border-left: 4px solid var(--accent-violet);
    box-shadow: 0 4px 12px rgba(109, 93, 252, 0.08);
}

.form-row .form-group input,
.form-row .form-group textarea {
    background: linear-gradient(135deg, var(--bg-white), rgba(248, 250, 252, 0.8));
}

/* General scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.modal-header h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.modal-body {
    padding: 0 24px 24px;
}

.modal-body p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.audio-player {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.phone-link {
    color: var(--accent-violet);
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    text-decoration: underline;
}

.modal-actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.modal-cta {
    min-width: 150px;
}

/* Thank You Modal Styles */
.thank-you-modal .modal-content {
    max-width: 600px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success-green), #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.thank-you-modal h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-weight: 700;
}

.thank-you-modal .modal-body > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.thank-you-next-steps {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    text-align: left;
}

.thank-you-next-steps h4 {
    color: var(--primary-navy);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.next-step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.next-step-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

.step-text strong {
    display: block;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1rem;
}

.step-text span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.thank-you-modal .modal-actions {
    gap: 16px;
    margin-top: 32px;
}

.thank-you-modal .btn {
    flex: 1;
    max-width: 200px;
}

@media (max-width: 768px) {
    .thank-you-modal .modal-actions {
        flex-direction: column;
    }

    .thank-you-modal .btn {
        max-width: none;
        width: 100%;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .thank-you-modal h3 {
        font-size: 1.75rem;
    }
}

.audio-player audio {
    width: 100%;
    margin-bottom: 12px;
}

.audio-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.demo-cta-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 120px 0;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(109, 93, 252, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(139, 124, 248, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.dashboard-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.dashboard-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    background: var(--bg-white);
    padding: 12px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), var(--shadow-glow);
}

.dashboard-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    transition: all 0.4s ease;
}

.dashboard-image:hover img {
    transform: scale(1.01);
}

.dashboard-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dashboard-feature {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.feature-stat {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-violet);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.dashboard-feature p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .dashboard-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dashboard-features {
        grid-template-columns: repeat(3, 1fr);
        flex-direction: row;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .dashboard-preview {
        padding: 60px 0;
    }

    .dashboard-features {
        flex-direction: column;
        gap: 24px;
    }

    .dashboard-feature {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

/* Enhanced Form Styles */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
    background: var(--accent-violet);
    color: white;
    border-color: var(--accent-violet);
}

.progress-step.active span {
    color: var(--accent-violet);
    font-weight: 600;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--bg-white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.progress-step span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: var(--border-light);
    margin: 0 20px;
}

.step-header {
    text-align: center;
    margin-bottom: 32px;
}

.step-header h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.step-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.full-width {
    width: 100%;
}

.styled-select {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.styled-select:focus {
    border-color: var(--accent-violet);
    outline: none;
    box-shadow: 0 0 0 3px rgba(109, 93, 252, 0.1);
}

.section-label {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
    display: block;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.option-card {
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-white);
    position: relative;
    display: block;
}

.option-card:hover {
    border-color: var(--accent-violet);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.option-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-card input[type="checkbox"]:checked + .option-content {
    background: rgba(109, 93, 252, 0.05);
}

.option-card input[type="checkbox"]:checked + .option-content .option-icon {
    background: var(--accent-violet);
}

.option-content {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s ease;
}

.option-text {
    flex: 1;
}

.option-text strong {
    display: block;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 4px;
}

.option-text span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.channel-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.channel-card {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-white);
    position: relative;
    display: block;
    min-width: 100px;
    text-align: center;
}

.channel-card:hover {
    border-color: var(--accent-violet);
    background: rgba(109, 93, 252, 0.05);
}

.channel-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.channel-card input[type="checkbox"]:checked {
    + .channel-content {
        color: var(--accent-violet);
    }
}

.channel-card input[type="checkbox"]:checked + .channel-content .channel-icon {
    background: var(--accent-violet);
    color: white;
}

.channel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.channel-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.channel-content span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-violet), #8b7cf8);
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(109, 93, 252, 0.3);
    min-width: 200px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(109, 93, 252, 0.4);
}

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

    .form-progress {
        margin-bottom: 32px;
    }

    .progress-line {
        width: 40px;
        margin: 0 12px;
    }

    .option-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .option-card {
        padding: 16px;
    }

    .channel-options {
        justify-content: center;
    }

    .channel-card {
        min-width: 80px;
        padding: 10px 16px;
    }

    .submit-btn {
        width: 100%;
        font-size: 16px;
        padding: 14px 24px;
    }
}



/* Interactive Tools Section */
.interactive-tools {
    padding: 120px 0;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
    clear: both;
    z-index: 1;
}

.interactive-tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(109, 93, 252, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(139, 124, 248, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tool-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(109, 93, 252, 0.1);
    border: 1px solid rgba(109, 93, 252, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(109, 93, 252, 0.15);
}

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

.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.tool-header h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tool-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Feature Comparison Matrix */
.comparison-matrix {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(109, 93, 252, 0.1);
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.matrix-table {
    overflow-x: auto;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: var(--bg-white);
    position: relative;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--primary-navy);
    position: sticky;
    top: 0;
}

.feature-col {
    min-width: 200px;
}

.dialio-col {
    background: rgba(109, 93, 252, 0.05);
    color: var(--accent-violet);
    font-weight: 600;
}

.competitor-col {
    background: rgba(0, 0, 0, 0.02);
}

.feature-name {
    font-weight: 600;
    color: var(--primary-navy);
}

.dialio-check {
    color: var(--success-green);
    font-weight: 600;
    background: rgba(22, 163, 74, 0.05);
}

.competitor-check {
    color: var(--success-green);
    font-weight: 600;
}

.competitor-cross {
    color: #ef4444;
    font-weight: 600;
}

.competitor-partial {
    color: #f59e0b;
    font-weight: 600;
}

.matrix-summary {
    margin-top: 2rem;
}

.summary-card {
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-light));
    padding: 2rem;
    border-radius: 16px;
    color: white;
}

.summary-card h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.advantage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .advantage-list {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

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

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-violet);
}

.faq-category-title i {
    color: var(--accent-violet);
    font-size: 1.25rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-gray-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-navy);
    flex-grow: 1;
    line-height: 1.4;
}

.faq-question i {
    color: var(--accent-violet);
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-light));
    border-radius: 20px;
    color: white;
}

.faq-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.faq-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-actions .btn {
    min-width: 180px;
}

.faq-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.faq-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-category-title {
        font-size: 1.25rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-actions {
        flex-direction: column;
        align-items: center;
    }

    .faq-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 1024px) {
    .advantage-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .interactive-tools {
        padding: 80px 0;
    }

    .tool-card {
        padding: 1.5rem;
    }

    .tool-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}