/* =========================================
   2b. PROBLEM SECTION
   ========================================= */
.problem-section {
    padding: 80px 0;
    background-color: #f8fafc;
    /* Slate 50 */
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.problem-header h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.problem-header h3 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.problem-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.problem-item {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #ef4444;
    /* Red for 'problem' alert */
}

.problem-item i {
    font-size: 2rem;
    color: #ef4444;
    /* Red for negative/problem */
    margin-bottom: 15px;
}

.problem-item p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.problem-footer p {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.problem-footer .strong {
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .problem-header h2 {
        font-size: 1.4rem;
    }

    .problem-header h3 {
        font-size: 1.6rem;
    }

    .problem-grid {
        gap: 15px;
    }

    .problem-item {
        width: 45%;
        padding: 15px;
    }
}

/* =========================================
   2c. SOLUTION SECTION (ServiceBooked Growth System)
   ========================================= */
.solution-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    /* Dark Charcoal */
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background visual interest (optional) */
.solution-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.solution-header h2 {
    font-size: 1rem;
    color: #94a3b8;
    /* Slate 400 */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.solution-header h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 800;
    background: linear-gradient(120deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solution-intro {
    font-size: 1.5rem;
    font-style: italic;
    color: #cbd5e1;
    /* Slate 300 */
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-desc {
    font-size: 1.25rem;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-desc .highlight {
    color: #60a5fa;
    /* Light Blue */
    font-weight: 700;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 60px 0;
    text-align: left;
}

.solution-col {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.solution-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.solution-col:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

.solution-col:hover::after {
    opacity: 1;
}

.col-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.solution-col h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.solution-col li {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.solution-col li::before {
    content: '✓';
    color: #4ade80;
    font-weight: 800;
    flex-shrink: 0;
}

.solution-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-footer p {
    font-size: 1.5rem;
    color: #94a3b8;
}

.solution-footer .highlight {
    color: #fa9641;
    /* Orange CTA color pop */
    font-weight: 800;
}

@media (max-width: 768px) {
    .solution-header h3 {
        font-size: 1.8rem;
    }

    .crm-features-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* =========================================
   3. HOW IT WORKS (Process Section)
   ========================================= */
/* =========================================
   3. HOW IT WORKS (Process Section)
   ========================================= */
.process {
    padding: 100px 0;
    background: #ffffff !important;
    text-align: center;
    position: relative;
    z-index: 50 !important;
    /* Extremely high z-index */
    visibility: visible !important;
    opacity: 1 !important;
}

.process .section-header h2 {
    color: #1f2937 !important;
    /* Explicit Charcoal */
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 1 !important;
    visibility: visible !important;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    margin-top: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1 !important;
    visibility: visible !important;
}

.process-step {
    flex: 1 1 200px;
    max-width: 230px;
    min-width: 180px;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    /* Kill any stuck reveal transform */
}

.process-step h3 {
    color: #1f2937 !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    opacity: 1 !important;
    visibility: visible !important;
}

.calculator-container {
    max-width: 1000px !important;
}

.process-step p {
    color: #4b5563 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Specific step icons fix */
.step-icon i {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Critical Badge Fixes */
.critical-badge {
    position: absolute;
    top: -12px;
    background: #2563eb !important;
    color: #ffffff !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    left: 50%;
    transform: translateX(-50%) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 100 !important;
    opacity: 1 !important;
}

/* System Footer */
.system-footer {
    border-top: 2px solid #e5e7eb !important;
    padding-top: 40px;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    opacity: 1 !important;
    visibility: visible !important;
}

.result-box {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #1f2937 !important;
}

.result-label {
    font-weight: 600;
    color: #6b7280 !important;
}

.result-value {
    font-weight: 800;
    color: #2563eb !important;
}

@media (max-width: 1200px) {
    .process-step {
        flex: 1 1 calc(33.33% - 20px);
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        width: 100%;
        max-width: 350px;
        flex: 1 1 auto;
    }
}

/* =========================================
   4. ROI / VALUE SECTION
   ========================================= */
.roi-section {
    padding: 100px 0;
    background-color: #f8fafc;
    /* Slate 50 */
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.roi-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.roi-text h2 {
    font-size: 2.25rem;
    color: #1f2937;
    margin-bottom: 40px;
    font-weight: 800;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Force 4 across on desktop */
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .roi-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on tablets */
    }
}

@media (max-width: 480px) {
    .roi-grid {
        grid-template-columns: 1fr;
        /* Stack on small mobile */
    }
}

.roi-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.roi-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 1.1);
    border-color: #2563eb;
}

.roi-item .roi-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.12);
    /* Increased opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.roi-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 0;
}

.roi-item p {
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.roi-insight {
    padding: 40px;
    background: #ffffff;
    /* Solid white */
    border-radius: 16px;
    border: 2px dashed rgba(37, 99, 235, 0.4);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.05);
    /* Subtle blue glow */
    margin-bottom: 0;
}

.stat-highlight {
    font-size: 1.25rem;
    color: #ef4444;
    /* Alert red */
    font-weight: 600;
    margin-bottom: 10px;
}

.solution-bridge {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
}

@media (max-width: 768px) {
    .roi-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .roi-text h2 {
        font-size: 1.8rem;
    }

    .roi-insight p {
        font-size: 1.1rem;
    }

    .solution-bridge {
        font-size: 1.3rem;
    }
}

/* =========================================
   5. BUTTON REFINEMENTS
   ========================================= */
.btn-blue {
    background-color: #2563eb !important;
    color: #ffffff !important;
    border: 2px solid #2563eb !important;
}

.btn-blue:hover {
    background-color: #1e40af !important;
    border-color: #1e40af !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

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

.btn-blue-outline:hover {
    background-color: #2563eb !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

/* Pricing Card Button Specifics */
.pricing-card .btn {
    margin: 0 30px 30px !important;
    font-size: 0.95rem !important;
    padding: 12px 20px !important;
}

/* =========================================
   6. VALUE REFRAME SECTION
   ========================================= */
.value-reframe-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.value-reframe {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    border: 2px solid #e2e8f0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.value-reframe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.reframe-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 5px;
}

.reframe-header h2 .not {
    color: #ef4444;
    text-decoration: underline;
}

.reframe-header h3 {
    font-size: 2.5rem;
    color: #2563eb;
    font-weight: 800;
    margin-bottom: 30px;
}

.reframe-content {
    background: #ffffff;
    display: inline-block;
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.reframe-content p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.5;
}

.stat-highlight strong {
    color: #ef4444;
    font-size: 1.3rem;
}

.roi-example {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 15px 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.roi-example p {
    margin-bottom: 5px;
    color: #1e293b;
}

.roi-example p:last-child {
    margin-bottom: 0;
}

.roi-example .highlight {
    font-size: 1.25rem;
    font-weight: 600;
}

.roi-example strong {
    color: #2563eb;
}

.closing-statement {
    font-size: 1.3rem !important;
    color: #1e293b !important;
    font-weight: 700;
    margin-top: 25px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
    line-height: 1.4 !important;
}

.closing-statement strong {
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.4rem;
}

.crm-transition {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    text-align: left;
}

.crm-transition h4 {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
}

.transition-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.t-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px;
}

.t-icon {
    width: 36px;
    height: 36px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t-icon i {
    color: #2563eb;
    font-size: 1.1rem;
    margin-top: 0 !important;
}

.t-text h5 {
    font-size: 1.05rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 4px;
}

.t-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Calculator Version */
.calculator-section .crm-transition {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    width: 100%;
}

.calculator-section .transition-features {
    max-width: 800px;
}

@media (max-width: 768px) {

    .reframe-header h2,
    .reframe-header h3 {
        font-size: 1.8rem;
    }

    .value-reframe {
        padding: 40px 20px;
    }

    .reframe-calc {
        padding: 20px;
        width: 100%;
    }

    .calc-result {
        font-size: 1.1rem;
    }

    .transition-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* =========================================
   7. WHY CRM SECTION
   ========================================= */
.crm-why-section {
    background: #f8fafc;
    padding: 100px 0;
}

.crm-why-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.crm-why-header {
    text-align: center;
    margin-bottom: 60px;
}

.crm-why-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 800;
}

.crm-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.comparison-column {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.comparison-column:hover {
    transform: translateY(-5px);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.column-header i {
    font-size: 2rem;
}

.column-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Traditional Column Styles */
.comparison-column.traditional {
    opacity: 0.8;
}

.traditional .column-header i {
    color: #ef4444;
}

.traditional .column-header h4 {
    color: #64748b;
}

.traditional .comparison-list li {
    color: #64748b;
}

.traditional .comparison-list i {
    color: #cbd5e1;
    margin-right: 12px;
}

/* System Column Styles */
.comparison-column.system {
    border: 2px solid #2563eb;
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1);
    position: relative;
}

.system .column-header i {
    color: #059669;
}

.system .column-header h4 {
    color: #1e293b;
}

.system .comparison-list li {
    color: #334155;
    font-weight: 500;
}

.system .comparison-list i {
    color: #059669;
    margin-right: 12px;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    font-size: 1.1rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.crm-why-footer {
    text-align: center;
}

.crm-why-footer p {
    font-size: 1.4rem;
    color: #1e293b;
}

.crm-why-footer strong {
    color: #2563eb;
}

@media (max-width: 768px) {
    .crm-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .crm-why-header h2 {
        font-size: 1.8rem;
    }

    .crm-why-footer p {
        font-size: 1.1rem;
    }

    .comparison-column {
        padding: 30px;
    }
}

/* =========================================
   8. FINAL CTA SECTION (STANDALONE)
   ========================================= */
.final-cta {
    background-color: var(--secondary-color);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 850;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

.cta-content p {
    font-size: 1.4rem;
    color: #94a3b8;
    /* Slate 400 */
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta .cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.final-cta .btn {
    padding: 18px 36px;
    font-size: 1.1rem;
    min-width: 240px;
}

.risk-reversal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
}

.risk-reversal i {
    color: #10B981;
    /* Success Green */
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .cta-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .final-cta .cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .final-cta .btn {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 0 !important;
    }
}

/* --- Team Section Formatting --- */
.team-description {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.team-description p {
    margin-bottom: 20px;
    color: #4b5563;
    /* Gray-600 */
    line-height: 1.6;
}

.team-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: inline-block;
    text-align: left;
}

.team-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #1f2937;
    /* Gray-800 */
    font-weight: 500;
}

.team-list i {
    color: #2563eb;
    /* Primary Blue */
    font-size: 1.1rem;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .team-description {
        padding: 0 10px;
    }
}

/* Solution Grid Tablet */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Solution Grid Mobile */
@media (max-width: 640px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-col {
        padding: 25px 20px;
    }
}

/* --- Booking Page Layout --- */
.booking-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.calendar-container {
    flex: 1;
    min-height: 850px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.plan-confirmation-box {
    width: 320px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 5px solid #2563eb;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.confirmation-content {
    display: flex;
    flex-direction: column;
}

.conf-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 8px;
}

#selected-plan-name {
    font-size: 1.5rem;
    color: #0f172a;
    margin: 0 0 15px 0;
    font-weight: 850;
    line-height: 1.2;
}

#selected-plan-price {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 700;
    display: block;
    line-height: 1.6;
}

.conf-investment {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 12px;
    margin-top: 5px;
}

.investment-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 5px;
}

@media (max-width: 1024px) {
    .booking-layout {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .plan-confirmation-box {
        width: 100%;
        max-width: 900px;
        position: static;
        margin-bottom: 30px;
        text-align: center;
    }

    .confirmation-content {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .calendar-container {
        min-height: 600px;
        padding: 0 !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px !important;
    }

    .booking-layout {
        padding: 0 10px !important;
    }

    .calendar-container {
        border-radius: 8px;
    }
}