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

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

/* Header */
.header {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: bold;
}

.logo img {
    width: 40px;
    height: 40px;
}

.header-right {
    font-size: 1.1rem;
    font-weight: bold;
}

/* Hero Section (Original Style) */
.hero {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../images/bg/hero_image_white_couple_freedom-min.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Hero Form (Original Style) */
.hero-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: #333;
}

.form-container h3 {
    color: #0078d4;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-container p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.exit-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #0078d4;
}

.btn-submit {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40,167,69,0.3);
}

/* Selling vs Exit Section */
.selling-vs-exit {
    padding: 80px 0;
/*    background: white;*/
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.selling-vs-exit h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Cost Comparison Chart */
.comparison-chart {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.chart-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chart-caption {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #28a745;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    margin: 3rem 0;
}

.comparison-column {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.selling {
    border-left: 5px solid #dc3545;
}

.exit {
    border-left: 5px solid #28a745;
}

.comparison-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.selling h3 {
    color: #dc3545;
}

.exit h3 {
    color: #28a745;
}

.stat-highlight {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
}

.selling .stat-highlight {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.exit .stat-highlight {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.big-stat {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.comparison-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.cost-breakdown {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
}

.selling .cost-breakdown {
    background: #fff5f5;
    border: 2px solid #dc3545;
}

.exit .cost-breakdown {
    background: #f0fff4;
    border: 2px solid #28a745;
}

.cost-breakdown h4 {
    margin-bottom: 0.5rem;
}

.cost-bad {
    color: #dc3545;
    font-size: 1.5rem;
}

.cost-good {
    color: #28a745;
    font-size: 1.5rem;
}

.failure-note {
    color: #dc3545;
    font-weight: bold;
    font-size: 0.9rem;
}

.success-note {
    color: #28a745;
    font-weight: bold;
    font-size: 0.9rem;
}

.vs-divider {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    color: white;
    padding: 1.5rem 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

/* Testimonial */
.testimonial-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #0078d4;
    margin: 3rem 0;
}

.testimonial-box blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-box cite {
    color: #0078d4;
    font-weight: bold;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.urgency-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.urgency-calculator {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.calculator-input {
    margin-bottom: 2rem;
}

.calculator-input label {
    display: inline-block;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.calculator-input input {
    padding: 12px;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    width: 150px;
    text-align: center;
}

.urgency-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.urgency-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
}

.urgency-period {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.urgency-cost {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

.urgency-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.why-choose-us > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #0078d4;
    margin-bottom: 2rem;
}

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

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #dc3545;
}

.problem-item h4 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

.conclusion-text {
    text-align: center;
    font-size: 1.2rem;
    color: #0078d4;
    font-weight: bold;
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: white;
}

.solution-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.solution-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-top: 5px solid #28a745;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.no-pressure {
    text-align: center;
    font-size: 1.1rem;
    color: #0078d4;
    font-weight: bold;
    margin-top: 2rem;
}

/* Getting Started Section */
.getting-started {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.getting-started h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
}

.step-number {
    background: #ffd700;
    color: #1e3c72;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    opacity: 0.9;
    line-height: 1.6;
}

.final-cta {
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.3);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-divider {
        margin: 0 auto;
        order: 2;
    }
    
    .selling {
        order: 1;
    }
    
    .exit {
        order: 3;
    }
    
    .urgency-results {
        grid-template-columns: 1fr;
    }
    
    .calculator-input label {
        display: block;
        margin-bottom: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .logo span {
        font-size: 0.8rem;
    }
    
    .header-right {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .big-stat {
        font-size: 2rem;
    }
}

