/* ============================================
   SPAN ELITE - Hero Section Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --color-bg-dark: #0a0e17;
    --color-bg-card: rgba(12, 18, 32, 0.75);
    --color-primary: #0066ff;
    --color-primary-hover: #0052cc;
    --color-teal: #00c9a7;
    --color-white: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.6);
    --color-feature-bg: #e8eaed;
    --color-feature-text: #4a4f5c;
    --color-feature-divider: #c8ccd4;
    --color-section-bg: #f0f2f5;
    --color-heading-dark: #1a2332;
    --color-text-body: #5a6270;
    --color-mechanical: #0066ff;
    --color-electrical: #00a86b;
    --color-instrumentation: #1e4d8c;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-width: 1320px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.is-loading {
    overflow: hidden;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background: #0a0e17;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.preloader__logo {
    width: min(220px, 58vw);
    height: auto;
    animation: preloaderPulse 1.4s ease infinite;
}

.preloader__spinner {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.12);
    border-top-color: #2aa8e0;
    animation: preloaderSpin 0.75s linear infinite;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.82; transform: scale(0.97); }
}

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

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transform: translateY(0);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease, border-color 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(10, 14, 23, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.is-hidden {
    transform: translateY(-100%);
}

.header__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 180px 1fr 220px;
    align-items: center;
}

.header__logo img {
    height: 52px;
    width: auto;
    transition: height 0.3s ease;
}

.header.scrolled .header__logo img {
    height: 42px;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.header__nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
    transition: color var(--transition);
}

.header__nav-link:hover {
    color: var(--color-primary);
}

.header__nav-link--active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 4px);
    height: 2px;
    background: var(--color-primary);
}

.header__nav-link--dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__nav-link--dropdown svg {
    width: 9px;
    height: 9px;
    transition: transform var(--transition);
}

.header__dropdown {
    position: relative;
}

.header__dropdown:hover .header__nav-link--dropdown svg,
.header__dropdown.open .header__nav-link--dropdown svg {
    transform: rotate(180deg);
}

.header__dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: rgba(12, 18, 32, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (min-width: 993px) {
    .header__dropdown:hover .header__dropdown-menu,
    .header__dropdown.open .header__dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
}

.header__dropdown.open .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.header__dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: var(--color-white);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.header__dropdown-item:hover {
    background: rgba(0, 102, 255, 0.12);
    color: var(--color-primary);
}

.header__phone {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white);
    white-space: nowrap;
    justify-self: end;
    transition: border-color var(--transition);
}

.header__phone:hover {
    border-color: var(--color-primary);
}

.header__phone svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
    background: #2aa8e0;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background var(--transition);
}

.header__cta svg {
    width: 14px;
    height: 14px;
}

.header__cta:hover {
    background: #1e93c9;
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    justify-self: end;
    z-index: 1001;
}

.header__nav-phone {
    display: none;
}

.header__menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero__inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 130px 40px 24px;
    width: 100%;
}

.hero__content {
    max-width: 620px;
}

.hero__label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.hero__label-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-teal);
    white-space: nowrap;
}

.hero__label-line {
    width: 50px;
    height: 2px;
    background: var(--color-teal);
    flex-shrink: 0;
}

.hero__title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

/* Stats Row — horizontal, single line */
.hero__stats {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: nowrap;
}

.hero__stat {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hero__stat-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.hero__stat-icon svg {
    width: 20px;
    height: 20px;
}

.hero__stat-icon--shield {
    background: rgba(0, 102, 255, 0.15);
    color: var(--color-primary);
}

.hero__stat-icon--location {
    background: rgba(0, 201, 167, 0.15);
    color: var(--color-teal);
}

.hero__stat-icon--group {
    background: rgba(0, 102, 255, 0.15);
    color: var(--color-primary);
}

.hero__stat-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hero__stat-text strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--color-white);
    white-space: nowrap;
}

.hero__stat-text span {
    font-size: 11px;
    color: var(--color-text-muted);
    white-space: nowrap;
}

/* CTA Buttons */
.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.btn:hover svg {
    transform: translateX(3px);
}

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

.btn--primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn--outline:hover {
    background: rgba(0, 102, 255, 0.08);
}

/* ============================================
   PRODUCT SHOWCASE GRID
   ============================================ */

.product-showcase {
    width: 100%;
    margin-top: 40px;
}

.product-showcase__grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.product-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 14px 12px 12px;
    transition: transform var(--transition), border-color var(--transition);
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 102, 255, 0.35);
}

.product-card__image {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__placeholder {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__placeholder svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.18);
}

.product-card__title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 4px;
}

.product-card__title svg {
    width: 9px;
    height: 9px;
    color: var(--color-teal);
    flex-shrink: 0;
}

.product-card__desc {
    font-size: 9px;
    line-height: 1.45;
    color: var(--color-text-muted);
}

/* ============================================
   FEATURE BAR
   ============================================ */

.feature-bar {
    position: relative;
    z-index: 1;
    background: var(--color-feature-bg);
    width: 100%;
    flex-shrink: 0;
}

.feature-bar__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
    position: relative;
}

.feature-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: var(--color-feature-divider);
}

.feature-bar__icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-feature-text);
}

.feature-bar__text {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-feature-text);
    white-space: nowrap;
}

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

