/* ===============================================
   index.css — Нүүр хуудас
   =============================================== */

/* ===== HERO ===== */
.hero {
    height: 520px;
    background: url("../images/cover.png") center top / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    
   
}

.hero-overlay {
    background: rgba(0, 40, 90, 0.65);
    padding: 50px 60px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 36px;
    margin-bottom: 14px;
}

.hero-overlay p {
    font-size: 18px;
    line-height: 1.6;
}

/* ===== NEWS CARD GRID ===== */
.news-section {
    padding: 60px 20px;
    background: var(--bg);
}

.news-header {
    text-align: center;
    margin-bottom: 36px;
}

.news-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--blue-deep);
    margin: 0 0 8px;
}

.news-header p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.news-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 58, 143, 0.13);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-body {
    padding: 20px 22px 24px;
}

.news-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: #e6f1fb;
    color: #185fa5;
    margin-bottom: 10px;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-deep);
    margin: 0 0 10px;
    line-height: 1.4;
}

.news-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-mid);
    margin: 0 0 16px;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.news-date {
    font-size: 12px;
    color: var(--text-light);
}

.news-link {
    font-size: 13px;
    color: #185fa5;
    font-weight: 600;
    text-decoration: none;
}

.news-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .news-grid { grid-template-columns: 1fr; }
    .hero { height: 320px; }
    .hero-overlay { padding: 30px 24px; }
    .hero-overlay h1 { font-size: 24px; }
}
.pinned-banner {
    background: white;
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
}
.pinned-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.pinned-gallery {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    aspect-ratio: 4/3;
}
.gallery-slides { width: 100%; height: 100%; position: relative; }
.gallery-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.gallery-slide.active { opacity: 1; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-prev, .gallery-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.45); color: #fff; border: none;
    width: 40px; height: 40px; border-radius: 50%; font-size: 22px;
    cursor: pointer; z-index: 10; display: flex; align-items: center;
    justify-content: center; transition: background 0.2s;
}
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-prev:hover, .gallery-next:hover { background: rgba(0,0,0,0.7); }
.gallery-dots {
    position: absolute; bottom: 14px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 7px; z-index: 10;
}
.gdot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.45); cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.gdot.active { background: #f5c542; transform: scale(1.3); }

.pinned-content { color: #003a8f; display: flex; flex-direction: column; gap: 14px; }
.pinned-badges { display: flex; align-items: center; gap: 12px; }
.pin-badge {
    background: #f5c542; color: #003a8f; font-size: 12px;
    font-weight: 700; padding: 4px 14px; border-radius: 100px;
}
.pin-date { font-size: 13px; color: #888; }
.pinned-title {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 26px; font-weight: 600; line-height: 1.3;
    margin: 0; color: #003a8f;
}
.pinned-lead {
    font-size: 15px; font-style: italic; margin: 0;
    font-weight: 600; color: #1a56b0;
}
.pinned-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease;
    display: flex; flex-direction: column; gap: 10px;
}
.pinned-body.open { max-height: 900px; }
.pinned-body p { font-size: 14.5px; line-height: 1.78; color: #444; margin: 0; }
.pinned-thanks {
    font-size: 13.5px !important; color: #666 !important;
    border-top: 1px solid #e8f0fe; padding-top: 10px !important;
}
.pinned-slogan { font-weight: 600 !important; color: #003a8f !important; font-size: 15px !important; }
.pinned-stats { display: flex; gap: 16px; padding: 16px 0; }
.pstat {
    flex: 1; background: #e8f0fe; border-radius: 12px;
    padding: 12px 10px; text-align: center; border: 1px solid #cdddf5;
}
.pstat-num {
    display: block; font-family: 'Noto Serif', Georgia, serif;
    font-size: 22px; font-weight: 600; color: #003a8f;
    line-height: 1; margin-bottom: 4px;
}
.pstat-label { font-size: 11px; color: #555; line-height: 1.3; }
.pinned-toggle {
    align-self: flex-start; background: #003a8f; color: #fff;
    border: none; padding: 10px 22px; border-radius: 100px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.pinned-toggle:hover { background: #1a56b0; transform: translateY(-1px); }

@media (max-width: 900px) {
    .pinned-inner { grid-template-columns: 1fr; gap: 28px; }
    .pinned-gallery { aspect-ratio: 16/9; }
    .pinned-title { font-size: 20px; }
}
@media (max-width: 600px) {
    .pinned-banner { padding: 32px 16px; }
    .pinned-stats { flex-direction: column; gap: 10px; }
}
/* ===============================================
   АЛСЫН ХАРАА + ЭРХЭМ ЗОРИЛГО
   =============================================== */

.about-section {
    background: #f7f8fc;
    padding: 70px 24px 60px;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* ---- Label ---- */
.about-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #003a8f;
    color: #f5c542;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.vision-lbl { background: #1a56b0; color: #fff; }

/* ---- About + Vision grid ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.about-card, .vision-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid #dde3f0;
}

.vision-card {
    background: linear-gradient(135deg, #003a8f 0%, #1a56b0 100%);
    border-color: transparent;
}

.about-title {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #003a8f;
    margin: 0 0 14px;
    line-height: 1.3;
}

.vision-card .about-title { color: #fff; }

.about-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px;
}

.vision-card .about-text { color: rgba(255,255,255,0.85); }

/* About stats */
.about-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.about-stat {
    flex: 1;
    background: #f4f7ff;
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid #e8f0fe;
}

.about-stat-num {
    display: block;
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #003a8f;
    margin-bottom: 4px;
}

.about-stat-lbl {
    font-size: 11px;
    color: #888;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #003a8f;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
}

.about-btn:hover { background: #1a56b0; }

/* Vision quote */
.vision-quote {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    color: #f5c542;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vision-quote-mark {
    font-size: 28px;
    font-family: 'Noto Serif', Georgia, serif;
    vertical-align: -4px;
    opacity: 0.6;
}

/* Vision pillars */
.vision-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.v-pillar {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.v-pillar-icon { font-size: 18px; }

/* ---- Mission ---- */
.mission-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #dde3f0;
}

.mission-header {
    margin-bottom: 28px;
}

.mission-title {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #003a8f;
    margin: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f7f8fc;
    border-radius: 14px;
    padding: 18px 16px;
    border: 1px solid #e8f0fe;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mission-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,58,143,0.1);
}

.mission-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.mission-icon.blue { background: #e8f0fe; }
.mission-icon.gold { background: #faeeda; }
.mission-icon.green { background: #eaf3de; }

.mission-body h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: #003a8f;
    margin: 0 0 6px;
}

.mission-body p {
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .about-section { padding: 48px 16px 40px; }
    .about-card, .vision-card { padding: 24px 20px; }
    .mission-wrap { padding: 28px 20px; }
    .mission-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 10px; }
    .vision-pillars { grid-template-columns: 1fr; }
}
.home-main {
    background: #f7f8fc;
    padding: 56px 24px 72px;
}
.home-inner { max-width: 1100px; margin: 0 auto; }

.home-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.hl-badge {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #003a8f;
    color: #f5c542;
    padding: 4px 13px;
    border-radius: 100px;
    white-space: nowrap;
}
.hl-title {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #003a8f;
    margin: 0;
    flex: 1;
}
.hl-more {
    font-size: 13px;
    color: #1a56b0;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 16px;
    border: 1.5px solid #c8d8f4;
    border-radius: 100px;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.hl-more:hover { background: #003a8f; color: #fff; border-color: #003a8f; }

/* 2-багана grid */
.home-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}
/* Зүүн багана — том карт + жижиг мэдээ */
.home-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* === SLIDESHOW === */
.feat-slides { position: relative; width: 100%; height: 100%; }
.feat-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.feat-slide.active { opacity: 1; }
.feat-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-prev, .feat-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.38); color: #fff;
    border: none; width: 36px; height: 36px;
    border-radius: 50%; font-size: 22px;
    cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; line-height: 1;
}
.feat-prev { left: 12px; }
.feat-next { right: 12px; }
.feat-prev:hover, .feat-next:hover { background: rgba(0,0,0,0.65); }
.feat-dots {
    position: absolute; bottom: 12px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 10;
}
.feat-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.feat-dot.active { background: #f5c542; transform: scale(1.3); }
/* === ТООН ҮЗҮҮЛЭЛТ === */
.feat-stats {
    display: flex;
    gap: 12px;
    margin: 0 0 22px;
}
.feat-stat {
    flex: 1;
    background: #f4f7ff;
    border: 1px solid #e0e8f8;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
}
.feat-stat-num {
    display: block;
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #003a8f;
    line-height: 1;
    margin-bottom: 4px;
}
.feat-stat-lbl {
    font-size: 10.5px;
    color: #888;
    line-height: 1.3;
}
/* === ТОМ ОНЦЛОХ КАРТ === */
.feat-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e0e8f8;
    overflow: hidden;
    transition: box-shadow 0.22s;
}
.feat-card:hover { box-shadow: 0 16px 48px rgba(0,58,143,0.13); }
.feat-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #e8f0fe;
}
.feat-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.feat-card:hover .feat-img { transform: scale(1.04); }
.feat-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: #f5c542;
    color: #003a8f;
    font-size: 11px; font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}
.feat-body { padding: 28px 32px 32px; }
.feat-meta {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
}
.ft { font-size: 11px; font-weight: 600; padding: 3px 12px; border-radius: 100px; }
.ft-blue  { background: #e8f0fe; color: #185fa5; }
.ft-amber { background: #faeeda; color: #854f0b; }
.ft-green { background: #eaf3de; color: #3b6d11; }
.feat-date { font-size: 12px; color: #b0b8cc; }
.feat-title {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 21px; font-weight: 600;
    color: #003a8f; margin: 0 0 12px;
    line-height: 1.35;
}
.feat-desc {
    font-size: 14px; line-height: 1.78;
    color: #666; margin: 0 0 22px;
}
.feat-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #003a8f; color: #fff;
    font-size: 13px; font-weight: 600;
    padding: 10px 22px; border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.feat-btn:hover { background: #1a56b0; transform: translateY(-1px); }

/* === БАРУУН БАГАНА === */
.home-right {
    display: flex; flex-direction: column; gap: 20px;
}

/* Жижиг мэдээ */
.mini-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e8f8;
    overflow: hidden;
    display: flex;
    transition: box-shadow 0.2s;
}
.mini-card:hover { box-shadow: 0 8px 28px rgba(0,58,143,0.1); }
.mini-img {
    width: 110px; min-width: 110px; height: 100%;
    object-fit: cover; display: block;
}
.mini-body { padding: 14px 16px; flex: 1; }
.mini-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.mini-date { font-size: 11px; color: #b0b8cc; }
.mini-title {
    font-size: 14px; font-weight: 600;
    color: #003a8f; margin: 0 0 6px;
    line-height: 1.35;
}
.mini-desc { font-size: 12.5px; line-height: 1.6; color: #777; margin: 0 0 10px; }
.mini-link { font-size: 12.5px; color: #1a56b0; font-weight: 600; text-decoration: none; }
.mini-link:hover { text-decoration: underline; }

/* === КАЛЕНДАРЬ КАРТ === */
.cal-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e8f8;
    overflow: hidden;
}
.cal-card-head {
    background: linear-gradient(135deg, #003a8f 0%, #1565c0 100%);
    padding: 14px 18px;
}
.cal-card-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #f5c542; margin-bottom: 2px;
}
.cal-card-title { font-size: 14px; font-weight: 600; color: #fff; }

.cal-body { padding: 14px 16px; }
.cal-nav {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 10px;
}
.cal-nav-btn {
    background: #e8f0fe; border: none;
    border-radius: 7px; width: 28px; height: 28px;
    font-size: 17px; color: #003a8f;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: background 0.15s; line-height: 1;
}
.cal-nav-btn:hover { background: #003a8f; color: #fff; }
.cal-mlabel { font-size: 12.5px; font-weight: 600; color: #003a8f; }

.cal-wdays {
    display: grid; grid-template-columns: repeat(7,1fr);
    text-align: center; margin-bottom: 4px;
}
.cal-wdays span { font-size: 9.5px; font-weight: 600; color: #bbb; padding: 3px 0; }

.cal-days {
    display: grid; grid-template-columns: repeat(7,1fr); gap: 2px;
    margin-bottom: 12px;
}
.cd {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 11.5px; color: #555;
    border-radius: 6px; cursor: pointer; position: relative;
    transition: background 0.12s, color 0.12s;
}
.cd:hover { background: #e8f0fe; color: #003a8f; }
.cd.emp { cursor: default; }
.cd.emp:hover { background: none; }
.cd.tod { background: #003a8f; color: #fff; font-weight: 600; }
.cd.sel { background: #f5c542; color: #003a8f; font-weight: 600; }
.cd.hev::after {
    content: '';
    width: 4px; height: 4px; border-radius: 50%;
    background: #378add;
    position: absolute; bottom: 2px;
    left: 50%; transform: translateX(-50%);
}
.cd.tod.hev::after { background: #f5c542; }
.cd.sel.hev::after { background: #003a8f; }

/* Events mini list */
.ev-list { border-top: 1px solid #eef1f8; padding-top: 10px; }
.ev-list-title {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.07em;
    color: #aaa; margin-bottom: 8px;
}
.ev-item {
    display: flex; gap: 9px; align-items: flex-start;
    padding: 6px 0;
    border-bottom: 1px solid #f4f7ff;
}
.ev-item:last-child { border-bottom: none; }
.ev-dot { width: 7px; height: 7px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.ev-dt { font-size: 10px; color: #aaa; margin-bottom: 1px; }
.ev-nm { font-size: 12px; color: #1a1a2e; line-height: 1.35; }
.ev-empty { font-size: 12px; color: #ccc; text-align: center; padding: 14px 0; }

@media (max-width: 900px) {
    .home-grid { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
    .home-main { padding: 36px 16px 48px; }
    .feat-img-wrap { height: 210px; }
    .feat-body { padding: 20px 20px 24px; }
    .mini-img { width: 90px; min-width: 90px; }
}
/* ===============================================
   ТАНИЛЦУУЛГА ВИДЕО БЛОК
   =============================================== */
.intro-video-section {
    background: #fff;
    padding: 72px 24px 80px;
    position: relative;
    overflow: hidden;
}
.intro-video-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003a8f, #f5c542, #003a8f);
}

.intro-video-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* ── ВИДЕО ── */
.intro-video-wrap {
    position: relative;
}
.intro-video-box {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 24px 64px rgba(0,58,143,0.18);
    background: #000;
}
.intro-video-box iframe {
    width: 100%; height: 100%;
    border: none; display: block;
}
.intro-video-badge {
    position: absolute;
    bottom: -14px;
    left: 24px;
    background: #f5c542;
    color: #003a8f;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    letter-spacing: 0.04em;
}

/* ── ТЕКСТ ── */
.intro-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.intro-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #003a8f;
    color: #f5c542;
    padding: 5px 16px;
    border-radius: 100px;
    align-self: flex-start;
}
.intro-title {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: #003a8f;
    line-height: 1.3;
    margin: 0;
}
.intro-lead {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

/* ── PILLARS ── */
.intro-pillars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.intro-pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f4f7ff;
    border: 1px solid #e0e8f8;
    border-radius: 14px;
    padding: 14px 18px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.intro-pillar:hover {
    box-shadow: 0 6px 20px rgba(0,58,143,0.1);
    transform: translateX(4px);
}
.intro-pillar-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.intro-pillar strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #003a8f;
    margin-bottom: 3px;
}
.intro-pillar p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ── STATS ── */
.intro-stats {
    display: flex;
    gap: 12px;
}
.intro-stat {
    flex: 1;
    background: linear-gradient(135deg, #003a8f, #1a56b0);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    color: #fff;
}
.intro-stat-num {
    display: block;
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
    color: #f5c542;
}
.intro-stat-lbl {
    font-size: 11px;
    opacity: 0.85;
    line-height: 1.3;
}

/* ── BUTTON ── */
.intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #003a8f;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 100px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 6px 20px rgba(0,58,143,0.25);
}
.intro-btn:hover {
    background: #1a56b0;
    transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .intro-video-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .intro-video-wrap { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 600px) {
    .intro-video-section { padding: 48px 16px 56px; }
    .intro-title { font-size: 20px; }
    .intro-stats { flex-direction: column; gap: 10px; }
}