/*
 * Industry & Academic Visit — Page-Specific Styles
 * ─────────────────────────────────────────────────
 * This page uses a self-contained design system.
 */

:root {
    --navy: #111a44;
    --blue: #374799;
    --yellow: #dca200;
    --white: #ffffff;
    --light-blue: #f7f9ff;
    --soft-grey: #f8fafc;
    --pale-yellow: #fff8e6;
    --body-text: #1e2535;
    --muted: #3a3f52;
    --border-blue: rgba(55, 71, 153, 0.12);
    --yellow-glow: rgba(220, 162, 0, 0.45);
    --f-num: 'Anton', sans-serif;
    --f-head: 'Antonio', sans-serif;
    --f-body: 'Poppins', sans-serif;
    --f-accent: 'Kalam', cursive;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--f-body);
    color: var(--body-text);
    background: #fff;
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--yellow);
    color: var(--navy);
    padding: 8px 16px;
    font-family: var(--f-head);
    font-weight: 700;
    z-index: 9999;
    transition: top .2s;
}

.skip-link:focus {
    top: 0;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
    border-radius: 4px;
}

.icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}
.explore-icon svg {
    width: 24px;
    height: 24px;
}
.explore-icon {
    width: 48px;
    height: 48px;
    background: #f6f7fb;
    border-radius: 10px;;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0px 0 20px;
    
}

section {
    position: relative;
    scroll-margin-top: 130px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--blue);
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--yellow);
    display: block;
}

.eyebrow.on-dark {
    color: var(--yellow);
}

h1,
h2,
h3 {
    font-family: var(--f-head);
    color: var(--navy);
}

h2.sec-title {
    font-weight: 700;
    font-size: clamp(24px, 3.2vw, 34px);
    margin-top: 8px;
    line-height: 1.2;
}

.sec-title.on-dark {
    color: #fff;
}

.sec-sub {
    font-family: var(--f-body);
    font-size: 14.5px;
    color: var(--muted);
    max-width: 680px;
    margin-top: 10px;
    line-height: 1.75;
}

.sec-head.center {
    text-align: center;
}

.sec-head.center .sec-sub {
    margin-left: auto;
    margin-right: auto;
}

.btn {
    font-family: var(--f-head);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s ease;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--navy);
}

.btn-yellow:hover {
    background: #c99000;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px var(--yellow-glow);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .75);
    color: #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .12);
}

.btn-outline-blue {
    background: #fff;
    border: 1px solid var(--blue);
    color: var(--blue);
}

.btn-outline-blue:hover {
    background: var(--light-blue);
}

.btn-solid-blue {
    background: var(--blue);
    color: #fff;
}

.btn-solid-blue:hover {
    background: var(--navy);
}

