

/* Start:/local/templates/centr/components/bitrix/news.detail/solution_expert/style.css?17709810128631*/
/* ============================================================
   ENGINEERING HUB - SOLUTION EXPERT STYLES
   Inspired by Fire Calculator design
   ============================================================ */

:root {
    --eng-primary: #1a2a6c;
    --eng-accent: #c0392b;
    --eng-bg: #f8fafc;
    --eng-border: #e2e8f0;
    --eng-shadow: rgba(26, 42, 108, 0.08);
    --eng-risk: #fff5f5;
    --eng-risk-border: #feb2b2;
}

.solution-expert-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 0 40px 0;
    font-family: 'Ubuntu', sans-serif;
    color: #2d3748;
    line-height: 1.6;
}

/* pagetitle removed from DOM via HIDE_PAGETITLE page property in header.php */

.solution-expert-page .calc-hero h1 {
    display: block;
}

/* Keep our styled hero */

/* 1. HERO BLOCK */
.solution-hero {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border: 2px solid var(--eng-primary);
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px var(--eng-shadow);
    position: relative;
    overflow: hidden;
}

.hero-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--eng-primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.solution-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-desc {
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

/* 2. RISKS SECTION */
.solution-risks-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 25px;
}

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

.risk-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--eng-risk);
    border: 1px solid var(--eng-risk-border);
    border-radius: 12px;
    transition: transform 0.2s;
}

.risk-card:hover {
    transform: translateY(-3px);
}

.risk-icon {
    font-size: 24px;
}

.risk-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    color: #9b2c2c;
}

.risk-text {
    font-size: 14px;
    color: #742a2a;
}

/* 3. WIDGET SECTION */
.solution-widget-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid var(--eng-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.widget-header {
    text-align: center;
    margin-bottom: 30px;
}

.widget-badge {
    background: #ebf8ff;
    color: #2b6cb0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.widget-header h2 {
    font-size: 24px;
    margin: 0;
}

/* 4. MAIN CONTENT */
.solution-main-content {
    margin-bottom: 60px;
}

.content-body {
    font-size: 16px;
    color: #4a5568;
}

.content-body h2,
.content-body h3 {
    color: #1a202c;
    margin-top: 40px;
}

/* --- TABLES inside content-body --- */
.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 14px;
    line-height: 1.5;
    background: #fff;
    border: 1px solid var(--eng-border);
    border-radius: 8px;
    overflow: hidden;
}

.content-body thead th {
    background: var(--eng-primary);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 12px 14px;
    text-align: left;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.content-body thead th:last-child {
    border-right: none;
}

.content-body tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid #edf2f7;
    border-right: 1px solid #edf2f7;
    color: #2d3748;
    vertical-align: top;
}

.content-body tbody td:last-child {
    border-right: none;
}

.content-body tbody tr:last-child td {
    border-bottom: none;
}

.content-body tbody tr:nth-child(even) {
    background: #f7fafc;
}

.content-body tbody tr:hover {
    background: #ebf4ff;
}

/* First column — row header style */
.content-body tbody td:first-child {
    font-weight: 600;
    color: #1a202c;
    background: #f8fafc;
    white-space: nowrap;
}

.content-body tbody tr:nth-child(even) td:first-child {
    background: #f0f4f8;
}

.content-body tbody tr:hover td:first-child {
    background: #dbeafe;
}

/* colspan cells (full-width notes) */
.content-body tbody td[colspan] {
    text-align: center;
    font-style: italic;
    color: #718096;
    background: #fffbeb;
    white-space: normal;
}

/* Bold row (totals, summaries) */
.content-body tbody tr:last-child td b,
.content-body tbody td b {
    color: #1a202c;
}

/* Responsive wrapper */
.content-body .expert-content,
.content-body .article-content {
    overflow-x: auto;
}

@media (max-width: 768px) {
    .content-body table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .content-body thead th,
    .content-body tbody td {
        padding: 8px 10px;
    }

    .content-body tbody td:first-child {
        position: sticky;
        left: 0;
        z-index: 1;
        min-width: 120px;
    }
}

/* 5. CTA BLOCK */
.solution-cta-block {
    background: linear-gradient(135deg, #1a2a6c, #2a48bc);
    color: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 15px 35px rgba(26, 42, 108, 0.2);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-info h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    color: #fff;
}

.cta-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

.cta-button {
    background: var(--eng-accent);
    color: #fff !important;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-button:hover {
    background: #a93226;
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    font-size: 22px;
}

/* 6. PRODUCTS SLIDER */
.solution-linked-products {
    background: #fdfdfd;
    padding: 20px 0;
}

.products-slider-wrap {
    margin-top: 30px;
}

/* 7. RELATED CASES */
.solution-related-cases {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--eng-border);
}

