/* ══════════════════════════════════════
   Inner Pages — v2 Design
   News, Contacts, Payment, FAQ
   ══════════════════════════════════════ */

/* ── Page header (dark banner with title) ── */
.tp-page-head {
    background: #2c3e50;
    padding: 100px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tp-page-head::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(41,128,185,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.02) 0%, transparent 50%);
}
.tp-page-head__inner {
    position: relative;
    z-index: 2;
    max-width: min(1280px, 100% - 80px);
    margin: 0 auto;
}
.tp-page-head__title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}
.tp-page-head__breadcrumb {
    margin-top: 14px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.tp-page-head__breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.tp-page-head__breadcrumb a:hover { color: #fff; }
.tp-page-head__breadcrumb span { margin: 0 8px; }

/* ── Page content shell ── */
.tp-page-shell {
    max-width: min(1280px, 100% - 80px);
    margin: 0 auto;
    padding: 48px 0 64px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.tp-page-content {
    background: #fff;
}

/* ── Section title (used inside content) ── */
.tp-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #8a9bae;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 8px;
}
.tp-section-title {
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    line-height: 1.2;
}

/* ── Info cards grid ── */
.tp-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.tp-info-card {
    border: 1px solid #d5dce4;
    border-radius: 4px;
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.tp-info-card:hover {
    border-color: #2c3e50;
    box-shadow: 0 4px 16px rgba(44,62,80,0.06);
}
.tp-info-card__icon {
    width: 40px;
    height: 40px;
    background: #2c3e50;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
}
.tp-info-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px;
}
.tp-info-card__text {
    font-size: 0.84rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}
.tp-info-card__text a {
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
}
.tp-info-card__text a:hover { text-decoration: underline; }

/* ── Two-column layout ── */
.tp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

/* ── Feature block (icon + title + description) ── */
.tp-feature {
    display: flex;
    gap: 16px;
    padding: 24px;
    border: 1px solid #d5dce4;
    border-radius: 4px;
    transition: border-color 0.2s;
}
.tp-feature:hover { border-color: #2c3e50; }
.tp-feature__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #2c3e50;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.tp-feature__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.tp-feature__icon svg path,
.tp-feature__icon svg line,
.tp-feature__icon svg rect,
.tp-feature__icon svg circle,
.tp-feature__icon svg polyline,
.tp-feature__icon svg polygon {
    fill: none;
    stroke: inherit;
    stroke-width: inherit;
}
.tp-feature__body { flex: 1; }
.tp-feature__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 6px;
}
.tp-feature__desc {
    font-size: 0.84rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* ── FAQ accordion ── */
.tp-faq-list {
    max-width: 800px;
}
.tp-faq-item {
    border: 1px solid #d5dce4;
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.tp-faq-item:hover { border-color: #8a9bae; }
.tp-faq-item.tp-faq-item--open { border-color: #2c3e50; }
.tp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
}
.tp-faq-q:hover { background: #fafbfc; }
.tp-faq-q svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #8a9bae;
}
.tp-faq-item--open .tp-faq-q svg { transform: rotate(180deg); color: #2c3e50; }
.tp-faq-a {
    display: none;
    padding: 0 20px 20px;
    font-size: 0.88rem;
    color: #5a6c7d;
    line-height: 1.7;
}
.tp-faq-item--open .tp-faq-a { display: block; }

/* ── Divider ── */
.tp-divider {
    border: 0;
    border-top: 1px solid #d5dce4;
    margin: 40px 0;
}

/* ── Styled raw HTML from DB ── */
.tp-page-body {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.75;
}
.tp-page-body h1, .tp-page-body h2, .tp-page-body h3,
.tp-page-body h4, .tp-page-body h5, .tp-page-body h6 {
    color: #2c3e50;
    font-weight: 700;
    margin: 28px 0 12px;
    line-height: 1.3;
}
.tp-page-body h1 { font-size: 1.6rem; }
.tp-page-body h2 { font-size: 1.35rem; }
.tp-page-body h3 { font-size: 1.15rem; }
.tp-page-body p { margin: 0 0 16px; }
.tp-page-body ul, .tp-page-body ol {
    margin: 0 0 16px;
    padding-left: 24px;
}
.tp-page-body li { margin-bottom: 6px; }
.tp-page-body a { color: #2980b9; }
.tp-page-body a:hover { color: #1a5276; }
.tp-page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.tp-page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.88rem;
}
.tp-page-body table th,
.tp-page-body table td {
    padding: 10px 14px;
    border: 1px solid #d5dce4;
    text-align: left;
}
.tp-page-body table th {
    background: #f0f2f5;
    font-weight: 700;
    color: #2c3e50;
}
.tp-page-body table tr:nth-child(even) td {
    background: #fafbfc;
}

/* ── News listing grid ── */
.tp-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tp-news-card {
    background: #fff;
    border: 1px solid #d5dce4;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.tp-news-card:hover {
    border-color: #2c3e50;
    box-shadow: 0 4px 16px rgba(44,62,80,0.08);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}
.tp-news-card__img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}
.tp-news-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tp-news-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
    margin: 0 0 10px;
}
.tp-news-card__excerpt {
    font-size: 0.84rem;
    color: #5a6c7d;
    line-height: 1.6;
    flex: 1;
}
.tp-news-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 14px;
}
.tp-news-card__more svg {
    transition: transform 0.2s;
}
.tp-news-card:hover .tp-news-card__more svg {
    transform: translateX(4px);
}

/* ── News single article ── */
.tp-article__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #8a9bae;
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.2s;
}
.tp-article__back:hover { color: #2c3e50; text-decoration: none; }
.tp-article__back svg { transition: transform 0.2s; }
.tp-article__back:hover svg { transform: translateX(-3px); }

/* ── Contacts maps grid ── */
.tp-maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.tp-map-card {
    border: 1px solid #d5dce4;
    border-radius: 4px;
    overflow: hidden;
}
.tp-map-card__label {
    padding: 12px 16px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #2c3e50;
    background: #f0f2f5;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.tp-map-card iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* ── Services catalog ── */
.tp-catalog-intro {
    max-width: 680px;
    margin-bottom: 44px;
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}
.tp-catalog-intro p { margin: 0; }
.tp-catalog-section {
    margin-bottom: 48px;
    scroll-margin-top: 80px;
}
.tp-catalog-section:last-child {
    margin-bottom: 0;
}
.tp-catalog-section__header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #d5dce4;
}
.tp-catalog-section__title {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
    border: 0;
}
.tp-catalog-section__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    border-radius: 13px;
    background: #eef0f3;
    font-size: 0.75rem;
    font-weight: 700;
    color: #5a6c7d;
}
.tp-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tp-catalog-card {
    background: #fff;
    border: 1px solid #d5dce4;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.tp-catalog-card:hover {
    border-color: #2c3e50;
    box-shadow: 0 8px 24px rgba(44,62,80,0.10);
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}
.tp-catalog-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f2f5;
}
.tp-catalog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.tp-catalog-card:hover .tp-catalog-card__img img {
    transform: scale(1.05);
}
.tp-catalog-card__body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tp-catalog-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px;
    line-height: 1.3;
}
.tp-catalog-card__text {
    font-size: 0.84rem;
    color: #5a6c7d;
    line-height: 1.6;
    flex: 1;
    margin: 0 0 16px;
}
.tp-catalog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.tp-catalog-card__price {
    font-size: 0.82rem;
    font-weight: 700;
    color: #2c3e50;
    white-space: nowrap;
}
.tp-catalog-card__price--custom {
    font-weight: 600;
    color: #8a9bae;
    font-style: italic;
}
.tp-catalog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.2s;
    white-space: nowrap;
}
.tp-catalog-card:hover .tp-catalog-card__link { color: #1a2a38; }
.tp-catalog-card__link svg {
    transition: transform 0.2s;
}
.tp-catalog-card:hover .tp-catalog-card__link svg {
    transform: translateX(4px);
}

/* ── Service single page ── */
.tp-service-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}
.tp-service-hero__title {
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    line-height: 1.2;
}
.tp-service-hero__desc {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.75;
}
.tp-service-hero__img {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44,62,80,0.08);
}
.tp-service-hero__img img {
    width: 100%;
    height: auto;
    display: block;
}

