@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --navy:      #13344b;
    --navy-mid:  #1a4260;
    --purple:    #5951EE;
    --teal:      #20C9AD;
    --teal-dark: #17A899;
    --orange:    #F7A72F;
    --off-white: #f5f6f8;
    --mid-grey:  #e4e7ec;
    --text:      #2E2B67;
    --soft:      #4a5568;
    --muted:     #8a93a6;
    --white:     #ffffff;
    --shadow:    0 4px 24px rgba(19,52,75,0.10);
    --shadow-lg: 0 10px 40px rgba(19,52,75,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Montserrat', sans-serif; color: var(--text); line-height: 1.65; background: var(--white); font-size: 18px; }

/* ── NAV ── */
nav { background: var(--navy); position: sticky; top: 0; z-index: 1000; padding: 0 2rem; box-shadow: 0 2px 16px rgba(0,0,0,0.22); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; height: 72px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 46.8px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta { background: var(--teal) !important; color: var(--navy) !important; padding: 0.5rem 1.3rem; border-radius: 4px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--teal-dark) !important; }

/* ── LAYOUT ── */
.sec { padding: 5.5rem 2rem; }
.sec-inner { max-width: 1200px; margin: 0 auto; }
.bg-off  { background: var(--off-white); }
.bg-navy { background: var(--navy); }

/* ── TYPOGRAPHY ── */
.eyebrow { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

.sec-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.55rem; }
.sec-label::before { content: ''; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; display: block; }
.sec-label.tl { color: var(--teal); }
.sec-label.tl::before { background: var(--teal); }

.sec-h { font-size: clamp(1.85rem, 2.8vw, 2.55rem); font-weight: 700; color: var(--navy); line-height: 1.18; margin-bottom: 0.9rem; }
.sec-h.light { color: var(--white); }
.sec-p { font-size: 1.05rem; color: var(--soft); max-width: 990px; line-height: 1.78; margin-bottom: 2.5rem; }
.sec-p.light { color: rgba(255,255,255,0.7); }

/* ── BUTTONS ── */
.btn { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem; padding: 0.92rem 2rem; border-radius: 5px; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-teal { background: var(--teal); color: var(--navy); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.35); color: var(--white); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }

/* ── PHOTO HERO (shared by 7 pages) ── */
.hero { min-height: 420px; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(19,52,75,0.97) 0%, rgba(19,52,75,0.93) 50%, rgba(19,52,75,0.6) 100%); }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; padding: 5rem 2rem; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.1rem, 3.4vw, 3.1rem); font-weight: 700; line-height: 1.13; color: var(--white); margin-bottom: 1.2rem; }
.hero h1 .hl { color: var(--teal); }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.72); max-width: 600px; line-height: 1.78; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.42); margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ── CTA SECTION ── */
.cta-sec { background: var(--navy); padding: 5rem 2rem; position: relative; overflow: hidden; text-align: center; }
.cta-sec::before { content: ''; position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(32,201,173,0.1) 0%, transparent 65%); pointer-events: none; }
.cta-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-sec h2 { font-size: clamp(1.8rem, 2.6vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.cta-sec p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CREDENTIALS ── */
.creds { background: var(--off-white); padding: 2.4rem 2rem; text-align: center; }
.creds-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.7rem; }
.creds-list { font-size: 0.95rem; color: var(--soft); font-weight: 500; }

/* ── USE CASE NAV ── */
.uc-nav { background: var(--off-white); padding: 1.4rem 2rem; border-bottom: 1px solid var(--mid-grey); }
.uc-nav-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.uc-nav-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-right: 0.5rem; }
.uc-nav a { font-size: 0.88rem; color: var(--soft); text-decoration: none; padding: 0.35rem 0.85rem; border-radius: 20px; border: 1px solid var(--mid-grey); background: var(--white); transition: all 0.2s; font-weight: 500; }
.uc-nav a:hover { border-color: var(--teal); color: var(--teal); }
.uc-nav a.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 2.2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.2rem; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-right { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.84rem; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .nav-links { display: none; }
    .cta-btns { flex-direction: column; align-items: center; }
}