@media (max-width: 1200px) {
    .header__container {
        grid-template-columns: 160px 1fr 200px;
    }

    .header__nav {
        gap: 20px;
    }

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

    .hero__stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .header__container {
        grid-template-columns: 1fr auto;
    }

    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 23, 0.98);
        padding: 24px 40px;
        gap: 18px;
    }

    .header__nav.active {
        display: flex;
    }

    .header__dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        min-width: 100%;
        margin-top: 8px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
    }

    .header__dropdown.open .header__dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .header__phone,
    .header__cta {
        display: none;
    }

    .header__menu-toggle {
        display: flex;
    }

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

    .feature-bar__container {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .feature-bar__item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__container,
    .hero__inner,
    .feature-bar__container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero__inner {
        padding-top: 110px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .product-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero__cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */

.solutions {
    background: #f4f6f8;
    padding: 72px 0 80px;
}

.solutions__container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-header__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.section-header__line {
    width: 36px;
    height: 2px;
    background: var(--color-teal);
}

.section-header__text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--color-teal);
    white-space: nowrap;
}

.section-header__title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: #1a2332;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-header__desc {
    font-size: 15px;
    line-height: 1.65;
    color: #6b7280;
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.solution-card {
    display: grid;
    grid-template-columns: 42% 58%;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(16, 24, 40, 0.08);
    min-height: 280px;
}

.solution-card__image {
    overflow: hidden;
    background: #0b1220;
}

.solution-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solution-card__content {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
}

.solution-card__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.solution-card__icon svg {
    width: 16px;
    height: 16px;
}

.solution-card--mechanical .solution-card__icon {
    background: #0066ff;
    color: #fff;
}

.solution-card--electrical .solution-card__icon {
    background: #00a86b;
    color: #fff;
}

.solution-card--instrumentation .solution-card__icon {
    background: #1e4d8c;
    color: #fff;
}

.solution-card__title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.solution-card--mechanical .solution-card__title { color: var(--color-mechanical); }
.solution-card--electrical .solution-card__title { color: var(--color-electrical); }
.solution-card--instrumentation .solution-card__title { color: var(--color-instrumentation); }

.solution-card__desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 12px;
}

.solution-card__list {
    list-style: none;
    margin-bottom: 16px;
}

.solution-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 11.5px;
    line-height: 1.45;
    color: #4b5563;
    margin-bottom: 6px;
}

.solution-card__list li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.solution-card--mechanical .solution-card__list li svg { color: var(--color-mechanical); }
.solution-card--electrical .solution-card__list li svg { color: var(--color-electrical); }
.solution-card--instrumentation .solution-card__list li svg { color: var(--color-instrumentation); }

.solution-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1.5px solid;
    background: transparent;
    transition: all var(--transition);
    margin-top: auto;
}

.solution-card__btn svg {
    width: 12px;
    height: 12px;
}

.solution-card--mechanical .solution-card__btn {
    color: var(--color-mechanical);
    border-color: var(--color-mechanical);
}

.solution-card--mechanical .solution-card__btn:hover {
    background: var(--color-mechanical);
    color: var(--color-white);
}

.solution-card--electrical .solution-card__btn {
    color: var(--color-electrical);
    border-color: var(--color-electrical);
}

.solution-card--electrical .solution-card__btn:hover {
    background: var(--color-electrical);
    color: var(--color-white);
}

.solution-card--instrumentation .solution-card__btn {
    color: var(--color-instrumentation);
    border-color: var(--color-instrumentation);
}

.solution-card--instrumentation .solution-card__btn:hover {
    background: var(--color-instrumentation);
    color: var(--color-white);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */

.why-choose {
    position: relative;
    overflow: hidden;
    padding: 72px 0 70px;
    background: #070c16;
}

.why-choose__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 64%;
    z-index: 0;
}

.why-choose__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
}

.why-choose__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #070c16 0%,
        #070c16 18%,
        rgba(7, 12, 22, 0.92) 38%,
        rgba(7, 12, 22, 0.45) 62%,
        rgba(7, 12, 22, 0.12) 82%,
        rgba(7, 12, 22, 0) 100%
    );
}

.why-choose__container {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: center;
}

.why-choose__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 14px;
}

.why-choose__title {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.why-choose__desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 640px;
    margin-bottom: 28px;
}

.why-choose__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.why-stat {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 16px 14px 14px;
    background: rgba(8, 14, 28, 0.35);
}

.why-stat__icon {
    color: var(--color-teal);
    margin-bottom: 8px;
}

.why-stat__icon svg {
    width: 18px;
    height: 18px;
}

.why-stat__value {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2px;
}

.why-stat__value--blue { color: #3b82f6; }
.why-stat__value--teal { color: var(--color-teal); }

.why-stat__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #fff;
}

.why-stat__sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
}

.why-choose__features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.why-feature svg {
    width: 16px;
    height: 16px;
    color: var(--color-teal);
    flex-shrink: 0;
}

.why-choose__card {
    background: rgba(10, 18, 36, 0.82);
    border: 1px solid rgba(0, 201, 167, 0.28);
    border-radius: 10px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
    width: 100%;
}

.why-choose__card-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #fff;
    background: var(--color-teal);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.why-choose__card-icon svg {
    width: 16px;
    height: 16px;
}

.why-choose__card-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.why-choose__card-title span {
    color: var(--color-teal);
}

.why-choose__card-line {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--color-teal);
    margin-bottom: 16px;
}

.why-choose__card-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
}

.why-choose__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: var(--color-teal);
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: background var(--transition);
}