.card-std {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(27, 36, 96, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-std:hover {
    transform: translateY(-4px);
    border-color: var(--yellow-glow);
    box-shadow: 0 16px 38px rgba(27, 36, 96, .10);
}

.photo-ph {
    background: linear-gradient(135deg, #eef1fb, #dfe4f7);
    border: 1.5px dashed var(--border-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    gap: 6px;
}

.photo-ph .icon {
    width: 26px;
    height: 26px;
}

.photo-ph span {
    font-family: var(--f-body);
    font-size: 10.5px;
    color: var(--muted);
    text-align: center;
    padding: 0 10px;
}

.tag-chip {
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 11px;
    border-radius: 12px;
    background: var(--pale-yellow);
    color: var(--navy);
}

/* ============ TOPBAR ============ */
.topbar {
    background: var(--navy);
    color: #fff;
    padding: 0 28px;
    height: 48px;
    display: flex;
    align-items: center;
    font-family: var(--f-body);
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

.topbar b {
    color: var(--yellow);
    font-weight: 600;
}

.topbar .sep {
    opacity: .5;
    margin: 0 6px;
}

/* ============ STICKY NAV ============ */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 120;
    background: #fff;
    border-bottom: 1px solid var(--border-blue);
    box-shadow: 0 2px 10px rgba(20, 20, 30, .04);
}

.sticky-nav-inner {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 12px 0;
}

.snav-link {
    font-family: var(--f-head);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all .2s ease;
}

.snav-link:hover {
    color: var(--blue);
}

.snav-link.active {
    color: var(--blue);
    border-bottom-color: var(--yellow);
}

.snav-link.cta-link {
    background: var(--blue);
    color: #fff;
    border-radius: 20px;
}

.snav-link.cta-link:hover {
    background: var(--navy);
    color: #fff;
}

/* ============ HERO ============ */
.hero {
    background: linear-gradient(135deg, #1b2460 0%, #35459a 100%);
    padding: 52px 0 64px;
    overflow: hidden;
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}

.hero-crumb {
    font-family: var(--f-body);
    font-size: 11.5px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 14px;
}

.hero-crumb b {
    color: var(--yellow);
}

.hero h1 {
    font-weight: 700;
    font-size: clamp(30px, 4.4vw, 46px);
    color: #fff;
    line-height: 1.1;
    margin: 6px 0 10px;
}

.hero-highlight {
    font-family: var(--f-body);
    font-weight: 500;
    font-size: clamp(14.5px, 1.6vw, 17px);
    color: var(--yellow);
    margin-bottom: 14px;
}

.hero-content p {
    font-family: var(--f-body);
    font-size: 14px;
    color: rgba(255, 255, 255, .86);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.collage {
    position: absolute;
    inset: 0;
}

.main-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 64%;
    height: 70%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.sub-photo {
    position: absolute;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.sp1 {
    top: 2%;
    right: 0;
    width: 32%;
    height: 32%;
}

.sp2 {
    top: 38%;
    right: 0;
    width: 32%;
    height: 30%;
}

.sp3 {
    bottom: 0;
    left: 8%;
    width: 44%;
    height: 26%;
}

.plane-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.checkpoint-label {
    font-family: var(--f-head);
    font-size: 8.5px;
    font-weight: 600;
    fill: rgba(255, 255, 255, .7);
    letter-spacing: .3px;
}

.float-mini {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 10px 14px;
    font-family: var(--f-head);
    font-size: 10.5px;
    font-weight: 600;
    color: #fff;
    max-width: 150px;
    animation: floaty 6.5s ease-in-out infinite;
}

.float-mini p {
    font-family: var(--f-body);
    font-size: 9.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, .75);
    margin-top: 3px;
    line-height: 1.4;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.fm1 {
    top: -4%;
    left: 2%;
    animation-delay: .1s;
}

.fm2 {
    top: 34%;
    left: -6%;
    animation-delay: 1.2s;
}

.fm3 {
    bottom: 6%;
    right: -4%;
    animation-delay: 2.1s;
}

.fm4 {
    bottom: -6%;
    left: 24%;
    animation-delay: 3s;
}

/* ============ DASHBOARD ============ */
.section-dash {
    background: #fff;
    padding: 60px 0;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.dash-card {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(27, 36, 96, .05);
    transition: transform .22s ease, box-shadow .22s ease;
}

.dash-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(27, 36, 96, .1);
}

.dash-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--light-blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.dash-impact {
    font-family: var(--f-num);
    font-size: 26px;
    color: var(--yellow);
    line-height: 1;
}

.dash-label {
    font-family: var(--f-head);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 8px;
}

.dash-desc {
    font-family: var(--f-body);
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.55;
}

/* ============ OVERVIEW ============ */
.section-overview {
    background: var(--light-blue);
    padding: 64px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.overview-copy p {
    font-family: var(--f-body);
    font-size: 14.5px;
    color: var(--body-text);
    line-height: 1.8;
    margin-bottom: 18px;
}

.chip-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hl-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--f-head);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--border-blue);
    padding: 9px 15px;
    border-radius: 20px;
}

.hl-chip .icon {
    width: 15px;
    height: 15px;
    color: var(--yellow);
}

.overview-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 340px;
    box-shadow: 0 20px 50px rgba(27, 36, 96, .14);
}

.overview-photo .overlay-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(27, 36, 96, .85));
    padding: 26px 22px 18px;
    font-family: var(--f-head);
    font-size: 16px;
    color: #fff;
}

/* ============ VISIT TYPES ============ */
.section-types {
    background: #fff;
    padding: 64px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.type-card {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(27, 36, 96, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow-glow);
    box-shadow: 0 16px 34px rgba(27, 36, 96, .1);
}

.type-photo {
    height: 120px;
}

.type-body {
    padding: 18px;
}

.type-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--light-blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -38px;
    margin-bottom: 14px;
    border: 3px solid #fff;
    position: relative;
}

.type-title {
    font-family: var(--f-head);
    font-size: 14.5px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.type-desc {
    font-family: var(--f-body);
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.type-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ============ LEARNING CYCLE ============ */
.section-cycle {
    background: var(--soft-grey);
    padding: 64px 0;
}

.cycle-track {
    position: relative;
    padding: 30px 0 10px;
}

.cycle-path-svg {
    width: 100%;
    height: 70px;
}

.cycle-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 10px;
}

.cycle-step {
    text-align: center;
}

.cycle-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-num);
    font-size: 16px;
    margin: 0 auto 12px;
}

.cycle-title {
    font-family: var(--f-head);
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 6px;
}

.cycle-desc {
    font-family: var(--f-body);
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.55;
}

/* ============ FEATURED VISITS ============ */
.section-featured {
    background: #fff;
    padding: 64px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feat-card {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 36, 96, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(27, 36, 96, .11);
}

.feat-cover {
    height: 180px;
    position: relative;
}

.feat-type-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--yellow);
    color: var(--navy);
    font-family: var(--f-head);
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 14px;
}

