/* ============================================
   BLACK EDITION — Industrial Premium Theme
   ============================================ */

:root {
    --be-black: #0d0d0d;
    --be-dark: #1a1a1a;
    --be-dark-2: #222222;
    --be-dark-3: #2a2a2a;
    --be-gray: #888888;
    --be-gray-light: #b0b0b0;
    --be-white: #ffffff;
    --be-off-white: #f0f0f0;
    --be-blue: #0088cc;
    --be-blue-light: #00aaff;
    --be-blue-dark: #006699;
    --be-accent: #0099dd;
    --be-red: #cc3333;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Onest', sans-serif;

    --nav-height: 72px;
    --section-padding: 100px;
    --section-padding-m: 60px;
}

/* ---- RESET & BASE ---- */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--be-dark);
    background: var(--be-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

::selection {
    background: var(--be-blue);
    color: var(--be-white);
}

/* ---- NAVBAR ---- */

.be-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.be-navbar.scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.be-navbar nav {
    height: 100%;
}

.be-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 10px;
}

.be-logo {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
}

.be-logo:hover {
    opacity: 0.8;
}

.be-logo-img {
    display: block;
    filter: invert(1);
    mix-blend-mode: screen;
    width: 90px;
    height: auto;
}

.be-logo-img--mobile {
    width: 110px;
}

.be-logo-img--hero {
    width: clamp(260px, 42vw, 560px);
    max-width: 100%;
    filter: none;
    mix-blend-mode: normal;
}

.be-logo-img--footer {
    width: 200px;
    max-width: 100%;
}

.be-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.be-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.be-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--be-blue);
    transition: width 0.3s;
}

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

.be-nav-links a:hover::after {
    width: 100%;
}

.be-nav-cta {
    background: var(--be-blue) !important;
    color: var(--be-white) !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    font-weight: 600 !important;
}

.be-nav-cta::after {
    display: none !important;
}

.be-nav-cta:hover {
    background: var(--be-blue-light) !important;
}

/* Burger */
.be-burger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
}

.be-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--be-white);
    transition: transform 0.3s;
}

/* Mobile Menu */
.be-offcanvas-bar {
    background: var(--be-black) !important;
    padding: 40px 30px;
    width: 300px !important;
}

.be-mobile-logo {
    color: var(--be-white);
    letter-spacing: 3px;
    margin-bottom: 40px;
    display: flex;
    align-items: stretch;
    line-height: 1;
}


.be-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.be-mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.be-mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s, padding-left 0.3s;
}

.be-mobile-nav a:hover {
    color: var(--be-blue);
    padding-left: 10px;
}

.be-mobile-contacts {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.be-mobile-contacts a {
    color: var(--be-blue);
    font-size: 14px;
}

/* ---- HERO ---- */

.be-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--be-black);
    overflow: hidden;
}

.be-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

.be-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.be-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 80px;
}

.be-hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--be-blue);
    border: 1px solid rgba(0, 136, 204, 0.3);
    padding: 8px 24px;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

.be-hero-title {
    margin: 0 0 6px;
    display: flex;
    justify-content: center;
    animation: fadeSlideUp 0.8s ease 0.4s both;
}

.be-hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 48px;
    animation: fadeSlideUp 0.8s ease 0.6s both;
}

.be-hero-lines {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    margin-bottom: 48px;
    animation: fadeSlideUp 0.8s ease 0.8s both;
}

.be-hero-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--be-blue);
    display: none;
}

@media (min-width: 640px) {
    .be-hero-dot { display: block; }
}

.be-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    animation: fadeSlideUp 0.8s ease 1s both;
}

.be-hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeSlideUp 0.8s ease 1.2s both;
    pointer-events: none;
}

@media (min-width: 960px) {
    .be-hero-scroll {
        display: flex;
    }
}

.be-hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--be-blue), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ---- BUTTONS ---- */

.be-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-width: 200px;
}

.be-btn-primary {
    background: var(--be-blue);
    color: var(--be-white);
}

