:root {
    --purple-900: #21103d;
    --purple-800: #34115f;
    --purple-700: #56208f;
    --purple-600: #6f24b2;
    --purple-500: #8c49d2;
    --orange-600: #f1621b;
    --orange-500: #ff7a1f;
    --orange-300: #ffbe85;
    --navy-900: #13162f;
    --navy-700: #272d56;
    --sky-100: #eef4ff;
    --paper: #fffdf9;
    --paper-soft: #f7f3ff;
    --paper-deep: #ece5ff;
    --white: #ffffff;
    --text-900: #1f1f2f;
    --text-700: #57576e;
    --text-500: #7a7a93;
    --border: rgba(33, 16, 61, 0.1);
    --shadow-soft: 0 20px 50px rgba(37, 16, 76, 0.09);
    --shadow-strong: 0 32px 80px rgba(33, 16, 61, 0.18);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --transition: 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    color: var(--text-900);
    background:
        linear-gradient(90deg, rgba(111, 36, 178, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(111, 36, 178, 0.045) 1px, transparent 1px),
        radial-gradient(circle at top left, rgba(255, 122, 31, 0.14), transparent 24%),
        radial-gradient(circle at right 10%, rgba(111, 36, 178, 0.12), transparent 28%),
        linear-gradient(180deg, #fcfbff 0%, #f8f3ff 45%, #fffdfa 100%);
    background-size: 28px 28px, 28px 28px, auto, auto, auto;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
}

ul {
    list-style: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section-space {
    padding: 110px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--purple-700);
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 48px 0;
}

.section-heading-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.story-copy h2,
.methodology-panel h2,
.contact-copy h2,
.cta-box h2 {
    margin: 12px 0 14px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--navy-900);
}

.section-heading p,
.story-copy p,
.methodology-panel p,
.contact-copy p,
.footer-brand p,
.hero-lead,
.trust-grid p,
.program-card p,
.method-card p,
.campus-info-card p {
    color: var(--text-700);
    font-size: 1.04rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-700), var(--orange-500));
    box-shadow: 0 22px 44px rgba(111, 36, 178, 0.28);
}

.btn-secondary {
    color: var(--purple-800);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(86, 32, 143, 0.12);
    box-shadow: 0 14px 30px rgba(33, 16, 61, 0.06);
}

.btn-light {
    color: var(--purple-800);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 233, 216, 0.95));
    box-shadow: 0 20px 40px rgba(16, 15, 45, 0.18);
}

.btn-large {
    padding: 16px 28px;
}

.btn-inline {
    margin-top: 26px;
    padding: 15px 24px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, #25d366, #159a47);
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.36);
    font-size: 1.65rem;
}

.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, 0.28);
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

.topbar {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.93rem;
}

.topbar-content,
.topbar-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar-content {
    padding: 12px 0;
}

.topbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd7b7;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(252, 251, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(252, 251, 255, 0.96);
    border-color: rgba(33, 16, 61, 0.08);
    box-shadow: 0 16px 35px rgba(33, 16, 61, 0.08);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 88px;
}

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

.brand img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 34px rgba(111, 36, 178, 0.16);
    padding: 8px;
}

.brand strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.45rem;
    line-height: 1;
    color: var(--navy-900);
}

.brand span {
    display: block;
    margin-top: 4px;
    color: var(--text-700);
    font-size: 0.95rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    position: relative;
    font-weight: 700;
    color: var(--text-900);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple-600), var(--orange-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    transform: scaleX(1);
}

.desktop-cta {
    padding: 14px 22px;
    font-size: 0.96rem;
}

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    overflow: clip;
    padding: 62px 0 64px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-orb-left {
    width: 360px;
    height: 360px;
    left: -100px;
    top: 30px;
    background: rgba(255, 122, 31, 0.12);
}

.hero-orb-right {
    width: 420px;
    height: 420px;
    right: -100px;
    top: 40px;
    background: rgba(111, 36, 178, 0.13);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: 42px;
    align-items: center;
}

.hero-copy h1 {
    margin: 14px 0 18px;
    max-width: 640px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.55rem, 4.6vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: var(--navy-900);
}

