:root {
    --navy: #0a1830;
    --navy-deep: #060f22;
    --grid-line: rgba(0, 122, 255, 0.16);
    --grid-line-strong: rgba(90, 160, 255, 0.35);
    --blue: #0057ff;
    --blue-light: #4f8bff;
    --red: #ff1e3c;
    --red-light: #ff5c6e;
    --paper: #f5f7fb;
    --paper-dim: #e7ebf2;
    --ink: #10182b;
    --steel: #5b6b82;
    --steel-light: #93a2ba;
}

/* Breadcrumb */

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}

/* ============ Blueprint grid backgrounds ============ */
.blueprint-bg {
    background-color: var(--navy);
    background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 42px 42px;
    position: relative;
}

.blueprint-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 15%, rgba(255, 30, 60, 0.14), transparent 55%),
        radial-gradient(ellipse at 85% 85%, rgba(0, 87, 255, 0.18), transparent 55%);
    pointer-events: none;
}

/* ============ Corner bracket / nameplate frame ============ */
.plate {
    position: relative;
    border: 1px solid var(--grid-line-strong);
    padding: 26px 28px;
}
.plate::before,
.plate::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--red);
    border-style: solid;
}
.plate::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}
.plate::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.plate-light {
    border: 1px solid #dbe0ea;
    background: #fff;
}
.plate-light::before,
.plate-light::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--blue);
    border-style: solid;
}
.plate-light::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}
.plate-light::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

/* ============ Top bar ============ */
.topbar {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand i {
    color: var(--red);
}
.brand span {
    color: var(--blue-light);
}
.topbar .cta-link {
    color: #fff;
    background: var(--red);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============ Hero / Our Story ============ */
.hero {
    padding: 80px 0;
}
.hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.eyebrow {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-light);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}
.eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--red);
}
.hero h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 560px;
}
.hero p {
    color: #c7cfe0;
    font-size: 1rem;
    max-width: 540px;
    margin-bottom: 16px;
}

.hero-media {
    position: relative;
}
.hero-media .frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--grid-line-strong);
}
.hero-media img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
}
.hero-media .frame::before,
.hero-media .frame::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--red);
    border-style: solid;
    z-index: 2;
}
.hero-media .frame::before {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}
.hero-media .frame::after {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

.hero-badge {
    position: absolute;
    left: -22px;
    bottom: -26px;
    background: var(--blue);
    color: #fff;
    padding: 20px 26px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0, 87, 255, 0.35);
    z-index: 3;
}
.hero-badge .big-num {
    font-family: "IBM Plex Mono", monospace;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}
.hero-badge .cap {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 6px;
}

/* ============ Stats strip ============ */
.stats-strip {
    background: var(--navy-deep);
    padding: 0 0 70px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.stat-plate {
    color: #fff;
    padding: 30px 24px;
    text-align: center;
}
.stat-plate i {
    font-size: 1.4rem;
    color: var(--red-light);
    margin-bottom: 12px;
}
.stat-plate .num {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
}
.stat-plate .label {
    margin-top: 8px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #a9b4c8;
    text-transform: uppercase;
}
/* ===== Locations / Global Footprint Section ===== */

.locations {
    padding: 90px 0;
    background: #ffffff;
}

.locations .section-head {
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
}

.eyebrow-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #0057ff;
    background: #e6efff;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-head h2 {
    font-size: 32px;
    line-height: 1.2;
    color: #0a1f44;
    margin: 0;
}

/* Grid */
.loc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 45px;
}

/* Card */
.loc-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.loc-card.plate-light {
    border: 1px solid #eef1f7;
}

.loc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0, 87, 255, 0.16);
}

.loc-card .photo {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #f2f4f8;
}

.loc-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.loc-card:hover .photo img {
    transform: scale(1.08);
}

.loc-card .body {
    padding: 24px 24px 28px;
}

.loc-card .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0057ff;
    background: #e6efff;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.loc-card h3 {
    margin: 0 0 6px;
    font-size: 21px;
    color: #0a1f44;
}

.loc-card .body p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* CTA button */
.explore-btn-wrap {
    text-align: center;
}

.btn-brass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0057ff;
    color: #fff;
    padding: 15px 34px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.15s ease;
}

.btn-brass i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.btn-brass:hover {
    background: #0041c4;
    transform: translateY(-2px);
}

