
/* Remove container bottom margin; keep footer a small breathing gap */
body > .container { margin-bottom: 0 !important; }
footer { margin-top: 1.5rem !important; }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hp-hero, .hp-why, .hp-depts, .hp-cta {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}
.hp-hero {
    position: relative;
    height: 640px;
    margin-top: -2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hp-hero-slides { position: absolute; inset: 0; z-index: 0; background: #001a4d; }
.hp-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hp-slide.active { opacity: 1; }
.hp-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(0,10,40,.88) 0%,
        rgba(0,35,90,.65) 55%,
        rgba(0,10,40,.52) 100%
    );
}
.hp-hero-content {
    position: relative; z-index: 2;
    max-width: 1100px; margin: 0 auto;
    padding: 0 2rem 4rem;
    width: 100%; box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3.5rem;
    align-items: flex-end;
}
/* eyebrow with leading line */
.hp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .22em;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}
.hp-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: rgba(255,255,255,.45);
}
.hp-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1.1rem;
    letter-spacing: .02em;
}
.hp-hero-sub {
    font-size: .94rem;
    line-height: 1.95;
    color: rgba(255,255,255,.72);
    margin-bottom: 2.2rem;
    font-weight: 300;
}
.hp-hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.hp-btn-primary {
    display: inline-block; padding: .78rem 2rem;
    background: var(--color-accent); color: #fff;
    font-weight: 500; font-size: .88rem;
    letter-spacing: .08em;
    text-decoration: none; border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,91,172,.4);
    transition: background .25s, transform .25s, box-shadow .25s;
}
.hp-btn-primary:hover { background: #3a7fd4; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,91,172,.45); color: #fff; text-decoration: none; }
.hp-btn-ghost {
    display: inline-block; padding: .76rem 2rem;
    border: 1.5px solid rgba(255,255,255,.4); color: rgba(255,255,255,.85);
    font-weight: 500; font-size: .88rem; letter-spacing: .08em;
    text-decoration: none; border-radius: 2px;
    transition: border-color .25s, background .25s, transform .25s;
}
.hp-btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; transform: translateY(-2px); text-decoration: none; }

/* STATS (desktop glass panel) */
.hp-stats-d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.hp-stats-d .hp-stat {
    background: rgba(0,0,0,.32);
    backdrop-filter: blur(12px);
    padding: 1.6rem 1rem;
    text-align: center;
    transition: background .3s;
}
.hp-stats-d .hp-stat:hover { background: rgba(0,91,172,.22); }
.hp-stat-num {
    display: inline;
    font-family: var(--font-serif);
    font-size: 2.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}
.hp-stat-unit {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #7ab8ff;
}
.hp-stat-label {
    display: block;
    font-size: .73rem;
    color: rgba(255,255,255,.58);
    line-height: 1.5;
    margin-top: .4rem;
    font-weight: 300;
    letter-spacing: .06em;
}
.hp-stat-label em { display: block; font-style: normal; font-size: .67rem; opacity: .72; }

/* slide controls */
.hp-slide-controls {
    position: absolute; bottom: 1.2rem; right: 2rem; z-index: 3;
    display: flex; align-items: center; gap: .5rem;
}
.hp-slide-btn {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(0,0,0,.32); color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.hp-slide-btn:hover { background: rgba(0,91,172,.6); border-color: transparent; }
.hp-dots { display: flex; gap: 5px; }
.hp-dot {
    width: 6px; height: 6px; border-radius: 50%;
    border: none; padding: 0; cursor: pointer;
    background: rgba(255,255,255,.3);
    transition: background .2s, transform .2s;
}
.hp-dot.active { background: #fff; transform: scale(1.4); }

/* ──────────────────────────────────────────
   STATS MOBILE (separate section, no border)
────────────────────────────────────────── */
.hp-stats-m {
    display: none;
    background: #0d1526;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}
.hp-stats-m-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    gap: 0;
}
.hp-stats-m .hp-stat {
    padding: 1.8rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.07);
    position: relative;
}
.hp-stats-m .hp-stat:last-child { border-right: none; }
.hp-stats-m .hp-stat-num { font-size: 2rem; }
.hp-stats-m .hp-stat-unit { font-size: 1.1rem; }
.hp-stats-m .hp-stat-label { color: rgba(255,255,255,.52); }

/* ──────────────────────────────────────────
   INTRO (eyebrow + title + text, two-col)
────────────────────────────────────────── */
.hp-intro { padding: 5rem 0; }
.hp-intro {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}
.hp-intro-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 5rem;
    align-items: start;
}
.hp-intro-body p {
    color: #3a3a5c;
    line-height: 2;
    margin-bottom: 1rem;
    font-size: .95rem;
    font-weight: 300;
}