.tp-service-layout__subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 20px;
}
.tp-service-layout__icon {
    flex-shrink: 0;
    color: #8a9bae;
}

.tp-service-specs-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 32px;
}
.tp-service-specs-col {}
.tp-service-specs-img {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e2e8ee;
    position: sticky;
    top: 80px;
}
.tp-service-specs-img img {
    width: 100%;
    height: auto;
    display: block;
}

.tp-service-calc-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #d5dce4;
}

.tp-service-specs {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 20px;
    font-size: 0.88rem;
}
.tp-service-specs th,
.tp-service-specs td {
    padding: 14px 18px;
    border: 1px solid #d5dce4;
    text-align: left;
}
.tp-service-specs th {
    background: #f0f2f5;
    font-weight: 700;
    color: #2c3e50;
    white-space: nowrap;
    width: 200px;
}
.tp-service-specs td {
    color: #5a6c7d;
}
.tp-service-specs tr:hover td {
    background: #fafbfc;
}

.tp-service-note {
    font-size: 0.84rem;
    font-style: italic;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 16px 0 24px;
    padding: 14px 18px;
    background: #f8f9fb;
    border-left: 3px solid #d5dce4;
    border-radius: 0 4px 4px 0;
}

.tp-service-calc-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 24px;
}
.tp-service-calc-heading svg {
    flex-shrink: 0;
    color: #8a9bae;
}

