/* ============================================
   CLEARFUNERALCOSTS - REPORTS STYLES
   Стили для страниц отчетов
   ============================================ */

/* ==========================
   PROVIDER DATA FRESHNESS INDICATOR
   ========================== */
.provider-updated {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-sm);
    color: #666;
    margin-top: 4px;
    font-weight: 500;
}

.provider-updated .updated-icon {
    font-size: var(--text-sm);
}

.provider-updated .updated-text {
    font-size: var(--text-sm);
}

/* Fresh data (within 30 days) */
.provider-updated.fresh {
    color: #22c55e;
}

.provider-updated.fresh .updated-icon {
    color: #16a34a;
}

/* Aging data (30-60 days) */
.provider-updated.aging {
    color: #eab308;
}

.provider-updated.aging .updated-icon {
    color: #ca8a04;
}

/* Stale data (older than 60 days) */
.provider-updated.stale {
    color: #ef4444;
}

.provider-updated.stale .updated-icon {
    color: #dc2626;
}

/* Provider table specific styling */
.provider-table-simple .provider-updated {
    margin-top: 2px;
    font-size: var(--text-sm);
}

.provider-table-simple .provider-updated .updated-text {
    font-size: var(--text-sm);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .provider-updated {
        font-size: var(--text-sm);
        margin-top: 2px;
    }
    
    .provider-updated .updated-text {
        font-size: var(--text-sm);
    }
}

/* ==========================
   USER PREFERENCES SUMMARY
   ========================== */
.user-preferences-summary {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
}

.preferences-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.preferences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.preference-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preference-label {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    font-weight: 500;
}

.preference-value {
    font-size: var(--text-base);
    color: var(--neutral-800);
    font-weight: 600;
}

@media (max-width: 768px) {
    .preferences-grid {
        grid-template-columns: 1fr;
    }
    
    .user-preferences-summary {
        padding: 12px;
        margin: 16px 0;
    }
    
    .preferences-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

/* ==========================
   ROADMAP PRIORITY LEVELS
   ========================== */
.roadmap-action {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s ease;
}

.roadmap-action:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.action-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.priority-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.priority-high {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.priority-medium {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}

.priority-low {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.action-timeframe {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    font-weight: 500;
}

.action-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-800);
    margin: 8px 0;
}

.action-description {
    font-size: var(--text-base);
    color: var(--neutral-700);
    line-height: 1.6;
    margin: 8px 0;
}

.action-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    padding: 10px;
    background: var(--info-blue-pale);
    border-left: 3px solid var(--info-blue);
    border-radius: 4px;
    font-size: var(--text-base);
    color: var(--info-blue);
}

.tip-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.priority-legend {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.priority-legend h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.legend-text {
    font-size: var(--text-base);
    color: var(--neutral-600);
    margin-right: 16px;
}

/* Glossary Tooltips */
.term-tooltip {
    position: relative;
    display: inline;
    border-bottom: 1px dotted #6c757d;
    cursor: help;
    color: #4a90e2;
    text-decoration: none;
}

.term-tooltip:hover {
    color: #357abd;
}

.tooltip-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2c3e50;
    color: white;
    text-align: left;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.4;
    width: 250px;
    max-width: 90vw;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

.tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2c3e50 transparent transparent transparent;
}

.term-tooltip:hover .tooltip-content,
.term-tooltip:focus .tooltip-content {
    visibility: visible;
    opacity: 1;
}

/* Mobile: show tooltip on tap */
@media (max-width: 768px) {
    .term-tooltip.active .tooltip-content {
        visibility: visible;
        opacity: 1;
    }
    
    .tooltip-content {
        position: fixed;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 280px;
        max-width: 85vw;
    }
}

/* Full Glossary Section */
.full-glossary-section {
    margin: 40px 0;
    border-top: 2px solid #e9ecef;
    padding-top: 20px;
}

.glossary-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: background 0.2s ease;
}

.glossary-toggle:hover {
    background: #e9ecef;
}

.toggle-icon {
    font-size: 1.2rem;
}

.toggle-arrow {
    margin-left: auto;
    font-size: var(--text-sm);
}

.glossary-content {
    padding: 24px 0;
}

.glossary-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2c3e50;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.glossary-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
}

.glossary-term {
    font-size: 1rem;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.glossary-definition {
    font-size: var(--text-base);
    color: var(--neutral-700);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .glossary-grid {
        grid-template-columns: 1fr;
    }
}

/* Incomplete Data Prompt */
.incomplete-data-prompt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff3cd;
    border-bottom: 1px solid #ffeaa7;
    padding: 16px;
    z-index: 1000;
    text-align: center;
}

.prompt-content h3 {
    margin: 0 0 8px 0;
    color: #856404;
    font-size: 1.1rem;
}

.prompt-content p {
    margin: 0 0 12px 0;
    color: var(--warning-amber);
    font-size: var(--text-base);
}

.prompt-button {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-navy);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--text-base);
    margin-right: 12px;
}

.prompt-button:hover {
    background: var(--primary-navy-light);
    color: var(--bg-primary);
}

.prompt-dismiss {
    background: none;
    border: 1px solid var(--warning-amber);
    color: var(--warning-amber);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: var(--text-base);
    cursor: pointer;
}

.prompt-dismiss:hover {
    background: var(--warning-amber);
    color: var(--bg-primary);
}

@media (max-width: 768px) {
    .action-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .legend-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .legend-text {
        margin-right: 0;
    }
}

/* REFINED COLOR PALETTE FOR REPORTS */
/* CSS Variables are inherited from main.css */

/* ==========================
   HERO / REPORT HEADER STYLES
   Optimised for 55+ audience using brandbook colours
   ========================== */
.header-simple {
    background: var(--primary-navy);
    color: var(--bg-primary);
    text-align: center;
    padding: 60px 20px 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.2);
    position: relative;
}

/* Accent stripe at the top of the header */
.header-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-sage);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.logo-simple {
    font-size: 32px;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.empathy-simple {
    font-size: 18px;
    color: var(--accent-sage-light);
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.95;
}

.title-simple {
    font-size: 3.5rem;  /* Соответствует hero headline главной страницы */
    font-weight: 600;
    color: var(--bg-primary);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Improve contrast for small text inside header */
.header-simple p, .header-simple a {
    color: var(--bg-primary);
}

/* Focus and hover elevation for header CTAs if present */
.header-simple .cta, .header-simple .cta-primary-simple {
    box-shadow: 0 8px 24px rgba(90,122,95,0.18);
    transition: var(--transition-all);
}

.header-simple .cta:hover, .header-simple .cta-primary-simple:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(90,122,95,0.18);
}

/* === TEXT READABILITY OPTIMIZATION === */
.text-content {
    max-width: 65ch; /* Optimal line length for readability */
    line-height: 1.6;
    margin: 0 auto;
}

.text-content-wide {
    max-width: 75ch; /* Slightly wider for less dense content */
    line-height: 1.6;
    margin: 0 auto;
}

.text-content-narrow {
    max-width: 55ch; /* Narrower for dense technical content */
    line-height: 1.6;
    margin: 0 auto;
}

/* === PARAGRAPH OPTIMIZATION === */
p {
    max-width: 65ch; /* Optimal line length for paragraphs */
    line-height: 1.6;
}

/* === EMOTIONAL SUPPORT STYLING === */
.report-header p:first-of-type {
    color: var(--accent-sage);
    font-weight: 500;
    margin-bottom: 8px;
}

/* UNIVERSAL CARD SYSTEM - Simplified & Professional */

/* Базовая карточка - ЕДИНСТВЕННЫЙ вариант */
.card {
    background: var(--bg-primary);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    padding: var(--space-6);  /* 48px */
    margin-bottom: var(--space-4);  /* 32px */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all var(--transition-normal);
}

/* Карточка с акцентом */
.card--accent {
    border-left: 4px solid var(--accent-sage);
}

/* Карточка с фоном */
.card--subtle {
    background: var(--bg-secondary);
}

/* Карточка важной информации */
.card--important {
    border: 2px solid var(--accent-sage);
    background: var(--accent-sage-pale);
}

/* Hover эффекты */
.card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.card--accent:hover {
    border-left-color: var(--accent-sage-light);
}

.card--important:hover {
    border-color: var(--accent-sage-light);
    background: var(--accent-sage-pale);
}

/* Типографика карточек */
.card h3 {
    color: var(--primary-navy);
    margin-bottom: var(--space-2);
    font-size: var(--text-h3);
    font-weight: var(--font-semibold);
}

.card h4 {
    color: var(--neutral-900);
    margin-bottom: var(--space-1);
    font-size: var(--text-h4);
    font-weight: var(--font-medium);
}

.card p {
    color: var(--neutral-700);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-2);
}

.card ul {
    margin-left: var(--space-3);
}

.card li {
    margin-bottom: var(--space-1);
    color: var(--neutral-700);
    line-height: var(--leading-relaxed);
}

/* Unlocked Section */
.unlocked-section {
    background: var(--bg-primary);  /* вместо gradient */
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    border: 1px solid var(--accent-sage);
}

.unlocked-title {
    margin: 0 0 24px 0;
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.unlocked-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.unlocked-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--accent-sage);
    text-align: center;
}

.unlocked-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.unlocked-label {
    font-size: 1rem;  /* Соответствует главной странице */
    color: var(--neutral-600);
    line-height: 1.4;
}

