/* ============================================================
   TECOHANOI,JSC  –  style.css
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
    --navy: #0d2063;
    --steel: #1A3A8F;
    --red: #CC1F1F;
    --red2: #a01818;
    --light: #f5f7fa;
    --mid: #dde3ec;
    --white: #ffffff;
    --text: #1a2636;
    --muted: #6b7f96;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR ──────────────────────────────────────────────────── */
.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, .7);
    font-size: 11.5px;
    padding: 7px 0;
    letter-spacing: .3px;
}

.topbar .inner {
    max-width: 1240px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.topbar a {
    color: #ffaaaa;
    text-decoration: none;
    transition: color .2s;
}

.topbar a:hover {
    color: #fff;
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
nav:not(.breadcrumb) {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 3px solid var(--red);
    box-shadow: 0 2px 16px rgba(13, 32, 99, .1);
}

.nav-inner {
    max-width: 1240px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.logo-text strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-text span {
    font-size: 9.5px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: stretch;
}

.nav-links > li {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 15px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .4px;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--red2);
    border-bottom-color: var(--red);
}

.caret {
    font-size: 8px;
    transition: transform .2s;
    line-height: 1;
}

.nav-links > li:hover > a .caret {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    background: var(--white);
    border: 1px solid var(--mid);
    border-top: 3px solid var(--red);
    border-radius: 0 0 10px 10px;
    min-width: 268px;
    box-shadow: 0 12px 32px rgba(13, 32, 99, .13);
    padding: 6px 0;
}

.nav-links > li:hover .nav-drop {
    display: block;
}

.nav-drop a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background .15s, color .15s, border-color .15s;
}

.nav-drop a::before {
    content: '→';
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    transition: opacity .15s;
    width: 12px;
    flex-shrink: 0;
}

.nav-drop a:hover {
    background: #fff0f0;
    color: var(--red2);
    border-left-color: var(--red);
}

.nav-drop a:hover::before {
    opacity: 1;
}

/* CTA button */
.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    border-radius: 4px;
    padding: 9px 20px !important;
    font-weight: 700 !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    transition: background .2s !important;
}

.nav-cta:hover {
    background: var(--red2) !important;
}

/* Hamburger button */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    cursor: pointer;
    gap: 5px;
    padding: 6px;
    border-radius: 6px;
    transition: background .2s;
}

.nav-burger:hover {
    background: var(--light);
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .3s, opacity .3s, width .3s;
    transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE OVERLAY ──────────────────────────────────────────── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 32, 99, .45);
    z-index: 1100;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .3s;
}

.mobile-overlay.open {
    display: block;
    opacity: 1;
}

/* ── MOBILE DRAWER ───────────────────────────────────────────── */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    bottom: 0;
    width: 300px;
    max-width: 90vw;
    background: var(--white);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(13, 32, 99, .18);
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

.mobile-drawer.open {
    right: 0;
}

/* Drawer header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--mid);
    background: var(--navy);
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-logo img {
    height: 40px;
}

.drawer-logo strong {
    font-size: 14px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .5px;
}

.drawer-logo span {
    display: block;
    font-size: 8.5px;
    color: rgba(255, 255, 255, .45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.drawer-close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    background: none;
    cursor: pointer;
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.drawer-close:hover {
    background: rgba(255, 255, 255, .1);
}

/* Drawer contact strip */
.drawer-contact {
    background: var(--red);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.drawer-contact a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Drawer nav */
.drawer-nav {
    flex: 1;
    padding: 10px 0;
}

.drawer-item {
    border-bottom: 1px solid var(--light);
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .15s, color .15s;
}

.drawer-link:hover, .drawer-link.active {
    background: #fff0f0;
    color: var(--red);
}

.drawer-link.cta-link {
    background: var(--red);
    color: var(--white) !important;
    margin: 12px 16px;
    border-radius: 6px;
    justify-content: center;
}

.drawer-link.cta-link:hover {
    background: var(--red2) !important;
}

.drawer-toggle {
    font-size: 10px;
    transition: transform .3s;
}

.drawer-toggle.open {
    transform: rotate(180deg);
}

/* Dropdown in drawer */
.drawer-sub {
    display: none;
    background: var(--light);
    border-top: 1px solid var(--mid);
}

.drawer-sub.open {
    display: block;
}

.drawer-sub a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px 11px 32px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all .15s;
}

.drawer-sub a::before {
    content: '→';
    color: var(--red);
    font-size: 10px;
    opacity: 0;
    transition: opacity .15s;
}

.drawer-sub a:hover {
    background: #fff0f0;
    color: var(--red2);
    border-left-color: var(--red);
}

.drawer-sub a:hover::before {
    opacity: 1;
}

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 300px;
    height: 300px;
    background: var(--red);
    border-radius: 50%;
    opacity: .08;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, .3);
}

.page-hero h1 {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
}

.page-hero p {
    color: rgba(255, 255, 255, .65);
    font-size: 14.5px;
    line-height: 1.75;
    max-width: 700px;
}

/* ── SIDEBAR LAYOUT ──────────────────────────────────────────── */
.sidebar-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