/* ──────────────────────────────────────────
   SECTION LABELS (shared)
────────────────────────────────────────── */
.hp-eyebrow-s {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .2em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hp-eyebrow-s::before {
    content: '';
    width: 22px; height: 1px;
    background: var(--color-accent);
}
.hp-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.35;
    margin-bottom: .5rem;
    letter-spacing: .02em;
}
.hp-section-desc {
    font-size: .92rem;
    line-height: 1.9;
    color: #3a3a5c;
    font-weight: 300;
    margin-top: .5rem;
}
.hp-section-head { text-align: center; margin-bottom: 3rem; }
.hp-link-arrow {
    display: inline-flex; align-items: center; gap: .4rem;
    color: var(--color-accent); font-weight: 500; font-size: .86rem;
    text-decoration: none; letter-spacing: .04em;
}
.hp-link-arrow:hover { text-decoration: underline; }

/* ──────────────────────────────────────────
   WHY SECTION
────────────────────────────────────────── */
/* ══════════════════════════════════════
   WHY  (horizontal fan layout)
══════════════════════════════════════ */
.hp-why { background: #eef2f7; padding: 4.2rem 0; }
.hp-why-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.hp-why-header { text-align: center; margin-bottom: 3.5rem; }
.hp-why-deck-wrap { display: flex; flex-direction: column; align-items: center; }

/* stage: clips the horizontal fan overflow at section edges */
.hp-why-stage {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* tall enough for card height + arc drop */
    padding-bottom: 3.2rem;
}

/* disable text selection across the whole fan deck */
.hp-why-stage, .hp-why-controls {
    user-select: none;
    -webkit-user-select: none;
}

/* centered reference point for the fan */
.hp-why-stack {
    position: relative;
    width: min(420px, 78vw);
    height: clamp(235px, 31vh, 305px);
    margin: 0 auto;
}

/* ── base card ── */
.hp-why-scard {
    position: absolute; inset: 0;
    background: #fff;
    border-radius: 18px;
    padding: 2.3rem 2.5rem;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    /* default: off-screen hidden — JS will set a pos-* class immediately */
    transform: translateY(60px) scale(0.6);
    opacity: 0;
    pointer-events: none;
    transition:
        transform  0.58s cubic-bezier(0.34, 1.08, 0.64, 1),
        opacity    0.42s ease,
        filter     0.42s ease,
        box-shadow 0.42s ease;
    will-change: transform, opacity;
}

/* ── fan positions ── */
.hp-why-scard.pos-0 {
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
    opacity: 1; filter: none; z-index: 10; pointer-events: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    cursor: default;
}
.hp-why-scard.pos-p1 {
    transform: translateX(168px) translateY(24px) rotate(9deg) scale(0.83);
    opacity: 0.88; filter: brightness(0.76); z-index: 8; pointer-events: auto; cursor: pointer;
}
.hp-why-scard.pos-p2 {
    transform: translateX(300px) translateY(70px) rotate(17deg) scale(0.68);
    opacity: 0.65; filter: brightness(0.60); z-index: 7; pointer-events: auto; cursor: pointer;
}
.hp-why-scard.pos-n1 {
    transform: translateX(-168px) translateY(24px) rotate(-9deg) scale(0.83);
    opacity: 0.88; filter: brightness(0.76); z-index: 8; pointer-events: auto; cursor: pointer;
}
.hp-why-scard.pos-n2 {
    transform: translateX(-300px) translateY(70px) rotate(-17deg) scale(0.68);
    opacity: 0.65; filter: brightness(0.60); z-index: 7; pointer-events: auto; cursor: pointer;
}
/* off-screen (> 2 away from active) */
.hp-why-scard.pos-hr {
    transform: translateX(460px) translateY(80px) rotate(22deg) scale(0.55);
    opacity: 0; pointer-events: none; z-index: 1;
}
.hp-why-scard.pos-hl {
    transform: translateX(-460px) translateY(80px) rotate(-22deg) scale(0.55);
    opacity: 0; pointer-events: none; z-index: 1;
}

/* hover lift on side cards */
.hp-why-scard.pos-p1:hover { transform: translateX(160px) translateY(17px) rotate(7deg) scale(0.86); filter: brightness(0.86); }
.hp-why-scard.pos-n1:hover { transform: translateX(-160px) translateY(17px) rotate(-7deg) scale(0.86); filter: brightness(0.86); }
.hp-why-scard.pos-p2:hover { transform: translateX(290px) translateY(60px) rotate(15deg) scale(0.71); filter: brightness(0.70); }
.hp-why-scard.pos-n2:hover { transform: translateX(-290px) translateY(60px) rotate(-15deg) scale(0.71); filter: brightness(0.70); }

/* ghost background icon */
.hp-why-scard-bg {
    position: absolute; right: -16px; bottom: -16px;
    width: 200px; height: 200px;
    color: var(--color-accent); opacity: 0.055;
    pointer-events: none;
}

/* card text */
.hp-why-scard-title {
    font-family: var(--font-serif);
    font-size: 1.28rem; font-weight: 700;
    color: var(--color-text); margin-bottom: 1rem; line-height: 1.42;
}
.hp-why-scard-desc {
    font-size: 0.875rem; line-height: 1.9;
    color: #4a4a6a; font-weight: 300;
}

/* ── gold final card ── */
.hp-why-scard--gold {
    background: #0c0c18;
    border-left: 4px solid #c9a227;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.34);
}
.hp-why-scard--gold.pos-0 {
    box-shadow: 0 10px 28px rgba(0,0,0,0.38);
}
.hp-why-gold-ornament {
    width: 52px; height: 1px;
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
    margin-bottom: 1.5rem;
}
.hp-why-gold-quote {
    font-family: var(--font-serif);
    font-size: 1.15rem; line-height: 1.85;
    color: rgba(255,255,255,0.82); margin-bottom: 1.4rem; font-weight: 400;
}
.hp-why-gold-line {
    display: inline-block;
    background: linear-gradient(100deg, #a07820 0%, #f5d060 30%, #ffe893 50%, #f5d060 70%, #a07820 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-weight: 800; font-size: 1.24rem;
    filter: none;
    animation: gold-shimmer 3.5s linear infinite;
}
@keyframes gold-shimmer {
    0%   { background-position: 200% center; }
    100% { background-position:   0% center; }
}
.hp-why-gold-divider {
    width: 56px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.45), transparent);
    margin: 0 auto 0.9rem;
}
.hp-why-gold-label {
    font-size: 0.67rem; letter-spacing: 0.13em;
    color: rgba(201,162,39,0.4); text-transform: uppercase;
}