.feat-body {
    padding: 22px;
}

.feat-title {
    font-family: var(--f-head);
    font-size: 16.5px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.feat-text {
    font-family: var(--f-body);
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feat-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.feat-meta-item {
    font-family: var(--f-body);
    font-size: 11.5px;
    color: var(--muted);
}

.feat-meta-item b {
    color: var(--body-text);
    font-weight: 500;
    display: block;
    font-family: var(--f-head);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--blue);
    margin-bottom: 2px;
}

.feat-outcome {
    background: var(--pale-yellow);
    border-left: 3px solid var(--yellow);
    border-radius: 0 10px 10px 0;
    padding: 11px 14px;
    font-family: var(--f-body);
    font-size: 12px;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feat-mini-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.feat-mini-gallery .photo-ph {
    height: 56px;
    border-radius: 8px;
}

.feat-mini-gallery .photo-ph .icon {
    width: 14px;
    height: 14px;
}

.feat-mini-gallery .photo-ph span {
    display: none;
}

.feat-mini-gallery .view-more {
    background: var(--light-blue);
    color: var(--blue);
    font-family: var(--f-head);
    font-size: 10px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ============ GALLERY ============ */
.section-gallery {
    background: var(--soft-grey);
    padding: 64px 0;
}

.gal-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.gal-chip {
    font-family: var(--f-head);
    font-size: 12px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--border-blue);
    background: #fff;
    color: var(--navy);
    transition: all .2s ease;
}

.gal-chip:hover {
    background: var(--pale-yellow);
}

.gal-chip.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gal-card {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
}

.gal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(27, 36, 96, .1);
}

.gal-photo {
    height: 170px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eef1fb, #dfe4f7);
    border-radius: 16px 16px 0 0;
}

.gal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gal-card:hover .gal-photo img {
    transform: scale(1.05);
}


.gal-cat-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(27, 36, 96, .75);
    color: #fff;
    font-family: var(--f-body);
    font-size: 10px;
    padding: 3px 9px;
    border-radius: 8px;
}

.gal-body {
    padding: 14px 15px;
}

.gal-title {
    font-family: var(--f-head);
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.3;
}

.gal-org {
    font-family: var(--f-body);
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 6px;
}

.gal-caption {
    font-family: var(--f-body);
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

.gal-card.hidden-card {
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 30, .9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 400;
    padding: 24px;
}

.lightbox.open {
    display: flex;
}

.lightbox-box {
    max-width: 600px;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.lightbox-photo {
    height: 280px;
}

.lightbox-info {
    padding: 20px 24px;
}

.lightbox-info h4 {
    font-family: var(--f-head);
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 6px;
}

.lightbox-info p {
    font-family: var(--f-body);
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .3);
}

/* ============ ARCHIVE ============ */
.section-archive {
    background: #fff;
    padding: 64px 0;
}

.archive-wrap {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 36, 96, .06);
}

table.archive-table {
    width: 100%;
    border-collapse: collapse;
}

.archive-table thead th {
    background: var(--navy);
    color: #fff;
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
    padding: 13px 14px;
    text-align: left;
}

.archive-table td {
    padding: 13px 14px;
    font-family: var(--f-body);
    font-size: 12.5px;
    color: var(--body-text);
    border-bottom: 1px solid var(--border-blue);
}

.archive-table tbody tr:hover {
    background: var(--light-blue);
}

.archive-table tbody tr:last-child td {
    border-bottom: none;
}

.archive-report-btn {
    font-family: var(--f-head);
    font-size: 10.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
}

.archive-report-btn:hover {
    background: var(--navy);
}

.archive-cards {
    display: none;
}

.archive-card {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
}

.archive-card-title {
    font-family: var(--f-head);
    font-size: 13.5px;
    color: var(--navy);
    margin-bottom: 8px;
}

