/* ===================================
   LANDING PAGE STYLES
   =================================== */

/* Reset & Base */
#calculator-page,
#demo-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-section .headline {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section .subheadline {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-section .headline {
        font-size: 2rem;
    }
    .hero-section .subheadline {
        font-size: 1.1rem;
    }
}

/* ===================================
   CALCULATOR SECTION
   =================================== */
.calculator-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.calculator-widget {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.calculator-step {
    display: none;
}

.calculator-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calculator-step h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.step-counter {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.option-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 25px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #1a1a1a;
}

.option-btn .icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.option-btn:hover {
    background: #e9ecef;
    border-color: #2a5298;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.option-btn.selected {
    background: #2a5298;
    color: white;
    border-color: #2a5298;
}

/* ===================================
   RESULTS SECTION
   =================================== */
.results-section {
    text-align: center;
}

.results-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.highlight-number {
    color: #dc3545;
    font-weight: 900;
    font-size: 3rem;
}

.results-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-box {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.reality-check {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
    border-radius: 8px;
}

.reality-check h3 {
    margin-top: 0;
    color: #856404;
}

.reality-check ul {
    margin: 15px 0;
    padding-left: 25px;
}

.reality-check li {
    margin: 10px 0;
    color: #856404;
}

/* ===================================
   LEAD FORM
   =================================== */
.lead-form-section {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 12px;
    margin: 50px 0;
}

.lead-form-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.lead-form-section p {
    color: #6c757d;
    margin-bottom: 30px;
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.lead-form input {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.3s;
}

.lead-form input:focus {
    outline: none;
    border-color: #2a5298;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   BUTTONS
   =================================== */
.cta-button {
    background: #2a5298;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background: #1e3c72;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.4);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.3rem;
}

/* ===================================
   SOLUTION SECTION
   =================================== */
.solution-section {
    margin: 60px 0;
    text-align: left;
}

.solution-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    align-items: flex-start;
}

.feature .check {
    background: #28a745;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.feature p {
    color: #6c757d;
    margin: 0;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #2a5298;
}

.testimonial .quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #1a1a1a;
}

.testimonial .author {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    color: #2a5298;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: #495057;
    line-height: 1.7;
}

/* ===================================
   FOOTER CTA
   =================================== */
.footer-cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.footer-cta .disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
}
/* ===================================
   DEMO BOOKING PAGE
   =================================== */

.demo-booking-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

.demo-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.demo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.demo-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.demo-features .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.demo-features strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.demo-features p {
    color: #6c757d;
    margin: 0;
}

.no-pressure-box {
    background: #d1ecf1;
    border-left: 4px solid #0c5460;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.no-pressure-box p {
    margin: 0;
    color: #0c5460;
    font-size: 1.1rem;
}

.trust-badges {
    display: grid;
    gap: 12px;
}

.trust-badges .badge {
    background: white;
    padding: 15px 20px;
    border-radius: 6px;
    font-weight: 600;
    color: #28a745;
    border-left: 4px solid #28a745;
}

.calendar-column {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.calendar-container {
    min-height: 700px;
}

#calendar-embed {
    width: 100%;
}