* {
    box-sizing: border-box;
}

:root {
    --logo-accent: #008906;
}

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 10px 0;
}

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;
}

/* Header utility info inside main header */
.header-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.header-meta a {
    color: #1c1c1c;
    font-size: 13px;
    line-height: 1.2;
}

.header-meta-phone {
    font-weight: 700;
}

.header-meta-email {
    font-weight: 500;
}

.lang-switcher {
    position: relative;
}

.lang-switcher-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #d9e1e6;
    background: #f7f9fa;
    color: #0f1720;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: default;
    border-radius: 2px;
}

.lang-switcher-toggle:hover {
    background: #eef3f6;
}

.lang-switcher-menu {
    list-style: none;
    margin: 0;
    padding: 8px;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #dfe4e8;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    display: none;
    z-index: 210;
    /* Transparent top padding bridges the visual gap so hover isn't lost */
    padding-top: 16px;
}

/* Invisible bridge above the menu fills the gap between toggle and menu */
.lang-switcher-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.lang-switcher:hover .lang-switcher-menu,
.lang-switcher:focus-within .lang-switcher-menu {
    display: block;
}

.lang-switcher-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: #1c1c1c;
    font-size: 14px;
    border-radius: 2px;
}

.lang-switcher-menu a:hover,
.lang-switcher-menu a.active {
    background: #f3f5f7;
    color: #111;
}

.lang-switcher-chevron {
    font-size: 10px;
    opacity: 0.7;
}

.lang-flag {
    width: 18px;
    height: 13px;
    border-radius: 1px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}



/* Main header */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
}