.why-choose__card-btn svg {
    width: 14px;
    height: 14px;
}

.why-choose__card-btn:hover {
    background: #00b396;
}

/* ============================================
   TRUSTED BY BAR
   ============================================ */

.trusted-by {
    background: #eceef1;
    padding: 28px 32px 32px;
    text-align: center;
}

.trusted-by__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b919c;
    margin-bottom: 18px;
}

.trusted-by__row {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px 40px;
    flex-wrap: wrap;
}

.trusted-by__logo {
    height: 42px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.8;
}

.trusted-by__more {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #9aa1ab;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .solutions__grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        grid-template-columns: 240px 1fr;
        min-height: 240px;
    }

    .why-choose__container {
        grid-template-columns: 1fr;
    }

    .why-choose__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions,
    .why-choose {
        padding: 56px 0 60px;
    }

    .solutions__container,
    .why-choose__container {
        padding: 0 20px;
    }

    .solution-card {
        grid-template-columns: 1fr;
    }

    .solution-card__image {
        height: 200px;
    }

    .why-choose__bg {
        width: 100%;
    }

    .why-choose__overlay {
        background: linear-gradient(
            180deg,
            #070c16 0%,
            rgba(7, 12, 22, 0.92) 35%,
            rgba(7, 12, 22, 0.55) 100%
        );
    }

    .why-choose__features {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   INDUSTRIES WE SERVE
   ============================================ */

.industries {
    background: #fff;
    padding-top: 72px;
}

.industries__container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 32px 56px;
}

.industries__label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #2aa8e0;
    margin-bottom: 14px;
}

.industries__title {
    text-align: center;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: #1a2332;
    line-height: 1.2;
    margin-bottom: 12px;
}

.industries__title span {
    color: #2aa8e0;
}

.industries__underline {
    display: block;
    width: 56px;
    height: 3px;
    background: #2aa8e0;
    margin: 0 auto 42px;
    border-radius: 2px;
}

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

.industry-card {
    background: #fff;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    text-align: center;
    padding-bottom: 22px;
}

.industry-card__image {
    position: relative;
    height: 150px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.industry-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 50, 90, 0.18);
}

.industry-card__icon {
    width: 48px;
    height: 48px;
    margin: -24px auto 12px;
    background: #2aa8e0;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: #fff;
    box-shadow: 0 4px 12px rgba(42, 168, 224, 0.35);
}

.industry-card__icon svg {
    width: 22px;
    height: 22px;
}

.industry-card__title {
    font-size: 15px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 8px;
    padding: 0 12px;
}

.industry-card__desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: #6b7280;
    padding: 0 14px;
}

.industries-stats {
    background: #001a33;
    padding: 28px 32px;
}

.industries-stats__inner {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.industries-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    position: relative;
}

.industries-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
}

.industries-stat__icon {
    color: #2aa8e0;
    flex-shrink: 0;
}

.industries-stat__icon svg {
    width: 28px;
    height: 28px;
}

.industries-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.industries-stat span {
    display: block;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1200px) {
    .industries__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industries-stats__inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .industries-stat:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .industries__container {
        padding: 0 20px 40px;
    }

    .industries__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-stats__inner {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .industries__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .industry-card {
        padding-bottom: 14px;
    }

    .industry-card__image {
        height: 110px;
    }

    .industry-card__icon {
        width: 36px;
        height: 36px;
        margin: -18px auto 8px;
    }

    .industry-card__icon svg {
        width: 16px;
        height: 16px;
    }

    .industry-card__title {
        font-size: 13px;
        padding: 0 8px;
    }

    .industry-card__desc {
        font-size: 12px;
        padding: 0 8px;
        line-height: 1.4;
    }

    .industries-stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 10px;
    }

    .industries-stat {
        padding: 0 4px;
    }

    .industries-stat strong {
        font-size: 18px;
    }
}

/* ============================================
   OUR SERVICES
   ============================================ */

.services {
    background: #fff;
    overflow: hidden;
}

.services__top {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: stretch;
    min-height: 280px;
}

.services__intro {
    padding: 64px 32px 32px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #2aa8e0;
    margin-bottom: 12px;
}

.services__title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: #1a2332;
    line-height: 1.2;
    margin-bottom: 14px;
}

.services__title span {
    color: #2aa8e0;
}

.services__desc {
    font-size: 15px;
    line-height: 1.65;
    color: #6b7280;
    max-width: 460px;
}

.services__hero {
    position: relative;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.services__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    min-height: 280px;
}

.services__container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 8px 32px 72px;
}

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

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    padding: 22px 18px 18px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
}

.service-card__icon {
    color: #2aa8e0;
    margin-bottom: 14px;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 12.5px;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 14px;
}

.service-card__arrow {
    margin-top: auto;
    color: #2aa8e0;
    font-size: 16px;
    font-weight: 600;
}

/* ============================================
   WHY COMMITMENT (3rd section)
   ============================================ */

.why-commitment {
    position: relative;
    overflow: hidden;
    background: #00101f;
    padding: 72px 0;
}

.why-commitment__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
    z-index: 0;
}

.why-commitment__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.why-commitment__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #00101f 0%,
        #00101f 12%,
        rgba(0, 16, 31, 0.88) 36%,
        rgba(0, 16, 31, 0.4) 62%,
        rgba(0, 16, 31, 0.08) 100%
    );
}

.why-commitment__container {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 32px;
}