.hero-copy h1 span {
    background: linear-gradient(135deg, var(--purple-600), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.hero-quick-actions {
    margin-top: 24px;
}

.hero-quick-actions p {
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--navy-900);
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-action {
    padding: 11px 17px;
    border-radius: 999px;
    border: 1px solid rgba(86, 32, 143, 0.11);
    background: rgba(255, 255, 255, 0.86);
    color: var(--purple-800);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(33, 16, 61, 0.05);
    transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.quick-action:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(241, 98, 27, 0.38);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.hero-metrics article,
.trust-grid article,
.program-card,
.method-card,
.footer-card,
.contact-list article {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
}

.hero-metrics article {
    padding: 18px;
    border-radius: 22px;
}

.hero-metrics strong {
    display: block;
    margin-bottom: 6px;
    color: var(--purple-800);
    font-size: 1.22rem;
}

.hero-metrics span {
    color: var(--text-700);
}

.hero-visual {
    position: relative;
    min-height: 620px;
}

.hero-main-card {
    position: absolute;
    inset: 0 22px 0 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.hero-main-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 22, 47, 0.02) 40%, rgba(19, 22, 47, 0.66) 100%);
}

.hero-main-card img {
    height: 100%;
    object-fit: cover;
}

.hero-card-content {
    position: absolute;
    left: 24px;
    right: auto;
    bottom: 24px;
    z-index: 1;
    width: min(420px, calc(100% - 48px));
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(20, 18, 40, 0.16), rgba(20, 18, 40, 0.56));
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.hero-card-content span,
.program-label {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-card-content strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    line-height: 1.15;
}

.hero-badge {
    position: absolute;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.hero-badge {
    width: 215px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px 13px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.84);
}

.hero-badge i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-600), var(--orange-500));
}

.hero-badge strong {
    display: block;
    margin-bottom: 2px;
    color: var(--navy-900);
    font-size: 0.92rem;
    line-height: 1.15;
}

.hero-badge span {
    color: var(--text-700);
    font-size: 0.84rem;
    line-height: 1.2;
}

.hero-badge-top {
    right: 0;
    top: 28px;
}

.trust-strip {
    padding-bottom: 24px;
}

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

.trust-grid article {
    padding: 24px 22px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-grid i,
.program-icon,
.contact-list i {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-700), var(--orange-500));
    box-shadow: 0 16px 30px rgba(111, 36, 178, 0.22);
}

.trust-grid h3,
.program-card h3,
.method-card h3,
.campus-info-card h3,
.footer-card h3 {
    margin-bottom: 8px;
    color: var(--navy-900);
    font-size: 1.12rem;
}

.story-section {
    position: relative;
}

.story-grid,
.methodology-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    align-items: center;
}

.story-highlights {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.story-highlights article {
    padding: 18px 20px;
    border-left: 4px solid var(--orange-500);
    border-radius: 0 20px 20px 0;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 30px rgba(33, 16, 61, 0.05);
}

.story-highlights strong {
    display: block;
    margin-bottom: 4px;
    color: var(--purple-800);
}

.story-highlights span {
    color: var(--text-700);
}

.story-visual {
    position: relative;
    min-height: 620px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.story-visual img {
    height: 100%;
    object-fit: cover;
}

.story-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(19, 22, 47, 0.72);
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

.story-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--orange-300);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.story-card strong {
    font-family: "Sora", sans-serif;
    font-size: 1.75rem;
    line-height: 1;
}

.programs-section {
    background:
        radial-gradient(circle at top right, rgba(255, 122, 31, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(239, 229, 255, 0.56) 0%, rgba(255, 255, 255, 0.36) 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.program-card {
    padding: 30px 26px;
    border-radius: var(--radius-lg);
}

.program-card.featured {
    background: linear-gradient(180deg, rgba(98, 35, 158, 0.94), rgba(44, 19, 89, 0.96));
    color: var(--white);
    transform: translateY(-10px);
}

.program-card.featured h3,
.program-card.featured p,
.program-card.featured li,
.program-card.featured .program-label {
    color: var(--white);
}

.program-card.featured .program-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 122, 31, 0.88));
}

.program-icon {
    margin-bottom: 18px;
}

.program-label {
    color: var(--purple-700);
}

.program-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.45rem;
    line-height: 1.1;
}

.program-card ul {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.program-card li {
    position: relative;
    padding-left: 18px;
    color: var(--text-700);
}

.program-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-600), var(--orange-500));
}

.program-card.featured li::before {
    background: var(--orange-300);
}

.methodology-grid {
    align-items: start;
}

.methodology-panel {
    position: sticky;
    top: 118px;
}

.methodology-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.method-card {
    padding: 26px 24px;
    border-radius: var(--radius-lg);
}

.method-card span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(111, 36, 178, 0.1);
    color: var(--purple-700);
    font-weight: 800;
}

.campus-section {
    background:
        radial-gradient(circle at left top, rgba(111, 36, 178, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(247, 243, 255, 0.82));
}

.campus-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.88fr;
    gap: 20px;
}