.main-header-inner {
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.logo-link {
    flex: 0 0 auto;
}

.site-logo {
    height: 48px;
    width: auto;
}


/* ═══════════════════════════════════════════════
   Page hero - subpage header with low-opacity slug
   + breadcrumbs
═══════════════════════════════════════════════ */

.page-hero {
    background:
        radial-gradient(1200px 300px at 15% 0%, rgba(0, 137, 6, 0.04), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border-bottom: 1px solid #ececec;
    padding: 32px 0 28px;
}

.page-hero-inner {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.page-hero-slug {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(54px, 12vw, 150px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0.08em;
    color: rgba(17, 17, 17, 0.045);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.breadcrumb-link {
    color: #6f6f6f;
    text-decoration: none;
    transition: color 0.15s ease;
}

.breadcrumb-link:hover {
    color: var(--logo-accent, #008906);
}

.breadcrumb-sep {
    color: #bdbdbd;
}

.breadcrumb-current {
    color: #111;
    font-weight: 700;
}

/* Title */
.page-hero-title {
    margin: 0 0 12px;
    font-size: clamp(34px, 4.3vw, 56px);
    font-weight: 700;
    line-height: 1.02;
    color: #111;
}

/* Green accent bar below title */
.page-hero-bar {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #008906 0%, #00c40e 100%);
}

.page-hero-text {
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.55;
    color: #575757;
}

.page-hero.no-hero-text .page-hero-title {
    margin-bottom: 8px;
}

/* Tablet */
@media (max-width: 1100px) {
    .page-hero-inner {
        padding: 0 18px;
    }

    .page-hero-title {
        font-size: clamp(32px, 5.6vw, 44px);
    }

    .page-hero-text {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .page-hero {
        padding: 24px 0 20px;
    }

    .page-hero-inner {
        padding: 0 18px;
    }

    .page-hero-slug {
        right: -8px;
        top: auto;
        bottom: -8px;
        transform: none;
        font-size: clamp(40px, 18vw, 72px);
        opacity: 0.9;
    }

    .page-hero-title {
        font-size: 32px;
        max-width: 100%;
    }

    .page-hero-text {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .page-hero-title {
        font-size: 26px;
    }

    .page-hero-bar {
        width: 40px;
    }
}


/* Menu */
.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-mobile-extras { display: none; }

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: #052812;
    font-weight: 600;
}

.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: #052812;
    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;
    }

    .header-meta a {
        font-size: 12px;
    }

    .lang-switcher-toggle {
        height: 30px;
        padding: 0 10px;
        font-size: 12px;
    }
}

/* Tablet */
@media (max-width: 1100px) {
    .menu { gap: 22px; }
    .menu > li > a { font-size: 15px; }
}

/* ═══════════════════════════════════════════════
   Mobile nav - full-screen overlay
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .header-meta {
        display: none;
    }

    .main-header {
        position: relative;
        z-index: 200;
    }

    .main-header-inner {
        min-height: 78px;
        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;
        letter-spacing: 0.14em;
        color: #aaa;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .nav-mobile-langs {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .nav-mobile-langs a .lang-flag {
        width: 16px;
        height: 12px;
    }

    .nav-mobile-langs a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 7px 12px;
        border: 1px solid #e0e0e0;
        border-radius: 2px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0;
        color: #333;
        transition: background 0.15s, border-color 0.15s, color 0.15s;
        min-width: 92px;
        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;width:100% }
    .nav-mobile-extras { padding-left: 20px; padding-right: 20px; }
    .lang-switcher { display: none; }
}

/* 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;
    }
}


/* 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: 84px 0 96px;
    background: #fff;
    border-top: 1px solid #edf1f4;
    border-bottom: 1px solid #edf1f4;
}

.brands-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 34px;
    gap: 24px;
}

.brands-title {
    margin: 0;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
    max-width: 420px;
}

.brands-all-link {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 600;
    color: #0e4d36;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.brands-all-link:hover {
    opacity: 0.8;
    transform: translateX(2px);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}

.brand-card {
    position: relative;
    grid-column: span 3;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 26px 22px;
    min-height: 128px;
    border: 1px solid #dfe7ee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(12, 28, 42, 0.05);
    transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.brand-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
    background: linear-gradient(90deg, #0e6f47 0%, #17a35e 100%);
}

.brand-card:nth-child(1),
.brand-card:nth-child(6),
.brand-card:nth-child(11) {
    grid-column: span 6;
}

.brand-card p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4a5f72;
}

.brand-card:hover {
    transform: translateY(-3px);
    border-color: #c7d7e6;
    box-shadow: 0 14px 24px rgba(12, 28, 42, 0.12);
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-logo {
    max-width: 100%;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Tablet */
@media (max-width: 1100px) {
    .brands-title {
        font-size: 38px;
    }

    .brands-grid {
        gap: 12px;
    }

    .brand-card {
        grid-column: span 4;
        padding: 24px 18px;
        min-height: 120px;
    }

    .brand-card:nth-child(1),
    .brand-card:nth-child(6),
    .brand-card:nth-child(11) {
        grid-column: span 6;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .brands-section {
        padding: 66px 0 76px;
    }

    .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, minmax(0, 1fr));
        gap: 10px;
    }

    .brand-card {
        grid-column: span 1;
        min-height: 110px;
        padding: 20px 16px;
    }

    .brand-card:nth-child(1),
    .brand-card:nth-child(6),
    .brand-card:nth-child(11) {
        grid-column: span 2;
    }
}

@media (max-width: 520px) {
    .brands-title {
        font-size: 28px;
    }

    .brand-card {
        min-height: 92px;
        padding: 16px 12px;
    }

    .brand-logo {
        max-height: 44px;
    }

    .brand-card p {
        font-size: 11px;
        letter-spacing: 0.06em;
    }
}

/* ═══════════════════════════════════════════════
   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: 50px 0 60px;
    background: #fff;
    border-top: 1px solid #ebebeb;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: stretch;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-header {
    margin-bottom: 0;
    max-width: 100%;
}

.contact-accent {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--logo-accent, #008906);
    margin-bottom: 14px;
}

.contact-title {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.contact-subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.contact-form-container {
    max-width: 100%;
}

.contact-right {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: visible;
    isolation: isolate;
}

.contact-right img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 10px 44px 10px 44px;
    box-shadow:
        0 24px 44px rgba(0, 0, 0, 0.14),
        0 8px 18px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-right::before,
.contact-right::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 2;
}


/* Grid: 2 columns, with half-width fields side-by-side */
.contact-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Full width fields */
.contact-field--phone,
.contact-field--message,
.contact-field--btn {
    grid-column: 1 / -1;
}

/* Half width fields (name, email) */
.contact-field--row-half {
    grid-column: auto;
}

.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: 44px;
    padding: 0 14px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    font-family: inherit;
    color: #111;
    outline: none;
    transition: border-color 0.15s ease, background 0.15s ease;
    width: 100%;
}

.contact-input::placeholder {
    color: #aaa;
}

.contact-input:focus {
    border-color: var(--logo-accent, #008906);
    background: #fff;
}

.contact-input--err {
    border-color: #d32f2f !important;
    background: #fff5f5;
}

.contact-textarea {
    height: auto;
    padding: 10px 14px;
    resize: vertical;
    min-height: 100px;
}

.contact-btn {
    height: 44px;
    padding: 0 24px;
    background: var(--logo-accent, #008906);
    color: #fff;
    font-size: 15px;
    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: 12px 0 0;
    font-size: 13px;
    color: #666;
    text-align: left;
}

.contact-privacy-link {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-privacy-link:hover { color: var(--logo-accent, #008906); }

/* Success / error */
.contact-success,
.contact-error {
    padding: 16px 20px;
    font-size: 14px;
    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-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-right {
        display: none;
    }

    .contact-title { font-size: 32px; }
}

/* Mobile */
@media (max-width: 760px) {
    .contact-block { padding: 40px 0 50px; }

    .contact-wrapper {
        gap: 24px;
    }

    .contact-header {
        margin-bottom: 0;
    }

    .contact-title { font-size: 28px; }

    .contact-form-container {
        max-width: 100%;
    }

    .contact-fields {
        grid-template-columns: 1fr;
    }

    .contact-field--row-half {
        grid-column: 1 / -1;
    }

    .contact-btn { width: 100%; }
}

/* 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: 45px 0 55px;
}

.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: 16px;
    line-height: 1.75;
    color: black;
}

.about-mission-text ul {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: black;
    list-style: disc;
    padding-left: 20px;
}

/* 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;
    }
}


/* ═══════════════════════════════════════════════════════════
   HOMEPAGE REDESIGN — hp-* components
═══════════════════════════════════════════════════════════ */

/* ── Shared section title ── */
.hp-section-title {
    margin: 0 0 40px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    color: #111;
}

.hp-section-title--light {
    color: #fff;
}

/* ── Shared buttons ── */
.hp-btn-primary {
    display: inline-flex;
    align-items: center;
    height: 52px;
    padding: 0 32px;
    background: var(--logo-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.hp-btn-primary:hover { opacity: 0.88; }

.hp-btn-outline-light {
    display: inline-flex;
    align-items: center;
    height: 46px;
    padding: 0 24px;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}

.hp-btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hp-hero {
    position: relative;
    min-height: 580px;
    background-image: url('/assets/img/home/hero.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.hp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5,16,28,0.82) 42%, rgba(5,16,28,0.30) 100%);
    display: flex;
    align-items: center;
}

.hp-hero-inner {
    padding-top: 60px;
    padding-bottom: 80px;
}

.hp-hero-content {
    max-width: 640px;
}

.hp-hero-eyebrow {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--logo-accent);
}

.hp-hero-headline {
    margin: 0 0 22px;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
}

.hp-hero-sub {
    margin: 0 0 36px;
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
}

/* ════════════════════════════════════════════════════
   VALUES / WHAT WE DO
════════════════════════════════════════════════════ */
.hp-values {
    padding: 90px 0 80px;
    background: #fff;
}

.hp-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.hp-value-card {
    padding: 36px 28px 32px;
    border: 1px solid #e8eaec;
    border-top: 4px solid var(--logo-accent);
    background: #fff;
    transition: box-shadow 0.2s;
}

.hp-value-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.hp-value-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 20px;
}

.hp-value-title {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.hp-value-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ════════════════════════════════════════════════════
   BRANDS
════════════════════════════════════════════════════ */
.hp-brands {
    padding: 80px 0 90px;
    background: #111;
}

.hp-brands-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.hp-brands-sub {
    margin: 6px 0 0;
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.hp-brands-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.hp-brand-item {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    min-height: 130px;
    border: 1px solid #e6e6e6;
    transition: background 0.2s, border-color 0.2s;
}

.hp-brand-item:hover {
    background: #fafafa;
    border-color: #d9d9d9;
}

.hp-brand-img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.hp-brand-item:hover .hp-brand-img {
    opacity: 1;
}

/* ════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════ */
.hp-about {
    padding: 90px 0 90px;
    background: #f5f6f7;
}

.hp-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.hp-about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.hp-about-text {
    margin: 0 0 36px;
    font-size: 17px;
    line-height: 1.75;
    color: #444;
}

.hp-about-stats {
    display: flex;
    gap: 36px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hp-stat {
    display: flex;
    flex-direction: column;
}

.hp-stat-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--logo-accent);
}

.hp-stat-number sup {
    font-size: 20px;
    position: relative;
    top: -0.6em;
    color: var(--logo-accent);
}

.hp-stat-label {
    margin-top: 6px;
    font-size: 14px;
    color: #666;
    line-height: 1.35;
}

/* ════════════════════════════════════════════════════
   CLIENTS
════════════════════════════════════════════════════ */
.hp-clients {
    padding: 80px 0 90px;
    background: #fff;
}

.hp-clients-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 40px;
}

.hp-clients-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    padding: 16px 0;
    border-bottom: 1px solid #ebebeb;
}

.hp-clients-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--logo-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hp-hero-headline { font-size: 46px; }
    .hp-section-title { font-size: 34px; }
    .hp-values-grid   { grid-template-columns: repeat(2, 1fr); }
    .hp-brands-logos  { grid-template-columns: repeat(4, 1fr); }
    .hp-clients-list  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hp-hero          { min-height: 480px; }
    .hp-hero-headline { font-size: 38px; }
    .hp-hero-sub      { font-size: 18px; }
    .hp-about-inner   { grid-template-columns: 1fr; gap: 40px; }
    .hp-brands-head   { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hp-brands-logos  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .hp-hero          { min-height: 420px; }
    .hp-hero-headline { font-size: 30px; }
    .hp-values        { padding: 60px 0; }
    .hp-values-grid   { grid-template-columns: 1fr; gap: 16px; }
    .hp-brands        { padding: 60px 0; }
    .hp-brands-logos  { grid-template-columns: repeat(2, 1fr); }
    .hp-brand-item    { padding: 28px 20px; min-height: 100px; }
    .hp-about         { padding: 60px 0; }
    .hp-about-stats   { gap: 24px; }
    .hp-stat-number   { font-size: 34px; }
    .hp-clients       { padding: 60px 0; }
    .hp-clients-list  { grid-template-columns: 1fr; }
    .hp-section-title { font-size: 28px; margin-bottom: 28px; }
}

@media (max-width: 520px) {
    .hp-hero-eyebrow  { font-size: 11px; }
    .hp-hero-headline { font-size: 26px; }
    .hp-hero-sub      { font-size: 16px; }
    .hp-btn-primary   { height: 46px; padding: 0 24px; font-size: 15px; }
}

/* ═══════════════════════════════════════════════
   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: 70px 0 0;
}

.contacts-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 34px;
    align-items: stretch;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 34px 36px;
    background: #fff;
    border: 1px solid #dfe9e2;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(12, 40, 26, 0.06);
}

.contacts-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contacts-group--company {
    gap: 10px;
    padding-bottom: 4px;
}

.contacts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contacts-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #658273;
}

.contacts-label--accent {
    color: var(--logo-accent, #008906);
}

.contacts-phone {
    font-size: 36px;
    font-weight: 700;
    color: var(--logo-accent, #008906);
    text-decoration: none;
    line-height: 1.1;
    transition: opacity 0.15s, color 0.15s;
}

.contacts-phone:hover {
    opacity: 0.88;
    color: #0a6d10;
}

.contacts-company-main {
    margin: 0;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 700;
    color: #0f2418;
    max-width: 12ch;
}

.contacts-value {
    font-size: 15px;
    font-weight: 600;
    color: #18221c;
    font-style: normal;
    line-height: 1.6;
}

.contacts-link {
    text-decoration: none;
    color: #18221c;
    transition: color 0.15s;
}

.contacts-link:hover {
    color: var(--logo-accent, #008906);
}

.contacts-divider {
    height: 1px;
    background: #ebebeb;
}

.contacts-aside {
    display: flex;
}

.contacts-company-card {
    width: 100%;
    padding: 32px 30px;
    border-radius: 18px;
    border: 1px solid #d8e6db;
    background: linear-gradient(180deg, #f8fcf9 0%, #ffffff 100%);
    box-shadow: 0 14px 34px rgba(12, 40, 26, 0.06);
}

.contacts-company-title {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.15;
    color: #0f2418;
}

.contacts-company-name {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 700;
    color: #123122;
}

.contacts-company-note {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.65;
    color: #49604f;
}

.contacts-registry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contacts-registry-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 16px 15px;
    border: 1px solid #dce7e0;
    border-radius: 12px;
    background: #fff;
}

.contacts-registry-value {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #0f2418;
}

.contacts-map-band {
    width: 100%;
    margin-top: 54px;
    border-top: 1px solid #dfe8e2;
    background: #eef6f0;
}

.contacts-map {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}

/* Tablet */
@media (max-width: 900px) {
    .contacts-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacts-map {
        height: 360px;
    }

    .contacts-info,
    .contacts-company-card {
        padding: 26px 24px;
    }

    .contacts-phone {
        font-size: 32px;
    }

    .contacts-company-main {
        font-size: 30px;
        max-width: none;
    }
}

/* Mobile */
@media (max-width: 540px) {
    .contacts-section {
        padding-top: 52px;
    }

    .contacts-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacts-phone {
        font-size: 26px;
    }

    .contacts-company-main {
        font-size: 26px;
    }

    .contacts-company-title {
        font-size: 23px;
    }

    .contacts-registry-grid {
        grid-template-columns: 1fr;
    }

    .contacts-map {
        height: 300px;
    }
}

/* ═══════════════════════════════════════════════
   Logo block (used on multiple pages)
═══════════════════════════════════════════════ */

.logo-link {
    text-decoration: none;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-rule-row {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    margin-bottom: 3px;
}

.logo-rule {
    height: 2px;
    flex: 1;
    background: var(--logo-accent);
}

.logo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--logo-accent);
    flex-shrink: 0;
}

.logo-wordmark {
    font-family: 'Sora', sans-serif;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: 3.2px;
    color: #111;
    line-height: 1;
}

.logo-wordmark span {
    color: var(--logo-accent);
}

.logo-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 8.5px;
    letter-spacing: 0.22em;
    color: #4f6f5b;
    text-transform: uppercase;
    margin-top: 6px;
    align-self: stretch;
    text-align: center;
}

@media (max-width: 900px) {
    .logo-wordmark {
        font-size: 28px;
        letter-spacing: 2.6px;
    }

    .logo-tagline {
        font-size: 7px;
    }
}

@media (max-width: 520px) {
    .logo-wordmark {
        font-size: 23px;
        letter-spacing: 2px;
    }

    .logo-tagline {
        font-size: 6.3px;
    }
}


.about-mission {
    background: #ffffff;
}

.services-local-wrap {
    display: grid;
    gap: 34px;
}

.services-local-head {
    max-width: 940px;
}

.services-local-title {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    color: #0f2118;
}

.services-local-lead {
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
    color: #2e3a33;
}

.services-local-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.services-local-card {
    background: #ffffff;
    border: 1px solid #dbe7df;
    border-top: 3px solid var(--logo-accent);
    padding: 24px 24px 22px;
}

.services-local-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #10281d;
}

.services-local-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #35423b;
}

.services-local-band {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 26px;
    align-items: start;
    border: 1px solid #dce8e0;
    background: linear-gradient(90deg, #ffffff 0%, #f8fffb 100%);
    padding: 26px;
}

.services-local-band h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #0f241a;
}

.services-local-band p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.72;
    color: #314039;
}

.services-local-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.services-local-points li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.55;
    color: #1f2b25;
}

.services-local-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--logo-accent);
}

