* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #111;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top bar */
.topbar {
    background: #171717;
    color: #fff;
    font-size: 14px;
}

.topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar a {
    color: #fff;
    transition: opacity 0.2s ease;
}

.topbar a:hover {
    opacity: 0.8;
}

/* Main header */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
}

.main-header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-link {
    flex: 0 0 auto;
}

.site-logo {
    height: 48px;
    width: auto;
}


/* ═══════════════════════════════════════════════
   Page hero - subpage header with vertical slug
   + breadcrumbs
═══════════════════════════════════════════════ */

.page-hero {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    padding: 52px 0 48px;
}

.page-hero-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

/* Vertical slug - flex sibling, sits left of content */
.page-hero-slug {
    flex-shrink: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #ccc;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    align-self: stretch;
    display: flex;
    align-items: center;
}

/* Content: breadcrumbs + title + bar */
.page-hero-content {
    flex: 1;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 13px;
}

.breadcrumb-link {
    color: #888;
    text-decoration: none;
    transition: color 0.15s ease;
}

.breadcrumb-link:hover {
    color: #ff1d16;
}

.breadcrumb-sep {
    color: #ccc;
}

.breadcrumb-current {
    color: #111;
    font-weight: 600;
}

/* Title */
.page-hero-title {
    margin: 0 0 20px;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;
    color: #111;
}

/* Red accent bar below title */
.page-hero-bar {
    width: 48px;
    height: 4px;
    background: #ff1d16;
}

/* Tablet */
@media (max-width: 1100px) {
    .page-hero-title {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .page-hero {
        padding: 36px 0 32px;
    }

    .page-hero-slug {
        display: none;
    }

    .page-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 26px;
    }
}


/* Menu */
.main-nav {
    margin-left: auto;
}

.nav-mobile-extras { display: none; }

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    display: inline-block;
    padding: 10px 0;
    font-size: 17px;
    color: #1c1c1c;
}

.menu > li > a:hover {
    color: #e6332a;
}

/* Dropdown */
.dropdown {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 50;
}

.dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 15px;
    color: #1c1c1c;
    white-space: nowrap;
}

.dropdown li a:hover {
    background: #f7f7f7;
    color: #e6332a;
}

.has-dropdown:hover .dropdown {
    display: block;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #e6332a;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 201;
    transition: background 0.2s, border-color 0.2s;
}

.menu-toggle.is-open {
    background: #e6332a;
    border-color: #e6332a;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #e6332a;
    transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s;
    transform-origin: center;
}

