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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    background: #ffffff;
    font-size: 16px;
}

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

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1e293b;
}

h1 { 
    font-size: 3.5rem; 
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 { 
    font-size: 2.5rem; 
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 { 
    font-size: 2rem; 
    font-weight: 600;
}

h4 { 
    font-size: 1.5rem; 
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

/* Enhanced Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    gap: 8px;
    min-height: 56px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: 14px;
    min-height: 64px;
}

.btn-nav {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 8px;
    min-height: 48px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    color: #2563eb;
    margin: 0;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 8px;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 12px 20px;
    border-radius: 25px;
    margin-top: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* VSL Section - Modern and Professional */
.vsl-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.vsl-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.vsl-header {
    text-align: center;
    margin-bottom: 40px;
}

.vsl-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1e293b;
    font-weight: 700;
}

.vsl-header p {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vsl-overlay:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.play-button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6);
}

.play-icon-container {
    margin-bottom: 8px;
}

.play-icon-container i {
    font-size: 24px;
    color: white;
}

.play-button span {
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-controls {
    margin-top: 30px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.progress-container {
    background: #e2e8f0;
    border-radius: 10px;
    height: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
}

.controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #475569;
}

.controls-row button {
    background: #e2e8f0;
    border: none;
    color: #475569;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.controls-row button:hover {
    background: #cbd5e1;
    color: #1e293b;
}

/* Pain Section - Clean and Professional */
.pain-section {
    background: #f8fafc;
    padding: 100px 0;
}

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

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

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.pain-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
    text-align: center;
}

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

.pain-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pain-icon i {
    font-size: 28px;
    color: white;
}

.pain-card h3 {
    margin-bottom: 15px;
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
}

.pain-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.pain-stat {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Solution Section - Clean and Professional */
.solution-section {
    padding: 100px 0;
    background: white;
}

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

.solution-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.solution-icon i {
    font-size: 32px;
    color: white;
}

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

.solution-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.solution-card li {
    color: #475569;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.solution-card li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Social Proof - Dark Theme with Better Contrast */
.social-proof {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    color: #1e293b;
    transition: transform 0.3s ease;
}

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

.stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #334155;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-badge {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author strong {
    color: #1e293b;
    font-weight: 700;
}

.testimonial-result {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.proof-stat {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
}

.proof-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 5px;
}

.proof-label {
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* Process Section */
.process-section {
    background: #f8fafc;
    padding: 100px 0;
}

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

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.process-step h3 {
    margin-bottom: 15px;
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
}

.process-step p {
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
}

.step-timeline {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Value Proposition */
.value-proposition {
    padding: 100px 0;
    background: white;
}

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

.value-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    color: white;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Guarantee Section - Modern and Trustworthy */
.guarantee-section {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

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

.guarantee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 2rem;
}

.guarantee-icon i {
    font-size: 40px;
    color: white;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.guarantee-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-conditions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.guarantee-conditions p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.guarantee-conditions i {
    color: #22c55e;
    font-size: 1.1rem;
}

/* CTA Section - Final Call to Action */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 100px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.benefits-list {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #e2e8f0;
}

.benefit-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

.urgency {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.cta-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group select option:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.form-guarantee {
    text-align: center;
    margin-top: 20px;
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* FAQ Section - Clean and Modern */
.faq-section {
    background: white;
    padding: 100px 0;
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
    border: none;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
    font-size: 1rem;
}

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

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

.faq-answer p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: #00d4ff;
    margin-bottom: 15px;
}

.footer-info p {
    color: #999;
    line-height: 1.6;
}

.footer-section h4 {
    color: #00d4ff;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

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

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .btn-nav {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .vsl-header h2 {
        font-size: 2rem;
    }
    
    .pain-grid,
    .solution-grid,
    .value-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .guarantee-conditions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Mobile video optimization */
    .video-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 10px !important;
    }
    
    .video-wrapper iframe {
        width: 100% !important;
        height: 100% !important;
        border-radius: 10px !important;
    }
    
    .hero .video-wrapper {
        margin: 2rem 0 !important;
        max-width: 90vw !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .vsl-container {
        padding: 20px;
    }
    
    .vsl-header h2 {
        font-size: 1.8rem;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .play-icon-container i {
        font-size: 20px;
    }
    
    .pain-card,
    .solution-card,
    .value-card {
        padding: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .cta-form-container {
        padding: 25px;
    }
    
    /* Extra small mobile optimizations */
    .hero .video-wrapper {
        max-width: 95vw !important;
        margin: 1.5rem 0 !important;
    }
    
    .vsl-video {
        margin: 1rem 0 !important;
    }
}

/* Enhanced Exit Popup Styles */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    border: 2px solid #e2e8f0;
}

.exit-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: #64748b;
}

.exit-popup-close:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

.popup-header {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 18px 18px 0 0;
    position: relative;
}

.popup-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.popup-header h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
    color: white;
}

.popup-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.popup-body {
    padding: 30px;
}

.popup-benefits {
    margin-bottom: 30px;
}

.popup-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.popup-benefits .benefit-item i {
    color: #10b981;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 1rem;
    min-width: 16px;
}

.popup-form-container {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.popup-form-container h3 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: #1e293b;
}

.form-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1rem;
}

.popup-form .form-group {
    margin-bottom: 20px;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.popup-form input:focus,
.popup-form select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.popup-form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 16px !important;
    font-size: 1.1rem !important;
    font-weight: 700;
}

.form-guarantee {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.form-guarantee i {
    color: #10b981;
    margin-right: 5px;
}

.form-urgency {
    text-align: center;
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-urgency i {
    margin-right: 5px;
}

.popup-footer {
    padding: 20px 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.trust-indicators {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
}

.trust-indicators i {
    color: #10b981;
    margin-right: 5px;
}

/* Popup animations */
@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.exit-popup-content {
    animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Mobile responsive for popup */
@media (max-width: 768px) {
    .exit-popup-content {
        max-width: 95%;
        margin: 10px;
    }
    
    .popup-header {
        padding: 30px 20px;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
    }
    
    .popup-body {
        padding: 20px;
    }
    
    .popup-form-container {
        padding: 20px;
    }
    
    .popup-form-container h3 {
        font-size: 1.2rem;
    }
}

/* Calendar Section Styles */
.calendar-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.calendar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    z-index: 1;
}

.calendar-section .container {
    position: relative;
    z-index: 2;
}

.calendar-header {
    text-align: center;
    margin-bottom: 50px;
}

.calendar-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.calendar-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calendar-widget-wrapper {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.calendar-widget-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
}

.calendar-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.calendar-benefits .benefit-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
}

.calendar-benefits .benefit-item i {
    color: #10b981;
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 20px;
}

.calendar-benefits .benefit-item span {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #334155;
    font-weight: 500;
}

.calendar-urgency {
    text-align: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #f59e0b;
}

.calendar-urgency p {
    margin: 0;
    color: #92400e;
    font-weight: 600;
    font-size: 1.1rem;
}

.calendar-urgency i {
    margin-right: 8px;
    color: #dc2626;
}

/* Mobile responsive for calendar section */
@media (max-width: 768px) {
    .calendar-section {
        padding: 60px 0;
    }
    
    .calendar-header h2 {
        font-size: 2rem;
    }
    
    .calendar-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .calendar-widget-wrapper {
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .calendar-widget-wrapper iframe {
        height: 500px !important;
    }
    
    .calendar-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .calendar-benefits .benefit-item {
        padding: 15px;
    }
    
    .simple-cta-form {
        padding: 20px;
    }
    
    .booking-options .btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .calendar-header h2 {
        font-size: 1.8rem;
    }
    
    .calendar-widget-wrapper iframe {
        height: 400px !important;
    }
}

/* Simple CTA Form Styles */
.simple-cta-form {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.simple-cta-form h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: #1e293b;
}

.booking-options {
    margin: 25px 0;
}

.booking-options .btn {
    margin: 10px 0;
    width: 100%;
    max-width: 280px;
}

.or-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.or-divider span {
    background: #f8fafc;
    padding: 0 15px;
    position: relative;
    color: #64748b;
    font-weight: 600;
}

.call-option p {
    margin-bottom: 15px;
    color: #64748b;
}

.call-option .btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
}

.call-option .btn-outline:hover {
    background: #2563eb;
    color: white;
}

/* Calendar Booking Widget Styles */
.calendar-booking-container {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.calendar-booking-container h3 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: #1e293b;
}

#calendar-widget {
    margin: 25px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#calendar-widget iframe {
    background: white;
}

.form-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1rem;
}