/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f5dc 0%, #ede0c8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(75,100,97,0.03)"/><circle cx="90" cy="90" r="1" fill="rgba(212,165,116,0.03)"/></svg>');
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.eyebrow {
    margin-bottom: 20px;
}

.eyebrow-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4a574;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #4B6461;
    text-shadow: 2px 2px 4px rgba(75, 100, 97, 0.1);
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #495057;
    margin-bottom: 40px;
    font-weight: 400;
}

.highlight {
    color: #4B6461;
    font-weight: 600;
}

/* Problem Solution Box */
.problem-solution-box {
    background: linear-gradient(135deg, #4B6461 0%, #5a7470 100%);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(75, 100, 97, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: boxPulse 3s ease-in-out infinite;
}

@keyframes boxPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(75, 100, 97, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(75, 100, 97, 0.4);
    }
}

.problem-side, .solution-side {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    transition: transform 0.3s ease;
}

.problem-side:hover, .solution-side:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    position: relative;
}

.problem-icon::before {
    content: '×';
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.solution-icon {
    background: linear-gradient(135deg, #4B6461 0%, #5a7470 100%);
    position: relative;
}

.solution-icon::before {
    content: '✓';
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.problem-side h4 {
    color: #dc3545;
}

.solution-side h4 {
    color: #4B6461;
}

.content p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
    color: #495057;
}

.arrow {
    font-size: 2rem;
    color: white;
    animation: arrowPulse 2s ease-in-out infinite;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow::before {
    content: '→';
    font-size: 2rem;
    font-weight: bold;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateX(10px) scale(1.1);
        opacity: 1;
    }
}

/* CTA Section */
.cta-section {
    margin-bottom: 40px;
}

.main-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fbc13f 0%, #f1b82d 100%);
    color: white;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(251, 193, 63, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 15px;
    animation: ctaPulse 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(251, 193, 63, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(251, 193, 63, 0.6);
    }
}

.main-cta-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #f1b82d 0%, #e6a826 100%);
    color: white;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(251, 193, 63, 0.6);
}

.guarantee {
    font-size: 1rem;
    color: #4B6461;
    font-weight: 600;
    margin: 0;
}

/* Social Proof */
.social-proof {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4B6461;
    line-height: 1;
    display: block;
}

.stat-text {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 5px;
}

/* Benefits Section */
.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4B6461 0%, #5a7470 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(75, 100, 97, 0.3);
}

.benefit-card:nth-child(1) .benefit-icon::before {
    content: '♥';
    color: white;
    font-size: 2rem;
}

.benefit-card:nth-child(2) .benefit-icon::before {
    content: '⚡';
    color: white;
    font-size: 2rem;
}

.benefit-card:nth-child(3) .benefit-icon::before {
    content: '◉';
    color: white;
    font-size: 2rem;
}

.benefit-card:nth-child(4) .benefit-icon::before {
    content: '◈';
    color: white;
    font-size: 2rem;
}

.benefit-card:nth-child(5) .benefit-icon::before {
    content: '⚖';
    color: white;
    font-size: 2rem;
}

.benefit-card:nth-child(6) .benefit-icon::before {
    content: '◐';
    color: white;
    font-size: 2rem;
}

.benefits-section {
    padding: 80px 0;
    background: #faf8f3;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #4B6461;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f5f5dc;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(75, 100, 97, 0.2);
    border-color: #d4a574;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4B6461;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5dc 0%, #ede0c8 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(75, 100, 97, 0.2);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
    font-style: italic;
}

.customer-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.customer-name {
    font-weight: 600;
    color: #4B6461;
    margin-bottom: 5px;
}

.customer-badge {
    font-size: 0.9rem;
    color: #6c757d;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4B6461 0%, #5a7470 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(75, 100, 97, 0.4);
    box-shadow: 0 8px 20px rgba(75, 100, 97, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4B6461;
}

.step-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5dc 0%, #faf8f3 100%);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #4B6461;
}

.countdown-container {
    margin-bottom: 30px;
}

.countdown-label {
    font-size: 1.2rem;
    color: #d4a574;
    margin-bottom: 15px;
    font-weight: 600;
}

.countdown-timer {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4B6461;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fbc13f 0%, #f1b82d 100%);
    color: white;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(251, 193, 63, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #f1b82d 0%, #e6a826 100%);
    color: white;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(251, 193, 63, 0.6);
}

.security-badges {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 25%;
    right: 25%;
    background: linear-gradient(135deg, #4B6461 0%, #5a7470 100%);
    color: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(75, 100, 97, 0.4);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    animation: stickyPulse 2s ease-in-out infinite;
}

.sticky-cta.show {
    transform: translateY(0);
    opacity: 1;
}

@keyframes stickyPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(75, 100, 97, 0.4);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(75, 100, 97, 0.6);
    }
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-text {
    font-weight: 600;
    font-size: 1rem;
}

.sticky-btn {
    background: linear-gradient(135deg, #fbc13f 0%, #f1b82d 100%);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: stickyBtnPulse 2s ease-in-out infinite;
}

@keyframes stickyBtnPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(251, 193, 63, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(251, 193, 63, 0.6);
    }
}

.sticky-btn:hover {
    background: linear-gradient(135deg, #f1b82d 0%, #e6a826 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.disclaimer {
    font-size: 0.7rem;
    color: #ccc;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sticky-cta {
        left: 20px;
        right: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .problem-solution-box {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .arrow::before {
        content: '↓';
    }
    
    .social-proof {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .countdown-timer {
        font-size: 1.8rem;
        padding: 10px 20px;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .sticky-text {
        font-size: 0.9rem;
    }
    
    .sticky-btn {
        width: 100%;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .main-cta-btn, .final-cta-btn {
        width: 100%;
        padding: 18px 30px;
    }
    
    .sticky-cta {
        left: 15px;
        right: 15px;
    }
}