/*
Theme Name: css optika
Author: dev&
Description: Landing page theme for CSS Optika optical cable supplier.
Version: 2.0.0
Text Domain: css-optika
*/

:root {
    --blue: #003b78;
    --blue-dark: #001d3d;
    --blue-soft: #075ca8;
    --red: #f23b4f;
    --red-dark: #d9293d;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #ffffff;
    --gray: #f5f7fb;
    --radius: 18px;
    --shadow: 0 18px 45px rgba(15, 23, 42, .13);
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #e9eef5;
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    width: 126px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.logo-main {
    display: flex;
    align-items: end;
    gap: 4px;
    color: var(--blue);
    font-weight: 900;
    font-size: 27px;
    letter-spacing: -1px;
}

.logo-main span {
    color: var(--red);
}

.logo-sub {
    color: #1f2937;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #1f2937;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.nav a {
    transition: .2s;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.price-btn {
    min-height: 38px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(242, 59, 79, .28);
    transition: .2s;
}

.price-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.phone {
    color: #111827;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--blue);
    color: #fff;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

/* HERO */

.hero {
    position: relative;
    min-height: 505px;
    padding: 96px 0 0;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(0, 23, 49, .74), rgba(0, 39, 78, .82)),
        url("assets/img/hero.jpg") center/cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.12), transparent 28%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(28px, 4vw, 45px);
    line-height: .98;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.04em;
}

.hero p {
    max-width: 510px;
    margin: 0 auto 24px;
    color: rgba(255,255,255,.87);
    line-height: 1.55;
    font-size: 15px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    min-height: 44px;
    padding: 0 23px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    transition: .22s;
}

.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 26px rgba(242,59,79,.35);
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background: rgba(0, 29, 61, .82);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
}

.btn-dark:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.hero-features {
    position: relative;
    z-index: 3;
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.hero-feature {
    min-height: 82px;
    padding: 18px 16px;
    border-radius: 14px 14px 0 0;
    background: rgba(0, 55, 108, .88);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    color: #fff;
}

.hero-feature strong {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    text-transform: uppercase;
}

.hero-feature span {
    color: rgba(255,255,255,.78);
    font-size: 11px;
    line-height: 1.35;
}

/* SECTIONS */

.section {
    padding: 54px 0;
}

.section-small {
    padding: 34px 0;
}

.kicker {
    color: #9ca3af;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    margin-bottom: 4px;
}

.section-title {
    margin: 0 0 28px;
    color: var(--red);
    font-size: 24px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.section-title.blue {
    color: var(--blue);
}

.section-title.dark {
    color: var(--text);
}

/* ASSORTMENT */

.assortment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px 34px;
}

.cable-card {
    text-align: center;
}

.cable-img-wrap {
    width: 112px;
    height: 112px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #f0f3f8;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #e6ebf2;
}

.cable-img-wrap::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 11px;
    width: 52px;
    height: 5px;
    background: var(--red);
    transform: rotate(-16deg);
    border-radius: 20px;
}

.cable-img-wrap img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.cable-card h3 {
    margin: 0 0 3px;
    color: #111827;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cable-card p {
    margin: 0;
    color: #6b7280;
    font-size: 10px;
    line-height: 1.25;
}

/* MANAGER + BENEFITS */

.mid-grid {
    display: grid;
    grid-template-columns: 1.35fr .75fr;
    gap: 26px;
    align-items: start;
}

.benefits {
    margin-top: 18px;
}

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

.benefit {
    padding: 18px 16px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #e8edf4;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    min-height: 118px;
}

.benefit-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 11px;
    border-radius: 9px;
    background: #eef6ff;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-weight: 900;
}

.benefit h3 {
    margin: 0 0 7px;
    font-size: 12px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--blue);
}

.benefit p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.manager-card {
    position: relative;
    padding: 28px 24px 0;
    border-radius: 22px;
    background: #f7f8fb;
    overflow: hidden;
    min-height: 415px;
    border: 1px solid #e9edf3;
}

.manager-card h2 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.08;
    text-transform: uppercase;
    color: var(--blue);
}

.manager-card p {
    margin: 0 0 18px;
    color: #4b5563;
    font-size: 12px;
    line-height: 1.55;
}

.form {
    display: grid;
    gap: 9px;
    position: relative;
    z-index: 2;
}

.input {
    width: 100%;
    height: 38px;
    border: 1px solid #d7dde7;
    border-radius: 999px;
    background: #fff;
    outline: none;
    padding: 0 15px;
    font-size: 12px;
}

.input:focus {
    border-color: var(--blue-soft);
}

.manager-reel {
    position: absolute;
    right: -15px;
    bottom: -6px;
    width: 205px;
    z-index: 1;
}

/* DELIVERY */

.delivery-payment {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
}

.delivery-card {
    position: relative;
    min-height: 340px;
    padding: 32px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(0, 23, 49, .98), rgba(0, 63, 127, .95));
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.delivery-card h2 {
    margin: 0 0 16px;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 900;
}

.delivery-card p {
    max-width: 390px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1.6;
}

.delivery-info {
    display: flex;
    gap: 30px;
    margin-bottom: 22px;
}

.delivery-info div {
    color: rgba(255,255,255,.76);
    font-size: 11px;
}

.delivery-info strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 5px;
}

.truck {
    position: absolute;
    right: 14px;
    bottom: 32px;
    width: 290px;
}