.why-commitment__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #2aa8e0;
    margin-bottom: 12px;
}

.why-commitment__title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 640px;
}

.why-commitment__title span {
    color: #2aa8e0;
}

.why-commitment__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
    max-width: 1100px;
}

.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2aa8e0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item__icon svg {
    width: 20px;
    height: 20px;
}

.why-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-commitment__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services__top {
        grid-template-columns: 1fr;
    }

    .services__intro {
        padding: 48px 20px 24px;
    }

    .services__hero {
        clip-path: none;
        height: 220px;
    }

    .services__container,
    .why-commitment__container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .services__grid,
    .why-commitment__grid {
        grid-template-columns: 1fr;
    }

    .why-commitment__bg {
        width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    position: relative;
    background: #050b18;
    color: #fff;
    overflow: hidden;
}

.site-footer__bg {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
}

.site-footer__bg img {
    width: 100%;
    height: 55%;
    object-fit: cover;
    object-position: center top;
    mask-image: linear-gradient(to bottom, #000 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 100%);
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 64px 32px 32px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 0.85fr 1fr 0.8fr 1.15fr;
    gap: 32px 24px;
    margin-bottom: 36px;
}

.footer-brand__logo img {
    height: 56px;
    width: auto;
    margin-bottom: 10px;
}

.footer-brand__tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #2aa8e0;
    margin-bottom: 12px;
}

.footer-brand__text {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
}

.footer-brand__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.footer-value {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #2aa8e0;
}

.footer-value svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-value span {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
}

.footer-value strong {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.footer-col h4,
.footer-contact h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    padding-top: 10px;
}

.footer-col h4::before,
.footer-contact h4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #2aa8e0;
}

.footer-col a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    padding: 6px 0;
    transition: color var(--transition);
}

.footer-col a span {
    color: #2aa8e0;
    font-size: 14px;
}

.footer-col a:hover {
    color: #2aa8e0;
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact__item:last-child {
    border-bottom: none;
}

.footer-contact__icon {
    width: 28px;
    height: 28px;
    border: 1px solid #2aa8e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2aa8e0;
    flex-shrink: 0;
}

.footer-contact__icon svg {
    width: 13px;
    height: 13px;
}

.footer-bar {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 28px;
    background: rgba(8, 14, 28, 0.65);
}

.footer-newsletter {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 14px;
    align-items: center;
}

.footer-newsletter__icon {
    width: 48px;
    height: 48px;
    border: 1px solid #2aa8e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2aa8e0;
    grid-row: 1;
}

.footer-newsletter__icon svg {
    width: 22px;
    height: 22px;
}

.footer-newsletter__copy h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-newsletter__copy p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.footer-newsletter__form {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
}

.footer-newsletter__form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 12px 14px;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
}

.footer-newsletter__form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter__form button {
    background: #0066ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background var(--transition);
}

.footer-newsletter__form button:hover {
    background: #0052cc;
}

.footer-trust h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    text-align: center;
}

.footer-trust__grid svg {
    width: 20px;
    height: 20px;
    color: #fff;
    margin: 0 auto 6px;
}

.footer-trust__grid strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #2aa8e0;
}

.footer-trust__grid span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1480px;
    margin: 0 auto;
    padding: 18px 32px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer__bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom p span {
    color: #2aa8e0;
    font-weight: 600;
}

.site-footer__bottom p a {
    color: #2aa8e0;
    font-weight: 600;
}

.site-footer__bottom p a:hover {
    text-decoration: underline;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.site-footer__legal a {
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__legal a:hover {
    color: #2aa8e0;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer__social a {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: border-color var(--transition), color var(--transition);
}

.site-footer__social a svg {
    width: 13px;
    height: 13px;
}

.site-footer__social a:hover {
    border-color: #2aa8e0;
    color: #2aa8e0;
}

@media (max-width: 1200px) {
    .site-footer__top {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-footer__inner,
    .site-footer__bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter__form {
        flex-direction: column;
    }

    .footer-trust__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-wrap {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 32px;
}

.about-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #2aa8e0;
    margin-bottom: 12px;
}

.about-label--center { text-align: center; }
.about-label--light { color: #2aa8e0; }

.about-heading {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #1a2332;
    line-height: 1.25;
    margin-bottom: 18px;
}

.about-heading--center { text-align: center; }

.about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 14px;
    max-width: 560px;
}

.about-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 18px;
    border: 1.5px solid #2aa8e0;
    border-radius: 6px;
    color: #2aa8e0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.about-outline-btn svg { width: 14px; height: 14px; }

.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 72px;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 12, 24, 0.82) 0%, rgba(5, 12, 24, 0.45) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.page-hero__crumb {
    font-size: 13px;
    color: #2aa8e0;
    margin-bottom: 16px;
}

.page-hero__crumb a { color: #2aa8e0; }
.page-hero__crumb span { color: rgba(255,255,255,0.5); margin: 0 6px; }

.page-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.page-hero h1 span { color: #2aa8e0; }

.page-hero__sub {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
}

.who-we-are { background: #fff; padding: 80px 0; }

.who-we-are__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.who-we-are__media { position: relative; }

.who-we-are__media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
}

.who-we-are__cards {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.who-chip {
    background: #fff;
    border-radius: 10px;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    color: #2aa8e0;
}

.who-chip svg { width: 22px; height: 22px; flex-shrink: 0; }

.who-chip span {
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
    line-height: 1.35;
}

.purpose { background: #f4f6f8; padding: 72px 0; }

.purpose__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}

.purpose-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 8px 24px rgba(16,24,40,0.06);
}

.purpose-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(42,168,224,0.12);
    color: #2aa8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.purpose-card__icon svg { width: 24px; height: 24px; }

.purpose-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #2aa8e0;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.purpose-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

.highlights {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
    background: #00101f;
}

.highlights__bg {
    position: absolute;
    inset: 0;
    opacity: 0.25;
}

.highlights__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlights .about-wrap { position: relative; z-index: 1; }

.highlights__title {
    text-align: center;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
}

.highlights__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-item {
    text-align: center;
    color: #fff;
}

.highlight-item svg {
    width: 28px;
    height: 28px;
    margin: 0 auto 10px;
}

.highlight-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #2aa8e0;
    margin-bottom: 4px;
}

.highlight-item span {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
}

.values { background: #fff; padding: 80px 0; }

.values__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.values__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
    margin-top: 8px;
}

.value-item {
    display: flex;
    gap: 12px;
    color: #2aa8e0;
}

.value-item svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

.value-item h3 {
    font-size: 15px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
}

.values__media img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center right;
    border-radius: 14px;
}

.journey { background: #f4f6f8; padding: 72px 0 80px; }

.timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin: 48px 0 0;
    position: relative;
}

.timeline__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    gap: 14px;
}

.timeline__item::before {
    content: '';
    position: absolute;
    top: 23px;
    left: calc(50% + 30px);
    width: calc(100% - 44px);
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        #2aa8e0 0 6px,
        transparent 6px 12px
    );
}

