/* =========================================
   GLOBAL
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #14213d;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --blue: #0757b8;
    --blue-dark: #063b7c;
    --blue-light: #eaf3ff;
    --orange: #ff7a18;
    --orange-light: #fff1e7;
    --dark: #10213f;
    --text: #5e6b7e;
    --white: #ffffff;
    --border: #e8edf4;
    --shadow: 0 15px 45px rgba(13, 55, 100, 0.10);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.section {
    padding: 90px 0;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.section-tag {
    display: inline-block;
    color: var(--orange);
    background: var(--orange-light);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--text);
    font-size: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 23px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: .3s ease;
}

.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 122, 24, .25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #ed6810;
}

.btn-outline {
    border: 1.5px solid var(--blue);
    color: var(--blue);
    background: white;
}

.btn-outline:hover {
    background: var(--blue);
    color: white;
}


/* =========================================
   TOP BAR
========================================= */

.topbar {
    background: var(--blue-dark);
    color: white;
    font-size: 13px;
    padding: 9px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar span {
    opacity: .95;
}


/* =========================================
   NAVIGATION
========================================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #eef1f5;
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 150px;
    height: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 23px;
    color: var(--blue);
    letter-spacing: -0.3px;
}

.brand-tagline {
    font-size: 10px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: #33415c;
    transition: .25s;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    padding: 11px 18px !important;
    background: var(--blue);
    color: white !important;
    border-radius: 7px;
}

.nav-cta:hover {
    background: var(--blue-dark);
}

.menu-btn {
    display: none;
    font-size: 27px;
    cursor: pointer;
    color: var(--dark);
}


/* =========================================
   BREADCRUMB
========================================= */

.breadcrumb {
    padding: 18px 0;
    font-size: 13px;
    color: var(--text);
    background: #f7faff;
    border-bottom: 1px solid var(--border);
}

.breadcrumb a {
    color: var(--blue);
    font-weight: 600;
}

.breadcrumb span.sep {
    margin: 0 8px;
    color: #b7c2d1;
}


/* =========================================
   PAGE HERO (program pages)
========================================= */

.page-hero {
    background:
        radial-gradient(circle at 85% 15%, rgba(255,122,24,.12), transparent 25%),
        radial-gradient(circle at 10% 80%, rgba(7,87,184,.10), transparent 30%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 65%);
    padding: 70px 0 60px;
}

.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e9f3ff;
    color: var(--blue);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.page-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 4.4vw, 50px);
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -1.2px;
    margin-bottom: 18px;
    max-width: 820px;
}

.page-hero h1 .orange {
    color: var(--orange);
}

.page-hero .lede {
    font-size: 17px;
    color: var(--text);
    max-width: 680px;
    margin-bottom: 28px;
}

.page-hero .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.quick-fact {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

a.quick-fact.quick-fact-highlight {
    display: block;
    text-decoration: none;
    border: 1px solid var(--orange);
    position: relative;
    animation: quickFactPulse 2.2s ease-in-out infinite;
    cursor: pointer;
}

.quick-fact-highlight strong {
    color: var(--orange) !important;
}

.quick-fact-highlight .quick-fact-hint {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--orange);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

@keyframes quickFactPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 122, 24, 0.35); }
    70% { box-shadow: 0 0 0 10px rgba(255, 122, 24, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 122, 24, 0); }
}

.quick-fact strong {
    display: block;
    color: var(--blue);
    font-size: 20px;
    margin-bottom: 4px;
}

.quick-fact span {
    font-size: 12px;
    color: var(--text);
}


/* =========================================
   CONTENT BLOCKS
========================================= */

.content-block {
    padding: 70px 0;
}

.content-block.alt {
    background: #f7faff;
}

.content-block h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 3.2vw, 34px);
    color: var(--dark);
    margin-bottom: 18px;
}

.content-block > .container > p {
    color: var(--text);
    max-width: 800px;
    margin-bottom: 10px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text);
    font-size: 14.5px;
}

.check-list li::before {
    content: "✓";
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    margin-top: 1px;
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.chip {
    background: white;
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
}


/* =========================================
   UNIVERSITIES / PROGRAMS (shared with homepage)
========================================= */

.university-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.university-card {
    padding: 28px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
    transition: .3s;
}

.university-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #cfe0f6;
}

a.university-card {
    display: block;
}

a.university-card.university-card-highlight {
    border: 1px solid var(--orange);
    position: relative;
    animation: cardPulse 2.4s ease-in-out infinite;
}

.university-card-highlight h3 {
    color: var(--orange);
}