.solution-related-cases .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.case-card-mini {
    display: block;
    background: #fff;
    border: 1px solid var(--eng-border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.case-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--eng-shadow);
    border-color: var(--eng-primary);
}

.case-card-mini .case-thumb {
    height: 150px;
    background-size: cover;
    background-position: center;
    background-color: #f7fafc;
}

.case-card-mini .case-info {
    padding: 15px;
}

.case-card-mini .case-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a202c;
    line-height: 1.4;
    margin-bottom: 8px;
}

.case-card-mini .case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #718096;
}

.cases-more {
    text-align: center;
}

.cases-more-link {
    display: inline-block;
    padding: 12px 28px;
    color: var(--eng-primary);
    border: 2px solid var(--eng-primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.cases-more-link:hover {
    background: var(--eng-primary);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .solution-hero {
        padding: 40px 20px;
    }

    .solution-hero h1 {
        font-size: 28px;
    }

    .solution-widget-section {
        padding: 25px 15px;
    }

    .cta-info h3 {
        font-size: 22px;
    }
}
/* End */


/* Start:/local/components/local/engineering.calc.fire/templates/.default/style.css?176917073914585*/
/* ============================================
   FIRE CALCULATOR STYLES
   Калькулятор пожарного запаса воды
   ============================================ */

:root {
    --fire-primary: #a33;
    --fire-primary-light: #c55;
    --fire-primary-dark: #822;
    --fire-accent: #e67e22;
    --fire-success: #2e7d32;
    --fire-bg: #fdf8f6;
    --fire-border: #e8d6d0;
}

.fire-calc-page {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Ubuntu', Arial, sans-serif;
}

/* Hero Section */
.fire-calc-hero {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 2px solid var(--fire-primary);
    border-radius: 16px;
    color: #333;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-icon {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: none;
}

.fire-calc-hero h1 {
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: #333;
}

.hero-subtitle {
    font-size: 16px;
    opacity: 1;
    color: #666;
    margin: 0;
}

/* Wizard Container */
.fire-calc-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Progress Steps */
.wizard-progress {
    display: flex;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    gap: 10px;
}

.wizard-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #eee;
    opacity: 0.5;
    transition: all 0.3s;
}

.wizard-step.active {
    opacity: 1;
    border-color: var(--fire-primary);
}

.wizard-step.completed {
    opacity: 1;
    border-color: var(--fire-success);
    background: #f0fff0;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.wizard-step.active .step-num {
    background: var(--fire-primary);
    color: #fff;
}

.wizard-step.completed .step-num {
    background: var(--fire-success);
    color: #fff;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.wizard-step.active .step-label {
    color: #333;
}

/* Wizard Panels */
.wizard-panel {
    display: none;
    padding: 30px;
}

.wizard-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-panel h2 {
    font-size: 22px;
    margin: 0 0 10px 0;
    color: #333;
}

.step-hint {
    color: #666;
    margin: 0 0 25px 0;
}

/* Object Type Grid */
.object-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.object-type-card {
    padding: 25px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.object-type-card:hover {
    border-color: var(--fire-primary-light);
    background: var(--fire-bg);
}

.object-type-card.selected {
    border-color: var(--fire-primary);
    background: var(--fire-bg);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.card-desc {
    font-size: 13px;
    color: #888;
}

/* Form Elements */
.form-row {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.help-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #0073aa;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    cursor: pointer;
    margin-left: 5px;
}

.fire-select,
.fire-input {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.fire-select:focus,
.fire-input:focus {
    outline: none;
    border-color: var(--fire-primary);
}

.error-field {
    border-color: #ff4d4f !important;
    background-color: #fff1f0;
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
}

.fire-input.small {
    width: 90px;
    text-align: center;
}

.volume-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-input-group .fire-input {
    flex: 1;
}

.volume-unit {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.form-hint {
    font-size: 13px;
    color: #888;
    margin: 10px 0;
}

.dimensions-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.dimensions-row span {
    color: #999;
}

.btn-calc-volume {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--fire-primary);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}

.btn-calc-volume:hover {
    background: var(--fire-primary-dark);
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 15px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-item:hover {
    border-color: var(--fire-primary-light);
}

.radio-item input[type="radio"] {
    accent-color: var(--fire-primary);
}

.radio-item input[type="radio"]:checked+span {
    font-weight: 600;
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.btn-wizard {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back {
    background: #f5f5f5;
    color: #666;
}

.btn-back:hover {
    background: #eee;
}

.btn-next {
    background: var(--fire-primary);
    color: #fff;
}

.btn-next:hover {
    background: var(--fire-primary-dark);
}

/* Result Card */
.result-card {
    background: #fff;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
}

.result-icon {
    font-size: 36px;
}

.result-header h2 {
    margin: 0;
    font-size: 24px;
}

/* Result Sections */
.result-section {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
}

.result-section h3 {
    font-size: 16px;
    margin: 0 0 15px 0;
    color: #333;
}

/* Legal Block */
.legal-block {
    background: #f0f7ff;
    border: 1px solid #cce0f5;
}

.legal-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.legal-text strong {
    color: #0073aa;
}

.result-volume-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #0073aa;
}

.volume-label {
    font-size: 14px;
    color: #666;
}

.volume-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--fire-primary);
}

/* Tech Block */
.tech-block {
    background: #fff8e1;
    border: 1px solid #ffe082;
}

.tech-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5d4037;
    margin-bottom: 15px;
}

.tank-config {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tank-option {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #ddd;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.tank-option:hover {
    border-color: var(--fire-accent);
}

.tank-option.recommended {
    border-color: var(--fire-success);
    background: #f0fff0;
}

.tank-option .tank-count {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.tank-option .tank-size {
    font-size: 14px;
    color: #666;
}

.tank-option .tank-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--fire-success);
    color: #fff;
    font-size: 11px;
    border-radius: 10px;
    margin-top: 8px;
}

/* Products Block */
.products-block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #eee;
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}

.product-card:hover {
    border-color: var(--fire-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8f8f8;
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.product-volume {
    font-size: 13px;
    color: #666;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--fire-primary);
    margin-top: 8px;
}

.product-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px;
    color: #999;
}

/* Modular Set Cards */
.modular-set-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.modular-set-card.best-set {
    border: 2px solid #2ecc71;
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.1);
}

.set-header {
    background: #f8f9fa;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.best-set .set-header {
    background: rgba(46, 204, 113, 0.05);
    color: #27ae60;
}

.set-badge {
    background: #2ecc71;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.set-items {
    padding: 20px;
    flex: 1;
}

.set-item {
    margin-bottom: 15px;
}

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

.set-item-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.set-item-row img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 5px;
}

.set-item-info {
    flex: 1;
}

.set-item-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 3px;
}

