:root {
    --blue-50: #e6f1fb;
    --blue-200: #85b7eb;
    --blue-600: #4054b2;
    --blue-800: #4054b2;
    --blue-900: #4054b2;
    --teal-50: #e1f5ee;
    --teal-600: #0f6e56;
    --teal-800: #085041;
    --amber-50: #faeeda;
    --amber-400: #ef9f27;
    --amber-600: #854f0b;
    --amber-800: #633806;
    --green-50: #eaf3de;
    --green-600: #3b6d11;
    --green-800: #27500a;
    --coral-50: #faece7;
    --coral-600: #993c1d;
    --coral-800: #712b13;
    --gray-50: #f1efe8;
    --gray-200: #b4b2a9;
    --gray-600: #5f5e5a;
    --gray-800: #444441;
    --purple-50: #eeedfe;
    --purple-600: #534ab7;
    --purple-800: #3c3489;
    --red-50: #fcebeb;
    --red-600: #a32d2d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family:
        "Segoe UI",
        system-ui,
        -apple-system,
        sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2 {
    padding-top: 0;
}

a {
    color: var(--blue-600);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* HERO */
.hero {
    background: linear-gradient(160deg, #042c53 0%, #4054b2 50%, #4054b2 100%);
    color: #fff;
    padding: clamp(40px, 8vw, 72px) clamp(20px, 6vw, 40px) clamp(32px, 7vw, 64px);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 500px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}
.hero-inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}
.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef9f27;
    display: inline-block;
}
.hero h1 {
    font-size: clamp(28px, 7vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    padding-top: 0;
}
.hero h1 em {
    font-style: normal;
    color: #ef9f27;
}
.hero-sub {
    font-size: clamp(15px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 560px;
}
.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-block;
    background: #ef9f27;
    color: #411402;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s;
    text-align: center;
}
.btn-primary:hover {
    opacity: 0.88;
    text-decoration: none;
    color: #411402;
}
.btn-outline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    text-align: center;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    text-decoration: none;
    color: #fff;
}

/* STATS STRIP */
.stats-strip {
    background: var(--gray-50);
    border-bottom: 1px solid #e0ded6;
    padding: clamp(20px, 5vw, 28px) clamp(20px, 6vw, 40px);
}
.stats-inner {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 24px;
}
.stat-item {
    text-align: center;
}
.stat-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-600);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.4;
}

/* SECTIONS */
.section {
    padding: clamp(40px, 8vw, 64px) clamp(20px, 6vw, 40px);
}
.section-inner {
    max-width: 780px;
    margin: 0 auto;
}
.section-alt {
    background: var(--blue-50);
}
.section-dark {
    background: var(--blue-900);
    color: #fff;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-600);
    margin-bottom: 10px;
}

.section-dark .section-eyebrow {
    color: rgba(255, 255, 255, 0.5);
}
.section-alt .section-eyebrow {
    color: var(--blue-800);
}

.section h2 {
    font-size: clamp(22px, 4.5vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: #0d0d0d;
}
.section-dark h2 {
    color: #fff;
}
.section-alt h2 {
    color: var(--blue-900);
}

.section-lead {
    font-size: clamp(15px, 2.2vw, 17px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.section-dark .section-lead {
    color: rgba(255, 255, 255, 0.7);
}

.section-lead-dark {
    color: rgba(0, 0, 0, 0.7);
}

/* HIGHLIGHT BOX — unique selling point */
.usp-box {
    background: var(--blue-900);
    color: #fff;
    border-radius: 16px;
    padding: clamp(24px, 6vw, 36px) clamp(20px, 6vw, 40px);
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}
.usp-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    font-family: Georgia, serif;
}
.usp-box p {
    font-size: clamp(16px, 2.8vw, 20px);
    line-height: 1.55;
    font-weight: 400;
    max-width: 640px;
    position: relative;
    z-index: 1;
}
.usp-box strong {
    color: #ef9f27;
    font-weight: 600;
}

/* CARDS GRID */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.card {
    background: #fff;
    border: 1px solid #e8e6df;
    border-radius: 12px;
    padding: 24px;
}
.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}
.card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}
.card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* TRACK — лідерська вертикаль */
.track {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.track-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #e8e6df;
}
.track-item:last-child {
    border-bottom: none;
}
.track-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--blue-800);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--blue-200);
}
.track-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}
.track-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* WHO IS IT FOR */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.aud-card {
    border-radius: 12px;
    padding: 20px;
    border: 1px solid transparent;
}
.aud-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}
.aud-card p {
    font-size: 12px;
    line-height: 1.6;
}

/* CAREERS */
.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ctag {
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 20px;
    font-weight: 500;
}

/* QUOTE */
.quote-block {
    border-left: 3px solid var(--blue-600);
    padding: 20px 24px;
    background: var(--blue-50);
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}
.quote-block blockquote {
    font-size: clamp(15px, 2.2vw, 17px);
    font-style: italic;
    color: var(--blue-800);
    line-height: 1.65;
    margin-bottom: 8px;
}
.quote-source {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

/* PROGRAM STRUCTURE */
.prog-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.prog-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.prog-item {
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #f0ede5;
    color: #333;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.prog-item:last-child {
    border-bottom: none;
}
.prog-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-600);
    margin-top: 5px;
    flex-shrink: 0;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #e8e6df;
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-q:hover {
    color: var(--blue-600);
    background: none !important;
}
.faq-chevron {
    font-size: 18px;
    color: var(--gray-600);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.faq-a {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    padding: 0 0 18px;
    display: none;
}
.faq-item.open .faq-a {
    display: block;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, var(--amber-50) 0%, #fff 60%);
    border: 1px solid #e0d9c8;
    border-radius: 16px;
    padding: clamp(28px, 7vw, 48px) clamp(20px, 6vw, 40px);
    text-align: center;
}
.cta-final h2 {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 12px;
}
.cta-final p {
    font-size: clamp(14px, 2.2vw, 16px);
    color: #555;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-final .btn-primary {
    font-size: 16px;
    padding: 16px 36px;
}

/* FOOTER NAV */
.footer-nav {
    background: var(--gray-50);
    border-top: 1px solid #e0ded6;
    padding: clamp(18px, 4vw, 24px) clamp(20px, 6vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-nav .brand {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-800);
}
.footer-nav .links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-nav .links a {
    font-size: 12px;
    color: var(--gray-600);
}
.footer-nav .links a:hover {
    color: var(--blue-600);
}

/* BADGE */
.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 6px;
}
.badge-new {
    background: var(--amber-50);
    color: var(--amber-600);
    border: 1px solid #fac775;
}
.badge-hot {
    background: var(--red-50);
    color: var(--red-600);
}

.highlight-text {
    color: var(--blue-600);
    font-weight: 600;
}

hr.divider {
    border: none;
    border-top: 1px solid #e8e6df;
    margin: 40px 0;
}

/* ================================
   RESPONSIVE / MOBILE OVERRIDES
   ================================ */

@media (max-width: 768px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 16px;
    }

    .prog-cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .quote-block {
        padding: 16px 18px;
    }
}

@media (max-width: 600px) {
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-row .btn-primary,
    .hero-cta-row .btn-outline {
        width: 100%;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cards-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-nav .links {
        gap: 14px;
    }

    .career-tags {
        gap: 6px;
    }

    .ctag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .track-item {
        gap: 14px;
    }

    .usp-box::before {
        font-size: 110px;
        top: -10px;
        right: 10px;
    }

    .cta-final .btn-primary {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .stat-num {
        font-size: 24px;
    }
}