﻿:root {
    --bg: #0b1220;
    --bg-soft: #111a2b;
    --surface: #ffffff;
    --surface-2: #f5f7fb;
    --text: #111827;
    --muted: #667085;
    --line: #e5e7eb;
    --primary: #1f6fff;
    --primary-dark: #1557d6;
    --accent: #d6e4ff;
    --gold: #c9a96a;
    --radius: 24px;
    --shadow: 0 20px 60px rgba(16,24,40,.10);
    --shadow-dark: 0 24px 80px rgba(0,0,0,.28);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Inter',sans-serif;
    color: var(--text);
    background: linear-gradient(180deg,#eef2f8 0%, #f8fafc 100%);
}

a {
    text-decoration: none;
    color: inherit
}

img {
    display: block;
    max-width: 100%
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid rgba(229,231,235,.85);
}

.container-wide {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-wrap {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand-logo-link {
    min-width: 260px;
    display: inline-flex;
    align-items: center;
}

.site-logo {
    width: 230px;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-logo {
    width: 220px;
}

@media (max-width: 767.98px) {
    .brand-logo-link {
        min-width: auto;
    }

    .site-logo {
        width: 180px;
    }
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .nav-center a {
        font-size: 16px;
        font-weight: 600;
        color: #1f2937;
        position: relative;
    }

        .nav-center a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: .25s ease;
        }

        .nav-center a:hover::after {
            width: 100%
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    position: relative;
}

.dropdown-chevron {
    font-size: 12px;
    transition: .25s ease;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown.active .dropdown-chevron {
    transform: rotate(180deg);
}

.mega-menu {
    position: fixed;
    top: 92px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(820px, calc(100vw - 40px));
    background: #fff;
    border: 1px solid #e5eaf2;
    box-shadow: 0 20px 60px rgba(16, 24, 40, .14);
    padding: 26px 34px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .22s ease;
    z-index: 1500;
}

.nav-item-dropdown:hover .mega-menu,
.nav-item-dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.mega-menu-col {
    display: grid;
}

    .mega-menu-col a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 0;
        border-bottom: 1px solid #e8edf5;
        color: #374151;
        font-size: 14px;
        font-weight: 500;
    }

        .mega-menu-col a i {
            font-size: 9px;
            color: #111827;
        }

        .mega-menu-col a:hover {
            color: var(--primary-dark);
            padding-left: 4px;
        }

@media (max-width: 991.98px) {
    .nav-item-dropdown {
        display: none;
    }
}

.header-pill {
    padding: 15px 22px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--primary-dark);
    font-weight: 700;
    border: 1px solid #dce7ff;
}

.header-cta {
    background: linear-gradient(135deg,var(--primary),#3b82f6);
    color: #fff;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(31,111,255,.28);
    transition: .25s ease;
}

    .header-cta:hover {
        transform: translateY(-2px)
    }

.mobile-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 30px
}

.mobile-menu {
    display: none;
    padding: 0 24px 18px;
    background: rgba(255,255,255,.96);
    border-top: 1px solid #edf0f5;
}

    .mobile-menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #f1f2f6;
        font-weight: 600;
    }

.hero {
    padding: 34px 0 0;
}

.hero-shell {
    position: relative;
    min-height: 780px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg,#0f1728 0%, #182236 38%, #223555 100%);
    box-shadow: var(--shadow-dark);
}

    .hero-shell::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(96,165,250,.22), transparent 25%), radial-gradient(circle at 78% 18%, rgba(255,255,255,.08), transparent 22%), linear-gradient(120deg, rgba(255,255,255,.03) 0%, transparent 35%, rgba(255,255,255,.02) 100%);
        pointer-events: none;
    }

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity .8s ease;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

    .hero-slide.active {
        opacity: .34
    }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    min-height: 780px;
    padding: 56px;
    align-items: center;
}

.hero-left {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: #dbe7ff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-left h1 {
    margin: 0 0 22px;
    font-size: 78px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -3px;
    color: #fff;
}

    .hero-left h1 span {
        color: #9ec1ff;
    }

.hero-left p {
    margin: 0 0 34px;
    font-size: 18px;
    line-height: 1.85;
    color: rgba(255,255,255,.78);
    max-width: 620px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.btn-primary-custom,
.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 17px 28px;
    border-radius: 999px;
    font-weight: 700;
    transition: .25s ease;
}