/* controls row */
.hp-why-controls {
    display: flex; align-items: center; gap: 1.2rem; margin-top: 1.8rem;
}
.hp-why-nav {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid rgba(0,91,172,0.22);
    background: #fff; color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
    flex-shrink: 0;
}
.hp-why-nav:hover:not(:disabled) { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.hp-why-nav:disabled { opacity: 0.25; cursor: default; }
.hp-why-progress { display: flex; align-items: center; gap: 8px; }
.hp-why-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(0,91,172,0.18);
    transition: background 0.3s, transform 0.3s; cursor: pointer;
}
.hp-why-dot.active { background: var(--color-accent); transform: scale(1.45); }
.hp-why-dot--gold.active { background: #c9a227; }

@media (max-width: 640px) {
    .hp-why { padding: 3.4rem 0; }
    .hp-why-stage { padding-bottom: 2.2rem; }
    .hp-why-header { margin-bottom: 2.2rem; }
    .hp-why-scard { padding: 1.45rem 1.25rem; border-radius: 14px; }
    .hp-why-scard-title { font-size: 1rem; margin-bottom: .75rem; }
    .hp-why-scard-desc { font-size: .8rem; line-height: 1.75; }
    .hp-why-gold-quote { font-size: .92rem; line-height: 1.7; }
    .hp-why-gold-line { font-size: 1rem; }
    .hp-why-gold-label { font-size: .62rem; letter-spacing: .1em; }
    .hp-why-stack {
        width: min(350px, 84vw);
        height: clamp(205px, 30vh, 265px);
    }
    .hp-why-controls { margin-top: 1.2rem; }
    .hp-why-nav { width: 36px; height: 36px; }
    .hp-why-scard.pos-p1 { transform: translateX(88px) translateY(18px) rotate(9deg) scale(0.82); }
    .hp-why-scard.pos-p2 { transform: translateX(152px) translateY(44px) rotate(16deg) scale(0.66); }
    .hp-why-scard.pos-n1 { transform: translateX(-88px) translateY(18px) rotate(-9deg) scale(0.82); }
    .hp-why-scard.pos-n2 { transform: translateX(-152px) translateY(44px) rotate(-16deg) scale(0.66); }
    .hp-why-scard.pos-hr { transform: translateX(235px) translateY(56px) rotate(22deg) scale(0.53); }
    .hp-why-scard.pos-hl { transform: translateX(-235px) translateY(56px) rotate(-22deg) scale(0.53); }
}

/* ──────────────────────────────────────────
   DEPARTMENTS (with filter cards)
────────────────────────────────────────── */
.hp-depts { background: #f7f9fc; padding: 5.5rem 0; }
.hp-depts-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.hp-dept-tabs {
    display: flex; gap: .6rem; flex-wrap: wrap; margin: 2rem 0 1.5rem;
}
.hp-dept-tab {
    padding: .46rem 1.2rem;
    border: 1px solid #d8dde8; background: #fff;
    color: #3a3a5c; border-radius: 2px;
    font-size: .8rem; font-weight: 500;
    letter-spacing: .04em; cursor: pointer; font-family: inherit;
    transition: all .2s;
}
.hp-dept-tab:hover, .hp-dept-tab.active {
    background: var(--color-accent); border-color: var(--color-accent); color: #fff;
}
.hp-dept-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.hp-dept-card {
    background: #fff;
    border: 1px solid #e0e5f0;
    border-radius: 4px; padding: 1.7rem;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.hp-dept-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,91,172,.1);
}
.hp-dept-card[style*="display: none"] { display: none !important; }
.hp-dept-tag {
    display: inline-block;
    background: rgba(0,91,172,.08);
    color: var(--color-accent);
    font-size: .68rem; font-weight: 600;
    letter-spacing: .1em; padding: .22rem .75rem;
    border-radius: 2px; margin-bottom: .9rem;
    text-transform: uppercase;
}
.hp-dept-card h4 {
    font-size: .9rem; font-weight: 600;
    color: var(--color-text); line-height: 1.6; margin-bottom: .45rem;
}
.hp-dept-card p {
    font-size: .8rem; color: #5a6070;
    line-height: 1.75; font-weight: 300;
}

/* ──────────────────────────────────────────
   PARTNERS
────────────────────────────────────────── */
.hp-partners {
    padding: 5rem 0;
    border-bottom: 1px solid #ebebeb;
    background: #fff;
}
.hp-partners-chips {
    display: flex; flex-wrap: wrap;
    gap: 1rem; margin-top: 2.5rem;
}
.hp-chip {
    background: #f5f7fa;
    border: 1px solid #e0e5f0;
    border-radius: 3px; padding: .85rem 1.6rem;
    font-size: .86rem; font-weight: 500;
    color: #3a3a5c; cursor: default;
    transition: all .2s;
}
.hp-chip:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(0,91,172,.04);
}