.payment-card {
    min-height: 340px;
    padding: 32px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, #a34a63, #b96578);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.payment-card h2 {
    margin: 0 0 24px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 900;
}

.days {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 18px;
}

.days strong {
    font-size: 96px;
    line-height: .75;
    font-weight: 900;
}

.days span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-card p {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: 12px;
    line-height: 1.55;
}

/* TRUST */

.trust-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: start;
}

.trust-text h2 {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 25px;
    text-transform: uppercase;
    line-height: 1.05;
}

.trust-text p {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.55;
}

.dealer-card {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

.dealer-card strong {
    color: var(--blue);
    text-transform: uppercase;
    display: block;
    font-size: 13px;
    line-height: 1.25;
}

.dealer-card span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    color: var(--muted);
}

.dealer-card img {
    width: 74px;
}

.logo-row {
    margin: 26px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.logo-box {
    height: 54px;
    border-radius: 12px;
    background: #f5f7fb;
    border: 1px solid #e8edf4;
    display: grid;
    place-items: center;
    color: #6b7280;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.gallery img {
    height: 140px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* CONTACTS */

.contacts-section {
    padding: 38px 0 0;
}

.contact-title {
    color: var(--blue);
    margin: 0 0 22px;
    font-size: 24px;
    text-transform: uppercase;
}

.contact-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.contact-item strong {
    display: block;
    color: var(--blue);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-item span,
.contact-item a {
    color: #4b5563;
    font-size: 12px;
    line-height: 1.45;
}

.map-wrap {
    position: relative;
    height: 420px;
    background: #e5e7eb;
    overflow: hidden;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-form {
    position: absolute;
    top: 34px;
    left: calc((100% - min(var(--container), calc(100% - 32px))) / 2);
    width: 360px;
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 2;
}

.map-form h3 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.25;
    color: var(--blue);
    text-transform: uppercase;
}

.map-form p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.map-form .input {
    border-radius: 8px;
    height: 38px;
}

.map-form textarea.input {
    height: 72px;
    padding-top: 10px;
    resize: none;
}

.map-form .btn {
    width: 100%;
}

/* FOOTER */

.site-footer {
    padding: 20px 0;
    background: var(--blue-dark);
    color: #fff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-size: 11px;
}

.footer-logo {
    font-weight: 900;
    color: #fff;
}

/* ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav.open {
        display: grid;
        position: absolute;
        top: 72px;
        left: 16px;
        right: 16px;
        background: #fff;
        padding: 18px;
        border-radius: 16px;
        box-shadow: var(--shadow);
        z-index: 100;
    }

    .assortment-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mid-grid,
    .delivery-payment,
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .header-right .price-btn,
    .phone {
        display: none;
    }

    .hero {
        padding-top: 70px;
        min-height: auto;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
        margin-top: 46px;
    }

    .assortment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 14px;
    }

    .benefit-grid,
    .contact-top,
    .logo-row,
    .gallery {
        grid-template-columns: 1fr;
    }

    .delivery-info {
        display: grid;
        gap: 14px;
    }

    .truck {
        opacity: .35;
        right: -30px;
    }

    .map-wrap {
        height: auto;
        padding-top: 0;
        display: flex;
        flex-direction: column;
    }

    .map-form {
        position: relative;
        left: auto;
        top: auto;
        width: calc(100% - 32px);
        margin: 16px auto;
        order: 1;
    }

    .map-wrap iframe {
        height: 320px;
        order: 2;
    }

    .footer-inner {
        display: grid;
    }
}
/* Native Elementor CSS Optika layout */

.el-section {
    padding: 50px 0;
}

.el-section > .elementor-container {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.el-hero-section {
    min-height: 505px;
    padding-top: 96px;
    padding-bottom: 0;
    position: relative;
    color: #fff;
}

.el-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 23, 49, .74), rgba(0, 39, 78, .82));
    z-index: 0;
}

.el-hero-section > .elementor-container {
    position: relative;
    z-index: 2;
}

.el-hero-title .elementor-heading-title {
    max-width: 680px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(28px, 4vw, 45px);
    line-height: .98;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.04em;
}

.el-hero-text {
    max-width: 540px;
    margin: 16px auto 24px;
}

.el-hero-text,
.el-hero-text p {
    color: rgba(255,255,255,.87);
    font-size: 15px;
    line-height: 1.55;
}

.el-hero-buttons {
    max-width: 380px;
    margin: 0 auto;
}

.el-hero-buttons .elementor-column {
    width: auto !important;
}

.el-hero-buttons .elementor-row,
.el-hero-buttons .elementor-container {
    justify-content: center;
    gap: 14px;
}

.el-btn-red .elementor-button,
.el-btn-dark .elementor-button {
    min-height: 44px;
    padding: 0 23px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    border: 0;
}

.el-btn-red .elementor-button {
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 26px rgba(242,59,79,.35);
}

.el-btn-dark .elementor-button {
    background: rgba(0, 29, 61, .82);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
}

.el-btn-red .elementor-button:hover,
.el-btn-dark .elementor-button:hover {
    transform: translateY(-2px);
}

.el-hero-features {
    margin-top: 64px;
}

.el-hero-feature {
    min-height: 82px;
    padding: 18px 16px;
    border-radius: 14px 14px 0 0;
    background: rgba(0, 55, 108, .88);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
}

.el-feature-title .elementor-heading-title {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
}

.el-feature-text,
.el-feature-text p {
    color: rgba(255,255,255,.78);
    font-size: 11px;
    line-height: 1.35;
}

/* Titles */

.el-kicker,
.el-kicker p {
    color: #9ca3af;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    margin-bottom: 4px;
}

.el-section-title-red .elementor-heading-title {
    color: var(--red);
    font-size: 24px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.el-section-title-blue .elementor-heading-title {
    color: var(--blue);
    font-size: 25px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

/* Cables */

.el-assortment-section {
    background: #fff;
}

.el-cable-row {
    margin-bottom: 22px;
}

.el-cable-card {
    text-align: center;
    padding: 0 10px;
}

.el-cable-image {
    width: 112px;
    height: 112px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #f0f3f8;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #e6ebf2;
    position: relative;
}

.el-cable-image::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 11px;
    width: 52px;
    height: 5px;
    background: var(--red);
    transform: rotate(-16deg);
    border-radius: 20px;
}

.el-cable-image img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.el-cable-title .elementor-heading-title {
    color: #111827;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.el-cable-text,
.el-cable-text p {
    color: #6b7280;
    font-size: 10px;
    line-height: 1.25;
}

/* Benefits */

.el-benefits-section {
    padding-top: 30px;
}

.el-benefit-row {
    margin-bottom: 16px;
}

.el-benefit-card {
    padding: 18px 16px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #e8edf4;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    min-height: 118px;
}

.el-benefit-num .elementor-heading-title {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #eef6ff;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 11px;
}

.el-benefit-title .elementor-heading-title {
    font-size: 12px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 900;
}

.el-benefit-text,
.el-benefit-text p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

/* Manager */

.el-manager-card {
    position: relative;
    padding: 28px 24px 0;
    border-radius: 22px;
    background: #f7f8fb;
    overflow: hidden;
    min-height: 415px;
    border: 1px solid #e9edf3;
}

.el-manager-title .elementor-heading-title {
    font-size: 18px;
    line-height: 1.08;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 900;
}

.el-manager-text,
.el-manager-text p {
    color: #4b5563;
    font-size: 12px;
    line-height: 1.55;
}

.el-manager-reel {
    position: absolute;
    right: -15px;
    bottom: -6px;
    width: 205px;
    z-index: 1;
}

.el-manager-reel img {
    width: 205px;
}

/* Forms */

.el-native-form {
    display: grid;
    gap: 9px;
    position: relative;
    z-index: 3;
}

.el-native-form input,
.el-native-form textarea {
    width: 100%;
    height: 38px;
    border: 1px solid #d7dde7;
    border-radius: 999px;
    background: #fff;
    outline: none;
    padding: 0 15px;
    font-size: 12px;
    font-family: inherit;
}

.el-native-form textarea {
    height: 72px;
    border-radius: 10px;
    padding-top: 10px;
    resize: none;
}

.el-native-form button,
.el-native-form a {
    min-height: 40px;
    border-radius: 999px;
    border: 0;
    background: var(--red);
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
}

.el-native-form a {
    background: var(--blue-dark);
}

/* Delivery */

.el-delivery-section {
    padding-top: 50px;
}

.el-delivery-card {
    position: relative;
    min-height: 340px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 23, 49, .98), rgba(0, 63, 127, .95));
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.el-delivery-title .elementor-heading-title,
.el-payment-title .elementor-heading-title {
    color: #fff;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 900;
}

.el-delivery-text,
.el-delivery-text p {
    max-width: 390px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1.6;
}

.el-delivery-info-title .elementor-heading-title {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.el-delivery-info-text,
.el-delivery-info-text p {
    color: rgba(255,255,255,.76);
    font-size: 11px;
}

.el-truck-image {
    position: absolute;
    right: 14px;
    bottom: 32px;
    width: 290px;
}

.el-payment-card {
    min-height: 340px;
    padding: 32px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, #a34a63, #b96578);
    box-shadow: var(--shadow);
}

.el-payment-days .elementor-heading-title {
    color: #fff;
    font-size: 96px;
    line-height: .75;
    font-weight: 900;
}

.el-payment-days-label .elementor-heading-title {
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
}

.el-payment-text,
.el-payment-text p {
    color: rgba(255,255,255,.85);
    font-size: 12px;
    line-height: 1.55;
}

/* Partners */

.el-dealer-card {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

.el-dealer-title .elementor-heading-title {
    color: var(--blue);
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}

.el-dealer-text,
.el-dealer-text p {
    font-size: 11px;
    color: var(--muted);
}

.el-cert-image img {
    max-width: 74px;
}

.el-logo-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.el-logo-box .elementor-heading-title {
    height: 54px;
    border-radius: 12px;
    background: #f5f7fb;
    border: 1px solid #e8edf4;
    display: grid;
    place-items: center;
    color: #6b7280;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
}

.el-gallery-section {
    padding-top: 0;
}

.el-gallery-image img {
    height: 140px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Contacts */

.el-contact-top-section {
    padding-bottom: 20px;
}

.el-contact-title .elementor-heading-title {
    color: var(--blue);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.el-contact-item-title .elementor-heading-title {
    color: var(--blue);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
}

.el-contact-item-text,
.el-contact-item-text p,
.el-contact-item-text a {
    color: #4b5563;
    font-size: 12px;
    line-height: 1.45;
}

.el-map-section {
    padding-top: 0;
    padding-bottom: 0;
    background: #e5e7eb;
}

.el-map-form-card {
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 2;
    margin: 34px 0;
}

.el-map-form-title .elementor-heading-title {
    font-size: 16px;
    line-height: 1.25;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 900;
}

.el-map-form-text,
.el-map-form-text p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.el-map-column {
    min-height: 420px;
}

.el-map-widget,
.el-map-widget .elementor-widget-container {
    height: 100%;
    min-height: 420px;
}

.el-map-widget iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* Mobile */

@media (max-width: 1024px) {
    .el-cable-row .elementor-column {
        width: 33.333% !important;
    }

    .el-benefits-section > .elementor-container > .elementor-row > .elementor-column,
    .el-delivery-section > .elementor-container > .elementor-row > .elementor-column {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .el-section {
        padding: 38px 0;
    }

    .el-hero-section {
        padding-top: 70px;
    }

    .el-hero-features .elementor-column {
        width: 50% !important;
    }

    .el-cable-row .elementor-column {
        width: 50% !important;
    }

    .el-benefit-row .elementor-column,
    .el-contact-info-row .elementor-column,
    .el-logo-section .elementor-column,
    .el-gallery-section .elementor-column {
        width: 100% !important;
    }

    .el-truck-image {
        opacity: .35;
        right: -30px;
    }

    .el-map-section > .elementor-container > .elementor-row {
        display: flex;
        flex-direction: column;
    }

    .el-map-form-card,
    .el-map-column {
        width: 100% !important;
    }

    .el-map-column {
        min-height: 320px;
    }

    .el-map-widget iframe {
        height: 320px;
    }
}
/* =========================================================
   CSS OPTIKA — Elementor Native Blocks Styles
   ========================================================= */

.elementor-page .site-main,
.elementor-full-main {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.elementor-page .elementor {
    width: 100%;
}

.elementor-widget:not(:last-child) {
    margin-bottom: 0;
}

.elementor-widget-heading .elementor-heading-title,
.elementor-widget-text-editor p {
    margin-top: 0;
}

.elementor-widget-text-editor p:last-child {
    margin-bottom: 0;
}

/* Elementor container reset */

.el-section.e-con,
.el-section.elementor-element {
    width: 100%;
    max-width: none !important;
    padding-left: 16px;
    padding-right: 16px;
}

.el-section > .e-con-inner {
    width: min(var(--container), calc(100% - 0px));
    max-width: var(--container) !important;
    margin-left: auto;
    margin-right: auto;
}

/* если Elementor выводит без .e-con-inner */
.el-section:not(.e-con) {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   HERO
   ========================================================= */

.el-hero-section {
    position: relative;
    min-height: 505px;
    padding-top: 96px !important;
    padding-bottom: 0 !important;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(0, 23, 49, .74), rgba(0, 39, 78, .82)),
        url("assets/img/hero.jpg") center/cover no-repeat !important;
    overflow: hidden;
}

.el-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 25%, rgba(255,255,255,.16), transparent 34%);
    pointer-events: none;
    z-index: 0;
}

.el-hero-section > .e-con-inner,
.el-hero-section > .elementor-container {
    position: relative;
    z-index: 2;
}

.el-hero-title {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.el-hero-title .elementor-heading-title {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 45px);
    line-height: .98;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.04em;
    text-align: center;
}

.el-hero-text {
    max-width: 540px;
    margin: 16px auto 24px;
}

.el-hero-text,
.el-hero-text p {
    color: rgba(255,255,255,.87);
    font-size: 15px;
    line-height: 1.55;
    text-align: center;
}

.el-hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.el-hero-buttons .elementor-widget-button {
    width: auto;
}

.el-btn-red .elementor-button,
.el-btn-dark .elementor-button {
    min-height: 44px;
    padding: 0 23px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    border: 0;
    text-decoration: none;
    transition: .22s ease;
}

.el-btn-red .elementor-button {
    background: var(--red) !important;
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(242,59,79,.35);
}

.el-btn-dark .elementor-button {
    background: rgba(0, 29, 61, .82) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.22);
}

.el-btn-red .elementor-button:hover,
.el-btn-dark .elementor-button:hover {
    transform: translateY(-2px);
}

.el-hero-features {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 64px;
}

.el-hero-feature {
    min-height: 82px;
    padding: 18px 16px;
    border-radius: 14px 14px 0 0;
    background: rgba(0, 55, 108, .88);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
}

.el-feature-title .elementor-heading-title {
    margin: 0 0 7px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
}

.el-feature-text,
.el-feature-text p {
    color: rgba(255,255,255,.78);
    font-size: 11px;
    line-height: 1.35;
}

/* =========================================================
   COMMON TITLES
   ========================================================= */

.el-kicker,
.el-kicker p {
    margin: 0 0 4px;
    color: #9ca3af;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
}

.el-section-title-red .elementor-heading-title {
    margin: 0 0 28px;
    color: var(--red);
    font-size: 24px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.el-section-title-blue .elementor-heading-title {
    margin: 0 0 22px;
    color: var(--blue);
    font-size: 25px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

/* =========================================================
   ASSORTMENT
   ========================================================= */

.el-assortment-section {
    padding-top: 54px !important;
    padding-bottom: 34px !important;
    background: #fff;
}

.el-cable-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px 30px;
    width: 100%;
}

.el-cable-card {
    text-align: center;
    align-items: center;
}

.el-cable-image {
    width: 112px;
    height: 112px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #f0f3f8;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #e6ebf2;
    position: relative;
}

.el-cable-image::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 11px;
    width: 52px;
    height: 5px;
    background: var(--red);
    transform: rotate(-16deg);
    border-radius: 20px;
    z-index: 1;
}

.el-cable-image img {
    width: 96px !important;
    height: 96px !important;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.el-cable-title .elementor-heading-title {
    margin: 0 0 3px;
    color: #111827;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.el-cable-text,
.el-cable-text p {
    margin: 0;
    color: #6b7280;
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
}

/* =========================================================
   BENEFITS + MANAGER
   ========================================================= */

.el-benefits-section {
    padding-top: 24px !important;
    padding-bottom: 54px !important;
}

.el-benefits-layout {
    display: grid !important;
    grid-template-columns: 1.35fr .75fr;
    gap: 26px;
    align-items: start;
    width: 100%;
}

.el-benefit-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.el-benefit-card {
    padding: 18px 16px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #e8edf4;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    min-height: 118px;
}

.el-benefit-num .elementor-heading-title {
    width: 34px;
    height: 34px;
    margin: 0 0 11px;
    border-radius: 9px;
    background: #eef6ff;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.el-benefit-title .elementor-heading-title {
    margin: 0 0 7px;
    font-size: 12px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 900;
}

.el-benefit-text,
.el-benefit-text p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.el-manager-card {
    position: relative;
    padding: 28px 24px 0;
    border-radius: 22px;
    background: #f7f8fb;
    overflow: hidden;
    min-height: 415px;
    border: 1px solid #e9edf3;
}

.el-manager-title .elementor-heading-title {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.08;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 900;
}

.el-manager-text,
.el-manager-text p {
    margin: 0 0 18px;
    color: #4b5563;
    font-size: 12px;
    line-height: 1.55;
}

.el-manager-reel {
    position: absolute;
    right: -15px;
    bottom: -6px;
    width: 205px;
    z-index: 1;
    pointer-events: none;
}

.el-manager-reel img {
    width: 205px !important;
}

/* =========================================================
   FORMS
   ========================================================= */

.el-native-form {
    display: grid;
    gap: 9px;
    position: relative;
    z-index: 3;
}

.el-native-form input,
.el-native-form textarea {
    width: 100%;
    height: 38px;
    border: 1px solid #d7dde7;
    border-radius: 999px;
    background: #fff;
    outline: none;
    padding: 0 15px;
    font-size: 12px;
    font-family: inherit;
}

.el-native-form textarea {
    height: 72px;
    border-radius: 10px;
    padding-top: 10px;
    resize: none;
}

.el-native-form button,
.el-native-form a {
    min-height: 40px;
    border-radius: 999px;
    border: 0;
    background: var(--red);
    color: #fff !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
}

.el-native-form a {
    background: var(--blue-dark);
}

/* =========================================================
   DELIVERY / PAYMENT
   ========================================================= */

.el-delivery-section {
    padding-top: 20px !important;
    padding-bottom: 54px !important;
}

.el-delivery-layout {
    display: grid !important;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    width: 100%;
}

.el-delivery-card {
    position: relative;
    min-height: 340px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 23, 49, .98), rgba(0, 63, 127, .95));
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.el-delivery-title .elementor-heading-title,
.el-payment-title .elementor-heading-title {
    margin: 0 0 16px;
    color: #fff;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 900;
}

.el-delivery-text,
.el-delivery-text p {
    max-width: 390px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1.6;
}

.el-delivery-info-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    margin-bottom: 22px;
}

.el-delivery-info-title .elementor-heading-title {
    margin: 0 0 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.el-delivery-info-text,
.el-delivery-info-text p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 11px;
}

.el-truck-image {
    position: absolute;
    right: 14px;
    bottom: 32px;
    width: 290px;
    pointer-events: none;
}

.el-truck-image img {
    width: 290px !important;
}

.el-payment-card {
    min-height: 340px;
    padding: 32px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, #a34a63, #b96578);
    box-shadow: var(--shadow);
}

.el-payment-days .elementor-heading-title {
    margin: 14px 0 0;
    color: #fff;
    font-size: 96px;
    line-height: .75;
    font-weight: 900;
}

.el-payment-days-label .elementor-heading-title {
    margin: 0 0 16px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
}

.el-payment-text,
.el-payment-text p {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: 12px;
    line-height: 1.55;
}

/* =========================================================
   PARTNERS / TRUST
   ========================================================= */

.el-partners-section {
    padding-top: 34px !important;
    padding-bottom: 38px !important;
}

.el-partners-layout {
    display: grid !important;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: start;
}

.el-trust-text,
.el-trust-text p {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.55;
}

.el-dealer-card {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

.el-dealer-title .elementor-heading-title {
    margin: 0 0 5px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}

.el-dealer-text,
.el-dealer-text p {
    margin: 0 0 10px;
    font-size: 11px;
    color: var(--muted);
}

.el-cert-image img {
    max-width: 74px !important;
}

.el-logo-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 26px 0;
}

.el-logo-box .elementor-heading-title {
    height: 54px;
    border-radius: 12px;
    background: #f5f7fb;
    border: 1px solid #e8edf4;
    display: grid;
    place-items: center;
    color: #6b7280;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
}

.el-gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.el-gallery-image img {
    height: 140px !important;
    width: 100% !important;
    object-fit: cover;
    border-radius: 15px;
}

/* =========================================================
   CONTACTS
   ========================================================= */

.el-contact-top-section {
    padding-top: 38px !important;
    padding-bottom: 20px !important;
}

.el-contact-title .elementor-heading-title {
    margin: 0 0 22px;
    color: var(--blue);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.el-contact-info-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.el-contact-item-title .elementor-heading-title {
    margin: 0 0 5px;
    color: var(--blue);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
}

.el-contact-item-text,
.el-contact-item-text p,
.el-contact-item-text a {
    color: #4b5563;
    font-size: 12px;
    line-height: 1.45;
}

.el-map-section {
    max-width: none !important;
    padding: 0 !important;
    background: #e5e7eb;
    display: grid !important;
    grid-template-columns: minmax(16px, 1fr) minmax(280px, 360px) minmax(320px, 760px) minmax(16px, 1fr);
    gap: 0;
    align-items: stretch;
}

.el-map-section > .e-con-inner {
    display: contents !important;
    max-width: none !important;
}

.el-map-form-card {
    grid-column: 2;
    align-self: start;
    margin-top: 34px;
    margin-bottom: 34px;
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 2;
}

.el-map-form-title .elementor-heading-title {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.25;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 900;
}

.el-map-form-text,
.el-map-form-text p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.el-map-column {
    grid-column: 3 / 5;
    min-height: 420px;
}

.el-map-widget,
.el-map-widget .elementor-widget-container {
    height: 100%;
    min-height: 420px;
}

.el-map-widget iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
    .el-cable-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .el-benefits-layout,
    .el-delivery-layout,
    .el-partners-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .el-hero-section {
        padding-top: 70px !important;
        min-height: auto;
    }

    .el-hero-buttons {
        flex-direction: column !important;
    }

    .el-hero-buttons .elementor-widget-button,
    .el-hero-buttons .elementor-button {
        width: 100%;
    }

    .el-hero-features {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 46px;
    }

    .el-cable-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 14px;
    }

    .el-benefit-grid,
    .el-contact-info-grid,
    .el-logo-grid,
    .el-gallery-grid {
        grid-template-columns: 1fr;
    }

    .el-delivery-info-row {
        flex-direction: column !important;
        gap: 14px;
    }

    .el-truck-image {
        opacity: .35;
        right: -30px;
    }

    .el-map-section {
        display: flex !important;
        flex-direction: column;
        padding: 16px !important;
    }

    .el-map-form-card {
        margin: 0 0 16px;
        width: 100%;
    }

    .el-map-column {
        width: 100%;
        min-height: 320px;
    }

    .el-map-widget iframe {
        height: 320px;
    }
}

/* =========================================================
   FIX FOR ELEMENTOR CONTAINERS — CSS OPTIKA
   ========================================================= */

.elementor-page .site-main {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.elementor-page .elementor-widget:not(:last-child) {
    margin-bottom: 0;
}

.elementor-page p {
    margin-top: 0;
}

/* HERO */

.e-con.el-hero-section,
.el-hero-section {
    width: 100% !important;
    max-width: none !important;
    min-height: 505px;
    padding: 96px 16px 0 !important;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(0, 23, 49, .74), rgba(0, 39, 78, .82)),
        url("assets/img/hero.jpg") center/cover no-repeat !important;
    position: relative;
    overflow: hidden;
}

.e-con.el-hero-section::before,
.el-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.12), transparent 28%);
    z-index: 0;
    pointer-events: none;
}

.e-con.el-hero-section > .e-con-inner,
.el-hero-section > .e-con-inner {
    max-width: 1120px !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 2;
}

.el-hero-title .elementor-heading-title {
    max-width: 720px;
    margin: 0 auto 18px;
    color: #fff !important;
    font-size: clamp(28px, 4vw, 45px);
    line-height: .98;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.04em;
    text-align: center;
}

.el-hero-text {
    max-width: 560px;
    margin: 0 auto 24px;
}

.el-hero-text,
.el-hero-text p {
    color: rgba(255,255,255,.87) !important;
    font-size: 15px;
    line-height: 1.55;
    text-align: center;
}

.el-hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 0;
}