.btn-primary-custom {
    background: linear-gradient(135deg,var(--primary),#4f8fff);
    color: #fff;
    box-shadow: 0 14px 28px rgba(31,111,255,.30);
}

.btn-secondary-custom {
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    max-width: 620px;
}

.mini-stat {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    padding: 20px 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

    .mini-stat h3 {
        margin: 0 0 6px;
        font-size: 28px;
        color: #fff;
        font-weight: 800;
    }

    .mini-stat p {
        margin: 0;
        font-size: 14px;
        color: rgba(255,255,255,.72);
        line-height: 1.5;
    }

.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-card {
    width: min(100%, 470px);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

    .hero-card-top small {
        display: block;
        color: #667085;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .hero-card-top h4 {
        margin: 0;
        font-size: 26px;
        font-weight: 800;
        line-height: 1.15;
    }

.hero-card-chip {
    padding: 9px 14px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.aluminium-frame {
    height: 270px;
    border-radius: 24px;
    background: linear-gradient(145deg,#f8fbff,#dce8ff);
    border: 1px solid #d7e5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
}

    .aluminium-frame::before {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(31,111,255,.12), transparent 70%);
        top: -30px;
        right: -20px;
    }

.product-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    padding: 18px;
    filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.18));
}

.hero-card-info {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

.info-box {
    background: #f8fafc;
    border: 1px solid #e8eef7;
    border-radius: 18px;
    padding: 16px;
}

    .info-box small {
        display: block;
        color: #667085;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .info-box strong {
        font-size: 16px;
        font-weight: 800;
        color: #0f172a;
    }

.hero-controls {
    position: absolute;
    left: 56px;
    bottom: 42px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero-arrow {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111827;
    font-size: 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,.18);
    transition: .25s ease;
}

    .hero-arrow:hover {
        transform: scale(1.05)
    }

.catalog-band {
    margin-top: -44px;
    position: relative;
    z-index: 5;
}

.catalog-band-inner {
    background: #fff;
    border: 1px solid #e9eef6;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1.2fr .8fr auto;
    align-items: center;
    gap: 18px;
}

.catalog-band-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.catalog-band-text {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.catalog-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 14px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
    border-radius: 16px;
    background: #0f172a;
    color: #fff;
    font-weight: 700;
    min-width: 180px;
}

.section {
    padding: 96px 0;
}

.section-head {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 56px;
    position: relative;
}

    .section-head::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 10px;
        transform: translateX(-50%);
        width: 760px;
        height: 300px;
        background: radial-gradient(circle, rgba(31,111,255,.06) 1px, transparent 1px);
        background-size: 10px 10px;
        opacity: .55;
        z-index: -1;
        mask-image: radial-gradient(circle at center, #000 35%, transparent 80%);
        -webkit-mask-image: radial-gradient(circle at center, #000 35%, transparent 80%);
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    background: #edf4ff;
    border: 1px solid #dbe7ff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-head h2 {
    margin: 0 0 20px;
    font-size: 58px;
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 800;
    color: #0f172a;
}

.section-head p {
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: #475467;
}

.stats-row {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.stat-card {
    background: #fff;
    border: 1px solid #e7edf6;
    border-radius: 28px;
    padding: 30px 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg,#eff5ff,#dfeaff);
    color: var(--primary-dark);
    font-size: 28px;
    border: 1px solid #d7e4ff;
}

.stat-card h3 {
    margin: 0 0 8px;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #0f172a;
}

.stat-card p {
    margin: 0;
    color: #667085;
    font-size: 17px;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.split-card {
    min-height: 420px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.split-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.split-card.dark {
    background: linear-gradient(145deg,#0f172a,#17243b 60%, #20365d);
    color: #fff;
}

    .split-card.dark::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,.04), transparent 35%), radial-gradient(circle at 85% 20%, rgba(96,165,250,.24), transparent 24%);
    }

.split-card.image {
    background-size: cover;
    background-position: center;
    color: #fff;
}

    .split-card.image::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15,23,42,.12), rgba(15,23,42,.72));
    }

.split-kicker {
    color: #bfd5ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 18px;
}

.split-card h3 {
    margin: 0 0 18px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.split-card p {
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255,255,255,.80);
    max-width: 560px;
}

.outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 15px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    font-weight: 700;
    background: rgba(255,255,255,.06);
}

.systems-section .section-head {
    margin-bottom: 34px
}

.system-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

    .system-card.alt .system-image {
        order: 2
    }

    .system-card.alt .system-content {
        order: 1
    }

.system-image {
    min-height: 370px
}

    .system-image img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.system-content {
    padding: 46px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .system-content h3 {
        margin: 0 0 18px;
        font-size: 30px;
        font-weight: 800;
        line-height: 1.2;
        text-transform: uppercase;
        color: #111827;
    }

    .system-content p {
        margin: 0 0 22px;
        color: #475467;
        font-size: 17px;
        line-height: 1.9;
    }

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .2px;
    width: max-content;
}

.triple-panel {
    margin-top: 54px;
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr;
    gap: 24px;
}

.panel-box {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 340px;
}

.panel-light {
    background: #eef3fb;
    border: 1px solid #e3eaf6;
    padding: 34px;
}

    .panel-light h3,
    .panel-dark h3,
    .panel-white h3 {
        margin: 0 0 16px;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.2;
    }