.timeline__item:last-child::before {
    display: none;
}

.timeline__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2aa8e0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px #f4f6f8;
}

.timeline__icon svg { width: 20px; height: 20px; }

.timeline__copy {
    padding-top: 0;
}

.timeline__item strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 6px;
}

.timeline__item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

.partners { background: #f5f7fa; padding: 64px 0 80px; }

.partners__intro {
    text-align: center;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    max-width: 560px;
    margin: -4px auto 36px;
}

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

.partners__logo {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 18px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.partners__logo img {
    max-width: 100%;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.85;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.partners__logo:hover {
    border-color: #2aa8e0;
    box-shadow: 0 8px 24px rgba(42, 168, 224, 0.12);
    transform: translateY(-2px);
}

.partners__logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.about-cta {
    position: relative;
    padding: 48px 0;
    overflow: hidden;
}

.about-cta__bg { position: absolute; inset: 0; }
.about-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.about-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 24, 0.78);
}

.about-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 22px;
}

.about-cta__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #2aa8e0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-cta__icon svg { width: 28px; height: 28px; }

.about-cta__copy { flex: 1; }

.about-cta__copy h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.about-cta__copy p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.about-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2aa8e0;
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.about-cta__btn svg { width: 14px; height: 14px; }

@media (max-width: 1100px) {
    .who-we-are__grid,
    .values__grid,
    .purpose__grid {
        grid-template-columns: 1fr;
    }

    .highlights__grid {
        grid-template-columns: 1fr 1fr;
    }

    .values__media img,
    .who-we-are__media img { height: 320px; }

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

@media (max-width: 768px) {
    .about-wrap,
    .page-hero__content { padding-left: 20px; padding-right: 20px; }

    .who-we-are__cards,
    .values__list { grid-template-columns: 1fr; }

    .highlights__grid { grid-template-columns: repeat(2, 1fr); }

    .about-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .partners__grid { grid-template-columns: repeat(3, 1fr); }
    .partners__logo { height: 88px; padding: 12px; }
    .partners__logo img { max-height: 48px; }

    .timeline {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 48px auto 0;
        gap: 0;
    }

    .timeline__item {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 20px;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 36px;
    }

    .timeline__item:last-child {
        padding-bottom: 0;
    }

    .timeline__item::before {
        left: 23px;
        top: 48px;
        bottom: 0;
        width: 2px;
        height: auto;
        background: repeating-linear-gradient(
            180deg,
            #2aa8e0 0 6px,
            transparent 6px 12px
        );
    }

    .timeline__copy {
        padding-top: 4px;
    }
}

@media (max-width: 480px) {
    .partners__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */

.prod-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 48px;
}

.prod-hero__bg { position: absolute; inset: 0; }
.prod-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.prod-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,12,24,0.88) 0%, rgba(5,12,24,0.55) 55%, rgba(5,12,24,0.3) 100%);
}

.prod-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.prod-hero__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #2aa8e0;
    margin-bottom: 14px;
}

.prod-hero h1 {
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.prod-hero h1 span { color: #2aa8e0; }

.prod-hero__sub {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
}

.prod-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 36px;
}

.prod-hero__features > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2aa8e0;
    font-size: 13px;
    font-weight: 600;
}