.el-hero-buttons > .e-con-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 14px !important;
}

.el-btn-red .elementor-button,
.el-btn-dark .elementor-button {
    min-height: 44px;
    padding: 0 23px !important;
    border-radius: 999px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    border: 0;
    transition: .22s ease;
}

.el-btn-red .elementor-button {
    background: var(--red) !important;
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(242,59,79,.35);
}

.el-btn-dark .elementor-button {
    background: rgba(0, 29, 61, .82) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.22);
}

.el-hero-features {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    margin-top: 64px !important;
    width: 100%;
}

.el-hero-features > .e-con-inner {
    display: contents !important;
}

.el-hero-feature {
    min-height: 82px;
    padding: 18px 16px !important;
    border-radius: 14px 14px 0 0;
    background: rgba(0, 55, 108, .88);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
}

.el-feature-title .elementor-heading-title {
    margin: 0 0 7px;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
}

.el-feature-text,
.el-feature-text p {
    color: rgba(255,255,255,.78) !important;
    font-size: 11px;
    line-height: 1.35;
}

/* COMMON SECTIONS */

.e-con.el-section,
.el-section {
    width: 100% !important;
    max-width: none !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.e-con.el-section > .e-con-inner,
.el-section > .e-con-inner {
    max-width: 1120px !important;
    margin: 0 auto !important;
}

.el-kicker,
.el-kicker p {
    color: #9ca3af !important;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    margin: 0 0 4px;
}

.el-section-title-red .elementor-heading-title {
    margin: 0 0 28px;
    color: var(--red) !important;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.el-section-title-blue .elementor-heading-title {
    margin: 0 0 22px;
    color: var(--blue) !important;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

/* ASSORTMENT */

.el-assortment-section {
    padding-top: 54px !important;
    padding-bottom: 34px !important;
    background: #fff;
}

.el-cable-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 26px 30px !important;
    width: 100%;
}

.el-cable-grid > .e-con-inner {
    display: contents !important;
}

.el-cable-card {
    text-align: center;
    align-items: center;
}

.el-cable-image {
    width: 112px;
    height: 112px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #f0f3f8;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #e6ebf2;
    position: relative;
}

.el-cable-image::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 11px;
    width: 52px;
    height: 5px;
    background: var(--red);
    transform: rotate(-16deg);
    border-radius: 20px;
    z-index: 1;
}

.el-cable-image img {
    width: 96px !important;
    height: 96px !important;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.el-cable-title .elementor-heading-title {
    margin: 0 0 3px;
    color: #111827 !important;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.el-cable-text,
.el-cable-text p {
    margin: 0;
    color: #6b7280 !important;
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
}

/* BENEFITS */

.el-benefits-section {
    padding-top: 24px !important;
    padding-bottom: 54px !important;
}

.el-benefits-layout {
    display: grid !important;
    grid-template-columns: 1.35fr .75fr !important;
    gap: 26px !important;
    align-items: start !important;
}

.el-benefits-layout > .e-con-inner {
    display: contents !important;
}

.el-benefit-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
}

.el-benefit-grid > .e-con-inner {
    display: contents !important;
}

.el-benefit-card {
    padding: 18px 16px !important;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #e8edf4;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    min-height: 118px;
}

.el-benefit-num .elementor-heading-title {
    width: 34px;
    height: 34px;
    margin: 0 0 11px;
    border-radius: 9px;
    background: #eef6ff;
    display: grid;
    place-items: center;
    color: var(--blue) !important;
    font-size: 12px;
    font-weight: 900;
}

.el-benefit-title .elementor-heading-title {
    margin: 0 0 7px;
    font-size: 12px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--blue) !important;
    font-weight: 900;
}

.el-benefit-text,
.el-benefit-text p {
    margin: 0;
    color: var(--muted) !important;
    font-size: 11px;
    line-height: 1.45;
}

/* MANAGER */

.el-manager-card {
    position: relative;
    padding: 28px 24px 0 !important;
    border-radius: 22px;
    background: #f7f8fb;
    overflow: hidden;
    min-height: 415px;
    border: 1px solid #e9edf3;
}

.el-manager-title .elementor-heading-title {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.08;
    text-transform: uppercase;
    color: var(--blue) !important;
    font-weight: 900;
}

.el-manager-text,
.el-manager-text p {
    margin: 0 0 18px;
    color: #4b5563 !important;
    font-size: 12px;
    line-height: 1.55;
}

.el-manager-reel {
    position: absolute;
    right: -15px;
    bottom: -6px;
    width: 205px;
    z-index: 1;
    pointer-events: none;
}

.el-manager-reel img {
    width: 205px !important;
}

/* FORMS */

.el-native-form {
    display: grid;
    gap: 9px;
    position: relative;
    z-index: 3;
}

.el-native-form input,
.el-native-form textarea {
    width: 100%;
    height: 38px;
    border: 1px solid #d7dde7;
    border-radius: 999px;
    background: #fff;
    outline: none;
    padding: 0 15px;
    font-size: 12px;
    font-family: inherit;
}

.el-native-form textarea {
    height: 72px;
    border-radius: 10px;
    padding-top: 10px;
    resize: none;
}

.el-native-form button,
.el-native-form a {
    min-height: 40px;
    border-radius: 999px;
    border: 0;
    background: var(--red);
    color: #fff !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
}

.el-native-form a {
    background: var(--blue-dark);
}

/* DELIVERY */

.el-delivery-section {
    padding-top: 20px !important;
    padding-bottom: 54px !important;
}

.el-delivery-layout {
    display: grid !important;
    grid-template-columns: 1.15fr .85fr !important;
    gap: 24px !important;
}

.el-delivery-layout > .e-con-inner {
    display: contents !important;
}

.el-delivery-card {
    position: relative;
    min-height: 340px;
    padding: 32px !important;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 23, 49, .98), rgba(0, 63, 127, .95));
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.el-payment-card {
    min-height: 340px;
    padding: 32px !important;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, #a34a63, #b96578);
    box-shadow: var(--shadow);
}