.campus-card {
    min-height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.85);
}

.campus-card img {
    height: 100%;
    object-fit: cover;
}

.campus-card-large {
    grid-row: span 2;
    min-height: 700px;
}

.campus-info-card {
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.campus-info-logo {
    width: 96px;
    height: 96px;
    margin-bottom: 22px;
    padding: 14px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(111, 36, 178, 0.1), rgba(255, 122, 31, 0.12));
}

.campus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.campus-tags span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(111, 36, 178, 0.08);
    color: var(--purple-800);
    font-weight: 700;
}

.cta-section {
    padding: 44px 0 0;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
    padding: 26px 32px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 190, 133, 0.4), transparent 28%),
        linear-gradient(135deg, rgba(24, 14, 48, 0.98), rgba(98, 35, 158, 0.96));
    box-shadow: var(--shadow-strong);
}

.cta-box .section-kicker,
.cta-box h2 {
    color: var(--white);
}

.cta-box h2 {
    max-width: 640px;
    font-size: clamp(1.6rem, 2.5vw, 2.35rem);
    line-height: 1.08;
}

.contact-grid {
    align-items: stretch;
}

.contact-copy p {
    max-width: 580px;
    margin-bottom: 26px;
}

.contact-list {
    display: grid;
    gap: 16px;
}

.contact-list article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 22px;
}

.contact-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy-900);
}

.contact-list span,
.contact-list a {
    color: var(--text-700);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.map-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: rgba(255, 255, 255, 0.86);
    min-height: 620px;
}

.map-frame {
    position: relative;
    height: 100%;
    min-height: 620px;
}

.map-frame iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(1.06) contrast(1.03);
}

.map-link {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(24, 14, 48, 0.88);
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 18px 35px rgba(24, 14, 48, 0.24);
    backdrop-filter: blur(12px);
}

.footer {
    padding: 88px 0 52px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.footer-brand {
    padding-right: 18px;
}

.footer-brand-link {
    margin-bottom: 18px;
}

.footer-card {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.footer-card ul {
    display: grid;
    gap: 14px;
}

.footer-card li {
    display: flex;
    gap: 10px;
    color: var(--text-700);
}

.footer-card i {
    width: 20px;
    margin-top: 3px;
    color: var(--purple-700);
}

.footer-link {
    color: var(--purple-700);
    font-weight: 800;
}

@media (max-width: 1100px) {
    .desktop-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        gap: 5px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(33, 16, 61, 0.08);
        background: rgba(255, 255, 255, 0.9);
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--navy-900);
        transition: transform var(--transition), opacity var(--transition);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        padding: 22px;
        border-radius: 24px;
        background: rgba(252, 251, 255, 0.98);
        border: 1px solid rgba(33, 16, 61, 0.08);
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero-grid,
    .story-grid,
    .methodology-grid,
    .contact-grid,
    .footer-grid,
    .trust-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .hero-main-card,
    .hero-badge {
        position: relative;
        inset: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .hero-main-card {
        height: 500px;
    }

    .hero-badge {
        width: 100%;
        transform: none;
    }

    .methodology-panel {
        position: static;
    }

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

    .campus-card-large {
        grid-row: auto;
        min-height: 480px;
    }

    .map-frame {
        min-height: 480px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .section-space {
        padding: 90px 0;
    }

    .topbar-content,
    .topbar-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-metrics,
    .methodology-cards {
        grid-template-columns: 1fr;
    }

    .story-visual,
    .hero-main-card {
        min-height: 380px;
        height: 380px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .nav {
        min-height: 78px;
    }

    .brand img {
        width: 64px;
        height: 64px;
    }

    .brand strong {
        font-size: 1.2rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .hero-actions,
    .contact-actions,
    .quick-actions {
        flex-direction: column;
    }

    .btn-large,
    .btn-inline,
    .desktop-cta,
    .quick-action {
        width: 100%;
    }

    .hero-main-card,
    .story-visual,
    .campus-card-large,
    .campus-card,
    .map-frame {
        min-height: 320px;
        height: auto;
    }

    .hero-card-content strong,
    .story-card strong {
        font-size: 1.4rem;
    }

    .hero-card-content {
        width: calc(100% - 40px);
    }

    .section-heading h2,
    .story-copy h2,
    .methodology-panel h2,
    .contact-copy h2 {
        font-size: clamp(1.8rem, 8vw, 2.45rem);
    }

    .cta-box {
        padding: 22px 20px;
    }

    .map-link {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: center;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        font-size: 1.45rem;
    }
}