.be-btn-primary:hover {
    background: var(--be-blue-light);
    color: var(--be-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}

.be-btn-outline {
    background: transparent;
    color: var(--be-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.be-btn-outline:hover {
    border-color: var(--be-blue);
    color: var(--be-blue);
    background: rgba(0, 136, 204, 0.05);
}

.be-btn-full {
    width: 100%;
}

/* ---- STATS BAR ---- */

.be-stats {
    background: var(--be-blue);
    padding: 0;
}

.be-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.be-stat-item:last-child {
    border-right: none;
}

.be-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--be-white);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 6px;
}

.be-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
    font-weight: 400;
}

/* ---- SECTIONS COMMON ---- */

.be-section-header {
    margin-bottom: 60px;
}

.be-section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--be-blue);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.be-section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--be-blue);
}

.be-section-header--light .be-section-tag {
    color: var(--be-blue-light);
}

.be-section-header--light .be-section-tag::before {
    background: var(--be-blue-light);
}

.be-section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 2px;
    margin: 0;
}

.be-section-header--light .be-section-title {
    color: var(--be-white);
}

.be-section-desc {
    font-size: 17px;
    color: var(--be-gray);
    max-width: 560px;
    margin-top: 20px;
    line-height: 1.7;
}

.be-subsection-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 28px;
    color: inherit;
}

.be-lead {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 24px;
}

/* ---- ABOUT ---- */

.be-about {
    padding: var(--section-padding) 0;
    background: var(--be-off-white);
}

.be-about-text p {
    color: var(--be-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.be-about-text .be-lead {
    color: var(--be-dark);
}

.be-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.be-about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--be-blue);
    opacity: 0.2;
    border-radius: 8px;
    z-index: -1;
}

.be-about-image img {
    width: 100%;
    border-radius: 4px;
}

/* Timeline */
.be-timeline {
    position: relative;
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
}

.be-timeline-track {
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    height: 2px;
    background: #cccccc;
    display: none;
}

@media (min-width: 960px) {
    .be-timeline-track { display: block; }
}

.be-timeline-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
    padding: 0 8px;
    margin-bottom: 24px;
}

@media (max-width: 959px) {
    .be-timeline {
        flex-direction: column;
        gap: 0;
        padding-left: 40px;
    }
    .be-timeline-track {
        display: block;
        top: 0;
        bottom: 0;
        left: 12px;
        right: auto;
        width: 2px;
        height: auto;
    }
    .be-timeline-item {
        text-align: left;
        padding: 0 0 24px 0;
        position: relative;
    }
    .be-timeline-item::before {
        content: '';
        position: absolute;
        left: -33px;
        top: 6px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--be-blue);
        border: 3px solid var(--be-white);
    }
}

@media (min-width: 960px) {
    .be-timeline-item::before {
        content: '';
        position: absolute;
        top: 38px;
        left: 50%;
        transform: translateX(-50%);
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--be-blue);
        border: 3px solid var(--be-white);
        box-shadow: 0 0 0 2px var(--be-blue);
    }
}

.be-timeline-year {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--be-dark);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

@media (min-width: 960px) {
    .be-timeline-year {
        margin-bottom: 40px;
    }
}

.be-timeline-content {
    font-size: 13px;
    color: var(--be-gray);
    line-height: 1.6;
}

.be-timeline-stats {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--be-dark);
    font-size: 12px;
}

.be-timeline-item--active .be-timeline-year {
    color: var(--be-blue);
}

.be-timeline-item--active::before {
    background: var(--be-blue) !important;
    box-shadow: 0 0 0 2px var(--be-blue), 0 0 12px rgba(0, 136, 204, 0.4) !important;
}

/* ---- COMPRESSORS ---- */

.be-compressors {
    padding: var(--section-padding) 0;
    background: var(--be-white);
    color: var(--be-dark);
}

.be-compressor-image {
    position: relative;
}