.sidebar {
    background: var(--light);
    border-radius: 8px;
    padding: 22px;
    border: 1px solid var(--mid);
    position: sticky;
    top: 90px;
}

.sidebar h4 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    border-radius: 4px;
    border-left: 2px solid transparent;
    transition: all .15s;
}

.sidebar ul li a:hover, .sidebar ul li a.active {
    background: var(--white);
    border-left-color: var(--red);
    color: var(--red2);
    font-weight: 600;
}

/* ── INFO BOX ────────────────────────────────────────────────── */
.info-box {
    background: var(--light);
    border-left: 4px solid var(--red);
    padding: 18px 22px;
    border-radius: 0 6px 6px 0;
    margin: 20px 0;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
}

.info-box strong {
    color: var(--navy);
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 800;
}

/* ── PAGE CARDS ──────────────────────────────────────────────── */
.pg-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

.pg-card {
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: 8px;
    padding: 26px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.pg-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.pg-card:hover {
    box-shadow: 0 8px 28px rgba(13, 32, 99, .1);
    transform: translateY(-3px);
    border-color: transparent;
}

.pg-card:hover::after {
    transform: scaleX(1);
}

.pg-card-icon {
    font-size: 26px;
    margin-bottom: 12px;
}

.pg-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.pg-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.7;
}

.pg-tag {
    display: inline-block;
    background: #fff0f0;
    color: var(--red);
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 2px;
    margin-top: 10px;
}

/* ── DOC CHIPS ───────────────────────────────────────────────── */
.doc-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
    margin-bottom: 22px;
}

.dchip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: 4px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: all .2s;
}

.dchip:hover {
    border-color: var(--red);
    color: var(--red);
    background: #fff0f0;
}

.dchip.red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.dchip.red:hover {
    background: var(--red2);
}

/* ── TABLE ───────────────────────────────────────────────────── */
.pg-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--mid);
    border-radius: 8px;
    overflow: hidden;
}

.pg-table thead tr {
    background: var(--navy);
}

.pg-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .8);
    /*text-transform: uppercase;*/
    white-space: nowrap;
}

.pg-table tbody tr {
    border-bottom: 1px solid var(--mid);
    transition: background .15s;
}

.pg-table tbody tr:hover {
    background: var(--light);
}

.pg-table tbody td {
    padding: 12px 16px;
    font-size: 13px;
}

.pg-table tbody td:first-child {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}
.pg-table tbody td:nth-child(2){
    white-space: nowrap;
}

.pg-badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 12px;
    font-size: 10.5px;
    font-weight: 700;
}

.pg-badge-on {
    background: #e6f9f0;
    color: #1a8a4a;
}

.pg-badge-field {
    background: #fff0f0;
    color: var(--red2);
}

/* ── STEP FLOW ───────────────────────────────────────────────── */
.step-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin: 28px 0;
}

.step-flow::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--red);
    opacity: .25;
}

.step-item {
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 12px;
    box-shadow: 0 4px 14px rgba(204, 31, 31, .3);
}

.step-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 5px;
}

.step-desc {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.55;
}

/* ── HERO (index) ────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--navy) 55%, var(--steel) 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255, 255, 255, .025) 80px), repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255, 255, 255, .025) 80px);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    max-width: 1240px;
    margin: auto;
    padding: 80px 24px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(204, 31, 31, .18);
    border: 1px solid rgba(204, 31, 31, .45);
    color: #ff8888;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: #ff8888;
}

.hero p {
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, .4);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: var(--red);
    color: #ff9999;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 36px;
    font-weight: 900;
    color: #ff8888;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 36px;
    width: 100%;
    max-width: 420px;
    animation: float 6s ease-in-out infinite;
}

.hero-card h3 {
    color: #ff9999;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .82);
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '◆';
    color: var(--red);
    font-size: 8px;
    flex-shrink: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ── SHARED SECTIONS ─────────────────────────────────────────── */
section {
    padding: 80px 0;
}

.container {
    max-width: 1240px;
    margin: auto;
    padding: 0 24px;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red2);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 600px;
}

.section-header {
    margin-bottom: 52px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-sub {
    margin: auto;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-img-main {
    background: linear-gradient(135deg, var(--steel), var(--navy));
    border-radius: 12px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-img-main::before {
    content: '⚗';
    font-size: 120px;
    opacity: .06;
    position: absolute;
}

.about-img-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 32px;
}

.about-img-inner .big {
    font-size: 64px;
    margin-bottom: 12px;
}

.about-img-inner p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.65;
}

.cert-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red);
    color: var(--white);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(204, 31, 31, .45);
    font-weight: 900;
    font-size: 13px;
}

.cert-badge span {
    display: block;
    font-size: 28px;
    font-weight: 900;
}

.about-points {
    list-style: none;
    margin: 28px 0 36px;
}

.about-points li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.point-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.point-body strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.point-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.docs-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.doc-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: all .2s;
}

.doc-chip:hover {
    border-color: var(--red);
    color: var(--red2);
    transform: translateY(-1px);
}

/* ── CAPABILITY ──────────────────────────────────────────────── */
.capability {
    background: var(--white);
}

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