.university-card-cta {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes cardPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 122, 24, 0.30); }
    70% { box-shadow: 0 0 0 12px rgba(255, 122, 24, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 122, 24, 0); }
}

.university-logo {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--blue);
    font-weight: 800;
    font-size: 19px;
    padding: 10px;
    overflow: hidden;
}

.university-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.university-card h3 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--dark);
}

.university-card p {
    font-size: 12px;
    color: var(--text);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.program-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9eef5;
    transition: .3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.program-number {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.program-card h3 {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 8px;
}

.program-card p {
    color: var(--text);
    font-size: 13px;
}

.program-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   PROMO CARDS (Universities / Compare)
========================================= */

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.promo-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #fbfcff);
    border: 1px solid var(--border);
    border-left: 6px solid var(--orange);
    border-radius: 18px;
    padding: 36px 34px;
    box-shadow: 0 15px 40px rgba(13, 55, 100, 0.08);
    transition: 0.3s ease;
    text-decoration: none;
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(13, 55, 100, 0.14);
}

.promo-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.10), transparent 70%);
}

.promo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
}

.promo-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px;
}

.promo-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.promo-card p {
    color: var(--text);
    font-size: 14.5px;
    max-width: 380px;
    margin-bottom: 24px;
}

.promo-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, var(--orange), #ff9a4d);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 26px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(255, 122, 24, 0.30);
}

@media (max-width: 760px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

.process {
    background: #f7faff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid var(--border);
    position: relative;
}

.process-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -22px;
    top: 50px;
    color: var(--orange);
    font-size: 25px;
    font-weight: bold;
}

.process-number {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    margin: 0 auto 18px;
    font-weight: 800;
}

.process-card h3 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 7px;
}

.process-card p {
    color: var(--text);
    font-size: 13px;
}


/* =========================================
   FAQ (native details/summary — crawlable, no JS needed)
========================================= */

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 4px 20px;
}

.faq-item summary {
    cursor: pointer;
    padding: 16px 0;
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--orange);
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    color: var(--text);
    font-size: 14px;
    padding-bottom: 18px;
}


/* =========================================
   CTA
========================================= */

.cta {
    padding: 75px 0;
}

.cta-box {
    background: linear-gradient(120deg, var(--blue-dark), var(--blue));
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    color: white;
    overflow: hidden;
    position: relative;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 40px solid rgba(255,255,255,.05);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-box p {
    opacity: .82;
    max-width: 600px;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    background: #f7faff;
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 55px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.contact-icon {
    min-width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue);
}

.contact-item strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}

.contact-item span {
    color: var(--text);
    font-size: 13px;
}

.form-card {
    background: white;
    border-radius: 18px;
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 5px;
}

.form-card > p {
    color: var(--text);
    font-size: 13px;
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #3c4a60;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    padding: 13px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: .2s;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(7,87,184,.08);
}

.form-submit {
    width: 100%;
    margin-top: 18px;
}

.form-message {
    display: none;
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    background: #e9f9f1;
    color: #16734a;
    font-size: 13px;
}


/* =========================================
   COMPARISON TOOL
========================================= */

.compare-tool {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.compare-step {
    margin-bottom: 30px;
}

.compare-step-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 14px;
}

.compare-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: grid;
    place-items: center;
    font-size: 13px;
    flex-shrink: 0;
}

#programSelect {
    width: 100%;
    max-width: 420px;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    padding: 13px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
}

.budget-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.budget-pills.active {
    opacity: 1;
    pointer-events: auto;
}

.budget-pill {
    border: 1px solid var(--border);
    background: white;
    padding: 13px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--dark);
    cursor: pointer;
    transition: 0.2s;
}

.budget-pill:hover {
    border-color: #bcd6f5;
}

.budget-pill.selected {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

#compareBtn {
    margin-top: 10px;
}

#compareBtn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.compare-results {
    margin-top: 40px;
    display: none;
}

.compare-results.visible {
    display: block;
}

.compare-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    min-width: 640px;
}

.compare-table th,
.compare-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: normal;
}

.compare-table thead th {
    background: var(--blue-dark);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    position: sticky;
    top: 0;
}

.compare-table tbody th {
    background: #f7faff;
    font-weight: 700;
    color: var(--dark);
    position: sticky;
    left: 0;
    min-width: 150px;
}

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th {
    border-bottom: none;
}

.compare-table td {
    color: var(--text);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.related-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: .25s;
}