.be-compressor-image img {
    width: 100%;
    border-radius: 4px;
}

.be-compressor-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: var(--be-blue);
    opacity: 0.1;
    filter: blur(30px);
    border-radius: 50%;
}

.be-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.be-feature {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.be-feature:last-child {
    border-bottom: none;
}

.be-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.2);
    color: var(--be-blue);
    border-radius: 4px;
}

.be-feature-text h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--be-dark);
}

.be-feature-text p {
    font-size: 14px;
    color: var(--be-gray);
    margin: 0;
    line-height: 1.6;
}

/* Key features cards */
.be-key-card {
    background: var(--be-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px 16px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.be-key-card:hover {
    border-color: rgba(0, 136, 204, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.be-key-card svg {
    color: var(--be-blue);
}

.be-key-card span {
    font-size: 13px;
    color: var(--be-gray);
    line-height: 1.5;
}

/* TCO */
.be-tco {
    background: var(--be-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.be-tco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--be-blue);
}

.be-tco-label {
    display: flex;
    align-items: center;
    gap: 20px;
}

.be-tco-abbr {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--be-blue);
    letter-spacing: 4px;
    line-height: 1;
}

.be-tco-full {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--be-gray);
    line-height: 1.4;
}

.be-tco h3 {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--be-dark);
}

.be-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.be-checklist li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--be-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.be-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border: 1px solid var(--be-blue);
    border-radius: 2px;
    background: transparent;
}

.be-checklist li:last-child {
    border-bottom: none;
}

/* ---- SPARE PARTS ---- */

.be-parts {
    padding: var(--section-padding) 0;
    background: var(--be-off-white);
}

.be-parts .be-lead {
    color: var(--be-dark);
}

.be-parts p {
    color: var(--be-gray);
    line-height: 1.8;
}

.be-parts-image {
    border-radius: 4px;
    overflow: hidden;
}

.be-parts-image img {
    width: 100%;
    border-radius: 4px;
}

.be-part-card {
    background: var(--be-white);
    padding: 18px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--be-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    height: 100%;
}

.be-part-card:hover {
    border-left-color: var(--be-blue);
    background: var(--be-white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.be-part-icon {
    color: var(--be-blue);
    font-size: 8px;
    flex-shrink: 0;
}

/* Components */
.be-comp-item {
    background: var(--be-white);
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--be-dark);
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 4px;
    transition: background 0.3s;
}

.be-comp-item:hover {
    background: rgba(0, 136, 204, 0.08);
}

/* Oils card */
.be-oils-card {
    background: var(--be-dark);
    border-radius: 4px;
    overflow: hidden;
    color: var(--be-white);
}

.be-oils-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.be-oils-text {
    padding: 28px;
}

.be-oils-text h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--be-white);
}

.be-oils-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 0 12px;
    line-height: 1.7;
}

.be-oils-note {
    font-size: 13px !important;
    color: var(--be-blue) !important;
    font-weight: 500;
}

/* Guarantee */
.be-guarantee-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(0, 136, 204, 0.06);
    border: 1px solid rgba(0, 136, 204, 0.15);
    border-radius: 4px;
    font-size: 14px;
    color: var(--be-dark);
    line-height: 1.7;
}

.be-guarantee-icon {
    flex-shrink: 0;
    color: var(--be-blue);
}

.be-guarantee-banner strong {
    color: var(--be-blue);
}

/* ---- SERVICE ---- */

.be-service {
    padding: var(--section-padding) 0;
    background: var(--be-white);
    color: var(--be-dark);
}

