/**
 * CSS Стили для онлайн-калькулятора стоимости сайта и инструментов R9 / STTE
 * Темная тема #10131a, акценты #ffb454 (золото) и #3b82f6 (синий)
 */

.tools-calculator {
    padding-top: 20px;
    padding-bottom: 70px;
    color: #e2e8f0;
}

.tools-header {
    margin-bottom: 30px;
    text-align: left;
}

.tools-header .tools-hero-eyebrow {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.tools-header .tools-hero-eyebrow a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.tools-header .tools-hero-eyebrow a:hover {
    color: #60a5fa;
}

.tools-header .tools-hero-eyebrow .active {
    color: #94a3b8;
}

.tools-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.tools-header .tool-subtitle {
    font-size: 16px;
    color: #94a3b8;
    max-width: 840px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Сетка калькулятора: Контент слева (68%), Сайдбар справа (32%) */
.calc-container {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
}

.calc-main-flow {
    flex: 1 1 68%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calc-sidebar {
    flex: 0 0 340px;
    position: sticky;
    top: 90px;
    z-index: 10;
}

/* Карточка каждого шага */
.calc-step-card {
    background: #141923;
    border: 1px solid #232b3b;
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: border-color 0.25s ease;
}

.calc-step-card:hover {
    border-color: #333f57;
}

.calc-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #1f2736;
}

.calc-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb454 0%, #f59e0b 100%);
    color: #0f172a;
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35);
}

.calc-step-header h2 {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.calc-step-subtitle {
    font-size: 13px;
    color: #8b93a3;
    margin-left: auto;
    font-weight: normal;
}

/* Сетка карточек выбора (Radio) */
.calc-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.calc-option-card {
    position: relative;
    background: #0f131c;
    border: 1.5px solid #232a3a;
    border-radius: 12px;
    padding: 18px 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    user-select: none;
}

.calc-option-card:hover {
    background: #161c28;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.calc-option-card.active {
    background: rgba(59, 130, 246, 0.08);
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6, 0 6px 16px rgba(59, 130, 246, 0.15);
}

.calc-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc-option-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.calc-option-icon {
    font-size: 24px;
    line-height: 1;
}

.calc-option-tag {
    font-size: 11.5px;
    font-weight: 700;
    color: #ffb454;
    background: rgba(255, 180, 84, 0.12);
    border: 1px solid rgba(255, 180, 84, 0.25);
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.calc-option-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.35;
}

.calc-option-desc {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 8px;
    flex-grow: 1;
}

.calc-option-days {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

/* Интерактивный слайдер объема страниц */
.calc-slider-wrap {
    background: #0f131c;
    border: 1px solid #232a3a;
    border-radius: 12px;
    padding: 20px 22px;
}

.calc-slider-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.calc-slider-label {
    font-size: 14px;
    color: #cbd5e1;
    font-weight: 600;
}

.calc-slider-value-badge {
    background: #1e2638;
    border: 1px solid #334263;
    color: #60a5fa;
    font-size: 15px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.calc-slider-value-badge span {
    color: #ffb454;
}

.calc-range-input {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #232b3b;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin: 12px 0 10px;
}

.calc-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb454 0%, #f59e0b 100%);
    border: 3px solid #141923;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.calc-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-range-input::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb454 0%, #f59e0b 100%);
    border: 3px solid #141923;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    cursor: pointer;
}

.calc-slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

/* Сетка чекбоксов интеграций */
.calc-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.calc-checkbox-card {
    position: relative;
    background: #0f131c;
    border: 1.5px solid #232a3a;
    border-radius: 12px;
    padding: 16px 18px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.2s ease;
    user-select: none;
}

.calc-checkbox-card:hover {
    background: #161c28;
    border-color: #3b82f6;
}

.calc-checkbox-card.active {
    background: rgba(59, 130, 246, 0.08);
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}

.calc-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Кастомный индикатор чекбокса */
.calc-custom-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #334263;
    background: #141923;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.calc-checkbox-card.active .calc-custom-check {
    background: #3b82f6;
    border-color: #3b82f6;
}

.calc-custom-check::after {
    content: "✓";
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    display: none;
}

.calc-checkbox-card.active .calc-custom-check::after {
    display: block;
}

.calc-cb-content {
    flex: 1;
    min-width: 0;
}

.calc-cb-title {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.35;
}

.calc-cb-desc {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.45;
}

.calc-cb-price {
    font-size: 13px;
    font-weight: 700;
    color: #38ef7d;
    background: rgba(56, 239, 125, 0.1);
    border: 1px solid rgba(56, 239, 125, 0.25);
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    align-self: flex-start;
}

/* Сайдбар со сметой */
.calc-summary-card {
    background: #141923;
    border: 1px solid #232b3b;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.calc-summary-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calc-summary-title small {
    font-size: 12px;
    font-weight: 600;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.12);
    padding: 3px 8px;
    border-radius: 6px;
}