/* ── Public calculator widget ── */
.tp-calc {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
}
.tp-calc__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tp-calc__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tp-calc__field--half { flex: 1; min-width: 0; }
.tp-calc__row { display: flex; gap: 16px; }
.tp-calc__label {
    font-size: 0.84rem;
    font-weight: 600;
    color: #2c3e50;
}
.tp-calc__select,
.tp-calc__input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d5dce4;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #2c3e50;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.tp-calc__select:focus,
.tp-calc__input:focus { outline: none; border-color: #2c3e50; }
.tp-calc__input--small { max-width: 140px; }
.tp-calc__hint {
    font-size: 0.82rem;
    color: #8a9bae;
    margin: -8px 0 0;
}
.tp-calc__btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 28px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    background: #2c3e50;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 4px;
}
.tp-calc__btn:hover { background: #1a2a38; }
.tp-calc__btn:active { transform: scale(0.97); }
.tp-calc__btn:disabled { opacity: 0.6; cursor: wait; }
.tp-calc__error {
    padding: 10px 14px;
    background: #fdf0ef;
    border: 1px solid #e8c4c0;
    border-radius: 4px;
    color: #c0392b;
    font-size: 0.84rem;
}

/* ── Calculator results (right column) ── */
.tp-calc__result {
    padding: 24px;
    background: #f8f9fb;
    border: 1px solid #d5dce4;
    border-radius: 6px;
    position: sticky;
    top: 80px;
}
.tp-calc__result-heading {
    font-size: 0.82rem;
    font-weight: 700;
    color: #8a9bae;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #d5dce4;
}
.tp-calc__result-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tp-calc__result-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tp-calc__result-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #8a9bae;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.tp-calc__result-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
}
.tp-calc__result-price--urgent { color: #c0392b; }
.tp-calc__result-note {
    font-size: 0.78rem;
    color: #8a9bae;
}
.tp-calc__disclaimer {
    margin: 16px 0 0;
    font-size: 0.78rem;
    color: #8a9bae;
    font-style: italic;
}
.tp-calc__order-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    border: none;
    background: #27ae60;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.tp-calc__order-btn:hover { background: #219a52; }
.tp-calc__order-btn:active { transform: scale(0.97); }

/* ── Order modal ── */
.tp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.tp-modal-overlay--open { display: flex; }
.tp-modal {
    background: #fff;
    border-radius: 8px;
    padding: 36px 32px;
    max-width: 460px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
}
.tp-modal__close {
    position: absolute;
    top: 12px; right: 14px;
    background: none; border: none;
    font-size: 1.4rem; color: #8a9bae;
    cursor: pointer; line-height: 1; padding: 4px;
}
.tp-modal__close:hover { color: #2c3e50; }
.tp-modal__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 20px;
}
.tp-modal__summary {
    background: #f8f9fb;
    border: 1px solid #d5dce4;
    border-radius: 4px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.84rem;
    color: #5a6c7d;
    line-height: 1.6;
}
.tp-modal__summary strong { color: #2c3e50; }
.tp-modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.tp-modal__label {
    font-size: 0.84rem;
    font-weight: 600;
    color: #2c3e50;
}
.tp-modal__input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d5dce4;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #2c3e50;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.tp-modal__input:focus { outline: none; border-color: #2c3e50; }
.tp-modal__submit {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 12px 20px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    border: none;
    background: #2c3e50;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.tp-modal__submit:hover { background: #1a2a38; }
.tp-modal__submit:disabled { opacity: 0.6; cursor: wait; }
.tp-modal__success { text-align: center; padding: 20px 0; }
.tp-modal__success-icon {
    width: 56px; height: 56px;
    background: #27ae60;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
}
.tp-modal__success-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 8px;
}
.tp-modal__success-text {
    font-size: 0.88rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* ── Service CTA block ── */
.tp-service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: #2c3e50;
    border-radius: 8px;
    padding: 36px 40px;
    margin-top: 48px;
}
.tp-service-cta__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.tp-service-cta__text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}
.tp-service-cta__btns {
    display: flex;
    gap: 10px;
}
.tp-btn--outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
    background: transparent;
    transition: all 0.2s;
}
.tp-btn--outline:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    background: rgba(255,255,255,0.08);
    text-decoration: none;
}