.el-delivery-title .elementor-heading-title,
.el-payment-title .elementor-heading-title {
    margin: 0 0 16px;
    color: #fff !important;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 900;
}

.el-delivery-text,
.el-delivery-text p {
    max-width: 390px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.78) !important;
    font-size: 12px;
    line-height: 1.6;
}

.el-delivery-info-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    margin-bottom: 22px;
}

.el-delivery-info-row > .e-con-inner {
    display: contents !important;
}

.el-delivery-info-title .elementor-heading-title {
    margin: 0 0 5px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 900;
}

.el-delivery-info-text,
.el-delivery-info-text p {
    margin: 0;
    color: rgba(255,255,255,.76) !important;
    font-size: 11px;
}

.el-truck-image {
    position: absolute;
    right: 14px;
    bottom: 32px;
    width: 290px;
    pointer-events: none;
}

.el-truck-image img {
    width: 290px !important;
}

.el-payment-days .elementor-heading-title {
    margin: 14px 0 0;
    color: #fff !important;
    font-size: 96px;
    line-height: .75;
    font-weight: 900;
}

.el-payment-days-label .elementor-heading-title {
    margin: 0 0 16px;
    color: #fff !important;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
}

.el-payment-text,
.el-payment-text p {
    margin: 0;
    color: rgba(255,255,255,.85) !important;
    font-size: 12px;
    line-height: 1.55;
}