.btn-brass:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 960px) {
    .loc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .locations {
        padding: 60px 0;
    }

    .loc-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-head h2 {
        font-size: 26px;
    }
}

.explore-btn-wrap {
    text-align: center;
    margin-top: 50px;
}
.btn-brass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 15px 32px;
    border: none;
    transition: all 0.3s ease;
}
.btn-brass:hover {
    background: var(--blue);
    color: #fff;
}

/* ============ Director's message ============ */
.director {
    background: var(--navy);
    padding: 90px 0;
    position: relative;
    color: #fff;
}
.director .wrap {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    gap: 60px;
    align-items: center;
}
.director-card {
    text-align: center;
}
.director-photo {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 18px;
    border: 1px solid var(--grid-line-strong);
    position: relative;
}
.director-photo::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--red);
    border-width: 2px 0 0 2px;
}
.director-photo::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--red);
    border-width: 0 2px 2px 0;
}
.director-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.director-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}
.director-card p {
    font-size: 0.82rem;
    color: var(--steel-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}
.quote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 28px;
    position: relative;
    padding-left: 26px;
    border-left: 3px solid var(--red);
}
.quote i {
    color: var(--red-light);
    margin-right: 8px;
}
.director .wrap p.body-text {
    color: #c3cbda;
    font-size: 0.98rem;
    margin-bottom: 14px;
    max-width: 640px;
}

/* ============ Why choose ============ */
.why {
    padding: 90px 0;
    background: var(--paper);
}
.why .wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}
.why p {
    color: var(--steel);
    font-size: 1rem;
    max-width: 520px;
}
.why-list {
    display: grid;
    gap: 14px;
}
.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 20px;
    background: #fff;
    border-left: 3px solid var(--blue);
}
.why-item .icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.why-item div strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.02rem;
    margin-bottom: 3px;
}
.why-item div span {
    color: var(--steel);
    font-size: 0.88rem;
}

/* ============ Products ============ */
.products {
    padding: 90px 0;
    background: var(--navy-deep);
    color: #fff;
}
.products .section-head h2 {
    color: #fff;
}
.products .section-head .eyebrow-dark {
    color: var(--red-light);
}
.products .section-head .eyebrow-dark::before {
    background: var(--red-light);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.product-cell {
    background: var(--navy-deep);
    padding: 34px 28px;
    transition: background 0.3s ease;
}
.product-cell:hover {
    background: #0d2040;
}
.product-cell i {
    color: var(--blue-light);
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: block;
}
.product-cell .code {
    font-family: "IBM Plex Mono", monospace;
    color: var(--red-light);
    font-size: 0.78rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.product-cell h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: #fff;
}

/* ============ Mission & Vision ============ */
.mv {
    padding: 90px 0;
    background: var(--paper);
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}
.mv-card {
    background: #fff;
    padding: 42px 36px;
}
.mv-card i {
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.mv-card:nth-child(1) i {
    color: var(--red);
}
.mv-card:nth-child(2) i {
    color: var(--blue);
}
.mv-card .mono {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.mv-card:nth-child(1) .mono {
    color: var(--red);
}
.mv-card:nth-child(2) .mono {
    color: var(--blue);
}
.mv-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.mv-card p {
    color: var(--steel);
    font-size: 0.96rem;
}

/* ============ Final CTA ============ */
.cta-final {
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
}
.cta-final .mono {
    font-size: 0.78rem;
    letter-spacing: 3px;
    color: var(--red-light);
    text-transform: uppercase;
}
.cta-final h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 18px 0 14px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.cta-final p {
    color: #c3cbda;
    max-width: 520px;
    margin: 0 auto 34px;
}
.tagline-seal {
    padding: 34px 0 46px;
    text-align: center;
    background: var(--navy-deep);
}
.tagline-seal p {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.5px;
}
.tagline-seal p .red {
    color: var(--red-light);
}
.tagline-seal p .blue {
    color: var(--blue-light);
}
.tagline-seal p span.tag2 {
    color: #93a2ba;
    font-weight: 400;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
    .wrap {
        padding: 0 24px;
    }
    .hero .wrap {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-badge {
        left: 10px;
        bottom: -20px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .loc-grid {
        grid-template-columns: 1fr;
    }
    .director .wrap {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .director-card {
        text-align: left;
    }
    .director-photo {
        margin: 0 0 16px;
        max-width: 160px;
    }
    .why .wrap {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .topbar .cta-link span.txt {
        display: none;
    }
}