.related-card:hover {
    border-color: #bcd6f5;
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.related-card strong {
    display: block;
    color: var(--dark);
    font-size: 14.5px;
    margin-bottom: 4px;
}

.related-card span {
    font-size: 12px;
    color: var(--blue);
    font-weight: 700;
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: #081a35;
    color: white;
    padding-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 50px;
}

.footer-brand img {
    width: 170px;
    background: white;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 18px;
}

.footer-brand p {
    color: #aab7ca;
    font-size: 13px;
    max-width: 300px;
}

footer h3 {
    font-size: 15px;
    margin-bottom: 18px;
}

footer li {
    margin-bottom: 11px;
}

footer li a {
    color: #aab7ca;
    font-size: 13px;
    transition: .2s;
}

footer li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    color: #8796ad;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


/* =========================================
   WHATSAPP FLOATING BUTTON
========================================= */

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #20c063;
    color: white;
    display: grid;
    place-items: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    z-index: 999;
    transition: .3s;
}

.whatsapp:hover {
    transform: scale(1.08);
}


/* =========================================
   HERO (homepage only)
========================================= */

.hero {
    position: relative;
    background:
        radial-gradient(circle at 85% 15%, rgba(255,122,24,.14), transparent 25%),
        radial-gradient(circle at 10% 80%, rgba(7,87,184,.12), transparent 30%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 65%);
    padding: 100px 0 90px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e9f3ff;
    color: var(--blue);
    padding: 9px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background: #18b878;
    border-radius: 50%;
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(42px, 5.3vw, 67px);
    line-height: 1.08;
    color: var(--dark);
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.hero h1 .blue {
    color: var(--blue);
}

.hero h1 .orange {
    color: var(--orange);
}

.hero-text {
    font-size: 17px;
    color: var(--text);
    max-width: 610px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item strong {
    display: block;
    font-size: 23px;
    color: var(--dark);
}

.trust-item span {
    font-size: 12px;
    color: var(--text);
}

.hero-card-wrapper {
    position: relative;
}

.hero-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 70px rgba(13, 55, 100, .14);
    border: 1px solid #edf2f7;
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: var(--orange);
    border-radius: 50%;
    opacity: .08;
    right: -35px;
    top: -35px;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.hero-card-header h3 {
    font-size: 18px;
    color: var(--dark);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 23px;
}

.course-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: .25s;
}

.course-option:hover {
    border-color: #bcd6f5;
    transform: translateX(4px);
}

.course-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--orange-light);
    font-size: 20px;
}

.course-option strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}

.course-option small {
    color: var(--text);
}

.stats {
    background: white;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.stats-box {
    background: white;
    box-shadow: var(--shadow);
    border-radius: 15px;
    padding: 28px 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #edf1f5;
}

.stat {
    text-align: center;
    padding: 10px;
    border-right: 1px solid #e9edf2;
}

.stat:last-child {
    border-right: none;
}

.stat h3 {
    color: var(--blue);
    font-size: 28px;
    font-weight: 800;
}

.stat p {
    color: var(--text);
    font-size: 13px;
}

.program-section {
    background: #f7faff;
}

.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.why-visual {
    background: linear-gradient(145deg, var(--blue-dark), var(--blue));
    border-radius: 25px;
    padding: 50px;
    color: white;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.why-visual::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 35px solid rgba(255,255,255,.08);
    border-radius: 50%;
    right: -80px;
    bottom: -80px;
}

.why-visual h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.why-visual p {
    opacity: .85;
    position: relative;
    z-index: 2;
}

.why-list {
    display: grid;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 18px;
}

.why-icon {
    min-width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 20px;
}

.why-item h3 {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 5px;
}

.why-item p {
    color: var(--text);
    font-size: 14px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 16px;
    }

    .hero-grid,
    .why-grid,
    .contact-grid,
    .two-col {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-card-wrapper {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .university-grid,
    .program-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .quick-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-card:not(:last-child)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {

    .topbar {
        display: none;
    }

    .navbar {
        height: 70px;
    }

    .logo {
        width: 130px;
    }

    .brand-icon {
        width: 36px;
        height: 36px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-tagline {
        font-size: 8px;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 10px;
    }

    .hero {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-box {
        grid-template-columns: 1fr 1fr;
        padding: 15px;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid #e9edf2;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: none;
    }

    .section,
    .content-block {
        padding: 65px 0;
    }

    .university-grid,
    .program-grid,
    .process-grid,
    .quick-facts,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .why-visual {
        min-height: 330px;
        padding: 35px;
    }

    .cta-box {
        padding: 40px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-box h2 {
        font-size: 29px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