.services-local-steps {
    border-left: 4px solid var(--logo-accent);
    padding: 10px 0 10px 18px;
}

.services-local-steps h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #0f241a;
}

.services-local-steps ol {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.services-local-steps li {
    font-size: 15px;
    line-height: 1.65;
    color: #27342e;
}

@media (max-width: 980px) {
    .services-local-grid {
        grid-template-columns: 1fr;
    }

    .services-local-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .about-mission {
        padding: 54px 0 62px;
    }

    .services-local-lead {
        font-size: 16px;
    }

    .services-local-card,
    .services-local-band {
        padding: 18px;
    }

    .services-local-title,
    .services-local-band h3,
    .services-local-steps h3 {
        font-size: 26px;
    }
}

/* About page v2 (English rewrite) */
.about-v2 {
    background:
        radial-gradient(900px 240px at 0% 0%, rgba(0, 137, 6, 0.05), transparent 60%),
        #ffffff;
}

.about-v2-wrap {
    display: grid;
    gap: 30px;
}

.about-v2-head {
    max-width: 980px;
}

.about-v2-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6f7f76;
}

.about-v2-title {
    margin: 0 0 16px;
    font-size: clamp(31px, 4.2vw, 46px);
    line-height: 1.08;
    color: #10281d;
    max-width: 900px;
}