.menu-toggle.is-open span {
    background: #fff;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Main content */
main {
    min-height: 300px;
}

/* Tablet */
@media (max-width: 1100px) {
    .menu {
        gap: 22px;
    }

    .menu > li > a {
        font-size: 15px;
    }
}

/* Tablet */
@media (max-width: 1100px) {
    .menu { gap: 22px; }
    .menu > li > a { font-size: 15px; }
}

/* ═══════════════════════════════════════════════
   Mobile nav - full-screen overlay
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
    /* Hide topbar on mobile */
    .topbar { display: none; }

    .main-header {
        position: relative;
        z-index: 200;
    }

    .main-header-inner {
        min-height: 68px;
        position: static;
    }

    .site-logo { height: 38px; }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    /* Full-screen slide-in overlay */
    .main-nav {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 199;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        padding: 0;

        /* Hidden state */
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.35s ease,
                    visibility 0s linear 0.35s;
    }

    .main-nav.nav-open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.35s ease,
                    visibility 0s linear 0s;
    }

    /* Nav inner layout */
    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 28px 0;
        list-style: none;
        margin: 0;
    }

    .menu > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu > li:first-child {
        border-top: 1px solid #f0f0f0;
    }

    .menu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 0;
        font-size: 18px;
        font-weight: 600;
        color: #111;
        letter-spacing: -0.01em;
    }

    .menu > li > a:hover,
    .menu > li > a:active { color: #e6332a; }

    /* Sub-items */
    .dropdown {
        position: static;
        display: block;
        min-width: 0;
        border: 0;
        box-shadow: none;
        padding: 0 0 12px 16px;
        background: transparent;
    }

    .dropdown li {
        border: none;
    }

    .dropdown li a {
        padding: 9px 0;
        font-size: 15px;
        font-weight: 400;
        color: #555;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .dropdown li a::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #e6332a;
        flex-shrink: 0;
    }

    .dropdown li a:hover { color: #e6332a; }

    /* Mobile extras: contact + language */
    .nav-mobile-extras {
        display: flex;
        flex-direction: column;
        margin-top: auto;
        padding: 28px 28px 40px;
        border-top: 1px solid #f0f0f0;
        gap: 0;
    }

    /* Contact links */
    .nav-mobile-extras > a {
        font-size: 14px;
        color: #555;
        padding: 5px 0;
    }

    .nav-mobile-extras > a:first-of-type {
        font-weight: 600;
        color: #111;
        font-size: 15px;
    }

    /* Language section */
    .nav-mobile-langs-wrap {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }

    .nav-mobile-langs-label {
        display: block;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: #aaa;
        margin-bottom: 10px;
    }

    .nav-mobile-langs {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .nav-mobile-langs a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 7px 16px;
        border: 1px solid #e0e0e0;
        border-radius: 2px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: #333;
        text-transform: uppercase;
        transition: background 0.15s, border-color 0.15s, color 0.15s;
        min-width: 52px;
        text-align: center;
    }

    .nav-mobile-langs a:hover,
    .nav-mobile-langs a.active {
        background: #e6332a;
        border-color: #e6332a;
        color: #fff;
    }
}

@media (max-width: 520px) {
    .container { padding: 0 16px; }
    .site-logo { height: 34px; }
    .menu { padding-left: 20px; padding-right: 20px; }
    .nav-mobile-extras { padding-left: 20px; padding-right: 20px; }
}

/* Hero */
.hero {
    position: relative;
    min-height: 560px;
    background-image: url('/assets/img/home/hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 30, 0.45);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-content {
    padding-top: 60px;
    padding-bottom: 160px;
}

.hero-title {
    margin: 0 0 18px;
    max-width: 700px;
    font-size: 68px;
    line-height: 1.05;
    font-weight: 700;
    color: #ffffff;
}

.hero-accent {
    color: #ff2a23;
}

.hero-text {
    margin: 0;
    max-width: 760px;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 400;
    color: #ffffff;
}

.feature-cards-wrap {
    position: relative;
    margin-top: -110px;
    z-index: 5;
    padding-bottom: 70px;
    background: linear-gradient(to bottom, transparent 110px, #efefef 110px);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f5f5f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.feature-card {
    padding: 56px 48px 48px;
    position: relative;
    min-height: 250px;
}

.feature-card:not(:last-child) {
    border-right: 1px solid #dddddd;
}

.feature-number {
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    color: #ff2a23;
}

.feature-title {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    color: #000000;
}

.feature-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #222222;
}


/* Tablet */
@media (max-width: 1100px) {
    .hero {
        min-height: 500px;
    }

    .hero-overlay {
        min-height: 500px;
    }

    .hero-title {
        font-size: 54px;
    }

    .hero-text {
        font-size: 26px;
        max-width: 680px;
    }

    .feature-card {
        padding: 40px 30px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .hero {
        min-height: 430px;
    }

    .hero-overlay {
        min-height: 430px;
    }

    .hero-content {
        padding-top: 30px;
        padding-bottom: 120px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        font-size: 22px;
        line-height: 1.4;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .feature-card:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid #dddddd;
    }
}

@media (max-width: 520px) {
    .hero {
        min-height: 360px;
    }

    .hero-overlay {
        min-height: 360px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-text {
        font-size: 18px;
    }

    .feature-card {
        padding: 30px 22px;
        min-height: 0;
    }

    .feature-number {
        font-size: 28px;
    }

    .feature-title {
        font-size: 22px;
    }

    .feature-text {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Services section */
.services-section {
    padding: 20px 0 110px;
    background: #efefef;
}

.services-head {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-main-title {
    margin: 0 0 20px;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    color: #000;
}

.services-intro {
    margin: 0 auto;
    max-width: 620px;
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

.service-card {
    display: flex;
    flex-direction: column;
}
.service-image-wrap {
    position: relative;
    margin-bottom: 28px;
    overflow: visible; /* allow corners to poke out */
}

.service-image-wrap::before,
.service-image-wrap::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff1d16;
    z-index: 2;
}

.service-image-wrap::before {
    top: -5px;
    left: -5px;
}

.service-image-wrap::after {
    bottom: -5px;
    right: -5px;
}

.service-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.service-title {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
}

.service-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Tablet */
@media (max-width: 1100px) {
    .services-main-title {
        font-size: 46px;
    }

    .services-grid {
        gap: 28px;
    }

    .service-image {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .services-section {
        padding: 30px 0 40px;
    }

    .services-head {
        margin-bottom: 40px;
    }

    .services-main-title {
        font-size: 38px;
    }

    .services-intro {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .service-image {
        height: auto;
        aspect-ratio: 720 / 464;
    }
}

@media (max-width: 520px) {
    .services-main-title {
        font-size: 32px;
    }

    .services-intro {
        font-size: 16px;
    }

    .service-title {
        font-size: 22px;
    }

    .service-text {
        font-size: 16px;
        line-height: 1.6;
    }
}


/* About section */
.about-section {
    padding: 90px 0 70px;
    background: #ffffff;
    overflow: hidden;
}

.about-layout {
    position: relative;
    min-height: 500px;
}

.about-title {
    margin: 0 0 34px 0;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    color: #000;
    position: relative;
    z-index: 3;
}

/* image pinned top-right, bleeds to edge */
.about-image-wrap {
    position: absolute;
    top: 0;
    right: -20px;
    width: 68%;
    z-index: 1;
}

.about-image {
    display: block;
    width: 100%;
    height: auto;
}

/* red corner squares */
.about-image-wrap::before,
.about-image-wrap::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff1d16;
    z-index: 3;
}

.about-image-wrap::before {
    left: -12px;
    top: 100px;
}

.about-image-wrap::after {
    left: -12px;
    bottom: 60px;
}

/* white card overlapping image from left */
.about-text-card {
    position: relative;
    z-index: 2;
    margin-top: 100px;
    width: 52%;
    background: #fff;
    padding: 48px 52px 52px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.about-text-inner {
    width: 100%;
}

.about-text-content {
    width: 100%;
}

.about-text {
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    position: relative;
    margin: 0 0 16px;
    padding-left: 24px;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff1d16;
}

.about-button-row {
    margin-top: 34px;
}

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    height: 56px;
    padding: 0 28px;
    background: #ff1d16;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.about-button:hover {
    opacity: 0.9;
}

/* stats */
.about-stats {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-stat-number {
    font-size: 58px;
    line-height: 1;
    font-weight: 700;
    color: #000;
}

.about-stat:first-child .about-stat-number {
    color: #ff1d16;
}

.about-stat-number sup {
    font-size: 24px;
    top: -0.8em;
    position: relative;
    color: #ff1d16;
}

.about-stat-label {
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.35;
    color: #555;
}

/* Tablet */
@media (max-width: 1100px) {
    .about-title {
        font-size: 46px;
    }

    .about-image-wrap {
        width: 72%;
    }

    .about-text-card {
        width: 58%;
        padding: 36px 36px 40px;
    }

    .about-stat-number {
        font-size: 46px;
    }
}

/* Mobile - stack vertically */
@media (max-width: 900px) {
    .about-section {
        padding: 70px 0 60px;
    }

    .about-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .about-layout {
        min-height: 0;
    }

    .about-image-wrap {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
    }

    .about-text-card {
        margin-top: 0;
        width: 100%;
        padding: 34px 24px 42px;
        box-shadow: none;
        background: #efefef;
    }

    .about-text,
    .about-list li {
        font-size: 16px;
        line-height: 1.65;
    }

    .about-button-row {
        margin-top: 24px;
    }

    .about-button {
        min-width: 150px;
        height: 50px;
        font-size: 16px;
    }

    .about-stats {
        margin-top: 40px;
        gap: 20px;
    }

    .about-stat-number {
        font-size: 36px;
    }

    .about-image-wrap::before,
    .about-image-wrap::after {
        display: none;
    }
}

@media (max-width: 520px) {
    .about-title {
        font-size: 30px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .about-stat-label {
        font-size: 16px;
    }
}

/* Brands in catalog section */
.brands-section {
    padding: 90px 0 100px;
    background: #efefef;
}

.brands-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.brands-title {
    margin: 0;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;
    color: #000;
    max-width: 340px;
}

.brands-all-link {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 600;
    color: #e6332a;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.brands-all-link:hover {
    opacity: 0.75;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.brand-card {
    background: #fff;
    display: flex;
    flex-direction: column;   /* ← this was missing */
    align-items: center;
    justify-content: center;
    gap: 14px;                /* ← space between logo and name */
    padding: 36px 28px;
    min-height: 160px;
    transition: box-shadow 0.2s ease;
}

.brand-card p {
    margin: 0;
    font-size: 15px;
    color: #111;
}

.brand-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.brand-logo {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Tablet */
@media (max-width: 1100px) {
    .brands-title {
        font-size: 38px;
    }

    .brands-grid {
        gap: 10px;
    }

    .brand-card {
        padding: 28px 20px;
        min-height: 140px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .brands-section {
        padding: 70px 0 80px;
    }

    .brands-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 28px;
    }

    .brands-title {
        font-size: 32px;
        max-width: none;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .brand-card {
        min-height: 120px;
        padding: 24px 18px;
    }
}

@media (max-width: 520px) {
    .brands-title {
        font-size: 28px;
    }

    .brand-card {
        min-height: 100px;
        padding: 20px 14px;
    }
}

/* ═══════════════════════════════════════════════
   Products Supply Section
═══════════════════════════════════════════════ */
.products-supply-section {
    padding: 90px 0 100px;
    background: #171717;
}

.products-supply-title {
    margin: 0 0 52px;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
    max-width: 600px;
}

.products-supply-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* base card */
.products-supply-card {
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
}

/* red accent bar on the left */
.products-supply-card-accent {
    position: absolute;
    top: 32px;
    left: 0;
    width: 6px;
    height: 48px;
    background: #ff1d16;
}

/* featured (first) card - red background */
.products-supply-card--featured {
    background: #e6332a;
}

.products-supply-card--featured .products-supply-card-accent {
    background: #fff;
}

.products-supply-card--featured .products-supply-card-title,
.products-supply-card--featured .products-supply-list li {
    color: #fff;
}

.products-supply-card--featured .products-supply-list li::before {
    background: #fff;
}

.products-supply-card-inner {
    position: relative;
    padding: 36px 36px 36px 44px;
    min-height: 240px;
}

.products-supply-card-title {
    margin: 0 0 22px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
    max-width: 260px;
}

.products-supply-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.products-supply-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: #222;
}

.products-supply-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff1d16;
}

/* icon bottom-right */
.products-supply-icon {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    object-fit: contain;
    opacity: 0.55;
}

.products-supply-card--featured .products-supply-icon {
    opacity: 0.7;
}

/* Tablet */
@media (max-width: 1100px) {
    .products-supply-title {
        font-size: 38px;
    }

    .products-supply-card-inner {
        padding: 28px 28px 28px 36px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .products-supply-section {
        padding: 70px 0 80px;
    }

    .products-supply-title {
        font-size: 32px;
        margin-bottom: 36px;
    }

    .products-supply-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .products-supply-card-inner {
        min-height: 0;
        padding-bottom: 80px; /* room for icon */
    }
}

@media (max-width: 520px) {
    .products-supply-title {
        font-size: 28px;
    }
}


/* ═══════════════════════════════════════════════
   Industries Section
═══════════════════════════════════════════════ */
.industries-section {
    padding: 80px 0 90px;
    background: #f5f5f5;
}

.industries-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* image with corner accents */
.industries-image-wrap {
    position: relative;
    flex: 0 0 42%;
    max-width: 42%;
}

.industries-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.industries-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff1d16;
}

.industries-corner--tr {
    top: -6px;
    right: -6px;
}

.industries-corner--bl {
    bottom: -6px;
    left: -6px;
}

/* content side */
.industries-content {
    flex: 1;
}

.industries-title {
    margin: 0 0 36px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    color: #111;
}

.industries-columns {
    display: flex;
    gap: 40px;
}

.industries-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.industries-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.industries-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff1d16;
}

/* Tablet */
@media (max-width: 1100px) {
    .industries-layout {
        gap: 40px;
    }

    .industries-title {
        font-size: 32px;
    }

    .industries-image-wrap {
        flex: 0 0 38%;
        max-width: 38%;
    }
}

/* Mobile */
@media (max-width: 820px) {
    .industries-section {
        padding: 60px 0 70px;
    }

    .industries-layout {
        flex-direction: column;
        gap: 36px;
    }

    .industries-image-wrap {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .industries-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .industries-columns {
        gap: 24px;
    }

    .industries-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .industries-columns {
        flex-direction: column;
        gap: 0;
    }
}


/* ═══════════════════════════════════════════════
   Contact block
═══════════════════════════════════════════════ */
.contact-block {
    padding: 80px 0 90px;
    background: #fff;
    border-top: 1px solid #ebebeb;
}
.contact-inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Left - title + subtitle */
.contact-left {
    flex: 0 0 300px;
    max-width: 300px;
}

.contact-accent {
    display: block;
    width: 12px;
    height: 12px;
    background: #ff1d16;
    margin-bottom: 20px;
}
.contact-left {
    flex: 0 0 300px;
    max-width: 300px;
}

.contact-accent {
    display: block;
    width: 12px;
    height: 12px;
    background: #ff1d16;
    margin-bottom: 20px;
}

.contact-title {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    color: #111;
}

.contact-subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #666;
}

.contact-right {
    flex: 1;
}

/* Grid: 3 equal columns on desktop */
.contact-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    align-items: end;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Message and button span all 3 columns */
.contact-field--message,
.contact-field--btn {
    grid-column: 1 / 4;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-optional {
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

.contact-input {
    box-sizing: border-box;
    height: 52px;
    padding: 0 16px;
    background: #f2f2f2;
    border: 1.5px solid transparent;
    font-size: 15px;
    font-family: inherit;
    color: #111;
    outline: none;
    transition: border-color 0.15s ease;
    width: 100%;
}

.contact-input::placeholder {
    color: #aaa;
}

.contact-input:focus {
    border-color: #111;
    background: #fff;
}

.contact-input--err {
    border-color: #ff1d16 !important;
    background: #fff5f5;
}

.contact-textarea {
    height: auto;
    padding: 12px 16px;
    resize: vertical;
    min-height: 100px;
}

.contact-btn {
    height: 52px;
    padding: 0 32px;
    background: #ff1d16;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.contact-btn:hover { opacity: 0.88; }
.contact-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.contact-privacy {
    margin: 14px 0 0;
    font-size: 14px;
    color: #000000;
    text-align: right;
}

.contact-privacy-link {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-privacy-link:hover { color: #ff1d16; }

/* Success / error */
.contact-success,
.contact-error {
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-success {
    background: #f0faf0;
    color: #1a7f37;
    border-left: 4px solid #1a7f37;
}

.contact-error {
    background: #fff5f5;
    color: #cc1a14;
    border-left: 4px solid #ff1d16;
}

/* Tablet */
@media (max-width: 1000px) {
    .contact-inner { gap: 40px; }
    .contact-left { flex: 0 0 240px; max-width: 240px; }
    .contact-title { font-size: 28px; }
}

/* Mobile */
@media (max-width: 760px) {
    .contact-block { padding: 60px 0 70px; }

    .contact-inner {
        flex-direction: column;
        gap: 32px;
    }

    .contact-left { flex: none; max-width: none; }
    .contact-right { width: 100%; }

    .contact-fields {
        grid-template-columns: 1fr;
    }

    .contact-field--message,
    .contact-field--btn {
        grid-column: 1;
    }

    .contact-btn { width: 100%; }
    .contact-privacy { text-align: left; }
}

/* FOOTER */

/* ═══════════════════════════════════════════════
   Footer
═══════════════════════════════════════════════ */
.site-footer {
    background: #1e1e1e;
    color: #ccc;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
    align-items: start;
}

/* Col 1 - brand */
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    padding: 7px 10px;
    border-radius: 4px;
    background:white;
}

.footer-tagline {
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

/* Contact dl */
.footer-contact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 18px;
    margin: 0;
}

.footer-contact dt {
    font-size: 12px;
    font-weight: 600;
    color: #777;
    text-transform: lowercase;
    padding-top: 2px;
}

.footer-contact dd {
    margin: 0;
    font-size: 14px;
    color: #eee;
    line-height: 1.5;
}

.footer-contact dd a {
    color: #ff1d16;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.footer-contact dd a:hover {
    opacity: 0.8;
}

/* Nav cols */
.footer-nav-title {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-nav-list a:hover {
    color: #fff;
}

/* Map col */
.footer-col--map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-map {
    width: 100%;
    max-width: 280px;
    height: auto;
    opacity: 0.75;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #2e2e2e;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 52px;
    font-size: 13px;
    color: #777;
}

.footer-bottom-inner a {
    color: #777;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-bottom-inner a:hover {
    color: #fff;
}

/* Tablet */
@media (max-width: 1100px) {
    .footer-inner {
        grid-template-columns: 1.6fr 1fr 1fr;
        gap: 36px;
    }

    .footer-col--map {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .footer-map {
        max-width: 320px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }

    .footer-col--map {
        grid-column: 1 / -1;
    }

    .footer-map {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 16px;
        padding-bottom: 16px;
        gap: 8px;
        align-items: center;
    }
}

.page-hero-content .page-hero-text {
    margin-bottom: 0px;
    line-height: 1.5;
}


/* ═══════════════════════════════════════════════
   Low-voltage page
═══════════════════════════════════════════════ */

/* Highlights strip */
.lv-highlights {
    background: #f5f5f5;
    padding: 60px 0;
    border-bottom: 1px solid #ebebeb;
}

.lv-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lv-highlight-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lv-highlight-icon {
    color: #ff1d16;
}

.lv-highlight-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.lv-highlight-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Product cards */
.lv-products {
    padding: 70px 0 80px;
}

.lv-products-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.lv-product-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 48px;
}

.lv-product-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lv-product-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.lv-product-body h2 {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

.lv-product-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}

/* Tablet */
@media (max-width: 1000px) {
    .lv-product-card {
        grid-template-columns: 260px 1fr;
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .lv-highlights-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .lv-highlights {
        padding: 44px 0;
    }

    .lv-product-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lv-product-body h2 {
        font-size: 22px;
    }

    .lv-products {
        padding: 48px 0 60px;
    }
}

.lv-highlight-icon svg {
    width: 35px;
    height: 35px;
}

/* ═══════════════════════════════════════════════
   About page - Block 2: Goals & mission
═══════════════════════════════════════════════ */
.about-mission {
    background: #f5f5f5;
    padding: 72px 0 80px;
}

.about-mission-title {
    margin: 0 0 48px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
}

.about-mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left: bullet points */
.about-mission-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-size: 17px;
    font-weight: 700;
}

.about-mission-points li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    /* font-size: 15px; */
    line-height: 1.6;
    color: #222;
}

.about-mission-dot {
    flex-shrink: 0;
    margin-top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ff1d16;
    position: relative;
}

.about-mission-dot::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #ff1d16;
}

/* Right: paragraphs */
.about-mission-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-mission-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}

/* Tablet */
@media (max-width: 900px) {
    .about-mission-title {
        font-size: 32px;
    }

    .about-mission-layout {
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .about-mission {
        padding: 48px 0 56px;
    }

    .about-mission-title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .about-mission-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ═══════════════════════════════════════════════
   About page - Block 3
═══════════════════════════════════════════════ */
.about-priorities {
    background: #fff;
}

/* Full-bleed image band */
.about-priorities-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    margin-bottom: 0;
}

.about-priorities-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

/* Gradient: dark left fading to transparent right */
.about-priorities-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        360deg, rgba(10, 10, 10, 0.88) 0%, 
        rgba(10, 10, 10, 0.55) 80%, 
        rgb(243 6 6 / 30%) 100%
        );
}

.about-priorities-hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
}

/* "Our priorities" label */
.about-priorities-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
}

.about-priorities-badge-line {
    display: block;
    width: 32px;
    height: 2px;
    background: #ff1d16;
    flex-shrink: 0;
}

/* Priority pills */
.about-priorities-pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-priorities-pills li {
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(7px);
    pointer-events: none;
}


/* Services block - sits below, pulls up slightly */
.about-services-wrap {
    margin-top: -2px;
    padding: 48px 0 72px;
    border-top: 3px solid #ff1d16;
}

.about-services-intro {
    margin: 0 0 32px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    max-width: 640px;
    line-height: 1.5;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid #ebebeb;
}

.about-service-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 24px 24px 20px;
    border-right: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    transition: background 0.18s;
}

.about-service-item:hover {
    background: #fafafa;
}

.about-service-num {
    font-size: 11px;
    font-weight: 700;
    color: #ff1d16;
    letter-spacing: 0.08em;
}

.about-service-label {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 900px) {
    .about-priorities-hero {
        height: 360px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .about-priorities-hero {
        height: auto;
        padding: 48px 0;
    }

    .about-priorities-overlay {
        background: linear-gradient(360deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.55) 80%, rgb(243 6 6 / 30%) 100%);
    }

    .about-priorities-pills li {
        font-size: 13px;
        padding: 8px 14px;
    }

    .about-services-wrap {
        padding: 36px 0 52px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-service-item {
        padding: 18px 16px;
    }
}

@media (max-width: 380px) {
    .about-services-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════
   About page - Block 4: Advantages
═══════════════════════════════════════════════ */
.about-advantages {
    padding: 80px 0 90px;
    background: #fff;
    border-top: 1px solid #ebebeb;
}

.about-advantages-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
}

.about-advantages-title {
    margin: 0 0 20px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    color: #111;
}

.about-advantages-subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.about-advantages-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.about-advantage-card {
    padding: 32px 36px 36px;
    border-bottom: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    transition: background 0.18s;
}

.about-advantage-card:hover {
    background: #fafafa;
}

/* Remove right border on every 2nd card */
.about-advantage-card:nth-child(2n) {
    border-right: none;
}

/* Remove bottom border on last two */
.about-advantage-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.about-advantage-bar {
    display: block;
    width: 3px;
    height: 22px;
    background: #ff1d16;
    margin-bottom: 16px;
}

.about-advantage-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.about-advantage-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    
}

/* Tablet */
@media (max-width: 900px) {
    .about-advantages-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-advantages-title {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .about-advantages {
        padding: 52px 0 60px;
    }

    .about-advantages-cards {
        grid-template-columns: 1fr;
    }

    .about-advantage-card {
        border-right: none;
        border-bottom: 1px solid #ebebeb;
        padding: 24px 0;
    }

    .about-advantage-card:last-child {
        border-bottom: none;
    }
}

/* ═══════════════════════════════════════════════
   Partners page
═══════════════════════════════════════════════ */
.partners-section {
    padding: 64px 0 80px;
    background: #fff;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.partner-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    border-bottom: 1px solid #ebebeb;
    overflow: hidden;
    position: relative;
    transition: background 0.2s;
}

.partner-card:first-child {
    border-top: 1px solid #ebebeb;
}

.partner-card:hover {
    background: #fafafa;
}

/* Animated red line on the left edge */
.partner-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: #ff1d16;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.partner-card:hover::before {
    transform: translateY(-50%) scaleY(1);
}

.partner-card-image-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.partner-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.partner-card:hover .partner-card-image {
    transform: scale(1.04);
}

.partner-card-icon {
    position: absolute;
    bottom: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.partner-card-body {
    padding: 32px 40px 32px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.partner-card-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
}

.partner-card-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #111;
    max-width: 560px;
}

/* Tablet */
@media (max-width: 900px) {
    .partner-card {
        grid-template-columns: 280px 1fr;
    }

    .partner-card-image-wrap {
        height: 180px;
    }

    .partner-card-body {
        padding: 24px 28px 24px 36px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .partner-card {
        grid-template-columns: 1fr;
    }

    .partner-card::before {
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
    }

    .partner-card:hover::before {
        transform: translateX(0) scaleX(1);
    }

    .partner-card-image-wrap {
        height: 200px;
    }

    .partner-card-body {
        padding: 20px 20px 24px;
    }

    .partner-card-title {
        font-size: 17px;
    }
}

/* ═══════════════════════════════════════════════
   Contacts page
═══════════════════════════════════════════════ */
.contacts-section {
    padding: 64px 0 80px;
    background: #fff;
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contacts-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contacts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contacts-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
}

.contacts-phone {
    font-size: 32px;
    font-weight: 700;
    color: #ff1d16;
    text-decoration: none;
    line-height: 1.1;
    transition: opacity 0.15s;
}

.contacts-phone:hover {
    opacity: 0.8;
}

.contacts-value {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    font-style: normal;
    line-height: 1.5;
}

.contacts-link {
    text-decoration: none;
    color: #111;
    transition: color 0.15s;
}

.contacts-link:hover {
    color: #ff1d16;
}

.contacts-divider {
    height: 1px;
    background: #ebebeb;
}

/* Map */
.contacts-map-wrap {
    position: sticky;
    top: 24px;
}

.contacts-map {
    width: 100%;
    height: 480px;
    border: 0;
    display: block;
}

/* Tablet */
@media (max-width: 900px) {
    .contacts-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacts-map-wrap {
        position: static;
    }

    .contacts-map {
        height: 360px;
    }
}

/* Mobile */
@media (max-width: 540px) {
    .contacts-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacts-phone {
        font-size: 26px;
    }

    .contacts-map {
        height: 280px;
    }
}