.investment-summary {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
}

.investment-summary strong {
    color: var(--primary-navy);
    font-size: 1.05rem;
}

.investment-summary span {
    color: var(--neutral-900);
}

.investment-cta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Premium Tier Section */
.premium-tier-section {
    background: var(--bg-primary);  /* вместо gradient */
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 4px solid var(--accent-sage);
}

.premium-tier-title {
    margin: 0 0 16px 0;
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 600;
}

.premium-tier-description {
    margin: 0 0 20px 0;
    color: var(--neutral-900);
    line-height: 1.7;
}

.premium-differences {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.premium-differences ul {
    margin: 12px 0 0 0;
    padding-left: 20px;
    line-height: 1.8;
}

.premium-differences li {
    margin-bottom: 8px;
}

/* Guarantee Section */
.guarantee-banner {
    background: var(--primary-navy);  /* вместо gradient */
    color: white;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.guarantee-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-text {
    flex: 1;
}

.guarantee-title {
    margin: 0 0 8px 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.guarantee-description {
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.guarantee-expiry {
    margin-top: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
}

.expiry-note {
    font-size: 1rem;  /* Соответствует главной странице */
    opacity: 0.8;
}

/* Data Freshness Notice */
.data-freshness-notice {
    background: rgba(90, 122, 95, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-sage);
}

.freshness-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.freshness-icon {
    font-size: 1.2rem;
}

.freshness-title {
    color: var(--accent-sage);
    font-weight: 600;
}

.freshness-details {
    margin: 0;
    color: var(--neutral-900);
    font-size: var(--text-base);
}

.freshness-explanation {
    margin-top: 12px;
    font-size: 1rem;  /* Соответствует главной странице */
    color: var(--neutral-600);
}

/* Pro Tips Section */
.pro-tips-section {
    background: var(--bg-primary);  /* вместо gradient */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-sage);
}

.pro-tips-title {
    margin: 0 0 16px 0;
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 600;
}

.pro-tips-list {
    margin: 0;
    padding-left: 20px;
    line-height: 1.6;
    font-size: var(--text-base);
}

.pro-tips-list li {
    margin-bottom: 8px;
    color: var(--neutral-900);
}

/* Real Examples Grid */
.real-examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

/* Example Scenario Cards */
.example-scenario-card {
    background: white;
    border: 2px solid var(--accent-sage);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 4px 12px rgba(90, 122, 95, 0.1);
}

.example-badge {
    background: var(--accent-sage);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 18px;  /* Увеличено с 0.8rem для аудитории 55+ */
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.example-scenario-card h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.example-family {
    color: var(--neutral-600);
    font-style: italic;
    margin-bottom: 16px;
}

.example-choice {
    background: var(--neutral-100);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    border-left: 4px solid var(--accent-sage);
}

.example-approach {
    margin-bottom: 20px;
}

.example-approach ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
    line-height: 1.6;
}

.example-approach li {
    margin-bottom: 6px;
    color: var(--neutral-900);
}

.example-result {
    background: var(--accent-sage);  /* вместо gradient */
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.result-cost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.before-cost {
    text-decoration: line-through;
    opacity: 0.8;
}

.arrow {
    font-size: 1.2rem;
    font-weight: bold;
}

.after-cost {
    font-weight: 600;
    font-size: 1.1rem;
}

.result-savings {
    text-align: center;
    font-size: 1.1rem;
}

.example-reflection {
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage, #5a7a5f);
    font-style: italic;
    color: var(--neutral-900);
}

/* Savings Badges for Educational Table */
.savings-moderate {
    color: var(--warning-amber);
    font-weight: 600;
}

.savings-good {
    color: var(--accent-sage);
    font-weight: 600;
}

.savings-high {
    color: var(--success-green);
    font-weight: 600;
}

.savings-very-high {
    color: var(--success-green);
    font-weight: 700;
}

.real-example-card {
    background: rgba(90, 122, 95, 0.08);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
}

.example-title {
    margin: 0 0 8px 0;
    color: var(--accent-sage);
    font-size: 0.95rem;
    font-weight: 600;
}

.example-quote {
    margin: 0;
    font-size: 1rem;  /* Соответствует главной странице */
    font-style: italic;
    line-height: 1.6;
    color: var(--neutral-900);
}

.example-details {
    margin-top: 8px;
    font-size: 18px;  /* Увеличено с 0.8rem для аудитории 55+ */
    color: var(--neutral-600);
}

/* TABLES - Optimized for 55+ */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: var(--space-6) 0;
    font-size: 22px;  /* Увеличено с 20px для аудитории 55+ */  /* Увеличено с 18px для аудитории 55+ */
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.data-table thead {
    background: var(--primary-navy);
}

.data-table th {
    padding: var(--space-4);
    text-align: left;
    font-weight: var(--font-semibold);
    color: white;
    border-bottom: 2px solid var(--accent-sage);
    font-size: 18px;
}

.data-table td {
    padding: var(--space-4);
    border-bottom: 1px solid var(--neutral-300);
    vertical-align: top;
    font-size: 18px;
    color: var(--neutral-700);
}

.data-table tbody tr:hover {
    background: var(--bg-secondary);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* Чередующиеся строки для читаемости */
.data-table tbody tr:nth-child(even) {
    background: var(--neutral-50);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .unlocked-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .unlocked-section,
    .premium-tier-section {
        padding: 24px;
        margin: 24px 0;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .guarantee-icon {
        font-size: 2.5rem;
    }
    
    .real-examples-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .example-scenario-card {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .result-cost {
        flex-direction: column;
        gap: 8px;
    }
    
    .mobile-hide {
        display: none;
    }
}

/* === COMPARISON GRID RESPONSIVE === */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
    }
    
    .dignity-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-comparison-table {
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .service-comparison-table th,
    .service-comparison-table td {
        padding: 8px 6px;
    }
    
    /* Мобильные стили для data-table */
    .data-table {
        font-size: 1rem;  /* Соответствует главной странице */
        margin: var(--space-4) 0;
    }
    
    .data-table th,
    .data-table td {
        padding: var(--space-2);
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .mobile-hide {
        display: none;
    }
}

.paragraph-wide {
    max-width: 75ch; /* For less dense paragraphs */
    line-height: 1.6;
}

.paragraph-narrow {
    max-width: 55ch; /* For technical or dense paragraphs */
    line-height: 1.6;
}

/* TYPOGRAPHY HIERARCHY - Professional for 55+ */
h1 {
    font-size: var(--text-h1);
    line-height: var(--leading-tight);
    font-weight: var(--font-bold);
    color: var(--primary-navy);
    margin-bottom: 24px;
}

h2 {
    font-size: var(--text-h2);
    line-height: var(--leading-tight);
    font-weight: var(--font-semibold);
    color: var(--primary-navy);
    margin-bottom: 20px;
}

h3 {
    font-size: var(--text-h3);
    line-height: var(--leading-normal);
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    margin-bottom: 16px;
}

h4 {
    font-size: var(--text-h4);
    line-height: var(--leading-normal);
    font-weight: var(--font-medium);
    color: var(--neutral-700);
    margin-bottom: 12px;
}

/* Для важного текста */
.text-lead {
    font-size: 24px;
    line-height: var(--leading-relaxed);
    color: var(--neutral-700);
    font-weight: var(--font-medium);
}

/* BODY STYLES */
body {
    margin: 0;
    padding: 20px;
    background: var(--bg-secondary);
    font-family: var(--font-family-primary);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    font-weight: var(--font-regular);
    color: var(--neutral-900);
}

/* SKIP LINKS */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-navy);
    color: var(--bg-primary);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 600;
    font-size: 1rem;  /* Соответствует главной странице */
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid var(--accent-sage);
    outline-offset: 2px;
}

.skip-link:hover {
    background: var(--navy-light);
}

/* REPORT CONTAINER */
.report-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-primary);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* REPORT HEADER */
.report-header {
    background: var(--primary-navy);
    border-bottom: 4px solid var(--accent-sage);
    padding: var(--space-8) 0 var(--space-6);
    text-align: center;
    color: white;
}

.report-header p {
    padding: 0 20px; /* Добавляем отступы для текста */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.company-logo {
    font-size: 32px;
    font-weight: var(--font-bold);
    color: white;
    margin-bottom: var(--space-4);
    font-family: var(--font-family-primary);
    letter-spacing: -0.3px;
}

.clear-highlight {
    color: var(--bg-secondary);
    font-weight: var(--font-bold);
}

/* New header elements - адаптированы для navy фона */
.report-logo {
    font-size: 32px;
    font-weight: var(--font-bold);
    color: white;
    margin-bottom: var(--space-4);
    font-family: var(--font-family-primary);
}

.report-logo-accent {
    color: var(--bg-secondary);
}

.report-empathy {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: var(--space-6);
    font-weight: var(--font-regular);
}

.report-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-3);
    font-weight: var(--font-medium);
    line-height: var(--leading-relaxed);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.report-date {
    font-size: 1rem;  /* Соответствует главной странице */
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: var(--font-regular);
}

.free-report-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: var(--space-6);
    font-weight: var(--font-regular);
}

.report-title {
    font-size: var(--font-size-h1); /* Используем CSS переменную */
    font-weight: 600;
    margin-bottom: 16px; /* Унифицированный отступ */
    line-height: 1.3;
    color: white;
    text-align: center;
}

.report-subtitle {
    font-size: 1.3rem; /* Унифицированный размер */
    opacity: 0.92;
    margin-bottom: 20px; /* Унифицированный отступ */
    color: white;
}

.report-date {
    font-size: 1rem;  /* Соответствует главной странице */
    opacity: 0.8;
    color: white;
}

/* SOCIAL PROOF */
.social-proof {
    background: var(--soft-green);
    padding: 40px 32px;
    border-left: 4px solid var(--accent-sage);
}

.social-proof p,
.social-proof div {
    padding: 0 20px; /* Добавляем отступы для текста */
}

.social-proof h3 {
    color: var(--primary-navy);
    font-size: var(--font-size-h3);
    margin-bottom: 16px; /* Унифицированный отступ */
    text-align: center;
    font-weight: 600;
}

.testimonial-mini {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.testimonial-mini:last-child {
    margin-bottom: 0;
}

.testimonial-mini p {
    margin: 0 0 12px 0;
    font-style: italic;
    color: var(--neutral-900);
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-mini .author {
    font-size: 1rem;  /* Соответствует главной странице */
    color: var(--neutral-600);
    font-weight: 600;
    font-style: normal;
}

.testimonial-mini .savings {
    color: var(--accent-sage);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 8px;
    display: block;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 1rem;  /* Соответствует главной странице */
}

/* REPORT CONTENT */
.report-content {
    padding: 48px 32px;
}

/* Добавляем отступы для всех секций */
/* SECTIONS - Professional spacing */
.report-section {
    padding: var(--space-10) var(--space-4);  /* 80px сверху-снизу, 32px по бокам */
    margin-bottom: var(--space-8);  /* 64px между секциями */
    max-width: 1200px;  /* Ограничиваем максимальную ширину */
    margin-left: auto;
    margin-right: auto;
}

/* Tips Grid - ограничиваем ширину для лучшей читаемости */
.tips-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.report-section p,
.report-section li {
    padding: 0 var(--space-2);  /* 16px отступы для текста */
}

.section-title {
    color: var(--primary-navy);
    font-size: var(--font-size-h2); /* Используем CSS переменную */
    font-weight: 600;
    margin-bottom: 16px; /* Унифицированный отступ */
    border-bottom: 2px solid var(--accent-sage);
    text-align: center; /* Центрируем заголовки */
    padding: 0 20px; /* Добавляем отступы для заголовков */
    padding-bottom: 8px;
    text-align: center; /* Унифицированное выравнивание */
}

.section-subtitle {
    color: var(--neutral-900);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

/* COST ANALYSIS */
.cost-analysis {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    border: 1px solid var(--border-subtle);
}

.cost-range {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 16px;
}

.cost-description {
    text-align: center;
    color: var(--neutral-600);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.cost-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.breakdown-item {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.breakdown-label {
    font-size: 1rem;  /* Соответствует главной странице */
    color: var(--neutral-600);
    margin-bottom: 8px;
}

.breakdown-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-navy);
}

/* RECOMMENDATIONS */
.recommendations {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid var(--accent-sage);
}

.recommendation-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--neutral-100);
    border-radius: 6px;
}

.recommendation-item:last-child {
    margin-bottom: 0;
}

.recommendation-icon {
    color: var(--accent-sage);
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 2px;
}

.recommendation-text {
    color: var(--neutral-900);
    line-height: 1.6;
}

/* DATA FRESHNESS */
.data-freshness {
    background: var(--soft-green);
    padding: 16px 24px;
    border-radius: 6px;
    margin-top: 24px;
    text-align: center;
}

.data-freshness-text {
    color: var(--primary-navy);
    font-size: 1rem;  /* Соответствует главной странице */
    font-weight: 500;
}

/* CTA SECTION */
.cta-section {
    background: var(--primary-navy);  /* вместо gradient */
    color: var(--bg-primary);
    padding: 48px 32px;
    text-align: center;
    margin-top: 32px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BUTTON SYSTEM - Professional for 55+ */

/* Основная кнопка */
.btn-primary {
    background: var(--accent-sage);
    color: white;
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    padding: 18px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 56px;  /* Большие кнопки для 55+ */
    display: inline-block;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: var(--accent-sage-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-primary:focus {
    outline: 3px solid var(--accent-sage-pale);
    outline-offset: 3px;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Вторичная кнопка */
.btn-secondary {
    background: transparent;
    color: var(--accent-sage);
    border: 2px solid var(--accent-sage);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    padding: 16px 30px;  /* Учитываем border */
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 56px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--accent-sage-pale);
    transform: translateY(-1px);
}

.btn-secondary:focus {
    outline: 3px solid var(--accent-sage-pale);
    outline-offset: 3px;
}

/* Текстовая кнопка */
.btn-text {
    background: transparent;
    color: var(--accent-sage);
    border: none;
    padding: 12px 16px;
    font-weight: var(--font-medium);
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: var(--text-base);
}

.btn-text:hover {
    color: var(--accent-sage-light);
    text-decoration-thickness: 2px;
}

.btn-text:focus {
    outline: 2px solid var(--accent-sage-pale);
    outline-offset: 2px;
}

/* Legacy support - map old classes to new system */
.cta-button {
    background: var(--accent-sage);
    color: white;
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    padding: 18px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 56px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background: var(--accent-sage-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cta-button:focus {
    outline: 3px solid var(--accent-sage-pale);
    outline-offset: 3px;
}

/* ENHANCED CTA */
.enhanced-cta {
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;  /* Соответствует главной странице */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.enhanced-cta:hover {
    background: var(--primary-navy);
    transform: translateY(-1px);
}

/* RESPONSIVE DESIGN - Optimized for 55+ */
@media (max-width: 1024px) {
    .report-container {
        padding: var(--space-4);
    }
}

@media (max-width: 768px) {
    body { 
        font-size: var(--text-base); /* Используем CSS переменную */
        padding: 10px;
    }
    
    .report-container {
        margin: 0;
        box-shadow: none;
        padding: var(--space-2);
    }
    
    /* Увеличиваем кнопки на мобильных */
    .btn-primary,
    .btn-secondary,
    .cta-button {
        min-height: 64px;
        font-size: 1.2rem;  /* Соответствует кнопкам главной страницы */
        padding: 20px 24px;
        width: 100%;  /* Полная ширина на мобильных */
    }
    
    /* Упрощаем карточки */
    .card {
        padding: var(--space-4);
        margin-bottom: var(--space-3);
    }
    
    /* Таблицы на мобильных */
    .data-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .data-table th,
    .data-table td {
        padding: var(--space-2);
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .report-header {
        padding: var(--space-6) var(--space-2);
    }
    
    .report-title {
        font-size: var(--text-h1);
    }
    
    .savings-amount {
        font-size: 2.2rem;
    }
    
    .report-content {
        padding: var(--space-4) var(--space-2);
    }
    
    .cost-analysis {
        padding: 24px 20px;
    }
    
    .cost-range {
        font-size: 1.8rem;
    }
    
    .cost-breakdown {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 32px 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .sticky-cta-bar {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
        justify-content: center;
        align-items: center;
    }
    
    .sticky-cta-bar p {
        font-size: 0.95rem;
    }
    
    .sticky-cta-bar .price {
        font-size: 1.4rem;
    }
    
    .cta-button-sticky {
        padding: 10px 20px;
        font-size: 1rem;  /* Соответствует главной странице */
    }
}

@media (max-width: 480px) {
    body {
        font-size: 1rem;  /* Соответствует главной странице */ /* Consistent mobile typography */
    }
    
    .report-header {
        padding: 24px 16px;
    }
    
    .report-title {
        font-size: 1.75rem; /* Optimized for small mobile */
    }
    
    /* Мобильные отступы */
    .report-section {
        padding: var(--space-6) var(--space-2);  /* 48px сверху-снизу, 16px по бокам на мобильных */
    }
    
    .report-section p,
    .report-section li {
        padding: 0 var(--space-1);  /* 8px отступы для текста на мобильных */
    }
    
    /* Мобильные стили для карточек */
    .card {
        padding: var(--space-4);  /* 32px на мобильных */
        margin-bottom: var(--space-3);  /* 24px на мобильных */
    }
    
    .card p,
    .card li {
        padding: 0 var(--space-1);  /* 8px отступы для текста в карточках на мобильных */
    }

    /* Mobile Text Readability Optimization */
    .text-content,
    .text-content-wide,
    .text-content-narrow {
        max-width: 100%; /* Full width on mobile for better readability */
        padding: 0 20px;
    }

    p,
    .paragraph-wide,
    .paragraph-narrow {
        max-width: 100%; /* Full width on mobile */
        padding: 0 10px;
    }
    
    .report-content {
        padding: 24px 16px;
    }
    
    .cost-analysis {
        padding: 20px 16px;
    }
    
    .cta-section {
        padding: 24px 16px;
    }
    
    .enhanced-cta {
        padding: 12px 24px;
        font-size: 1.2rem;  /* Соответствует кнопкам главной страницы */  /* Увеличено с 14px для аудитории 55+ */
    }
}

/* EXECUTIVE SUMMARY STYLES - Updated per brief */
.executive-summary {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 48px 40px;
    margin: 48px auto;
    max-width: 1200px;
    box-shadow: 0 8px 32px rgba(26, 32, 44, 0.1);
    border: 1px solid var(--neutral-300);
}

.summary-title {
    font-size: var(--text-h2);
    font-weight: 600;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 20px;
}

.summary-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--accent-sage);
    border-radius: 2px;
}

/* FOOTER */
.report-footer {
    background: var(--neutral-900);
    color: var(--bg-primary);
    padding: 36px 32px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.footer-contact {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* DISCLAIMER - Professional Design */
.disclaimer {
    background: var(--neutral-50);
    border-left: 4px solid var(--warning-amber);
    padding: var(--space-4);
    margin: var(--space-6) 0;
    border-radius: 4px;
}

.disclaimer-title {
    font-size: 22px;  /* Увеличено с 20px для аудитории 55+ */  /* Увеличено с 18px для аудитории 55+ */
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    margin-bottom: var(--space-2);
}

.disclaimer-text {
    font-size: 22px;  /* Увеличено с 20px для аудитории 55+ */  /* Увеличено с 18px для аудитории 55+ */
    color: var(--neutral-700);
    line-height: var(--leading-relaxed);
}

.disclaimer-text strong {
    color: var(--neutral-900);
    font-weight: var(--font-semibold);
}

/* Legacy support */
.enhanced-disclaimer {
    background: var(--neutral-50);
    border-left: 4px solid var(--warning-amber);
    padding: var(--space-4);
    margin: var(--space-6) 0;
    border-radius: 4px;
    text-align: left;
}

.enhanced-disclaimer h4 {
    font-size: var(--font-size-h4);
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--primary-navy);
    font-weight: 600;
}

.enhanced-disclaimer p {
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--neutral-900);
}

.enhanced-disclaimer p:last-child {
    margin-bottom: 0;
}

.enhanced-disclaimer ul {
    list-style: none;
    padding-left: 0;
}

.enhanced-disclaimer li {
    font-size: 1rem;  /* Соответствует главной странице */
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
}

.enhanced-disclaimer li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--bg-secondary);
    font-weight: 700;
}

/* EDUCATION SECTION STYLES */
.education-section {
    background: var(--bg-secondary);
    padding: 32px;
    margin: 32px 0;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.education-section h2 {
    color: var(--primary-navy);
    font-size: var(--font-size-h2);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.education-intro {
    font-size: 22px;  /* Увеличено с 20px для аудитории 55+ */
    color: var(--neutral-600);
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.6;
}

.service-comparison-wrapper {
    margin: 24px 0;
    overflow-x: auto;
    border-radius: 8px;
}

.service-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid var(--border-subtle);
}

.service-comparison-table th,
.service-comparison-table td {
    padding: 16px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1rem;  /* Соответствует главной странице */
    line-height: 1.5;
}

.service-comparison-table th {
    background: var(--primary-navy);  /* вместо gradient */
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 1rem;  /* Соответствует главной странице */
    text-transform: none;
}

.service-comparison-table tr:hover {
    background-color: var(--neutral-100);
}

.service-comparison-table td:first-child {
    font-weight: 600;
    color: var(--primary-navy);
}

.service-comparison-table td strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.savings-moderate { 
    color: var(--accent-sage); 
    font-weight: 600; 
    background: rgba(90, 122, 95, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}
.savings-good { 
    color: var(--navy-light); 
    font-weight: 600; 
    background: rgba(45, 90, 138, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}
.savings-high { 
    color: var(--neutral-700); 
    font-weight: 600; 
    background: rgba(107, 86, 68, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}
.savings-very-high { 
    color: var(--accent-sage, #5a7a5f); 
    font-weight: 600; 
    background: rgba(125, 90, 80, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.guidance-box {
    background: var(--primary-navy);  /* вместо gradient */
    color: var(--bg-primary);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    margin-top: 32px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.2);
}

.guidance-box p {
    margin-bottom: 20px;
    font-size: 22px;  /* Увеличено с 20px для аудитории 55+ */
    line-height: 1.6;
    color: var(--bg-primary);
}

.enhanced-cta {
    background: var(--bg-primary);
    color: var(--primary-navy);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;  /* Соответствует главной странице */
    border: 2px solid var(--bg-primary);
}

.enhanced-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    background: var(--neutral-100);
    color: var(--primary-navy);
}

.guarantee-text {
    margin-top: 16px;
    color: var(--bg-primary); /* Белый цвет для читаемости на синем фоне */
    font-size: 1.1rem; /* Увеличено для аудитории 55+ */
    text-align: center; /* Центрируем текст */
    font-weight: 500; /* Немного жирнее */
    padding: 0 20px; /* Добавляем отступы */
}

/* Mobile styles for education section */
@media (max-width: 768px) {
    .education-section {
        padding: 24px;
        margin: 24px 0;
    }
    
    .education-section h2 {
        font-size: 1.5rem; /* 24px */
    }
    
    .education-intro {
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .service-comparison-table th,
    .service-comparison-table td {
        padding: 12px 8px;
        font-size: 1.2rem;  /* Соответствует кнопкам главной страницы */  /* Увеличено с 14px для аудитории 55+ */
    }
    
    .guidance-box {
        padding: 24px;
    }
    
    .guidance-box p {
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .enhanced-cta {
        padding: 12px 24px;
        font-size: 1.2rem;  /* Соответствует кнопкам главной страницы */  /* Увеличено с 14px для аудитории 55+ */
    }
}

/* ============================================
   PREMIUM REPORT STYLES
   ============================================ */

/* PROGRESS TRACKER STYLES */
.progress-motivation {
    background: var(--bg-secondary);  /* вместо gradient */
    color: var(--neutral-900);
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.completion-counter {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary-navy);
}

.savings-tracker {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--accent-sage);
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background: var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-sage);  /* вместо gradient */
    border-radius: 6px;
    transition: width 0.3s ease;
}

.progress-percentage {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-navy);
    min-width: 40px;
    text-align: right;
}

.achievement-message {
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.implementation-checklist-interactive {
    background: var(--neutral-100);
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
}

/* Interactive Checklist Styles */
.task-checkbox-enhanced {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.task-checkbox-enhanced:hover {
    background-color: rgba(16, 185, 129, 0.05);
}

.task-checkbox-enhanced input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
       flex-shrink: 0;
}

.task-content {
    flex: 1;
}

.task-action {
    display: block;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.task-checkbox-enhanced input[type="checkbox"]:checked + .task-content .task-action {
    text-decoration: line-through;
    opacity: 0.6;
}

.task-benefit {
    display: block;
    font-size: 1rem;  /* Соответствует главной странице */
    color: var(--accent-sage);
    font-weight: 600;
    margin-bottom: 4px;
}

.task-timing {
    display: block;
    font-size: 0.95rem;
    color: var(--neutral-600);
}

/* Mobile responsiveness for progress tracker */
@media (max-width: 768px) {
    .progress-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .progress-bar-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .progress-bar {
        width: 100%;
    }
    
    /* Table responsive adjustments */
    .table-wrapper {
        margin: 20px -20px; /* Extend to container edges */
        border-radius: 0;
        box-shadow: none;
    }
    
    .provider-table {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        min-width: 600px; /* Reduced for mobile */
    }
    
    .provider-table th,
    .provider-table td {
        padding: 12px 8px;
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .provider-table th {
        font-size: 1rem;  /* Соответствует главной странице */
    }
}

/* QUICK WINS ENHANCED STYLES */
.quick-win-card {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
    border: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.win-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.win-number {
    width: 40px;
    height: 40px;
    background: var(--accent-sage);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 16px;
    flex-shrink: 0;
}

.win-title {
    font-size: var(--font-size-h3); /* Используем CSS переменную */
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px; /* Унифицированный отступ */
    text-align: center; /* Унифицированное выравнивание */
}

.call-button {
    display: inline-block;
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;  /* Соответствует главной странице */
    margin-top: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.call-button:hover {
    background: var(--success-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* COST BREAKDOWN ENHANCED STYLES */
.cost-card {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
    border: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.cost-note {
    font-size: 1rem;  /* Соответствует главной странице */
    color: var(--neutral-600);
    font-style: italic;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

/* SCRIPT STYLES ENHANCEMENT */
.script-section .script-content {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    white-space: pre-wrap;
    border: 1px solid var(--border-subtle);
    color: var(--neutral-900);
}

.script-section blockquote {
    border-left: 5px solid var(--accent-sage, #5a7a5f);
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    font-style: italic;
    color: var(--primary-navy);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 16px 0;
}

.script-section .script-explanation {
    background: var(--soft-green);
    border-left: 5px solid var(--accent-sage);
    padding: 16px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: var(--text-base);
}

.script-section .script-explanation strong {
    color: var(--primary-navy);
}

.script-section .script-explanation span {
    color: var(--neutral-900);
}

.script-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
    border-top: 1px dashed var(--border-subtle);
    padding-top: 15px;
}

.script-section ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.6;
    font-size: 1rem;
    color: var(--neutral-900);
}

.script-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-sage, #5a7a5f);
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1;
}

/* Copy Button Styles */
.script-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.copy-button {
    background: var(--primary-navy);  /* вместо gradient */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;  /* Соответствует главной странице */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.copy-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.script-placeholder {
    background: var(--bg-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--accent-sage, #5a7a5f);
    border: 1px solid var(--border-subtle);
}

/* Mobile responsiveness for scripts */
@media (max-width: 768px) {
    .script-section .script-content, 
    .script-section blockquote {
        font-size: 0.95rem;
    }
    
    .script-section .script-explanation {
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .script-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.quick-wins-section {
    background: var(--bg-secondary);
    padding: 40px 32px;
    margin: 32px 0;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.quick-wins-title {
    font-size: var(--font-size-h2); /* Используем CSS переменную */
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px; /* Унифицированный отступ */
    text-align: center;
}

.quick-wins-subtitle {
    font-size: 1.3rem; /* Унифицированный размер */
    color: var(--neutral-600);
    text-align: center;
    margin-bottom: 20px; /* Унифицированный отступ */
}

.quick-wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.quick-win-card {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
    border: 1px solid var(--border-subtle);
}

.win-header {
    margin-bottom: 16px;
}


.quick-win-card p {
    color: var(--neutral-900);
    line-height: 1.6;
    margin: 0;
}

.personalized-intro {
    background: var(--neutral-100);
    padding: 40px; /* Унифицированный padding */
    border-radius: 8px;
    margin: 32px 0;
}

.intro-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 24px;
}

.user-preferences {
    margin: 24px 0;
}

.preferences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.preference-item {
    background: var(--bg-primary);
    padding: 16px;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    font-size: var(--text-base);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.recommendation-card {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
    border: 1px solid var(--border-subtle);
}

.recommendation-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recommendation-score {
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 1rem;  /* Соответствует главной странице */
    font-weight: 600;
}

.recommendation-content {
    margin-top: 16px;
}

.cost-savings {
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 600;
}

.recommendation-details {
    margin-bottom: 16px;
}

.recommendation-details h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.recommendation-details ul {
    margin: 0;
    padding-left: 20px;
}

.recommendation-details li {
    color: var(--neutral-900);
    line-height: 1.6;
    margin-bottom: 4px;
}

.implementation-timeline {
    margin: 32px 0;
}

.implementation-day {
    background: var(--neutral-100);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-sage, #5a7a5f);
}

.implementation-day h3 {
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 600;
}

.task-checkbox-enhanced {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
}

.task-checkbox-enhanced:last-child {
    border-bottom: none;
}

.task-checkbox-enhanced input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.task-content {
    flex: 1;
}

.task-action {
    display: block;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.task-checkbox-enhanced input[type="checkbox"]:checked + .task-content .task-action {
    text-decoration: line-through;
    opacity: 0.6;
}

.task-benefit {
    display: block;
    font-size: 1rem;  /* Соответствует главной странице */
    color: var(--accent-sage);
    font-weight: 600;
    margin-bottom: 4px;
}

.task-timing {
    display: block;
    font-size: 0.95rem;
    color: var(--neutral-600);
}

.script-section {
    background: var(--neutral-100);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid var(--accent-sage);
}

.script-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.script-content {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    font-family: 'Courier New', monospace;
    font-size: 1rem;  /* Соответствует главной странице */
    line-height: 1.6;
    color: var(--neutral-900);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.summary-card {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
    border: 1px solid var(--border-subtle);
}

.summary-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.cost-comparison {
    margin-top: 16px;
}

.guarantee-section {
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    text-align: center;
}

.guarantee-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.guarantee-content {
    margin-top: 16px;
}

.guarantee-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.guarantee-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-section {
    background: var(--neutral-100);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
    max-width: 1200px;  /* Ограничиваем максимальную ширину */
    margin-left: auto;
    margin-right: auto;
}

.contact-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 24px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.contact-item {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.contact-item p {
    color: var(--neutral-900);
    line-height: 1.6;
    margin: 0;
}

.legal-info {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
    border-left: 4px solid var(--accent-sage, #5a7a5f);
}

.legal-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.legal-info p {
    color: var(--neutral-900);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 1rem;  /* Соответствует главной странице */
}

@media (max-width: 768px) {
    .quick-wins-grid,
    .recommendations-grid,
    .summary-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .preferences-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-wins-section,
    .personalized-intro,
    .implementation-day,
    .script-section,
    .summary-card,
    .contact-section {
        padding: 20px;
    }
    
    .quick-wins-title {
        font-size: 1.5rem;
    }
    
    .intro-title {
        font-size: 1.4rem;
    }
}

/* Premium Report Dynamic Scenarios */
.premium-scenarios-container {
    margin: 32px 0;
}

.scenario-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.scenario-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.scenario-card-recommended {
    border-color: var(--accent-sage);
    background: var(--bg-secondary);  /* вместо gradient */
    position: relative;
}

.recommended-badge {
    background: var(--accent-sage);  /* вместо gradient */
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;  /* Соответствует главной странице */
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.scenario-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.scenario-title {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.scenario-savings {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.savings-amount {
    color: var(--success-green);
    font-size: 1.2rem;
    font-weight: 700;
}

.savings-percentage {
    color: var(--neutral-600);
    font-size: 1rem;  /* Соответствует главной странице */
    font-weight: 500;
}

.scenario-summary {
    color: var(--accent-sage);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    font-style: italic;
}

.scenario-description {
    color: var(--neutral-900);
    line-height: 1.7;
    margin-bottom: 20px;
}

.scenario-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--neutral-100);
    border-radius: 8px;
}

/* Duplicate .stat-item removed - using main definition from main.css */

.implementation-summary {
    background: var(--neutral-100);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-sage);
}

.implementation-summary h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.best-for-section {
    margin-bottom: 20px;
}

.best-for-section h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.best-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.best-for-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--neutral-900);
}

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

.why-this-works {
    background: rgba(16, 185, 129, 0.05);  /* вместо gradient */
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
}

.why-this-works h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.personalized-recommendation {
    background: rgba(30, 58, 138, 0.05);  /* вместо gradient */
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-navy);
    margin-bottom: 20px;
}

.personalized-recommendation strong {
    color: var(--primary-navy);
    display: block;
    margin-bottom: 8px;
}

.expected-outcome {
    background: var(--neutral-100);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.expected-outcome h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.outcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcome-list li {
    padding: 6px 0;
    color: var(--neutral-900);
    border-bottom: 1px solid var(--border-subtle);
}

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

/* Providers */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.provider-contact-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.provider-contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.provider-verified {
    border-color: var(--accent-sage);
    background: var(--bg-secondary);  /* вместо gradient */
}

.provider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.provider-name {
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.verified-badge {
    background: var(--success-green);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 18px;  /* Увеличено с 0.8rem для аудитории 55+ */
    font-weight: 600;
    white-space: nowrap;
}

.last-updated {
    color: var(--neutral-600);
    font-size: 18px;  /* Увеличено с 0.8rem для аудитории 55+ */
    white-space: nowrap;
}

.provider-details {
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 16px;
}

.phone-number {
    margin-bottom: 12px;
}

.call-button {
    display: inline-block;
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.call-button:hover {
    background: var(--success-green);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.best-time {
    font-size: 1rem;  /* Соответствует главной странице */
    color: var(--neutral-600);
}

.email-address {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.email-link {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 500;
    flex: 1;
}

.email-link:hover {
    text-decoration: underline;
}

.copy-email-btn {
    background: var(--neutral-700, #4a5568);
    color: var(--bg-primary);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 18px;  /* Увеличено с 0.8rem для аудитории 55+ */
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-email-btn:hover {
    background: var(--accent-sage-light, #7a9a7f);
}

.provider-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--neutral-100);
    border-radius: 8px;
}

.provider-notes {
    background: rgba(16, 185, 129, 0.05);  /* вместо gradient */
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
}

.provider-notes strong {
    color: var(--accent-sage);
}

.quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--neutral-700, #4a5568);
    color: var(--bg-primary);
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--accent-sage-light, #7a9a7f);
    transform: translateY(-1px);
}

/* Real Examples */
.real-examples-section {
    background: var(--neutral-100);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 4px solid var(--accent-sage);
}

.examples-title {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.real-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.real-example-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-subtle);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.real-example-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.example-title {
    color: var(--accent-sage);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.example-quote {
    color: var(--neutral-900);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: var(--text-base);
}

.example-details {
    color: var(--neutral-600);
    font-size: 1rem;  /* Соответствует главной странице */
    line-height: 1.4;
}

.examples-tips {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-navy);
}

.tips-title {
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--neutral-900);
    line-height: 1.5;
}

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

/* Guarantee */
.guarantee-section {
    margin: 32px 0;
}

.guarantee-banner {
    background: var(--primary-navy);  /* вместо gradient */
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-text {
    flex: 1;
}

.guarantee-title {
    color: var(--bg-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.guarantee-description {
    color: var(--bg-primary);
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.95;
}

.guarantee-expiry {
    color: var(--bg-primary);
    font-size: 1rem;  /* Соответствует главной странице */
    opacity: 0.9;
}

.expiry-note {
    color: var(--bg-primary);
    opacity: 0.8;
    font-size: 1rem;  /* Соответствует главной странице */
}

.guarantee-terms {
    background: var(--neutral-100);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-navy);
}

.guarantee-terms h4 {
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.guarantee-terms p {
    color: var(--neutral-900);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Footer */
.contact-section {
    background: var(--neutral-100);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.contact-title {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.legal-info {
    margin-bottom: 24px;
}

.legal-info h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.legal-info p {
    color: var(--neutral-900);
    line-height: 1.6;
    margin-bottom: 12px;
}

.minimal-contact {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
    margin-bottom: 20px;
}

.minimal-contact h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.minimal-contact p {
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.contact-note {
    color: var(--neutral-600);
    font-size: 1rem;  /* Соответствует главной странице */
    font-style: italic;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--primary-navy);
    text-decoration: none;
    margin: 0 8px;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
}

.footer-copyright p {
    color: var(--neutral-600);
    margin-bottom: 8px;
}

.footer-meta {
    color: var(--neutral-600);
    font-size: 1rem;  /* Соответствует главной странице */
}

/* Unlocked */
.unlocked-section {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 4px solid var(--accent-sage);
}

.unlocked-title {
    color: var(--primary-navy);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.unlocked-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.unlocked-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--accent-sage);
    text-align: center;
}

.unlocked-value {
    color: var(--success-green);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.unlocked-label {
    color: var(--neutral-900);
    font-size: 1rem;  /* Соответствует главной странице */
    font-weight: 500;
}

.investment-summary {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
}

.investment-summary strong {
    color: var(--primary-navy);
    font-size: 1.1rem;
}

.investment-summary span {
    color: var(--neutral-900);
}

.investment-cta {
    margin-top: 12px;
    color: var(--accent-sage);
    font-weight: 600;
}

.value-delivered {
    background: var(--neutral-100);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-navy);
}

.value-title {
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list li {
    margin-bottom: 16px;
    padding-left: 36px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.value-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--soft-green);
    font-weight: bold;
    font-size: 1.3rem;
}

.value-list .premium-only::before {
    content: "→";
    color: var(--soft-green);
    font-size: 1.4rem;
}

.cta-buttons {
    margin: 32px 0;
}

.cta-primary {
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 18px 32px; /* Standardized padding */
    border: none;
    border-radius: 8px; /* Standardized border-radius */
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(125, 90, 80, 0.2);
    min-height: 48px;
    touch-action: manipulation;
}

.cta-primary:hover {
    background: var(--accent-sage-light, #7a9a7f);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(125, 90, 80, 0.3);
}

.guarantee-text {
    margin-top: 16px;
    color: var(--bg-primary); /* Белый цвет для читаемости на синем фоне */
    font-size: 1.1rem; /* Увеличено для аудитории 55+ */
    text-align: center; /* Центрируем текст */
    font-weight: 500; /* Немного жирнее */
    padding: 0 20px; /* Добавляем отступы */
}

/* Mobile styles for education section */
@media (max-width: 768px) {
    .education-section {
        padding: 24px;
        margin: 24px 0;
    }
    
    .education-section h2 {
        font-size: 1.5rem; /* 24px */
    }
    
    .education-intro {
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .service-comparison-table th,
    .service-comparison-table td {
        padding: 12px 8px;
        font-size: 1.2rem;  /* Соответствует кнопкам главной страницы */  /* Увеличено с 14px для аудитории 55+ */
    }
    
    .guidance-box {
        padding: 24px;
    }
    
    .guidance-box p {
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .enhanced-cta {
        padding: 12px 24px;
        font-size: 1.2rem;  /* Соответствует кнопкам главной страницы */  /* Увеличено с 14px для аудитории 55+ */
    }
}

/* ============================================
   PREMIUM REPORT STYLES
   ============================================ */

/* PROGRESS TRACKER STYLES */
.progress-motivation {
    background: var(--bg-secondary);  /* вместо gradient */
    color: var(--neutral-900);
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.completion-counter {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary-navy);
}

.savings-tracker {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--accent-sage);
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background: var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-sage);  /* вместо gradient */
    border-radius: 6px;
    transition: width 0.3s ease;
}

.progress-percentage {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-navy);
    min-width: 40px;
    text-align: right;
}

.achievement-message {
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.implementation-checklist-interactive {
    background: var(--neutral-100);
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
}

/* Interactive Checklist Styles */
.task-checkbox-enhanced {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.task-checkbox-enhanced:hover {
    background-color: rgba(16, 185, 129, 0.05);
}

.task-checkbox-enhanced input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
       flex-shrink: 0;
}

.task-content {
    flex: 1;
}

.task-action {
    display: block;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.task-checkbox-enhanced input[type="checkbox"]:checked + .task-content .task-action {
    text-decoration: line-through;
    opacity: 0.6;
}

.task-benefit {
    display: block;
    font-size: 1rem;  /* Соответствует главной странице */
    color: var(--accent-sage);
    font-weight: 600;
    margin-bottom: 4px;
}

.task-timing {
    display: block;
    font-size: 0.95rem;
    color: var(--neutral-600);
}

.script-section {
    background: var(--neutral-100);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid var(--accent-sage);
}

.script-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.script-content {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    font-family: 'Courier New', monospace;
    font-size: 1rem;  /* Соответствует главной странице */
    line-height: 1.6;
    color: var(--neutral-900);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.summary-card {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
    border: 1px solid var(--border-subtle);
}

.summary-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.cost-comparison {
    margin-top: 16px;
}

.guarantee-section {
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    text-align: center;
}

.guarantee-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.guarantee-content {
    margin-top: 16px;
}

.guarantee-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.guarantee-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-section {
    background: var(--neutral-100);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.contact-title {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.contact-item {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.contact-item p {
    color: var(--neutral-900);
    line-height: 1.6;
    margin: 0;
}

.legal-info {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
    border-left: 4px solid var(--accent-sage, #5a7a5f);
}

.legal-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.legal-info p {
    color: var(--neutral-900);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 1rem;  /* Соответствует главной странице */
}

@media (max-width: 768px) {
    .quick-wins-grid,
    .recommendations-grid,
    .summary-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .preferences-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-wins-section,
    .personalized-intro,
    .implementation-day,
    .script-section,
    .summary-card,
    .contact-section {
        padding: 20px;
    }
    
    .quick-wins-title {
        font-size: 1.5rem;
    }
    
    .intro-title {
        font-size: 1.4rem;
    }
}

/* Premium Report Dynamic Scenarios */
.premium-scenarios-container {
    margin: 32px 0;
}

.scenario-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.scenario-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.scenario-card-recommended {
    border-color: var(--accent-sage);
    background: var(--bg-secondary);  /* вместо gradient */
    position: relative;
}

.recommended-badge {
    background: var(--accent-sage);  /* вместо gradient */
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;  /* Соответствует главной странице */
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.scenario-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.scenario-title {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.scenario-savings {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.savings-amount {
    color: var(--success-green);
    font-size: 1.2rem;
    font-weight: 700;
}

.savings-percentage {
    color: var(--neutral-600);
    font-size: 1rem;  /* Соответствует главной странице */
    font-weight: 500;
}

.scenario-summary {
    color: var(--accent-sage);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    font-style: italic;
}

.scenario-description {
    color: var(--neutral-900);
    line-height: 1.7;
    margin-bottom: 20px;
}

.scenario-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--neutral-100);
    border-radius: 8px;
}

/* Duplicate .stat-item removed - using main definition from main.css */

.implementation-summary {
    background: var(--neutral-100);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-sage);
}

.implementation-summary h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.best-for-section {
    margin-bottom: 20px;
}

.best-for-section h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.best-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.best-for-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--neutral-900);
}

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

.why-this-works {
    background: rgba(16, 185, 129, 0.05);  /* вместо gradient */
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
}

.why-this-works h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.personalized-recommendation {
    background: rgba(30, 58, 138, 0.05);  /* вместо gradient */
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-navy);
    margin-bottom: 20px;
}

.personalized-recommendation strong {
    color: var(--primary-navy);
    display: block;
    margin-bottom: 8px;
}

.expected-outcome {
    background: var(--neutral-100);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.expected-outcome h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.outcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcome-list li {
    padding: 6px 0;
    color: var(--neutral-900);
    border-bottom: 1px solid var(--border-subtle);
}

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

/* Providers */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.provider-contact-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.provider-contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.provider-verified {
    border-color: var(--accent-sage);
    background: var(--bg-secondary);  /* вместо gradient */
}

.provider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.provider-name {
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.verified-badge {
    background: var(--success-green);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 18px;  /* Увеличено с 0.8rem для аудитории 55+ */
    font-weight: 600;
    white-space: nowrap;
}

.last-updated {
    color: var(--neutral-600);
    font-size: 18px;  /* Увеличено с 0.8rem для аудитории 55+ */
    white-space: nowrap;
}

.provider-details {
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 16px;
}

.phone-number {
    margin-bottom: 12px;
}

.call-button {
    display: inline-block;
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.call-button:hover {
    background: var(--success-green);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.best-time {
    font-size: 1rem;  /* Соответствует главной странице */
    color: var(--neutral-600);
}

.email-address {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.email-link {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 500;
    flex: 1;
}

.email-link:hover {
    text-decoration: underline;
}

.copy-email-btn {
    background: var(--neutral-700, #4a5568);
    color: var(--bg-primary);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 18px;  /* Увеличено с 0.8rem для аудитории 55+ */
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-email-btn:hover {
    background: var(--accent-sage-light, #7a9a7f);
}

.provider-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--neutral-100);
    border-radius: 8px;
}

.provider-notes {
    background: rgba(16, 185, 129, 0.05);  /* вместо gradient */
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
}

.provider-notes strong {
    color: var(--accent-sage);
}

.quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--neutral-700, #4a5568);
    color: var(--bg-primary);
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--accent-sage-light, #7a9a7f);
    transform: translateY(-1px);
}

/* Real Examples */
.real-examples-section {
    background: var(--neutral-100);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 4px solid var(--accent-sage);
}

.examples-title {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.real-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.real-example-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-subtle);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.real-example-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.example-title {
    color: var(--accent-sage);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.example-quote {
    color: var(--neutral-900);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: var(--text-base);
}

.example-details {
    color: var(--neutral-600);
    font-size: 1rem;  /* Соответствует главной странице */
    line-height: 1.4;
}

.examples-tips {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-navy);
}

.tips-title {
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--neutral-900);
    line-height: 1.5;
}

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

/* Guarantee */
.guarantee-section {
    margin: 32px 0;
}

.guarantee-banner {
    background: var(--primary-navy);  /* вместо gradient */
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-text {
    flex: 1;
}

.guarantee-title {
    color: var(--bg-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.guarantee-description {
    color: var(--bg-primary);
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.95;
}

.guarantee-expiry {
    color: var(--bg-primary);
    font-size: 1rem;  /* Соответствует главной странице */
    opacity: 0.9;
}

.expiry-note {
    color: var(--bg-primary);
    opacity: 0.8;
    font-size: 1rem;  /* Соответствует главной странице */
}

.guarantee-terms {
    background: var(--neutral-100);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-navy);
}

.guarantee-terms h4 {
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.guarantee-terms p {
    color: var(--neutral-900);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Footer */
.contact-section {
    background: var(--neutral-100);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.contact-title {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.legal-info {
    margin-bottom: 24px;
}

.legal-info h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.legal-info p {
    color: var(--neutral-900);
    line-height: 1.6;
    margin-bottom: 12px;
}

.minimal-contact {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
    margin-bottom: 20px;
}

.minimal-contact h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.minimal-contact p {
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.contact-note {
    color: var(--neutral-600);
    font-size: 1rem;  /* Соответствует главной странице */
    font-style: italic;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--primary-navy);
    text-decoration: none;
    margin: 0 8px;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
}

.footer-copyright p {
    color: var(--neutral-600);
    margin-bottom: 8px;
}

.footer-meta {
    color: var(--neutral-600);
    font-size: 1rem;  /* Соответствует главной странице */
}

/* Unlocked */
.unlocked-section {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 4px solid var(--accent-sage);
}

.unlocked-title {
    color: var(--primary-navy);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.unlocked-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.unlocked-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--accent-sage);
    text-align: center;
}

.unlocked-value {
    color: var(--success-green);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.unlocked-label {
    color: var(--neutral-900);
    font-size: 1rem;  /* Соответствует главной странице */
    font-weight: 500;
}

.investment-summary {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
}

.investment-summary strong {
    color: var(--primary-navy);
    font-size: 1.1rem;
}

.investment-summary span {
    color: var(--neutral-900);
}

.investment-cta {
    margin-top: 12px;
    color: var(--accent-sage);
    font-weight: 600;
}

.value-delivered {
    background: var(--neutral-100);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-navy);
}

.value-title {
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list li {
    margin-bottom: 16px;
    padding-left: 36px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.value-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--soft-green);
    font-weight: bold;
    font-size: 1.3rem;
}

.value-list .premium-only::before {
    content: "→";
    color: var(--soft-green);
    font-size: 1.4rem;
}

.cta-buttons {
    margin: 32px 0;
}

.cta-primary {
    background: var(--accent-sage);
    color: var(--bg-primary);
    padding: 18px 32px; /* Standardized padding */
    border: none;
    border-radius: 8px; /* Standardized border-radius */
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(125, 90, 80, 0.2);
    min-height: 48px;
    touch-action: manipulation;
}

.cta-primary:hover {
    background: var(--accent-sage-light, #7a9a7f);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(125, 90, 80, 0.3);
}

.guarantee-text {
    margin-top: 16px;
    color: var(--bg-primary); /* Белый цвет для читаемости на синем фоне */
    font-size: 1.1rem; /* Увеличено для аудитории 55+ */
    text-align: center; /* Центрируем текст */
    font-weight: 500; /* Немного жирнее */
    padding: 0 20px; /* Добавляем отступы */
}

/* Mobile styles for education section */
@media (max-width: 768px) {
    .education-section {
        padding: 24px;
        margin: 24px 0;
    }
    
    .education-section h2 {
        font-size: 1.5rem; /* 24px */
    }
    
    .education-intro {
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .service-comparison-table th,
    .service-comparison-table td {
        padding: 12px 8px;
        font-size: 1.2rem;  /* Соответствует кнопкам главной страницы */  /* Увеличено с 14px для аудитории 55+ */
    }
    
    .guidance-box {
        padding: 24px;
    }
    
    .guidance-box p {
        font-size: 1rem;  /* Соответствует главной странице */
    }
    
    .enhanced-cta {
        padding: 12px 24px;
        font-size: 1.2rem;  /* Соответствует кнопкам главной страницы */  /* Увеличено с 14px для аудитории 55+ */
    }
}

/* EXECUTIVE SUMMARY STYLES - Updated per brief */
.executive-summary {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 48px 40px;
    margin: 48px auto;
    max-width: 1200px;
    box-shadow: 0 8px 32px rgba(26, 32, 44, 0.1);
    border: 1px solid var(--neutral-300);
}

.summary-title {
    font-size: var(--text-h2);
    font-weight: 600;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 20px;
}

.summary-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--accent-sage);
    border-radius: 2px;
}


/* ==========================
   COMPASSIONATE INTRODUCTION
   Emotional support section for premium report users
   ========================== */
.compassionate-intro {
    background: linear-gradient(135deg, #e8f3ea 0%, #f7fafc 100%);
    padding: 48px 24px;
    margin-bottom: 48px;
    border-left: 4px solid var(--accent-sage);
    text-align: center;
}

.compassionate-intro__container {
    max-width: 800px;
    margin: 0 auto;
}

.compassionate-intro__main-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--neutral-800);
    margin-bottom: 24px;
    font-weight: 400;
    text-align: left;
}

.compassionate-intro__support-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-700);
    font-style: italic;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--neutral-300);
    text-align: left;
}

@media (max-width: 768px) {
    .compassionate-intro {
        padding: 32px 20px;
    }
    .compassionate-intro__main-text {
        font-size: 18px;
    }
    .compassionate-intro__support-text {
        font-size: 16px;
        padding: 16px;
    }
}


/* ==========================
   GUIDE VALUE PROPOSITION
   Dignity-first approach for premium report users
   ========================== */
.guide-value-proposition {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--accent-sage-light);
    margin: 32px 0;
}

.value-prop__main {
    font-size: 22px;
    line-height: 1.7;
    color: var(--neutral-800);
    margin-bottom: 20px;
}

.value-prop__reassurance {
    font-size: 19px;
    line-height: 1.7;
    color: var(--accent-sage-dark);
    font-weight: 500;
    margin-bottom: 32px;
    padding: 16px;
    background: var(--accent-sage-pale);
    border-radius: 6px;
}

.value-prop__included h4 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

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

.included-list li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-800);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.included-icon {
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 20px;
}

.value-prop__cta {
    font-size: 18px;
    color: var(--neutral-700);
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--neutral-300);
}

@media (max-width: 768px) {
    .guide-value-proposition {
        padding: 24px 20px;
    }
    .value-prop__main {
        font-size: 19px;
    }
    .included-list li {
        font-size: 17px;
    }
}

/* ==========================
   PERSONALIZED SCENARIOS
   New dignity-first scenario structure
   ========================== */
.personalized-scenarios {
    margin: 48px 0;
}

.scenarios__intro {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 24px;
}

.scenarios__intro-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--neutral-800);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.scenarios__guidance {
    font-size: 18px;
    line-height: 1.6;
    color: var(--neutral-700);
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.scenario-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    border: 2px solid var(--neutral-300);
    transition: all 0.3s ease;
}

.scenario-card:hover {
    border-color: var(--accent-sage);
    box-shadow: 0 4px 12px rgba(90, 122, 95, 0.1);
}

.scenario-card--full {
    border-left: 6px solid var(--primary-navy);
}

.scenario-card--thoughtful {
    border-left: 6px solid var(--accent-sage);
}

.scenario-card--simplified {
    border-left: 6px solid var(--success-green);
}


.scenario-card__title {
    font-size: 28px;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.scenario-card__subtitle {
    display: block;
    font-size: 18px;
    color: var(--neutral-600);
    font-weight: normal;
    margin-top: 8px;
}

.scenario-card__dignity-note {
    background: var(--accent-sage-pale);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid var(--accent-sage);
}

.scenario-card__dignity-note p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-800);
    margin: 0;
}

.scenario-card__what-included,
.scenario-card__what-adjusted,
.scenario-card__what-maintained {
    padding: 24px;
}

.scenario-card__what-included h4,
.scenario-card__what-adjusted h4,
.scenario-card__what-maintained h4 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.scenario-card__what-included ul,
.scenario-card__what-adjusted ul,
.scenario-card__what-maintained ul {
    list-style: none;
    padding: 0;
}

.scenario-card__what-included li,
.scenario-card__what-adjusted li,
.scenario-card__what-maintained li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-800);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.scenario-card__what-included li:before,
.scenario-card__what-adjusted li:before,
.scenario-card__what-maintained li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.scenario-card__cost-context {
    background: #f8fafc;
    padding: 24px;
    border-top: 1px solid var(--neutral-200);
}

.cost-breakdown {
    margin-bottom: 16px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--neutral-200);
}

.cost-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 2px solid var(--primary-navy);
    margin-top: 8px;
    font-weight: 600;
}

.cost-label {
    font-size: 16px;
    color: var(--neutral-700);
}

.cost-amount {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
}

.cost-total .cost-label,
.cost-total .cost-amount {
    font-size: 20px;
    font-weight: 700;
}

.cost-context-note {
    font-size: 17px;
    line-height: 1.6;
    color: var(--neutral-700);
    margin-top: 16px;
    padding: 16px;
    background: var(--neutral-100);
    border-radius: 6px;
}

.scenario-card__who-for {
    padding: 24px;
    background: white;
}

.scenario-card__who-for h4 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.scenario-card__who-for ul {
    list-style: none;
    padding: 0;
}

.scenario-card__who-for li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-800);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.scenario-card__who-for li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-sage);
    font-weight: bold;
    font-size: 20px;
}

.reassurance-note {
    font-size: 18px;
    line-height: 1.7;
    color: var(--accent-sage-dark);
    background: var(--accent-sage-pale);
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

.scenarios__footer {
    text-align: center;
    margin-top: 48px;
    padding: 32px 24px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 1px solid var(--accent-sage-light);
}

.scenarios__reminder {
    font-size: 19px;
    line-height: 1.7;
    color: var(--primary-navy);
    background: linear-gradient(135deg, var(--info-blue-pale) 0%, white 100%);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--info-blue);
    margin-top: 48px;
}

.scenarios__next-steps {
    font-size: 17px;
    line-height: 1.6;
    color: var(--neutral-700);
    margin: 0;
}

@media (max-width: 768px) {
    .scenarios__intro {
        padding: 0 16px;
    }
    
    .scenarios__intro-text {
        font-size: 18px;
    }
    
    .scenarios__guidance {
        font-size: 16px;
    }
    
    .scenario-card {
        padding: 24px 20px;
    }
    
    .scenario-card__title {
        font-size: 24px;
    }
    
    .scenario-card__what-included,
    .scenario-card__what-adjusted,
    .scenario-card__what-maintained,
    .scenario-card__cost-context,
    .scenario-card__who-for {
        padding: 20px;
    }
    
    .scenario-card__what-included li,
    .scenario-card__what-adjusted li,
    .scenario-card__what-maintained li,
    .scenario-card__who-for li {
        font-size: 17px;
    }
    
    .cost-label,
    .cost-amount {
        font-size: 16px;
    }
}

/* ==========================
   UPDATED COMMUNICATION SCRIPTS STYLES
   Enhanced dignity-first styling
   ========================== */
.scripts-intro {
    background: linear-gradient(135deg, #e8f3ea 0%, white 100%);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-sage);
}

.emotional-support-box {
    background: var(--info-blue-pale);
    padding: 24px;
    border-radius: 8px;
    border: 2px solid var(--info-blue-light);
    margin-top: 24px;
}

.emotional-support-box h4 {
    color: var(--info-blue);
    font-size: 20px;
    margin-bottom: 12px;
}

.emotional-support-box ul {
    margin-top: 12px;
    line-height: 1.7;
}

.script-card {
    background: white;
    border: 2px solid var(--neutral-300);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.script-card__title {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.script-card__when-to-use {
    background: var(--neutral-100);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 17px;
}

.script-text {
    background: var(--accent-sage-pale);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
    font-size: 18px;
    line-height: 1.8;
}

.script-text p {
    margin-bottom: 16px;
}

.script-card__helpful-questions ul {
    list-style: none;
    padding-left: 0;
}

.script-card__helpful-questions li {
    padding: 12px 12px 12px 32px;
    margin-bottom: 8px;
    background: var(--neutral-50);
    border-radius: 6px;
    position: relative;
}

.script-card__helpful-questions li:before {
    content: "→";
    position: absolute;
    left: 12px;
    color: var(--accent-sage);
    font-weight: bold;
}

.script-card__what-to-avoid {
    background: var(--warning-amber-pale);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.avoid {
    color: var(--error-red);
}

.better {
    color: var(--success-green);
}

.email-template {
    background: white;
    border: 1px solid var(--neutral-300);
    padding: 24px;
    border-radius: 8px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    line-height: 1.8;
    white-space: pre-line;
}

.success-quote {
    font-style: italic;
    font-size: 18px;
    color: var(--neutral-700);
    border-left: 3px solid var(--success-green);
    padding-left: 20px;
    margin: 16px 0 8px 0;
}

.success-attribution {
    text-align: right;
    color: var(--neutral-600);
    font-size: 16px;
}

/* ==========================
   UTILITY CLASSES FOR INLINE STYLES
   Replacing inline styles with reusable CSS classes
   ========================== */

/* Tip Card with Sage Accent */
.tip-card-sage {
    background: linear-gradient(to right, var(--rgba-sage-light), var(--bg-primary));
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-sage);
}

.tip-card-content {
    display: flex;
    gap: var(--space-2);
    align-items: start;
}

.tip-icon {
    font-size: var(--text-2xl);
}

.tip-title {
    margin: 0 0 var(--space-1) 0;
    color: var(--accent-sage);
}

.tip-description {
    margin: 0 0 var(--space-1) 0;
    color: var(--neutral-900);
}

.tip-instructions {
    margin: 0;
    color: var(--neutral-700);
    font-size: var(--text-md);
}

.tip-time {
    margin-top: var(--space-1);
    padding: var(--space-1);
    background: var(--rgba-sage-light);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
}

/* Typography Utilities */
.text-primary-navy {
    color: var(--primary-navy);
}

.text-accent-sage {
    color: var(--accent-sage);
}

.text-neutral-900 {
    color: var(--neutral-900);
}

.text-success-green {
    color: var(--success-green);
}

/* Spacing Utilities */
.mb-1 {
    margin-bottom: var(--space-1);
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-3 {
    margin-bottom: var(--space-3);
}

.mt-1 {
    margin-top: var(--space-1);
}

.mt-2 {
    margin-top: var(--space-2);
}

/* Font Weight Utilities */
.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

/* Font Style Utilities */
.italic {
    font-style: italic;
}

/* Responsive adjustments for utility classes */
@media (max-width: 768px) {
    .tip-card-sage {
        padding: var(--space-2);
    }
    
    .tip-card-content {
        gap: var(--space-1);
    }
    
    .tip-icon {
        font-size: var(--text-xl);
    }
}

/* Responsive adjustments for width-limited sections */
@media (max-width: 768px) {
    .report-section {
        padding: var(--space-6) var(--space-3);
        max-width: 100%;
    }
    
    .contact-section {
        padding: var(--space-4);
        max-width: 100%;
    }
    
    .tips-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
}

/* ============================================
   FREE REPORT OPTIMIZED STYLES
   Professional styling from free_report_optimized.html
   ============================================ */

/* Savings Highlight Section */
.savings-highlight {
    background: linear-gradient(135deg, 
        rgba(90, 122, 95, 0.1) 0%, 
        rgba(90, 122, 95, 0.05) 100%);
    border-left: 4px solid var(--accent-sage);
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
    text-align: center;
}

.savings-amount {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 8px;
}

.savings-subtitle {
    font-size: var(--text-base);
    color: var(--neutral-600);
    font-weight: 500;
}

/* Analysis Overview Grid */
.analysis-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.overview-item {
    background: var(--bg-primary);
    border: 2px solid var(--neutral-300);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.overview-item:hover {
    border-color: var(--accent-sage);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 122, 95, 0.15);
}

.overview-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--accent-sage);
    line-height: 1.2;
    margin-bottom: 8px;
}

.overview-label {
    font-size: var(--text-base);
    color: var(--neutral-700);
    line-height: 1.5;
    font-weight: 500;
}

/* Free Report Gradient Box */
.free-report-gradient-box {
    background: linear-gradient(135deg,
        rgba(90, 122, 95, 0.1) 0%,
        rgba(90, 122, 95, 0.05) 100%);
    border: 2px solid var(--accent-sage);
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
}

.free-report-gradient-title {
    font-size: var(--text-h4);
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.free-report-gradient-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.free-report-gradient-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--neutral-800);
    border-bottom: 1px solid rgba(90, 122, 95, 0.1);
}

.free-report-gradient-list li:last-child {
    border-bottom: none;
}

.free-report-gradient-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-sage);
    font-weight: 700;
    font-size: var(--text-lg);
}

.free-report-gradient-list li strong {
    color: var(--primary-navy);
    font-weight: 600;
}

/* Info Note */
.info-note {
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-navy);
    border-radius: 8px;
    padding: 20px;
    margin: 32px 0;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--neutral-700);
}

.info-note strong {
    color: var(--primary-navy);
    font-weight: 600;
}

/* Mobile Responsive for New Components */
@media (max-width: 768px) {
    .savings-highlight {
        padding: 20px;
        margin: 24px 0;
    }
    
    .savings-amount {
        font-size: var(--text-lg);
    }
    
    .analysis-overview {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
    }
    
    .overview-item {
        padding: 20px;
    }
    
    .overview-number {
        font-size: var(--text-2xl);
    }
    
    .free-report-gradient-box {
        padding: 24px;
        margin: 24px 0;
    }
    
    .free-report-gradient-title {
        font-size: var(--text-h5);
    }
    
    .free-report-gradient-list li {
        padding-left: 28px;
        font-size: var(--text-base);
    }
}
