/* Kanalizator Theme — main styles */

:root {
    --color-bg: #0c0c0c;
    --color-bg-alt: #141414;
    --color-surface: #1a1a1a;
    --color-surface-hover: #222222;
    --color-red: #d62828;
    --color-red-dark: #b91c1c;
    --color-red-glow: rgba(214, 40, 40, 0.25);
    --color-white: #ffffff;
    --color-text: #e8e8e8;
    --color-muted: #9a9a9a;
    --color-border: #2a2a2a;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --header-height: 72px;
    --transition: 0.25s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #ff4444;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

.btn-primary:hover {
    background: var(--color-red-dark);
    border-color: var(--color-red-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--color-red-glow);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(12, 12, 12, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-white);
}

.logo-badge {
    background: var(--color-red);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.site-nav {
    display: flex;
    gap: 28px;
}

.site-nav a {
    color: var(--color-muted);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: color var(--transition);
}

.site-nav a:hover {
    color: var(--color-white);
}

.header-phone {
    font-size: 14px;
    padding: 10px 18px;
}

.header-phones {
    display: flex;
    align-items: center;
}

.phone-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phone-links--inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.phone-link {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition);
}

.phone-links--header .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--color-red);
    color: var(--color-white);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
}

.phone-links--header .phone-link:hover {
    background: var(--color-red-dark);
    color: var(--color-white);
}

.phone-links--footer .phone-link {
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 4px;
}

.phone-links--footer .phone-link:hover {
    color: var(--color-red);
}

.phone-links--callback .phone-link {
    font-size: 26px;
    color: var(--color-red);
}

.phone-links--cta .phone-link {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.phone-links--cta .phone-link:hover {
    color: var(--color-white);
    text-decoration: underline;
}

/* Video section */
.video-section {
    background: var(--color-bg-alt);
}

.media-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: start;
}

.video-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    background: var(--color-surface);
}

.video-caption {
    padding: 12px 16px;
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.equipment-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.equipment-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    margin: 0;
}

.equipment-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: transform var(--transition);
}

.equipment-card:hover img {
    transform: scale(1.04);
}

.equipment-card figcaption {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-white);
    background: rgba(12, 12, 12, 0.85);
}

.promo-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    background: #000;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    padding: calc(var(--header-height) + 48px) 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, var(--color-red-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(214, 40, 40, 0.08) 0%, transparent 40%),
        var(--color-bg);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.badge-247 {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-red);
    font-style: italic;
}

.hero-badge span:last-child {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-white);
    margin: 0 0 16px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--color-red);
}

.hero-ribbon {
    display: inline-block;
    background: var(--color-red);
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 17px;
    color: var(--color-muted);
    max-width: 520px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.hero-pill {
    display: inline-block;
    padding: 8px 14px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.hero-banner--equipment {
    object-fit: cover;
    object-position: 75% center;
}

.hero-visual-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(12, 12, 12, 0.85);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 12px 16px;
    backdrop-filter: blur(8px);
}

.hero-visual-badge strong {
    display: block;
    color: var(--color-white);
    font-size: 14px;
}

.hero-visual-badge span {
    font-size: 12px;
    color: var(--color-muted);
}

.hero-visual {
    position: relative;
}

.hero-banner {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--color-muted);
    font-size: 17px;
    margin: 0;
}

/* Benefits */
.benefits {
    background: var(--color-bg-alt);
}

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

.benefit-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}

.benefit-card:hover {
    border-color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(214, 40, 40, 0.15);
    color: var(--color-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 8px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--color-muted);
    margin: 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: rgba(214, 40, 40, 0.5);
    background: var(--color-surface-hover);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.6;
}

/* Clients bar */
.clients {
    padding: 40px 0;
    background: var(--color-red);
}

.clients-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.clients-label {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.client-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-white);
    font-size: 15px;
}

.client-dot {
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
}

/* Prices */
.prices {
    background: var(--color-bg-alt);
}

.prices-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
}

.prices-table th {
    background: var(--color-bg);
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.prices-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
}

.prices-table tbody tr:hover {
    background: var(--color-surface-hover);
}

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

.price-cell {
    font-weight: 700;
    color: var(--color-red);
    font-size: 16px;
}

.prices-note {
    padding: 16px 24px;
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    border-top: 1px solid var(--color-border);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-images img {
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
    height: 200px;
    border: 1px solid var(--color-border);
}

.about-images img:first-child {
    grid-column: 1 / -1;
    height: 280px;
}

.about-images .about-stats {
    grid-column: 1 / -1;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 20px;
}

.about-content p {
    color: var(--color-muted);
    margin: 0 0 16px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
}

.about-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--color-text);
    font-size: 15px;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-red);
    border-radius: 2px;
}

/* CTA */
.cta {
    padding: 60px 0;
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, var(--color-red-dark), var(--color-red));
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 8px 40px var(--color-red-glow);
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 8px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
}