.archive-card-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--f-body);
    font-size: 11.5px;
    color: var(--muted);
    padding: 5px 0;
    border-bottom: 1px dashed var(--border-blue);
}

.archive-card-row b {
    color: var(--body-text);
    font-weight: 500;
}

.archive-card-row:last-of-type {
    border-bottom: none;
}

/* ============ OUTCOMES ============ */
.section-outcomes {
    background: var(--soft-grey);
    padding: 64px 0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.outcome-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.outcome-tick {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--pale-yellow);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outcome-card h4 {
    font-family: var(--f-head);
    font-size: 13.5px;
    color: var(--navy);
    margin-bottom: 5px;
}

.outcome-card p {
    font-family: var(--f-body);
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* ============ REPORTS & EVIDENCE ============ */
.section-reports {
    background: #fff;
    padding: 64px 0;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.report-card {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 18px;
    padding: 20px;
    transition: transform .22s ease, box-shadow .22s ease;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(27, 36, 96, .08);
}

.report-card h4 {
    font-family: var(--f-head);
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.report-meta {
    font-family: var(--f-body);
    font-size: 11.5px;
    color: var(--muted);
    margin-bottom: 6px;
}

.report-summary {
    font-family: var(--f-body);
    font-size: 12px;
    color: var(--body-text);
    line-height: 1.6;
    margin: 12px 0 16px;
}

.report-btns {
    display: flex;
    gap: 8px;
}

.report-btn {
    flex: 1;
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 600;
    padding: 9px;
    border-radius: 8px;
    text-align: center;
}

.rb-pdf {
    background: var(--blue);
    color: #fff;
}

.rb-pdf:hover {
    background: var(--navy);
}

.rb-photo {
    border: 1.4px solid var(--blue);
    color: var(--blue);
}

.rb-photo:hover {
    background: var(--light-blue);
}

.upload-fields-box {
    background: var(--soft-grey);
    border: 1.5px dashed var(--border-blue);
    border-radius: 18px;
    padding: 24px 26px;
}

.upload-fields-box h4 {
    font-family: var(--f-head);
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 14px;
}

.upload-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.upload-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-body);
    font-size: 12.5px;
    color: var(--body-text);
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 10px;
    padding: 11px 14px;
}

.upload-item .icon {
    width: 16px;
    height: 16px;
    color: var(--blue);
    flex-shrink: 0;
}

/* ============ FINAL CTA ============ */
.section-cta {
    background: linear-gradient(135deg, #35459a 0%, #1b2460 100%);
    padding: 70px 0;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.cta-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    font-family: var(--f-head);
    font-weight: 700;
    font-size: clamp(24px, 3.4vw, 32px);
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.cta-inner p {
    font-family: var(--f-body);
    font-size: 14.5px;
    color: rgba(255, 255, 255, .86);
    line-height: 1.75;
    margin-bottom: 26px;
}

.cta-btn-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-plane-svg {
    position: absolute;
    bottom: 14%;
    left: -4%;
    width: 60%;
    height: 60px;
    z-index: 1;
    opacity: .9;
}

/* ============ EXPLORE MORE ============ */
.section-explore {
    background: #fff;
    padding: 64px 0;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.explore-card {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(27, 36, 96, .05);
    transition: transform .22s ease, box-shadow .22s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(27, 36, 96, .1);
}

.explore-photo {
    height: 120px;
}

.explore-body {
    padding: 18px;
}

.explore-body h4 {
    font-family: var(--f-head);
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 6px;
}

.explore-body p {
    font-family: var(--f-body);
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* ============ FOOTER ============ */
.mini-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .7);
    padding: 26px 0;
}

.mini-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--f-body);
    font-size: 11.5px;
}

.mini-footer a {
    color: var(--yellow);
}

/* ============ RESPONSIVE ============ */
@media(max-width:1100px) {
    .dash-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cycle-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .reports-grid {
        grid-template-columns: 1fr 1fr;
    }

    .outcomes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .explore-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 280px;
        order: -1;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:700px) {
    .container {
        padding: 0 18px;
    }

    .dash-grid {
        grid-template-columns: 1fr 1fr;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .gal-grid {
        grid-template-columns: 1fr;
    }

    .cycle-steps {
        grid-template-columns: 1fr;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }

    .archive-wrap {
        display: none;
    }

    .archive-cards {
        display: block;
    }

    .upload-list {
        grid-template-columns: 1fr;
    }
}