.prod-hero__features span { color: #fff; }
.prod-hero__features svg { width: 22px; height: 22px; }

.prod-cats { background: #f4f6f8; padding: 72px 0 80px; }

.prod-cats__intro {
    text-align: center;
    color: #6b7280;
    font-size: 15px;
    margin: -8px auto 40px;
    max-width: 560px;
}

.prod-cats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cat-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(16,24,40,0.08);
    scroll-margin-top: 100px;
}

.cat-card__image { position: relative; height: 200px; }
.cat-card__image img { width: 100%; height: 100%; object-fit: cover; }

.cat-card__icon {
    position: absolute;
    left: 20px;
    bottom: -22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2aa8e0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(42,168,224,0.35);
}

.cat-card--electrical .cat-card__icon { background: #1e4d8c; }

.cat-card__icon svg { width: 22px; height: 22px; }

.cat-card__body { padding: 36px 24px 24px; }

.cat-card__body h3 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cat-card--mechanical h3,
.cat-card--instrumentation h3 { color: #2aa8e0; }
.cat-card--electrical h3 { color: #1e4d8c; }

.cat-card__body p {
    font-size: 13.5px;
    line-height: 1.55;
    color: #6b7280;
    margin-bottom: 14px;
}

.cat-card__body ul { list-style: none; margin-bottom: 18px; }

.cat-card__body li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 6px;
}

.cat-card__body li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #2aa8e0;
    font-weight: 700;
}

.cat-card__body a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cat-card--mechanical a,
.cat-card--instrumentation a { color: #2aa8e0; }
.cat-card--electrical a { color: #1e4d8c; }

.featured { background: #fff; padding: 72px 0 80px; }

.featured__slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    margin-top: 36px;
}

.featured__nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #2aa8e0;
    background: #fff;
    color: #2aa8e0;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.featured__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 4px 16px;
}

.featured__track::-webkit-scrollbar { display: none; }

.featured-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(16,24,40,0.08);
    padding: 16px 16px 18px;
}

.featured-card__image {
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
    margin-bottom: 12px;
}

.featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 6px;
}

.featured-card p {
    font-size: 12.5px;
    line-height: 1.45;
    color: #6b7280;
    margin-bottom: 10px;
}

.featured-card a {
    font-size: 12px;
    font-weight: 700;
    color: #2aa8e0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.prod-cta {
    position: relative;
    padding: 48px 0 40px;
    overflow: hidden;
    background: #00101f;
}

.prod-cta__bg { position: absolute; inset: 0; }
.prod-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.35;
}
.prod-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #00101f 0%, rgba(0,16,31,0.88) 48%, rgba(0,16,31,0.4) 100%);
}

.prod-cta .about-wrap { position: relative; z-index: 1; }

.prod-cta__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.prod-cta__stats > div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2aa8e0;
}

.prod-cta__stats svg { width: 26px; height: 26px; flex-shrink: 0; }

.prod-cta__stats strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.prod-cta__stats span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.75);
    line-height: 1.35;
}

.prod-cta__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(42,168,224,0.35);
}

.prod-cta__row p {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.prod-cta__btn {
    display: inline-flex;
    align-items: center;
    background: #2aa8e0;
    color: #fff;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .prod-cats__grid { grid-template-columns: 1fr; }
    .prod-cta__stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .prod-hero__content { padding-left: 20px; padding-right: 20px; }
    .prod-cta__row { flex-direction: column; align-items: flex-start; }
    .prod-cta__stats { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.svc-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 48px;
}

.svc-hero__bg { position: absolute; inset: 0; }
.svc-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,12,24,0.88) 0%, rgba(5,12,24,0.5) 60%, rgba(5,12,24,0.25) 100%);
}

.svc-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.svc-hero__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #2aa8e0;
    margin-bottom: 14px;
}

.svc-hero h1 {
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.svc-hero h1 span { color: #2aa8e0; }

.svc-hero__sub {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
}

.svc-hero__points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.svc-hero__points > div {
    display: flex;
    gap: 10px;
    color: #2aa8e0;
}

.svc-hero__points svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

.svc-hero__points strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.svc-hero__points span {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255,255,255,0.7);
}

.svc-intro {
    text-align: center;
    color: #6b7280;
    margin: -8px auto 36px;
}

.svc-offer { background: #fff; padding: 72px 0 80px; }

.svc-offer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-card {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 12px;
    padding: 26px 24px 22px;
    box-shadow: 0 8px 24px rgba(16,24,40,0.05);
    scroll-margin-top: 100px;
}

.svc-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(42,168,224,0.12);
    color: #2aa8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.svc-card__icon svg { width: 22px; height: 22px; }

.svc-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 8px;
}

.svc-card p {
    font-size: 13.5px;
    line-height: 1.55;
    color: #6b7280;
    margin-bottom: 16px;
}

.svc-card a {
    font-size: 12px;
    font-weight: 700;
    color: #2aa8e0;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.svc-process { background: #f4f6f8; padding: 72px 0 80px; }

.process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    border-top: 2px dashed #cfe9f5;
}

.process__item { text-align: center; position: relative; }

.process__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #2aa8e0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.process__icon svg { width: 24px; height: 24px; }

.process__item strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 6px;
}

.process__item p {
    font-size: 13px;
    line-height: 1.45;
    color: #6b7280;
}

.svc-industries { background: #fff; padding: 64px 0 72px; }

.svc-industries__row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    margin-top: 36px;
    text-align: center;
}

.svc-industries__row > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.svc-industries__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(42, 168, 224, 0.12);
    color: #2aa8e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-industries__row svg {
    width: 26px;
    height: 26px;
    margin: 0;
}

.svc-industries__row span {
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
}

.svc-why { background: #fff; padding: 20px 0 80px; }

.svc-why__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.svc-why__media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center right;
    border-radius: 14px;
}

.svc-why__split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: start;
}

.svc-checks { list-style: none; }