.cta-phone {
    display: inline-block;
    font-size: 32px;
    font-weight: 900;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.cta-phone:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.cta-discount {
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius);
    padding: 24px 32px;
}

.discount-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 8px;
}

.cta-discount p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0 0 8px;
}

.discount-handle {
    font-weight: 700;
    color: var(--color-white);
    font-size: 15px;
}

/* Footer */
.site-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--color-red);
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 12px;
}

.footer-brand p {
    color: var(--color-muted);
    font-size: 14px;
    margin: 0;
    max-width: 320px;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 16px;
}

.footer-phone {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer-phone:hover {
    color: var(--color-red);
}

.footer-contact p {
    color: var(--color-muted);
    font-size: 14px;
    margin: 0 0 4px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.social-links a {
    color: var(--color-muted);
    font-size: 14px;
}

.social-links a:hover {
    color: var(--color-red);
}

.discount-badge {
    display: inline-block;
    background: var(--color-red);
    color: var(--color-white);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-muted);
    font-size: 13px;
    margin: 0;
}

.warranty-cell {
    color: var(--color-muted);
    font-size: 14px;
}

/* Steps */
.steps {
    background: var(--color-bg-alt);
}

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

.step-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
}

.step-num {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--color-red);
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 17px;
    color: var(--color-white);
    margin: 0 0 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--color-muted);
    margin: 0;
}

/* About stats */
.about-img--main {
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
    height: 280px;
    border: 1px solid var(--color-border);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.about-stat strong {
    display: block;
    font-size: 28px;
    color: var(--color-red);
    margin-bottom: 4px;
}

.about-stat span {
    font-size: 13px;
    color: var(--color-muted);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 0;
}

.review-stars {
    display: flex;
    gap: 4px;
    color: #f5c518;
    margin-bottom: 16px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
}

.review-card p {
    color: var(--color-text);
    font-size: 15px;
    margin: 0 0 16px;
    line-height: 1.6;
}

.review-card footer strong {
    display: block;
    color: var(--color-white);
    font-size: 14px;
}

.review-card footer span {
    font-size: 13px;
    color: var(--color-muted);
}

/* FAQ */
.faq {
    background: var(--color-bg-alt);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-chevron svg {
    width: 20px;
    height: 20px;
    color: var(--color-muted);
    transition: transform var(--transition);
}

.faq-item[open] .faq-chevron svg {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Callback form */
.callback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.callback-info h2 {
    font-size: 32px;
    color: var(--color-white);
    margin: 0 0 12px;
}

.callback-info p {
    color: var(--color-muted);
    margin: 0 0 16px;
}

.callback-phone {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-red);
}

.callback-form {
    display: grid;
    gap: 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.callback-form label span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 6px;
}

.callback-form input,
.callback-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font);
    font-size: 15px;
}

.callback-form input:focus,
.callback-form textarea:focus {
    outline: none;
    border-color: var(--color-red);
}

.form-message {
    font-size: 14px;
    margin: 0;
}

.form-message.is-success {
    color: #4ade80;
}

.form-message.is-error {
    color: #f87171;
}

/* CTA discount link */
.cta-discount {
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius);
    padding: 24px 32px;
    text-decoration: none;
    transition: background var(--transition);
}

.cta-discount:hover {
    background: rgba(0, 0, 0, 0.4);
}

.cta-discount p,
.cta-discount .discount-handle {
    color: rgba(255, 255, 255, 0.9);
}

/* Floating call */
.floating-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-red);
    color: var(--color-white);
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 4px 24px var(--color-red-glow);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.floating-call:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--color-red-glow);
}

.floating-call svg {
    width: 20px;
    height: 20px;
}

/* Social icons footer */
.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-muted);
    font-size: 14px;
    text-decoration: none;
}

.social-link:hover {
    color: var(--color-red);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.discount-badge {
    text-decoration: none;
}

.discount-badge:hover {
    color: var(--color-white);
}

.header-phone svg,
.btn svg {
    width: 18px;
    height: 18px;
}

/* Page content */
.page-content {
    padding-top: calc(var(--header-height) + 40px);
}

.entry h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 24px;
}

.entry-content {
    color: var(--color-text);
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 16px;
}

.entry-meta {
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        max-width: none;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-pills {
        justify-content: center;
    }

    .steps-grid,
    .reviews-grid,
    .callback-grid,
    .media-showcase {
        grid-template-columns: 1fr;
    }

    .equipment-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .header-phones {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .prices-table th:nth-child(2),
    .prices-table td:nth-child(2),
    .prices-table th:nth-child(4),
    .prices-table td:nth-child(4) {
        display: none;
    }

    .equipment-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .equipment-card img {
        height: 110px;
    }

    .floating-call span {
        display: none;
    }

    .floating-call {
        padding: 16px;
        border-radius: 50%;
    }

    .clients-bar {
        gap: 16px;
    }
}