.panel-dark {
    background: linear-gradient(145deg,#153667,#1f6fff);
    color: #fff;
    padding: 34px;
}

    .panel-dark p {
        color: rgba(255,255,255,.86);
        line-height: 1.85;
        font-size: 17px
    }

.panel-white {
    background: #fff;
    border: 1px solid #e8edf5;
    padding: 34px;
}

.catalog-preview {
    margin: 26px 0 18px;
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    gap: 16px;
    align-items: end;
}

.sheet {
    height: 210px;
    background: #fff;
    border: 1px solid #d9e1ee;
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(15,23,42,.10);
    position: relative;
    overflow: hidden;
}

    .sheet::before {
        content: "";
        position: absolute;
        left: 18px;
        right: 18px;
        top: 18px;
        bottom: 18px;
        background: repeating-linear-gradient(180deg,#ebeff6 0,#ebeff6 7px,transparent 7px,transparent 18px);
    }

    .sheet.cover {
        background: linear-gradient(180deg,#ffffff,#f7f9fc);
    }

        .sheet.cover::before {
            content: "";
            position: absolute;
            inset: auto auto 18px 18px;
            width: 120px;
            height: 120px;
            border: 7px solid #d4deed;
            border-radius: 18px;
            transform: rotate(18deg);
            background: none;
        }

        .sheet.cover span {
            position: absolute;
            left: 18px;
            top: 18px;
            font-size: 34px;
            font-weight: 800;
            color: #153667;
            z-index: 2;
        }

.download-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

    .download-row .small-link {
        color: var(--primary-dark);
        font-weight: 800;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

.contact-icons {
    display: flex;
    gap: 12px;
    margin: 18px 0 22px;
    flex-wrap: wrap;
}

    .contact-icons a,
    .contact-icons span {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid #d5deee;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #0f172a;
        background: #fff;
    }

.phone-big {
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    margin: 16px 0 18px;
}

.panel-white p,
.panel-light p {
    color: #475467;
    line-height: 1.8;
    font-size: 16px;
}

.footer {
    margin-top: 88px;
    padding: 88px 0 60px;
    background: #fff;
    border-top: 1px solid #e8edf5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.footer-title {
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111827;
}

.footer-links {
    display: grid;
    gap: 14px;
}

    .footer-links a {
        color: #334155;
        font-size: 16px;
    }

.footer-contact .item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

    .footer-contact .item .icon {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eef4ff;
        color: var(--primary-dark);
        border: 1px solid #dce7ff;
        flex: 0 0 auto;
        font-size: 20px;
    }

.footer-contact strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
    color: #111827;
}

.footer-contact p {
    margin: 0 0 14px;
    color: #475467;
    font-size: 16px;
    line-height: 1.8;
}

.footer-brand {
    min-width: auto;
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-brand-text {
    color: #475467;
    line-height: 1.8;
    margin: 0;
}

.footer-socials {
    margin-top: 10px;
}

@media (max-width: 1199.98px) {
    .nav-center {
        gap: 22px
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 44px
    }

    .hero-shell {
        min-height: auto
    }

    .hero-grid {
        min-height: auto
    }

    .hero-left h1 {
        font-size: 62px
    }

    .section-head h2 {
        font-size: 48px
    }

    .triple-panel {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 991.98px) {
    .mobile-toggle {
        display: block
    }

    .nav-center, .nav-right {
        display: none
    }

    .mobile-menu.active {
        display: block
    }

    .catalog-band-inner,
    .stats-row,
    .split-grid,
    .system-card,
    .footer-grid {
        grid-template-columns: 1fr
    }

        .system-card.alt .system-image,
        .system-card.alt .system-content {
            order: unset
        }

    .hero-mini-stats {
        grid-template-columns: 1fr
    }

    .hero-right {
        justify-content: flex-start
    }

    .hero-controls {
        left: 44px;
        bottom: 34px
    }
}

@media (max-width: 767.98px) {
    .hero-left h1 {
        font-size: 42px;
        letter-spacing: -1.5px
    }

    .hero-grid {
        padding: 28px 22px 96px
    }

    .hero-shell {
        border-radius: 22px;
        min-height: auto
    }

    .hero-card {
        padding: 20px;
        border-radius: 22px
    }

    .hero-card-top h4 {
        font-size: 22px
    }

    .aluminium-frame {
        height: 220px
    }

    .catalog-band {
        margin-top: -24px
    }

    .catalog-band-inner {
        padding: 18px;
        gap: 12px
    }

    .download-btn {
        min-width: 100%
    }

    .section {
        padding: 72px 0
    }

    .section-head h2 {
        font-size: 36px;
        letter-spacing: -1px
    }

    .section-head p {
        font-size: 16px
    }

    .split-card-content {
        padding: 28px
    }

    .split-card h3 {
        font-size: 32px
    }

    .system-content {
        padding: 28px 22px
    }

        .system-content h3 {
            font-size: 24px
        }

    .catalog-preview {
        grid-template-columns: 1fr 1fr
    }

        .catalog-preview .sheet:first-child {
            grid-column: 1/-1;
            height: 160px
        }

    .panel-light, .panel-dark, .panel-white {
        padding: 24px
    }

    .phone-big {
        font-size: 24px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero-controls {
        left: 22px;
        bottom: 24px
    }

    .hero-arrow {
        width: 46px;
        height: 46px
    }
}

:root {
    --bg: #0b1220;
    --surface: #ffffff;
    --surface-soft: #f5f7fb;
    --text: #111827;
    --muted: #667085;
    --line: #e5e7eb;
    --primary: #1f6fff;
    --primary-dark: #1557d6;
    --shadow: 0 20px 60px rgba(16,24,40,.10);
    --shadow-dark: 0 24px 80px rgba(0,0,0,.18);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Inter',sans-serif;
    color: var(--text);
    background: linear-gradient(180deg,#eef2f8 0%, #f8fafc 100%);
}

a {
    text-decoration: none;
    color: inherit
}

.container-wide {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-hero {
    padding: 28px 0 0;
}

.about-hero-card {
    background: linear-gradient(135deg,#0f1728 0%, #182236 40%, #223555 100%);
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-dark);
    padding: 56px;
}

    .about-hero-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(96,165,250,.22), transparent 25%), radial-gradient(circle at 82% 18%, rgba(255,255,255,.08), transparent 22%), linear-gradient(120deg, rgba(255,255,255,.03) 0%, transparent 35%, rgba(255,255,255,.02) 100%);
    }

.about-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
}

.about-badge,
.section-badge,
.dark-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.about-badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: #dbe7ff;
    margin-bottom: 24px;
}

.section-badge {
    background: #edf4ff;
    border: 1px solid #dbe7ff;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.dark-badge {
    background: rgba(15,23,42,.08);
    border: 1px solid rgba(15,23,42,.10);
    color: #0f172a;
    margin-bottom: 16px;
}

.about-hero-left h1 {
    margin: 0 0 20px;
    font-size: 68px;
    line-height: 1.04;
    letter-spacing: -2.5px;
    font-weight: 800;
    color: #fff;
    max-width: 760px;
}

.about-hero-left p {
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.78);
    max-width: 650px;
}

.hero-actions,
.cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-custom,
.btn-secondary-custom,
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 17px 28px;
    border-radius: 999px;
    font-weight: 700;
    transition: .25s ease;
}

.btn-primary-custom {
    background: linear-gradient(135deg,var(--primary),#4f8fff);
    color: #fff;
    box-shadow: 0 14px 28px rgba(31,111,255,.24);
}

.btn-secondary-custom {
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
}

.btn-outline-dark {
    color: #0f172a;
    border: 1px solid rgba(15,23,42,.14);
    background: #fff;
}

.about-hero-right {
    display: flex;
    justify-content: flex-end;
}

.about-highlight-card {
    width: min(100%, 450px);
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.40);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

    .about-highlight-card small {
        display: block;
        color: #667085;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .about-highlight-card h3 {
        margin: 0 0 22px;
        font-size: 30px;
        line-height: 1.15;
        font-weight: 800;
    }

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

.highlight-box {
    background: #f8fafc;
    border: 1px solid #e8eef7;
    border-radius: 20px;
    padding: 18px;
}

    .highlight-box strong {
        display: block;
        font-size: 28px;
        color: #111827;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .highlight-box span {
        color: #667085;
        font-size: 14px;
        line-height: 1.5;
    }

.story-section,
.stats-section,
.values-section,
.timeline-section,
.about-cta-section {
    padding: 88px 0 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.story-content,
.story-image-card,
.about-cta-card {
    background: #fff;
    border: 1px solid #e7edf6;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.story-content {
    padding: 38px;
}

    .story-content h2,
    .section-title-wrap h2,
    .about-cta-card h2 {
        margin: 0 0 18px;
        font-size: 48px;
        line-height: 1.08;
        letter-spacing: -1.8px;
        font-weight: 800;
    }

    .story-content p,
    .section-title-wrap p,
    .about-cta-card p {
        margin: 0 0 18px;
        color: #475467;
        line-height: 1.9;
        font-size: 17px;
    }

.story-image-card {
    min-height: 420px;
    background: linear-gradient(180deg, rgba(15,23,42,.10), rgba(15,23,42,.70)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1400&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.story-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px;
    color: #fff;
}

    .story-image-overlay span {
        display: block;
        margin-bottom: 10px;
        color: #dbe7ff;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .story-image-overlay h3 {
        margin: 0;
        font-size: 34px;
        line-height: 1.15;
        font-weight: 800;
        max-width: 420px;
    }

.stats-grid,
.values-grid {
    display: grid;
    gap: 24px;
}

.stats-grid {
    grid-template-columns: repeat(4,1fr);
}

.values-grid {
    grid-template-columns: repeat(4,1fr);
}

.stat-card,
.value-card {
    background: #fff;
    border: 1px solid #e7edf6;
    border-radius: 28px;
    padding: 30px 24px;
    box-shadow: var(--shadow);
}

.stat-card {
    text-align: center
}

.stat-icon,
.value-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg,#eff5ff,#dfeaff);
    color: var(--primary-dark);
    border: 1px solid #d7e4ff;
    font-size: 28px;
    margin: 0 auto 18px;
}

.value-icon {
    margin: 0 0 18px
}

.stat-card h3 {
    margin: 0 0 8px;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -1px;
}

.stat-card p,
.value-card p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}

.value-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.section-title-wrap {
    margin-bottom: 34px;
}

    .section-title-wrap.center {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 34px;
    }

.timeline-list {
    display: grid;
    gap: 18px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    align-items: start;
    background: #fff;
    border: 1px solid #e7edf6;
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.timeline-year {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.timeline-content h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
}

.timeline-content p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
    font-size: 16px;
}

.about-cta-card {
    padding: 38px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 88px;
}

.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: all .7s ease;
}

    .reveal-item.active {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 1199.98px) {
    .about-hero-left h1 {
        font-size: 56px
    }

    .story-grid,
    .about-hero-grid,
    .about-cta-card {
        grid-template-columns: 1fr
    }

    .stats-grid,
    .values-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width: 991.98px) {
    .about-hero-card {
        padding: 34px
    }

    .story-content h2,
    .section-title-wrap h2,
    .about-cta-card h2 {
        font-size: 38px
    }

    .timeline-item {
        grid-template-columns: 1fr
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding-top: 18px
    }

    .about-hero-card,
    .story-content,
    .story-image-card,
    .stat-card,
    .value-card,
    .timeline-item,
    .about-cta-card {
        border-radius: 22px
    }

    .about-hero-card {
        padding: 22px
    }

    .about-hero-left h1 {
        font-size: 38px;
        letter-spacing: -1px
    }

    .about-hero-left p {
        font-size: 16px
    }

    .highlight-stats,
    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr
    }

    .story-content,
    .about-cta-card {
        padding: 24px
    }

        .story-content h2,
        .section-title-wrap h2,
        .about-cta-card h2 {
            font-size: 30px;
            letter-spacing: -1px
        }

    .story-image-card {
        min-height: 300px
    }

    .story-image-overlay {
        padding: 24px
    }

        .story-image-overlay h3 {
            font-size: 26px
        }

    .btn-primary-custom,
    .btn-secondary-custom,
    .btn-outline-dark {
        width: 100%
    }
}

:root {
    --bg: #0b1220;
    --surface: #ffffff;
    --surface-soft: #f5f7fb;
    --text: #111827;
    --muted: #667085;
    --line: #e5e7eb;
    --primary: #1f6fff;
    --primary-dark: #1557d6;
    --shadow: 0 20px 60px rgba(16,24,40,.10);
    --shadow-dark: 0 24px 80px rgba(0,0,0,.18);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Inter',sans-serif;
    color: var(--text);
    background: linear-gradient(180deg,#eef2f8 0%, #f8fafc 100%);
}

a {
    text-decoration: none;
    color: inherit
}

.container-wide {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-hero {
    padding: 28px 0 0;
}

.contact-hero-card {
    background: linear-gradient(135deg,#0f1728 0%, #182236 40%, #223555 100%);
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-dark);
    padding: 56px;
}

    .contact-hero-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(96,165,250,.22), transparent 25%), radial-gradient(circle at 82% 18%, rgba(255,255,255,.08), transparent 22%), linear-gradient(120deg, rgba(255,255,255,.03) 0%, transparent 35%, rgba(255,255,255,.02) 100%);
    }

.contact-hero-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: #dbe7ff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
}