/* ── Scroll reveal (shared with home) ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].tp-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .tp-page-shell { max-width: calc(100% - 48px); }
    .tp-page-head__inner { max-width: calc(100% - 48px); }
}
@media (max-width: 899px) {
    .tp-news-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .tp-maps-grid { grid-template-columns: 1fr; }
    .tp-info-grid { grid-template-columns: 1fr; }
    .tp-two-col { grid-template-columns: 1fr; }
    .tp-page-head { padding: 88px 0 36px; }
    .tp-catalog-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .tp-service-hero { grid-template-columns: 1fr; gap: 24px; }
    .tp-service-specs-row { grid-template-columns: 1fr; gap: 20px; }
    .tp-service-specs-img { position: static; }
    .tp-service-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }
    .tp-service-cta__btns { width: 100%; }
    .tp-service-cta__btns .tp-btn,
    .tp-service-cta__btns .tp-btn--outline { flex: 1; text-align: center; }
    .tp-service-specs th { width: 160px; }
}
@media (max-width: 768px) {
    .tp-page-shell { max-width: calc(100% - 32px); padding: 32px 0 48px; }
    .tp-page-head__inner { max-width: calc(100% - 32px); }
    .tp-calc { grid-template-columns: 1fr; }
    .tp-calc__result { position: static; }
    .tp-catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 576px) {
    .tp-news-grid { grid-template-columns: 1fr; }
    .tp-catalog-grid { grid-template-columns: 1fr; }
    .tp-calc__row { flex-direction: column; }
    .tp-calc__input--small { max-width: 100%; }
    .tp-service-specs th { width: auto; white-space: normal; }
    .tp-service-specs th,
    .tp-service-specs td { display: block; padding: 10px 14px; }
    .tp-service-specs tr { display: block; margin-bottom: 8px; }
}