.calc-price-display {
    background: #0f131c;
    border: 1px solid #1f2736;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    margin-bottom: 18px;
}

.calc-price-label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.calc-price-value {
    font-size: 30px;
    font-weight: 800;
    color: #ffb454;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.calc-days-value {
    font-size: 13px;
    color: #60a5fa;
    font-weight: 600;
    margin-top: 6px;
}

/* Список выбранных опций в смете */
.calc-selected-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 18px;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-selected-list::-webkit-scrollbar {
    width: 4px;
}

.calc-selected-list::-webkit-scrollbar-thumb {
    background: #232b3b;
    border-radius: 4px;
}

.calc-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    padding: 6px 10px;
    background: #0f131c;
    border-radius: 6px;
    border: 1px solid #1c2331;
}

.calc-summary-item span {
    color: #cbd5e1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 8px;
}

.calc-summary-item strong {
    color: #ffb454;
    font-weight: 700;
    flex-shrink: 0;
}

/* Кнопка распечатать/сохранить смету */
.calc-print-btn {
    width: 100%;
    background: #1c2332;
    border: 1px solid #2d384e;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.calc-print-btn:hover {
    background: #252f44;
    border-color: #3b82f6;
    color: #ffffff;
}

/* Форма захвата в сайдбаре */
.calc-lead-form {
    border-top: 1px solid #1f2736;
    padding-top: 18px;
}

.calc-lead-form h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.calc-lead-hint {
    font-size: 12px;
    color: #8b93a3;
    line-height: 1.45;
    margin-bottom: 14px;
}

.calc-lead-form .form-group {
    margin-bottom: 10px;
}

.calc-lead-form .form-control {
    background: #0f131c;
    border: 1px solid #232b3b;
    border-radius: 8px;
    color: #ffffff;
    font-size: 13.5px;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.calc-lead-form .form-control:focus {
    border-color: #ffb454;
    box-shadow: 0 0 0 2px rgba(255, 180, 84, 0.2);
}

.calc-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffb454 0%, #f59e0b 100%);
    color: #0f172a;
    font-weight: 800;
    font-size: 14.5px;
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.calc-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.calc-form-status {
    font-size: 12.5px;
    line-height: 1.4;
    margin-top: 10px;
}

.calc-form-status.text-success {
    color: #34d399;
}

.calc-form-status.text-danger {
    color: #f87171;
}

/* Мобильная нижняя плашка (Sticky Bottom Bar) */
.calc-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #141923;
    border-top: 1px solid #232b3b;
    padding: 12px 18px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
    z-index: 999;
    align-items: center;
    justify-content: space-between;
}

.calc-mobile-info {
    display: flex;
    flex-direction: column;
}

.calc-mobile-total {
    font-size: 20px;
    font-weight: 800;
    color: #ffb454;
    line-height: 1.1;
}

.calc-mobile-days {
    font-size: 11px;
    color: #60a5fa;
    font-weight: 600;
}