/* PARTNERS */

.el-partners-section {
    padding-top: 34px !important;
    padding-bottom: 38px !important;
}

.el-partners-layout {
    display: grid !important;
    grid-template-columns: 1.2fr .8fr !important;
    gap: 24px !important;
    align-items: start;
}

.el-partners-layout > .e-con-inner {
    display: contents !important;
}

.el-trust-text,
.el-trust-text p {
    color: #4b5563 !important;
    font-size: 13px;
    line-height: 1.55;
}

.el-dealer-card {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    padding: 18px !important;
    box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

.el-dealer-title .elementor-heading-title {
    margin: 0 0 5px;
    color: var(--blue) !important;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}

.el-dealer-text,
.el-dealer-text p {
    margin: 0 0 10px;
    font-size: 11px;
    color: var(--muted) !important;
}

.el-cert-image img {
    max-width: 74px !important;
}

.el-logo-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
    margin: 26px 0;
}

.el-logo-grid > .e-con-inner {
    display: contents !important;
}

.el-logo-box .elementor-heading-title {
    height: 54px;
    border-radius: 12px;
    background: #f5f7fb;
    border: 1px solid #e8edf4;
    display: grid;
    place-items: center;
    color: #6b7280 !important;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
}

.el-gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
}

.el-gallery-grid > .e-con-inner {
    display: contents !important;
}