.cap-card {
    border: 1px solid var(--mid);
    border-radius: 12px;
    padding: 32px 28px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.cap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.cap-card:hover {
    box-shadow: 0 12px 40px rgba(13, 32, 99, .12);
    transform: translateY(-4px);
    border-color: transparent;
}

.cap-card:hover::before {
    transform: scaleX(1);
}

.cap-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--steel));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.cap-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.cap-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.cap-details {
    margin-top: 16px;
    list-style: none;
}

.cap-details li {
    font-size: 12px;
    padding: 5px 0;
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cap-details li:last-child {
    border-bottom: none;
}

.cap-details li::before {
    content: '—';
    color: var(--red);
    font-weight: 700;
}

/* ── SERVICES ────────────────────────────────────────────────── */
.services {
    background: var(--navy);
}

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

.services .section-label {
    color: #ff9999;
}

.services .section-sub {
    color: rgba(255, 255, 255, .6);
}

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

.svc-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all .3s;
}

.svc-card:hover {
    background: rgba(204, 31, 31, .1);
    border-color: rgba(204, 31, 31, .4);
    transform: translateY(-4px);
}

.svc-num {
    font-size: 48px;
    font-weight: 900;
    color: rgba(204, 31, 31, .25);
    font-family: 'Noto Serif', serif;
    line-height: 1;
    margin-bottom: 16px;
}

.svc-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.svc-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff9999;
    font-size: 13px;
    font-weight: 700;
    margin-top: 20px;
    text-decoration: none;
    transition: gap .2s;
}

.svc-link:hover {
    gap: 10px;
}

/* ── LABS TABLE ──────────────────────────────────────────────── */
.labs {
    background: var(--light);
}

.labs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13, 32, 99, .08);
}

.labs-table thead tr {
    background: var(--navy);
}

.labs-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffaaaa;
    text-transform: uppercase;
    white-space: nowrap;
}

.labs-table tbody tr {
    border-bottom: 1px solid var(--mid);
    transition: background .2s;
}

.labs-table tbody tr:hover {
    background: rgba(13, 32, 99, .03);
}

.labs-table tbody td {
    padding: 15px 20px;
    font-size: 13.5px;
}

.labs-table tbody td:first-child {
    font-weight: 700;
    color: var(--navy);
}

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.status-active {
    background: #e6f9f0;
    color: #1a8a4a;
}

.status-field {
    background: #fef0f0;
    color: var(--red2);
}

/* ── RESOURCES ───────────────────────────────────────────────── */
.resources {
    background: var(--white);
}

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

.res-card {
    border: 1px solid var(--mid);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all .2s;
}

.res-card:hover {
    border-color: var(--red);
    box-shadow: 0 6px 24px rgba(204, 31, 31, .12);
}

.res-type {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.res-icon {
    font-size: 32px;
}

.res-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
}

.res-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
}

.res-dl {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--red2);
    text-decoration: none;
    border-top: 1px solid var(--mid);
    padding-top: 14px;
    transition: color .2s;
}

.res-dl:hover {
    color: var(--navy);
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 28px;
}

.contact-items {
    list-style: none;
}

.contact-items li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail span, .contact-detail a {
    font-size: 14.5px;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--red2);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--navy), var(--steel));
    border-radius: 12px;
    height: 200px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder span {
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.map-placeholder::before {
    content: '🗺';
    font-size: 80px;
    position: absolute;
    opacity: .07;
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(13, 32, 99, .1);
}

.contact-form h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .5px;
    margin-bottom: 7px;
    text-transform: uppercase;
}

input, select, textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--mid);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    background: var(--light);
    transition: border-color .2s;
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--red);
    background: var(--white);
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .55);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand img {
    height: 56px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand .logo-text strong {
    color: var(--white);
    font-size: 16px;
}

.footer-brand .logo-text span {
    color: rgba(255, 255, 255, .4);
}

.footer-brand p {
    margin-top: 14px;
    font-size: 12.5px;
    line-height: 1.8;
    max-width: 280px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: #ffaaaa;
}

.footer-bottom {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-bottom a {
    color: #ffaaaa;
    text-decoration: none;
}

/* ── ORG CHART WRAPPER ───────────────────────────────────────── */
.org-chart {
    background: var(--light);
    border: 1px solid var(--mid);
    border-radius: 8px;
    padding: 28px;
    overflow-x: auto;
    margin: 20px 0;
}

/* ── SCROLL ANIMATION ────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

.about-img.fade-up {
    position: relative;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hero-content, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .cap-grid, .svc-grid, .res-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sidebar-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .pg-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .step-flow {
        grid-template-columns: 1fr 1fr;
    }

    .step-flow::before {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show burger */
    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    /* Stack topbar */
    .topbar .inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .topbar .inner span:nth-child(1) {
        display: none
    }
}

@media (max-width: 600px) {
    .cap-grid, .svc-grid, .res-grid {
        grid-template-columns: 1fr;
    }

    .pg-grid-3, .pg-grid-2 {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .step-flow {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 28px;
    }

    .page-hero {
        padding: 36px 0;
    }
}