.svc-checks li {
    position: relative;
    padding-left: 32px;
    font-size: 14px;
    line-height: 1.5;
    color: #1a2332;
    margin-bottom: 14px;
}

.svc-checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2aa8e0;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 22px;
    text-align: center;
}

.svc-quote {
    border: 1px solid #d7eaf4;
    border-radius: 12px;
    padding: 22px 20px;
    background: #fff;
}

.svc-quote span {
    display: block;
    font-size: 42px;
    line-height: 0.7;
    color: #2aa8e0;
    font-weight: 700;
    margin-bottom: 10px;
}

.svc-quote p {
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    color: #1a2332;
    margin-bottom: 14px;
}

.svc-quote cite {
    display: block;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2aa8e0;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 1100px) {
    .svc-hero__points,
    .svc-offer__grid,
    .process,
    .svc-industries__row {
        grid-template-columns: 1fr 1fr;
    }

    .svc-why__grid,
    .svc-why__split { grid-template-columns: 1fr; }

    .process::before { display: none; }
}

@media (max-width: 768px) {
    .svc-hero__content { padding-left: 20px; padding-right: 20px; }
    .svc-hero__points,
    .svc-offer__grid { grid-template-columns: 1fr; }

    .process,
    .svc-industries__row { grid-template-columns: repeat(2, 1fr); }

    .process__item strong { font-size: 13px; }
    .process__item p { font-size: 12px; }
    .svc-industries__row span { font-size: 13px; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 140px 0 110px;
    background: #011627;
    overflow: hidden;
}

.contact-hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
}

.contact-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.contact-hero__fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #011627 0%, #011627 8%, rgba(1,22,39,0.75) 32%, rgba(1,22,39,0.15) 62%, transparent 100%);
}

.contact-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.contact-hero__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #2aa8e0;
    margin-bottom: 14px;
}

.contact-hero h1 {
    max-width: 560px;
    font-size: clamp(32px, 4.4vw, 50px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.contact-hero h1 span { color: #2aa8e0; }

.contact-hero__sub {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.contact-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 32px;
}

.contact-hero__trust > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2aa8e0;
    font-size: 13px;
    font-weight: 600;
}

.contact-hero__trust span { color: #fff; }
.contact-hero__trust svg { width: 22px; height: 22px; }

.contact-quick {
    margin-top: -70px;
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}

.contact-quick__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.quick-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 10px 30px rgba(16,24,40,0.1);
}

.quick-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(42,168,224,0.12);
    color: #2aa8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.quick-card__icon svg { width: 18px; height: 18px; }

.quick-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 6px;
}

.quick-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
}

.contact-main {
    background: #f4f6f8;
    padding: 48px 0 72px;
}

.contact-main__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.contact-form-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 8px 24px rgba(16,24,40,0.06);
}

.contact-form-card h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 8px;
}

.contact-form-card > p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 22px;
}

.contact-form__success {
    background: rgba(42,168,224,0.12);
    color: #0b6e8a;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 18px;
}

.contact-form__error {
    background: #fdecec;
    color: #9b1c1c;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

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

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #1a2332;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: #1a2332;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2aa8e0;
}

.contact-form__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.contact-form button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2aa8e0;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 13px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
}

.contact-form button svg { width: 16px; height: 16px; }