.calc-mobile-action-btn {
    background: linear-gradient(135deg, #ffb454 0%, #f59e0b 100%);
    color: #0f172a;
    font-weight: 800;
    font-size: 13.5px;
    padding: 9px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

/* Адаптивность для планшетов и мобильных */
@media (max-width: 991px) {
    .calc-container {
        flex-direction: column;
    }

    .calc-sidebar {
        width: 100%;
        flex: 1 1 100%;
        position: static;
    }

    .calc-mobile-bar {
        display: flex;
    }

    .tools-calculator {
        padding-bottom: 90px;
    }
}

@media (max-width: 576px) {
    .calc-step-card {
        padding: 20px 16px;
    }

    .tools-header h1 {
        font-size: 21px !important;
        line-height: 1.28 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .calc-options-grid {
        grid-template-columns: 1fr;
    }

    .calc-checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Стили для Калькулятора рекламного бюджета (ad-budget-calculator)
   ========================================================================== */

/* Niche Pills / Chips */
.calc-niche-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.calc-niche-chip {
    background: #0f131c;
    border: 1.5px solid #232a3a;
    color: #94a3b8;
    padding: 9px 16px;
    border-radius: 24px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.calc-niche-chip:hover {
    background: #192132;
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-1px);
}

.calc-niche-chip.active {
    background: linear-gradient(135deg, rgba(255, 180, 84, 0.15) 0%, rgba(245, 158, 11, 0.25) 100%);
    border-color: #ffb454;
    color: #ffb454;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.calc-niche-chip .chip-icon {
    font-size: 16px;
}

/* Form Fields & Inputs */
.calc-field-card {
    background: #0f131c;
    border: 1px solid #1f2736;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.calc-field-card:hover {
    border-color: #2e3a4e;
}

.calc-field-card:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

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

.calc-field-title-wrap {
    flex: 1;
}

.field-label {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 4px;
}

.field-hint {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #8b93a3;
    line-height: 1.4;
}

.calc-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-field-card .input-group {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 156px;
    flex-shrink: 0;
}

.calc-field-card .form-control {
    background: #141923;
    border: 1px solid #283348;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 10px;
    width: 100%;
    outline: none;
    transition: all 0.2s ease;
    text-align: right;
}

.calc-field-card .form-control:focus {
    border-color: #ffb454;
    box-shadow: 0 0 0 2px rgba(255, 180, 84, 0.2);
}

.calc-field-card .input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.calc-field-card .input-group-text {
    background: #1c2433;
    border: 1px solid #283348;
    border-left: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calc-field-card .calc-range-input {
    margin: 8px 0 4px;
}

/* Select Control */
.calc-field-card select.form-control {
    background: #141923;
    border: 1px solid #283348;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14.5px;
    padding: 10px 14px;
    outline: none;
    text-align: left;
    cursor: pointer;
}

.calc-field-card select.form-control option {
    background: #141923;
    color: #ffffff;
}

/* Funnel Pipeline (Воронка рекламы) */
.calc-funnel-pipeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #0b0e14;
    border: 1px solid #1f2736;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 24px;
    overflow-x: auto;
}

.calc-funnel-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 110px;
}

.calc-funnel-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #161c28;
    border: 1px solid #283348;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 6px;
    transition: transform 0.2s ease;
}

.calc-funnel-step:hover .calc-funnel-icon {
    transform: scale(1.1);
    border-color: #ffb454;
}

.calc-funnel-val {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.calc-funnel-lbl {
    font-size: 11.5px;
    color: #8b93a3;
    margin-top: 2px;
}

.calc-funnel-arrow {
    color: #3b82f6;
    font-size: 18px;
    font-weight: 800;
    opacity: 0.7;
    flex-shrink: 0;
}

/* Visual Metrics Grid (Шаг 3) */
.calc-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 640px) {
    .calc-metrics-grid {
        grid-template-columns: 1fr;
    }
}

.calc-metric-box {
    background: #0f131c;
    border: 1.5px solid #1f2736;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.calc-metric-box:hover {
    border-color: #33425c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.calc-metric-box.metric-accent {
    border-color: rgba(255, 180, 84, 0.4);
    background: linear-gradient(135deg, #0f131c 0%, #161a24 100%);
}

.calc-metric-box.metric-success {
    border-color: rgba(52, 211, 153, 0.35);
    background: linear-gradient(135deg, #0f131c 0%, #121c1a 100%);
}

.calc-metric-box.metric-danger {
    border-color: rgba(248, 113, 113, 0.35);
    background: linear-gradient(135deg, #0f131c 0%, #1f1416 100%);
}

.calc-metric-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calc-metric-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #cbd5e1;
}

.calc-metric-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    background: #1c2433;
    color: #60a5fa;
    border: 1px solid #283348;
}

.calc-metric-val {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.calc-metric-val.text-success {
    color: #34d399 !important;
}

.calc-metric-val.text-danger {
    color: #f87171 !important;
}

.calc-metric-sub {
    font-size: 12px;
    color: #8b93a3;
    line-height: 1.4;
}

/* Financial Summary inside Sidebar */
.calc-financial-summary {
    background: #0f131c;
    border: 1px solid #1f2736;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-fin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #94a3b8;
}

.calc-fin-row strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.calc-fin-row strong.text-success {
    color: #34d399 !important;
    font-size: 15px;
}

.calc-fin-row strong.text-danger {
    color: #f87171 !important;
    font-size: 15px;
}

.calc-fin-divider {
    height: 1px;
    background: #1f2736;
    margin: 4px 0;
}

/* FAQ / Glossary Block */
.calc-faq-section {
    margin-top: 40px;
    background: #141923;
    border: 1px solid #232b3b;
    border-radius: 16px;
    padding: 28px;
}

.calc-faq-section h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.calc-faq-card {
    background: #0f131c;
    border: 1px solid #1f2736;
    border-radius: 12px;
    padding: 16px 18px;
}

.calc-faq-card h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffb454;
    margin: 0 0 6px 0;
}

.calc-faq-card p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

/* Стили для печати сметы (@media print) */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }

    header, footer, .tools-hero-eyebrow, .calc-print-btn, .calc-lead-form, .calc-mobile-bar {
        display: none !important;
    }

    .calc-step-card, .calc-summary-card, .calc-option-card, .calc-checkbox-card {
        background: #ffffff !important;
        border: 1px solid #cccccc !important;
        color: #000000 !important;
        box-shadow: none !important;
    }

    .calc-option-title, .calc-cb-title, .calc-step-header h2, .calc-price-value, .calc-summary-title {
        color: #000000 !important;
    }

    .calc-price-value {
        font-size: 24px !important;
    }
}

/* Mobile Typography Standardization (tools-calc) */
@media (max-width: 768px) {
    .tools-header h1 {
        font-size: 21px !important;
        line-height: 1.28 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
}
@media (max-width: 480px) {
    .tools-header h1 {
        font-size: 21px !important;
        line-height: 1.28 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
}