.contact-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
}

.contact-hero-left h1 {
    margin: 0 0 20px;
    font-size: 68px;
    line-height: 1.04;
    letter-spacing: -2.5px;
    font-weight: 800;
    color: #fff;
    max-width: 720px;
}

.contact-hero-left p {
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.78);
    max-width: 650px;
}

.hero-mini-info {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.hero-mini-box {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    padding: 18px;
}

    .hero-mini-box strong {
        display: block;
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 6px;
    }

    .hero-mini-box span {
        color: rgba(255,255,255,.72);
        font-size: 14px;
        line-height: 1.5;
    }

.contact-hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-contact-card {
    width: min(100%, 460px);
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.40);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.hero-contact-top small {
    display: block;
    color: #667085;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-contact-top h3 {
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
}

.hero-contact-list {
    display: grid;
    gap: 14px;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e8eef7;
    transition: .2s ease;
}

    .hero-contact-item:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.hero-contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    color: var(--primary-dark);
    border: 1px solid #dce7ff;
    flex: 0 0 auto;
    font-size: 22px;
}

    .hero-contact-icon.whatsapp {
        color: #10b981;
        background: #ecfdf5;
        border-color: #bbf7d0;
    }

.hero-contact-item span {
    display: block;
    color: #667085;
    font-size: 13px;
    margin-bottom: 4px;
}