.contact-form__privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.contact-form__privacy svg { width: 16px; height: 16px; color: #2aa8e0; flex-shrink: 0; }

.contact-info-card {
    background: #011627;
    border-radius: 14px;
    padding: 32px 28px;
    color: #fff;
}

.contact-info-card h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.contact-info-card__item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-card__item:last-child { border-bottom: none; }

.contact-info-card__item svg {
    width: 20px;
    height: 20px;
    color: #2aa8e0;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-card__item strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.contact-info-card__item p,
.contact-info-card__item a {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
}

.contact-map {
    position: relative;
    height: 380px;
    background: #dbe3ea;
}

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

.contact-map__card {
    position: absolute;
    left: max(32px, calc((100% - 1480px) / 2 + 32px));
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 12px 32px rgba(16,24,40,0.16);
}

.contact-map__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(42,168,224,0.12);
    color: #2aa8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.contact-map__icon svg { width: 18px; height: 18px; }

.contact-map__card p {
    font-size: 13px;
    line-height: 1.5;
    color: #1a2332;
    margin-bottom: 12px;
}

.contact-map__card a {
    font-size: 12px;
    font-weight: 700;
    color: #2aa8e0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

@media (max-width: 1100px) {
    .contact-hero__bg { width: 100%; }
    .contact-hero__fade {
        background: linear-gradient(180deg, rgba(1,22,39,0.88) 0%, rgba(1,22,39,0.55) 100%);
    }
    .contact-quick__grid,
    .contact-main__grid,
    .contact-form__row { grid-template-columns: 1fr; }
    .contact-map__card {
        left: 20px;
        right: 20px;
        width: auto;
        top: auto;
        bottom: 16px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .contact-hero { padding: 120px 0 90px; }
    .contact-hero__content { padding-left: 20px; padding-right: 20px; }
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: 0 !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.footer-newsletter {
    position: relative;
}

.footer-newsletter__flash {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.footer-newsletter__flash--success { color: #7ee0c4; }
.footer-newsletter__flash--error { color: #f5a5a5; }

.footer-newsletter__form button:disabled {
    opacity: 0.7;
    cursor: wait;
}

body.has-popup {
    overflow: hidden;
}

.site-popup[hidden] {
    display: none !important;
}

.site-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 20px;
}

.site-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 24, 0.62);
    backdrop-filter: blur(2px);
}

.site-popup__card {
    position: relative;
    z-index: 1;
    width: min(100%, 380px);
    padding: 28px 24px 22px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(5, 12, 24, 0.28);
    text-align: center;
}

.site-popup__close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #6b7280;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.site-popup__close:hover { color: #1a2332; }

.site-popup__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    color: #1f7a4d;
}

.site-popup.is-error .site-popup__icon { color: #c0392b; }

.site-popup__icon svg {
    width: 100%;
    height: 100%;
}

.site-popup__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    color: #1a2332;
}

.site-popup__message {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.55;
    color: #6b7280;
}

.site-popup__btn {
    min-width: 120px;
    background: #2aa8e0;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.site-popup__btn:hover { background: #1e93c9; }

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    background: #1ebe57;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
    color: #fff;
}

@media (max-width: 640px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

.page-intelex {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(ellipse 70% 80% at 0% 0%, rgba(42, 168, 224, 0.12), transparent 55%),
        linear-gradient(180deg, #0a0e17 0%, #111827 100%);
    color: #1a2332;
}

.intelex-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
}

.intelex-page__card {
    width: min(100%, 480px);
    padding: 32px 28px 36px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8ecf0;
    box-shadow: 0 12px 40px rgba(5, 12, 24, 0.18);
    text-align: center;
}

.intelex-page__back {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #2aa8e0;
}

.intelex-page__back:hover {
    color: #1e93c9;
}

.intelex-page__logo-wrap {
    display: inline-flex;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.intelex-page__logo {
    width: min(240px, 100%);
    height: auto;
    object-fit: contain;
}

.intelex-page__title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #1a2332;
}

.intelex-page__tagline {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: #2aa8e0;
}

.intelex-page__desc {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.65;
    color: #6b7280;
}

.intelex-page__contact {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    border-top: 1px solid #e8ecf0;
}

.intelex-page__contact li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid #e8ecf0;
    font-size: 14px;
    color: #1a2332;
}

.intelex-page__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9aa1ab;
}

.intelex-page__contact a {
    color: #2aa8e0;
    font-weight: 600;
}

.intelex-page__contact a:hover {
    color: #1e93c9;
}

.error-page {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.error-page__bg {
    position: absolute;
    inset: 0;
}

.error-page__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.error-page__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 24, 0.82);
}

.error-page__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    text-align: center;
}

.error-page__code {
    font-size: clamp(72px, 14vw, 140px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 4px;
    color: #2aa8e0;
    margin-bottom: 12px;
}

.error-page h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.error-page h1 span {
    color: #2aa8e0;
}

.error-page__text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.error-page__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.error-page__links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.error-page__links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.error-page__links a:hover {
    color: #2aa8e0;
}

.header__dropdown-item--active {
    color: #2aa8e0;
    background: rgba(42, 168, 224, 0.12);
}

/* ============================================
   LEGAL / SITEMAP / CERTIFICATES / PRODUCT RANGE
   ============================================ */

.legal-page {
    background: #f4f6f8;
}

.legal-body {
    background: #fff;
    padding: 64px 0 80px;
}

.legal-body--soft {
    background: #f4f6f8;
}

.legal-updated {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.legal-content {
    max-width: 760px;
    display: grid;
    gap: 28px;
}

.legal-content h2 {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #1a2332;
    margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

.legal-content ul {
    margin-top: 10px;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.legal-content a {
    color: #2aa8e0;
    font-weight: 600;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 32px;
}

.sitemap-group h2 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a2332;
    margin-bottom: 14px;
}

.sitemap-group ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.sitemap-group a {
    color: #4b5563;
    font-size: 15px;
    text-decoration: none;
}

.sitemap-group a:hover {
    color: #2aa8e0;
}

.prod-range {
    background: #f4f6f8;
    padding: 72px 0 80px;
}

.prod-range__intro {
    text-align: center;
    color: #6b7280;
    font-size: 15px;
    margin: -8px auto 40px;
    max-width: 640px;
}

.prod-range__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.prod-range__card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px 20px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.prod-range__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #fff;
    background: #2aa8e0;
}

.prod-range__card--electrical .prod-range__icon {
    background: #1e4d8c;
}

.prod-range__icon svg {
    width: 20px;
    height: 20px;
}

.prod-range__card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 8px;
}

.prod-range__card p {
    font-size: 13.5px;
    line-height: 1.55;
    color: #6b7280;
    margin-bottom: 14px;
}

.prod-range__card a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #2aa8e0;
}

.prod-range__card--electrical a {
    color: #1e4d8c;
}

.prod-related {
    background: #fff;
    padding: 64px 0 72px;
}

.prod-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
}

.prod-related__card {
    position: relative;
    display: block;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
}

.prod-related__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-related__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 12, 24, 0.15) 0%, rgba(5, 12, 24, 0.75) 100%);
}

.prod-related__card span {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 1;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.cert-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.cert-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(42, 168, 224, 0.12);
    color: #2aa8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cert-card__icon svg {
    width: 22px;
    height: 22px;
}

.cert-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #6b7280;
}

.cert-note {
    margin-top: 40px;
}

@media (max-width: 1100px) {
    .prod-range__grid,
    .prod-related__grid,
    .sitemap-grid {
        grid-template-columns: 1fr 1fr;
    }
}