.el-gallery-image img {
    height: 140px !important;
    width: 100% !important;
    object-fit: cover;
    border-radius: 15px;
}

/* CONTACTS */

.el-contact-top-section {
    padding-top: 38px !important;
    padding-bottom: 20px !important;
}

.el-contact-title .elementor-heading-title {
    margin: 0 0 22px;
    color: var(--blue) !important;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.el-contact-info-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
}

.el-contact-info-grid > .e-con-inner {
    display: contents !important;
}

.el-contact-item-title .elementor-heading-title {
    margin: 0 0 5px;
    color: var(--blue) !important;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
}

.el-contact-item-text,
.el-contact-item-text p,
.el-contact-item-text a {
    color: #4b5563 !important;
    font-size: 12px;
    line-height: 1.45;
}

.el-map-section {
    max-width: none !important;
    padding: 0 !important;
    background: #e5e7eb;
    display: grid !important;
    grid-template-columns: minmax(16px, 1fr) minmax(280px, 360px) minmax(320px, 760px) minmax(16px, 1fr);
    gap: 0;
    align-items: stretch;
}

.el-map-section > .e-con-inner {
    display: contents !important;
    max-width: none !important;
}

.el-map-form-card {
    grid-column: 2;
    align-self: start;
    margin-top: 34px;
    margin-bottom: 34px;
    padding: 24px !important;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 2;
}