.hero-contact-item strong {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
}

.contact-content {
    padding: 36px 0 90px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: start;
}

.contact-form-wrap,
.contact-info-card,
.map-card {
    background: #fff;
    border: 1px solid #e7edf6;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.contact-form-wrap {
    padding: 34px;
}

.section-title-wrap {
    margin-bottom: 28px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #edf4ff;
    border: 1px solid #dbe7ff;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title-wrap h2 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.section-title-wrap p {
    margin: 0;
    color: #475467;
    line-height: 1.8;
    font-size: 17px;
}

.contact-form {
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .form-group label {
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 700;
        color: #344054;
    }

.form-control-custom {
    width: 100%;
    min-height: 56px;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: #f8fafc;
    padding: 0 18px;
    font-size: 15px;
    color: #111827;
    outline: none;
    transition: .2s ease;
}

    .form-control-custom:focus {
        border-color: #9ec1ff;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(31,111,255,.08);
    }

.textarea-control {
    min-height: 160px;
    padding: 16px 18px;
    resize: vertical;
}

.error-text {
    min-height: 18px;
    margin-top: 6px;
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
}

.form-bottom {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.submit-btn {
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg,var(--primary),#4f8fff);
    color: #fff;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(31,111,255,.24);
    transition: .2s ease;
}

    .submit-btn:hover {
        transform: translateY(-2px);
    }

.form-result {
    font-size: 14px;
    font-weight: 700;
}

    .form-result.success {
        color: #059669
    }

    .form-result.error {
        color: #dc2626
    }

.contact-sidebar {
    display: grid;
    gap: 28px;
}

.contact-info-card,
.map-card {
    padding: 30px;
}

    .contact-info-card h3 {
        margin: 0 0 14px;
        font-size: 32px;
        line-height: 1.15;
        font-weight: 800;
    }

    .contact-info-card p {
        margin: 0 0 22px;
        color: #475467;
        line-height: 1.8;
        font-size: 16px;
    }

.info-list {
    display: grid;
    gap: 14px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e8eef7;
    border-radius: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    color: var(--primary-dark);
    border: 1px solid #dce7ff;
    flex: 0 0 auto;
    font-size: 20px;
}

.info-item small {
    display: block;
    color: #667085;
    font-size: 13px;
    margin-bottom: 4px;
}

.info-item strong {
    display: block;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
}

.social-box {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

    .social-box a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8fafc;
        border: 1px solid #dbe4f0;
        color: #111827;
    }

.map-card {
    min-height: 260px;
}

.map-placeholder {
    min-height: 200px;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(145deg,#eff4fb,#dfe8f6);
    border: 1px dashed #bfd0ea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 28px;
}

    .map-placeholder i {
        font-size: 34px;
        color: var(--primary-dark);
        margin-bottom: 12px;
    }

    .map-placeholder h4 {
        margin: 0 0 8px;
        font-size: 24px;
        font-weight: 800;
    }

    .map-placeholder p {
        margin: 0;
        color: #475467;
        line-height: 1.7;
        max-width: 280px;
    }

@media (max-width: 1199.98px) {
    .contact-hero-left h1 {
        font-size: 56px
    }

    .contact-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 991.98px) {
    .contact-hero-card {
        padding: 34px
    }

    .contact-hero-grid {
        grid-template-columns: 1fr
    }

    .hero-mini-info {
        grid-template-columns: 1fr
    }

    .contact-hero-right {
        justify-content: flex-start
    }

    .form-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding-top: 18px
    }

    .contact-hero-card {
        padding: 22px;
        border-radius: 22px
    }

    .contact-hero-left h1 {
        font-size: 38px;
        letter-spacing: -1px
    }

    .contact-hero-left p {
        font-size: 16px
    }

    .hero-contact-card,
    .contact-form-wrap,
    .contact-info-card,
    .map-card {
        padding: 22px;
        border-radius: 22px
    }

    .section-title-wrap h2 {
        font-size: 32px
    }

    .contact-info-card h3 {
        font-size: 28px
    }

    .submit-btn {
        width: 100%
    }
}

.facility-page {
    padding: 36px 0 90px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.facility-hero {
    background: linear-gradient(135deg, #0f1728 0%, #182236 40%, #223555 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
    padding: 54px 32px;
    margin-bottom: 24px;
}

    .facility-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(96,165,250,.18), transparent 24%), radial-gradient(circle at 82% 18%, rgba(255,255,255,.08), transparent 22%);
    }

.facility-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: #edf4ff;
    border: 1px solid #dbe7ff;
    color: #1557d6;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.facility-hero .section-badge {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
    color: #dbe7ff;
}

.facility-hero h1 {
    margin: 0 0 12px;
    font-size: 54px;
    line-height: 1.05;
    letter-spacing: -1.5px;
    font-weight: 800;
    color: #fff;
}

.facility-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 600;
}