/* ──────────────────────────────────────────
   NEWS (featured layout)
────────────────────────────────────────── */
.hp-news-hd-old { display: none; }
.hp-news-hd {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 2rem;
}
/* featured + side layout */
.hp-news-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
/* featured card (first item) */
.hp-news-featured {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid #e0e5f0;
    border-radius: var(--radius-sm); overflow: hidden;
    text-decoration: none; color: inherit;
    transition: box-shadow .25s, transform .25s;
}
.hp-news-featured:hover { box-shadow: 0 8px 32px rgba(0,91,172,.12); transform: translateY(-3px); text-decoration: none; color: inherit; }
.hp-news-featured .hp-news-img { height: 260px; overflow: hidden; background: #e8eef8; }
.hp-news-featured .hp-news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hp-news-featured:hover .hp-news-img img { transform: scale(1.04); }
.hp-news-featured .hp-news-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.hp-news-date { display: block; font-size: .75rem; color: var(--color-accent); font-weight: 600; letter-spacing: .06em; margin-bottom: .5rem; }
.hp-news-title {
    font-family: var(--font-serif);
    font-size: 1.05rem; font-weight: 600;
    color: var(--color-text); line-height: 1.55; margin-bottom: .6rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hp-news-excerpt {
    font-size: .84rem; color: #5a6070; line-height: 1.7; font-weight: 300; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
/* side cards stack */
.hp-news-side { display: flex; flex-direction: column; gap: 1rem; }
.hp-news-card {
    display: flex; gap: 1rem;
    background: #fff; border: 1px solid #e0e5f0;
    border-radius: var(--radius-sm); overflow: hidden;
    text-decoration: none; color: inherit;
    transition: box-shadow .25s, transform .25s;
}
.hp-news-card:hover { box-shadow: 0 6px 24px rgba(0,91,172,.1); transform: translateY(-2px); text-decoration: none; color: inherit; }
.hp-news-card .hp-news-thumb {
    width: 110px; min-height: 90px; flex-shrink: 0;
    background: #e8eef8; overflow: hidden;
}
.hp-news-card .hp-news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.hp-news-card:hover .hp-news-thumb img { transform: scale(1.06); }
.hp-news-thumb-placeholder {
    width: 100%; height: 100%; min-height: 90px;
    display: flex; align-items: center; justify-content: center; color: #b0c4de;
}
.hp-news-card .hp-news-body { padding: 1rem .9rem 1rem 0; display: flex; flex-direction: column; }
.hp-news-card .hp-news-title {
    font-size: .9rem; -webkit-line-clamp: 2;
}
.hp-news-card .hp-news-excerpt { -webkit-line-clamp: 2; }
.hp-news-empty { color: #999; grid-column: 1 / -1; }

/* ──────────────────────────────────────────
   CTA
────────────────────────────────────────── */
.hp-cta {
    background: var(--color-text);
    padding: 7rem 0;
    margin-bottom: -2rem;
    position: relative;
    overflow: hidden;
}
.hp-cta-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 20% 50%, rgba(0,91,172,.45) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 50%, rgba(0,91,172,.2) 0%, transparent 60%);
}
.hp-cta-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 2rem;
    text-align: center; position: relative; z-index: 1;
}
.hp-cta-eyebrow {
    display: inline-flex; align-items: center; gap: .7rem;
    font-size: .7rem; font-weight: 500; letter-spacing: .2em;
    color: rgba(255,255,255,.45); text-transform: uppercase; margin-bottom: 1.4rem; justify-content: center;
}
.hp-cta-eyebrow::before { content: ''; width: 22px; height: 1px; background: rgba(255,255,255,.35); }
.hp-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
    color: #fff; line-height: 1.4; margin-bottom: 1.2rem;
}
.hp-cta-sub { font-size: .94rem; color: rgba(255,255,255,.58); font-weight: 300; margin-bottom: 2.8rem; }
.hp-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hp-btn-gold {
    display: inline-block; padding: .92rem 2.4rem;
    background: var(--color-accent); color: #fff;
    font-size: .88rem; font-weight: 600; letter-spacing: .1em;
    text-decoration: none; border-radius: 2px;
    transition: background .25s, transform .25s;
}
.hp-btn-gold:hover { background: #3a7fd4; transform: translateY(-2px); color: #fff; text-decoration: none; }
.hp-btn-line {
    display: inline-block; padding: .9rem 2.4rem;
    border: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.78);
    font-size: .88rem; font-weight: 500; letter-spacing: .1em;
    text-decoration: none; border-radius: 2px;
    transition: border-color .25s, background .25s, color .25s;
}
.hp-btn-line:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); text-decoration: none; }