.el-map-form-title .elementor-heading-title {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.25;
    color: var(--blue) !important;
    text-transform: uppercase;
    font-weight: 900;
}

.el-map-form-text,
.el-map-form-text p {
    margin: 0 0 14px;
    color: var(--muted) !important;
    font-size: 12px;
    line-height: 1.45;
}

.el-map-column {
    grid-column: 3 / 5;
    min-height: 420px;
}

.el-map-widget,
.el-map-widget .elementor-widget-container {
    height: 100%;
    min-height: 420px;
}

.el-map-widget iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .el-cable-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .el-benefits-layout,
    .el-delivery-layout,
    .el-partners-layout {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 760px) {
    .el-hero-section {
        padding-top: 70px !important;
        min-height: auto;
    }

    .el-hero-buttons {
        flex-direction: column !important;
    }

    .el-hero-buttons .elementor-button {
        width: 100%;
    }

    .el-hero-features {
        grid-template-columns: repeat(2, 1fr) !important;
        margin-top: 46px !important;
    }

    .el-cable-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px 14px !important;
    }

    .el-benefit-grid,
    .el-contact-info-grid,
    .el-logo-grid,
    .el-gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .el-delivery-info-row {
        flex-direction: column !important;
        gap: 14px !important;
    }

    .el-truck-image {
        opacity: .35;
        right: -30px;
    }

    .el-map-section {
        display: flex !important;
        flex-direction: column;
        padding: 16px !important;
    }

    .el-map-form-card {
        margin: 0 0 16px;
        width: 100%;
    }

    .el-map-column {
        width: 100%;
        min-height: 320px;
    }

    .el-map-widget iframe {
        height: 320px;
    }
}