.facility-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 24px;
}

.facility-info-card {
    background: #fff;
    border: 1px solid #e7edf6;
    border-radius: 26px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 60px rgba(16,24,40,.08);
}

.facility-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, #eff5ff, #dfeaff);
    color: #1557d6;
    border: 1px solid #d7e4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 26px;
}

.facility-info-card h3 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}

.facility-info-card p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.facility-text-wrap {
    margin-bottom: 34px;
}

.facility-text-card {
    background: #fff;
    border: 1px solid #e7edf6;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 20px 60px rgba(16,24,40,.08);
}

    .facility-text-card p {
        margin: 0 0 20px;
        font-size: 17px;
        line-height: 1.95;
        color: #475467;
    }

        .facility-text-card p:last-child {
            margin-bottom: 0;
        }

.facility-gallery-section {
    background: #fff;
    border: 1px solid #e7edf6;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 20px 60px rgba(16,24,40,.08);
}

.section-title-wrap.center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px;
}

.section-title-wrap h2 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -1.2px;
    font-weight: 800;
    color: #111827;
}

.section-title-wrap p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
    font-size: 16px;
}

.facility-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.facility-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: 0 12px 30px rgba(15,23,42,.08);
    transition: .25s ease;
}

    .facility-item:hover {
        transform: translateY(-4px);
    }

    .facility-item img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
    }

    .facility-item:hover img {
        transform: scale(1.04);
    }

    .facility-item span {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(15,23,42,.68);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        backdrop-filter: blur(8px);
    }