.set-item-count {
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

.set-footer {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.set-stats {
    margin-bottom: 15px;
}

.set-stat {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.set-stat strong {
    color: #2ecc71;
    font-size: 16px;
}

.add-set-to-cart {
    width: 100%;
    margin-top: 10px;
    background: #e74c3c;
    font-size: 14px;
}

.add-set-to-cart:hover {
    background: #c0392b;
}

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

/* Result Actions */
.result-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pdf {
    background: #0073aa;
    color: #fff;
}

.btn-pdf:hover {
    background: #005580;
}

.btn-consult {
    background: var(--fire-primary);
    color: #fff;
}

.btn-consult:hover {
    background: var(--fire-primary-dark);
}

.action-icon {
    font-size: 18px;
}

/* Error Card */
.error-card {
    text-align: center;
    padding: 40px;
}

.error-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.error-card h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: var(--fire-primary);
}

.error-card p {
    color: #666;
    margin-bottom: 25px;
}

/* Info Block */
.fire-info-block {
    margin-bottom: 40px;
}

.fire-info-block h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
}

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

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.info-card h4 {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.info-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* CTA */
.fire-cta {
    background: #f0f7ff;
    border: 1px solid #cce0f5;
    color: #333;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.fire-cta h3 {
    font-size: 22px;
    margin: 0 0 10px 0;
}

.fire-cta p {
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.fire-cta .button {
    background: #B8FA2C !important;
    color: #000 !important;
}

/* Related Tools */
.related-tools {
    margin-bottom: 40px;
}

.related-tools h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.tools-grid {
    display: flex;
    gap: 15px;
}

.tool-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}

.tool-card:hover {
    border-color: #0073aa;
    background: #f0f7ff;
}

.tool-icon {
    font-size: 24px;
}

.tool-name {
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .object-type-grid {
        grid-template-columns: 1fr;
    }

    .wizard-progress {
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .result-actions {
        flex-direction: column;
    }

    .dimensions-row {
        flex-wrap: wrap;
    }

    .fire-input.small {
        width: 70px;
    }

    .step-label {
        font-size: 12px;
    }
}
/* End */
/* /local/templates/centr/components/bitrix/news.detail/solution_expert/style.css?17709810128631 */
/* /local/components/local/engineering.calc.fire/templates/.default/style.css?176917073914585 */