.be-service-card {
    background: var(--be-off-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 32px 28px;
    height: 100%;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.be-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.3s;
}

.be-service-card:hover {
    border-color: rgba(0, 136, 204, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.be-service-card:hover::before {
    background: var(--be-blue);
}

.be-service-card--accent {
    border-color: rgba(0, 136, 204, 0.25);
    background: rgba(0, 136, 204, 0.04);
}

.be-service-card--accent::before {
    background: var(--be-blue) !important;
}

.be-service-num {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.be-service-card h4 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--be-dark);
}

.be-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.be-service-card li {
    font-size: 13px;
    color: var(--be-gray);
    line-height: 1.6;
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.be-service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 1px;
    background: var(--be-blue);
}

.be-service-photo {
    border-radius: 4px;
    overflow: hidden;
    height: 240px;
}

.be-service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.be-service-photo:hover img {
    transform: scale(1.05);
}

/* ---- CONTACTS ---- */

.be-contacts {
    padding: var(--section-padding) 0;
    background: var(--be-off-white);
}

.be-contact-info {
    margin-top: 20px;
}

.be-contact-block {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.be-contact-block:last-child {
    border-bottom: none;
}

.be-contact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--be-gray);
    margin-bottom: 6px;
}

.be-contact-value {
    font-size: 18px;
    font-weight: 500;
    color: var(--be-dark);
    transition: color 0.3s;
}

a.be-contact-value:hover {
    color: var(--be-blue);
}

/* Form */
.be-form {
    background: var(--be-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.be-form-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    margin: 0 0 8px;
}

.be-form-desc {
    font-size: 14px;
    color: var(--be-gray);
    margin: 0 0 28px;
}

.be-field {
    margin-bottom: 4px;
}

.be-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--be-dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.be-field input,
.be-field select,
.be-field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: var(--be-off-white);
    color: var(--be-dark);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.be-field input:focus,
.be-field select:focus,
.be-field textarea:focus {
    border-color: var(--be-blue);
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
    background: var(--be-white);
}

.be-field textarea {
    resize: vertical;
    min-height: 100px;
}

.be-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.be-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--be-gray);
    margin: 8px 0 16px;
}

.be-checkbox input {
    margin-top: 2px;
    accent-color: var(--be-blue);
}

.be-form-success {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--be-white);
    border-radius: 4px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 40px;
    color: var(--be-blue);
    animation: fadeIn 0.4s ease;
}

.be-form-success.active {
    display: flex;
}

.be-form-success p {
    font-size: 16px;
    font-weight: 500;
    color: var(--be-dark);
}

/* ---- FOOTER ---- */

.be-footer {
    background: var(--be-black);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 0;
}

.be-footer-brand p {
    font-size: 14px;
    color: #ffffff;
    margin-top: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}



.be-footer-heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0 20px;
}

.be-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.be-footer-links li {
    margin-bottom: 10px;
}

.be-footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.be-footer-links a:hover {
    color: var(--be-blue);
}

.be-footer-bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.be-footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* ---- ANIMATIONS ---- */

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.3);
    }
}

/* ---- RESPONSIVE ---- */

@media (max-width: 959px) {
    :root {
        --section-padding: 60px;
    }

    .be-logo {
        font-size: 20px;
    }

    .be-logo-bracket {
        font-size: 2.2em;
    }

    .be-logo-img--hero {
        width: clamp(160px, 28vw, 380px);
    }

    .be-hero-lines {
        flex-direction: column;
        gap: 8px;
    }

    .be-tco {
        padding: 28px;
    }

    .be-tco-abbr {
        font-size: 48px;
    }

    .be-form {
        padding: 28px 20px;
    }

    .be-guarantee-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

@media (max-width: 639px) {
    .be-logo {
        font-size: 18px;
    }

    .be-logo-bracket {
        font-size: 2em;
    }

    .be-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 20px 16px;
    }

    .be-stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .be-stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .be-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .be-btn {
        width: 100%;
        max-width: 300px;
    }

    .be-service-photo {
        height: 180px;
    }

    .be-contact-value {
        font-size: 16px;
    }
}

/* ---- SCROLLSPY OVERRIDES FOR UIKIT ---- */

.uk-animation-fade {
    animation-duration: 0.6s;
}

.uk-animation-slide-right {
    animation-duration: 0.5s;
}

/* TODO: убрать чтобы показать форму */
.be-form { display: none !important; }