.facility-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(3, 10, 22, 0.86);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}

    .facility-lightbox.active {
        display: flex;
    }

    .facility-lightbox img {
        max-width: 100%;
        max-height: 88vh;
        border-radius: 18px;
        box-shadow: 0 24px 70px rgba(0,0,0,.24);
    }

.facility-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .facility-info-cards,
    .facility-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-hero h1 {
        font-size: 42px;
    }

    .section-title-wrap h2 {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .facility-page {
        padding: 22px 0 70px;
    }

    .container-wide {
        padding: 0 16px;
    }

    .facility-hero,
    .facility-text-card,
    .facility-gallery-section,
    .facility-info-card {
        border-radius: 22px;
    }

    .facility-hero {
        padding: 30px 18px;
    }

        .facility-hero h1 {
            font-size: 34px;
            letter-spacing: -1px;
        }

    .facility-info-cards,
    .facility-gallery {
        grid-template-columns: 1fr;
    }

    .facility-info-card {
        padding: 18px;
    }

        .facility-info-card h3 {
            font-size: 18px;
        }

    .facility-text-card,
    .facility-gallery-section {
        padding: 22px;
    }

        .facility-text-card p {
            font-size: 16px;
        }

    .section-title-wrap h2 {
        font-size: 28px;
    }

    .facility-item img {
        height: 220px;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #eef2f7;
    color: #111827;
}

a {
    text-decoration: none;
    color: inherit;
}

.architectural-page {
    padding: 0 0 90px;
}

.container-narrow {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.architectural-top {
    background: linear-gradient(135deg, #0f1728 0%, #182236 38%, #223555 100%);
    padding: 46px 0 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

    .architectural-top h1 {
        margin: 0 0 10px;
        color: #fff;
        font-size: 52px;
        line-height: 1.05;
        font-weight: 800;
        letter-spacing: -1px;
    }

.architectural-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 500;
}

.architectural-content {
    padding-top: 42px;
}

.architectural-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: #f8fafc;
    border: 1px solid #e5eaf2;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    opacity: 0;
    transform: translateY(24px);
    transition: all .7s ease;
}

    .architectural-row.active {
        opacity: 1;
        transform: translateY(0);
    }

    .architectural-row.reverse .architectural-image {
        order: 2;
    }

    .architectural-row.reverse .architectural-text {
        order: 1;
    }

.architectural-image {
    position: relative;
    overflow: hidden;
}

    .architectural-image img {
        width: 100%;
        height: 100%;
        min-height: 360px;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
    }

.architectural-row:hover .architectural-image img {
    transform: scale(1.03);
}

.architectural-text {
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafc;
}

    .architectural-text h2 {
        margin: 0 0 20px;
        font-size: 22px;
        line-height: 1.25;
        font-weight: 800;
        color: #0f172a;
        text-transform: uppercase;
        letter-spacing: -0.3px;
    }

    .architectural-text p {
        margin: 0 0 26px;
        font-size: 16px;
        line-height: 1.9;
        color: #475467;
    }

.architectural-link {
    color: #1f6fff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    transition: .2s ease;
}

    .architectural-link:hover {
        color: #1557d6;
        transform: translateX(2px);
    }

.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: all .7s ease;
}

    .reveal-item.active {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 991.98px) {
    .architectural-top h1 {
        font-size: 42px;
    }

    .architectural-row {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

        .architectural-row.reverse .architectural-image,
        .architectural-row.reverse .architectural-text {
            order: unset;
        }

    .architectural-image img {
        min-height: 280px;
    }

    .architectural-text {
        padding: 28px 24px;
    }
}

@media (max-width: 767.98px) {
    .architectural-page {
        padding-bottom: 70px;
    }

    .container-narrow {
        padding: 0 16px;
    }

    .architectural-top {
        padding: 34px 0 28px;
    }

        .architectural-top h1 {
            font-size: 32px;
            letter-spacing: -0.5px;
        }

    .architectural-breadcrumb {
        font-size: 13px;
    }

    .architectural-content {
        padding-top: 28px;
    }

    .architectural-row {
        border-radius: 18px;
        margin-bottom: 16px;
    }

    .architectural-image img {
        min-height: 220px;
    }

    .architectural-text {
        padding: 22px 18px;
    }

        .architectural-text h2 {
            font-size: 20px;
            margin-bottom: 14px;
        }

        .architectural-text p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 18px;
        }

    .architectural-link {
        font-size: 14px;
    }
}

.product-detail-page {
    background: #fff;
    min-height: 70vh;
}

.product-detail-hero {
    background: linear-gradient(135deg, #0f1728 0%, #182236 38%, #223555 100%);
    padding: 46px 0 40px;
    text-align: center;
}

    .product-detail-hero h1 {
        margin: 0 0 10px;
        color: #fff;
        font-size: 46px;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -1px;
    }

.product-detail-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 600;
}

    .product-detail-breadcrumb a {
        color: rgba(255,255,255,.9);
        text-decoration: none;
    }

.product-detail-content {
    padding: 58px 0 90px;
}

.product-detail-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.product-detail-title {
    margin-bottom: 28px;
}

    .product-detail-title h2 {
        margin: 8px 0 12px;
        font-size: 34px;
        font-weight: 800;
        color: #111827;
        letter-spacing: -0.8px;
    }

    .product-detail-title p {
        margin: 0 auto;
        max-width: 620px;
        color: #667085;
        font-size: 16px;
        line-height: 1.8;
    }

.product-file-card {
    width: 320px;
    height: 320px;
    margin: 0 auto;
    background: linear-gradient(145deg, #2fac66, #20a95a);
    color: #fff;
    border-radius: 0;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: .25s ease;
    box-shadow: 0 22px 50px rgba(16, 185, 129, .22);
}

    .product-file-card:hover {
        transform: translateY(-5px);
        color: #fff;
        box-shadow: 0 26px 70px rgba(16, 185, 129, .28);
    }

.product-file-top {
    text-align: left;
}

    .product-file-top span {
        display: block;
        font-size: 18px;
        line-height: 1.35;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .product-file-top strong {
        display: block;
        font-size: 25px;
        line-height: 1.2;
        font-weight: 800;
    }

.product-file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
}

    .product-file-icon i {
        font-size: 74px;
        line-height: 1;
    }

.product-no-file {
    max-width: 520px;
    margin: 0 auto;
    background: #f8fafc;
    border: 1px dashed #dbe4f0;
    border-radius: 24px;
    padding: 44px 24px;
}

    .product-no-file i {
        font-size: 46px;
        color: #1f6fff;
        margin-bottom: 12px;
    }

    .product-no-file h3 {
        margin: 0 0 8px;
        font-size: 24px;
        font-weight: 800;
        color: #111827;
    }

    .product-no-file p {
        margin: 0;
        color: #667085;
    }

@media (max-width: 767.98px) {
    .product-detail-hero h1 {
        font-size: 32px;
    }

    .product-detail-content {
        padding: 36px 0 70px;
    }

    .product-detail-title h2 {
        font-size: 26px;
    }

    .product-file-card {
        width: 100%;
        max-width: 320px;
        height: 300px;
    }
}

.download-btn.disabled,
.small-link.disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}