/* ──────────────────────────────────────────
   NEWS
────────────────────────────────────────── */
.hp-news {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    background: #f4f6fa;
    padding: 4rem 0;
}
.hp-news-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.hp-news-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}
.hp-news-list {
    display: flex;
    flex-direction: column;
}
.hp-news-item {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e4ec;
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}
.hp-news-item:first-child {
    border-top: 1px solid #e0e4ec;
}
.hp-news-item:hover .hp-news-title {
    color: var(--color-accent);
}
.hp-news-date {
    flex-shrink: 0;
    font-size: 0.82rem;
    color: #999;
    letter-spacing: 0.03em;
    font-variant-numeric: tabular-nums;
}
.hp-news-cat {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: #eef2f8;
    color: #4a6fa5;
}
.hp-news-cat--important { background: #fff0f0; color: #c0392b; }
.hp-news-cat--maintenance { background: #fff8e6; color: #b7770d; }
.hp-news-cat--news { background: #eef2f8; color: #4a6fa5; }
.hp-news-title {
    font-size: 0.95rem;
    color: var(--color-text);
    transition: color .15s;
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 960px) {
    .hp-hero { height: auto; min-height: 500px; }
    .hp-hero-content { grid-template-columns: 1fr; padding-bottom: 3.5rem; }
    .hp-stats-d { display: none !important; }
    .hp-stats-m { display: block; }
    .hp-stats-m-grid { grid-template-columns: repeat(4, 1fr); }
    .hp-intro-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    /* hp-why uses sticky stack, no grid overrides needed */
    .hp-dept-cards { grid-template-columns: repeat(2, 1fr); }
    .hp-news-layout { grid-template-columns: 1fr; }
    .hp-news-featured .hp-news-img { height: 220px; }
    .hp-slide-controls { right: 1rem; }
}
@media (max-width: 600px) {
    .hp-hero { min-height: 420px; }
    .hp-hero-title { font-size: 1.9rem; }
    .hp-stats-m-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-stats-m .hp-stat:nth-child(2) { border-right: none; }
    .hp-stats-m .hp-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,.07); }
    .hp-stats-m .hp-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); border-right: none; }
    .hp-dept-cards { grid-template-columns: 1fr; }
    .hp-news-card .hp-news-thumb { width: 90px; }

}