* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

header { padding: 22px 0; border-bottom: 1px solid #eee; }
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.logo img { height: 56px; display: block; }
.header-contact { text-align: right; font-size: 14px; line-height: 1.4; }
.header-contact .phone {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
}
.header-contact .hours { color: #888; }

.hero { padding: 120px 0 100px; text-align: center; }
.hero h1 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    line-height: 1.15;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.hero p {
    font-size: 19px;
    color: #555;
    max-width: 720px;
    margin: 0 auto 40px;
}
.btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 2px;
    transition: background 0.2s;
}
.btn:hover { background: #f0a020; }

section { padding: 90px 0; }

.about { border-top: 1px solid #eee; text-align: center; }
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f0a020;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.about h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}
.about p {
    font-size: 17px;
    color: #555;
    max-width: 720px;
    margin: 0 auto 18px;
}

.brands { background: #fafafa; border-top: 1px solid #eee; text-align: center; }
.brands h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}
.brands .subtitle { color: #666; font-size: 16px; margin-bottom: 56px; }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 28px;
    align-items: center;
}
.brand {
    background: #fff;
    height: 110px;
    border: 1px solid #eee;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: border-color 0.2s, transform 0.2s;
}
.brand:hover { border-color: #f0a020; transform: translateY(-2px); }
.brand img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: filter 0.2s, opacity 0.2s;
}
.brand:hover img { filter: grayscale(0); opacity: 1; }

.contact { border-top: 1px solid #eee; text-align: center; }
.contact h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}
.contact .subtitle { color: #666; margin-bottom: 40px; font-size: 16px; }
.contact-info {
    display: inline-flex;
    flex-direction: column;
    gap: 14px;
    font-size: 17px;
}
.contact-info a { color: #1a1a1a; text-decoration: none; font-weight: 600; font-size: 26px; }
.contact-info a:hover { color: #f0a020; }
.contact-info .hours-large { color: #888; font-size: 15px; }
.contact-info .contact-telegram { font-size: 18px; }
.contact-telegram-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}
.contact-telegram-qr img {
    display: block;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
}
.contact-telegram-qr-caption { color: #888; font-size: 14px; max-width: 220px; line-height: 1.4; }

.equipment-figure {
    margin: 36px auto 44px;
    max-width: 760px;
    text-align: center;
}
.equipment-figure img {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fff;
}
.equipment-figure figcaption {
    margin-top: 12px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}
.equipment-figure a { color: #1a1a1a; }
.equipment-figure a:hover { color: #f0a020; }

.brand-hero-card {
    margin: 0 auto 28px;
    max-width: 300px;
    text-align: center;
}
.brand-hero-card img {
    width: 100%;
    height: auto;
    display: block;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin: 32px 0 36px;
    text-align: left;
}
.media-card {
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.media-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #fafafa;
}
.media-card h3 {
    font-size: 17px;
    margin: 16px 18px 8px;
    font-weight: 700;
}
.media-card p {
    margin: 0 18px 12px;
    color: #666;
    font-size: 14px;
    line-height: 1.55;
}
.media-card a {
    display: inline-block;
    margin: 0 18px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}
.media-card a:hover { color: #f0a020; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 0 0 40px;
}
.video-card {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
    text-decoration: none;
    color: #fff;
}
.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s;
}
.video-card:hover img { transform: scale(1.03); }
.video-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    font-size: 22px;
    background: rgba(240, 160, 32, 0.92);
    color: #1a1a1a;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.video-card-title {
    display: block;
    padding: 12px 14px;
    background: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.process-steps {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: left;
    padding-left: 1.2em;
    color: #555;
    line-height: 1.7;
}
.process-steps li { margin-bottom: 10px; }

footer {
    border-top: 1px solid #eee;
    padding: 48px 0 28px;
    color: #888;
    font-size: 14px;
}
footer .footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 36px;
}
footer .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
footer .footer-col ul { list-style: none; padding: 0; margin: 0; }
footer .footer-col li { margin-bottom: 8px; line-height: 1.4; }
footer .footer-col a { color: #555; text-decoration: none; }
footer .footer-col a:hover { color: #f0a020; }
footer .footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 22px;
    text-align: center;
    color: #999;
    font-size: 13px;
}
footer .footer-bottom img { height: 28px; vertical-align: middle; margin-right: 10px; filter: grayscale(1); opacity: 0.5; }

/* Catalog grid on the home page + category landing pages */
.catalog { border-top: 1px solid #eee; text-align: center; }
.catalog h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}
.catalog .subtitle { color: #666; font-size: 16px; margin-bottom: 56px; }
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    text-align: left;
}
.catalog-card {
    display: block;
    padding: 32px 28px;
    border: 1px solid #eee;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    background: #fff;
}
.catalog-card:hover {
    border-color: #f0a020;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.catalog-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.catalog-card p { color: #666; font-size: 15px; }
.catalog-card .more {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #f0a020;
}
.catalog-card.cta {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}
.catalog-card.cta:hover {
    background: #f0a020;
    border-color: #f0a020;
}
.catalog-card.cta p { color: rgba(255,255,255,0.75); }
.catalog-card.cta .more { color: #f0a020; }
.catalog-card.cta:hover .more { color: #fff; }
.catalog-card.used {
    border-color: #f0a020;
    background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}
.catalog-card.used h3 { color: #1a1a1a; }

.used-equipment {
    margin-top: 52px;
    padding-top: 44px;
    border-top: 1px solid #e8e8e8;
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.used-equipment h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}
.used-equipment > p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}
.used-brands-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 24px 0 28px;
}
.used-brands-tags span {
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.used-equipment-link {
    display: inline-block;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #f0a020;
    padding-bottom: 2px;
}
.used-equipment-link:hover { color: #f0a020; }

.tg-posts-intro {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}
.tg-posts-intro a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f0a020;
}
.tg-posts-intro a:hover { color: #f0a020; }
.tg-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    margin: 28px 0 20px;
}
.tg-post-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}
.tg-post-image-link {
    display: block;
    line-height: 0;
    background: #f5f5f5;
}
.tg-post-image-link:hover .tg-post-image {
    opacity: 0.92;
}
.tg-post-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.2s;
}
.tg-post-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.tg-post-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    color: #1a1a1a;
}
.tg-post-source {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #b87a10;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.tg-post-date {
    font-size: 13px;
    color: #888;
}
.tg-post-card p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.55;
    flex-grow: 1;
}
.tg-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tg-post-tags span {
    font-size: 12px;
    font-weight: 600;
    color: #b87a10;
    background: #fffdf8;
    border: 1px solid #f5d9a8;
    padding: 4px 10px;
    border-radius: 3px;
}
.tg-post-link {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #f0a020;
    align-self: flex-start;
    padding-bottom: 2px;
}
.tg-post-link:hover { color: #f0a020; }
.tg-posts-footer {
    color: #666;
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
}
.tg-posts-footer a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f0a020;
}
.tg-posts-footer a:hover { color: #f0a020; }

.brand.brand-bu img {
    filter: none;
    opacity: 0.92;
}
.brand.brand-bu:hover img { opacity: 1; }

.brand {
    text-decoration: none;
}
.brand.brand-link { cursor: pointer; }
.brand.brand-link:hover { border-color: #f0a020; transform: translateY(-2px); }

/* Related categories block on category pages */
.related {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    max-width: 820px;
}
.related h2 { font-size: 22px !important; margin: 0 0 20px !important; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.related-grid a {
    display: block;
    padding: 18px 20px;
    border: 1px solid #eee;
    border-radius: 6px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    transition: border-color 0.2s, color 0.2s;
}
.related-grid a:hover { border-color: #f0a020; color: #f0a020; }

/* 404 page */
.notfound {
    padding: 120px 0;
    text-align: center;
}
.notfound h1 { font-size: 84px; font-weight: 800; color: #f0a020; margin-bottom: 8px; }
.notfound h2 { font-size: 26px; font-weight: 700; margin-bottom: 16px; }
.notfound p { color: #555; max-width: 520px; margin: 0 auto 32px; }

/* Article/category page */
.breadcrumbs {
    padding: 18px 0;
    font-size: 14px;
    color: #888;
    border-bottom: 1px solid #f3f3f3;
}
.breadcrumbs a { color: #888; text-decoration: none; }
.breadcrumbs a:hover { color: #f0a020; }
.breadcrumbs .sep { margin: 0 8px; color: #ccc; }

.article { padding: 70px 0 80px; }
.article h1 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin-bottom: 22px;
    max-width: 820px;
}
.article .lead {
    font-size: 19px;
    color: #555;
    max-width: 780px;
    margin-bottom: 48px;
}
.article h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 48px 0 18px;
    letter-spacing: -0.2px;
}
.article h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 30px 0 12px;
}
.article p { font-size: 17px; color: #333; margin-bottom: 16px; max-width: 820px; }
.article ul, .article ol { margin: 0 0 18px 22px; max-width: 820px; }
.article li { font-size: 17px; color: #333; margin-bottom: 8px; }
.article strong { color: #1a1a1a; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 18px 0 28px;
}
.feature-card {
    padding: 24px;
    background: #fafafa;
    border-radius: 6px;
    border: 1px solid #eee;
}
.feature-card h3 { font-size: 17px; margin: 0 0 8px; }
.feature-card p { font-size: 15px; color: #555; margin: 0; }

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0 28px;
    font-size: 15px;
    max-width: 820px;
}
.specs-table th, .specs-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.specs-table th { background: #fafafa; font-weight: 700; color: #1a1a1a; }

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 18px 0;
    max-width: 820px;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.faq-item p { font-size: 16px; color: #555; margin: 0; }

.inline-cta {
    margin-top: 36px;
    padding: 28px;
    background: #fafafa;
    border-radius: 6px;
    border: 1px solid #eee;
    max-width: 820px;
}
.inline-cta strong { display: block; font-size: 18px; margin-bottom: 10px; }
.inline-cta a {
    display: inline-block;
    margin-right: 14px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}
.inline-cta a:hover { color: #f0a020; }

@media (max-width: 640px) {
    .hero { padding: 70px 0 60px; }
    .hero h1 { font-size: 30px; }
    .hero p { font-size: 16px; }
    section { padding: 60px 0; }
    .about h2, .brands h2, .contact h2, .catalog h2 { font-size: 26px; }
    .contact-info a { font-size: 22px; }
    .header-inner { justify-content: center; text-align: center; }
    .header-contact { text-align: center; }
    .article h1 { font-size: 28px; }
    .article .lead { font-size: 17px; }
    .article h2 { font-size: 22px; }
}