.about-v2-lead {
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
    color: #2e3a33;
    max-width: 890px;
}

.about-v2-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-v2-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
    border: 1px solid #d9e4dd;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.about-v2-card::before {
    content: '';
    position: absolute;
    right: -44px;
    top: -44px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(0, 137, 6, 0.07);
}

.about-v2-card-tag {
    margin: 0 0 10px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #567267;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.about-v2-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #10281d;
    position: relative;
    z-index: 1;
}

.about-v2-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #36433c;
    position: relative;
    z-index: 1;
}

.about-v2-band {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 24px;
    align-items: start;
    border: 1px solid #dce8e0;
    background: #f8fcfa;
    padding: 26px;
}

.about-v2-band-copy h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #0f241a;
}

.about-v2-band-copy p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.72;
    color: #324039;
}

.about-v2-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.about-v2-points li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.55;
    color: #1f2b25;
}

.about-v2-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--logo-accent);
    border-radius: 2px;
}

.about-v2-steps {
    border: 1px solid #dbe7df;
    background: #ffffff;
    padding: 22px 24px;
}

.about-v2-steps h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #0f241a;
}

.about-v2-steps ol {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.about-v2-steps li {
    font-size: 15px;
    line-height: 1.65;
    color: #27342e;
}

@media (max-width: 980px) {
    .about-v2-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 700px) {
    .about-v2-lead {
        font-size: 16px;
    }

    .about-v2-card,
    .about-v2-band,
    .about-v2-steps {
        padding: 18px;
    }

    .about-v2-title,
    .about-v2-band-copy h3,
    .about-v2-steps h3 {
        font-size: 26px;
    }
}
