:root {
    --coral: #ff6b4a;
    --coral-deep: #e85130;
    --sun: #ffc857;
    --teal: #2ec4b6;
    --mint: #7ddea8;
    --sky: #e8f7ff;
    --ink: #1f2a37;
    --ink-soft: #4a5568;
    --cream: #fff9f4;
    --white: #ffffff;
    --shadow: 0 18px 40px rgba(31, 42, 55, 0.12);
    --radius: 1.35rem;
    --font-display: "Fredoka", system-ui, sans-serif;
    --font-body: "Nunito", system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 138, 200, 0.16), transparent 26%),
        radial-gradient(circle at 92% 8%, rgba(46, 196, 182, 0.2), transparent 28%),
        radial-gradient(circle at 50% 80%, rgba(255, 200, 87, 0.18), transparent 35%),
        linear-gradient(180deg, #fff8f1 0%, #eafbff 42%, #fff4ea 100%);
    line-height: 1.65;
    overflow-x: hidden;
}


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

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

.container {
    width: min(1160px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(255, 253, 249, 0.92);
    border-bottom: 1px solid rgba(31, 42, 55, 0.06);
}

.site-header .nav-row {
    position: relative;
}

.topbar {
    background: linear-gradient(90deg, var(--teal), #45d0c0 45%, var(--coral));
    color: white;
    font-size: 0.92rem;
    padding: 0.55rem 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.topbar a {
    color: white;
    font-weight: 700;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--sun), var(--coral));
    color: white;
    box-shadow: 0 10px 24px rgba(255, 107, 74, 0.28);
    animation: bob 3.4s ease-in-out infinite;
}

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

.brand-text strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.brand-text span {
    font-size: 0.78rem;
    color: var(--ink-soft);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(46, 196, 182, 0.14);
    color: #0f766e;
}

.nav-cta {
    background: linear-gradient(135deg, var(--coral), #ff8a65) !important;
    color: white !important;
    box-shadow: 0 10px 22px rgba(255, 107, 74, 0.28);
}

.nav-toggle {
    display: none;
    border: 0;
    background: var(--cream);
    width: 46px;
    height: 46px;
    border-radius: 14px;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: min(92vh, 860px);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: white;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.18) 0%, rgba(17, 24, 39, 0.55) 58%, rgba(17, 24, 39, 0.78) 100%),
        radial-gradient(circle at 20% 20%, rgba(255, 200, 87, 0.25), transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 5.5rem 0 4.2rem;
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    line-height: 0.95;
    margin: 0 0 1rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    max-width: 12ch;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 0.8rem;
    color: #ffe8a8;
}

.hero p {
    max-width: 36rem;
    font-size: 1.12rem;
    margin: 0 0 1.6rem;
    color: rgba(255, 255, 255, 0.92);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--sun), #ffb347);
    color: var(--ink);
    box-shadow: 0 14px 28px rgba(255, 200, 87, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.16);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn-solid {
    background: linear-gradient(135deg, var(--coral), #ff8a65);
    color: white;
    box-shadow: 0 14px 28px rgba(255, 107, 74, 0.28);
}

.btn-outline {
    background: white;
    color: var(--ink);
    border: 2px solid rgba(31, 42, 55, 0.08);
}

.section {
    padding: 5rem 0;
}

.section-tight {
    padding: 3.5rem 0;
}

.section-head {
    max-width: 42rem;
    margin-bottom: 2.4rem;
}

.section-head h2,
.page-hero h1,
.panel h3,
.step h3,
.feature h3,
.value h3 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 0.7rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #0f766e;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
}

.lead {
    color: var(--ink-soft);
    margin: 0;
    font-size: 1.05rem;
}

.award-strip {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
}

.award-badge {
    background: linear-gradient(145deg, #fff6ea, #fffaf5);
    border: 1px solid rgba(255, 200, 87, 0.45);
    border-radius: calc(var(--radius) + 0.4rem);
    padding: 1.6rem;
    box-shadow: 0 16px 36px rgba(31, 42, 55, 0.11), 0 6px 16px rgba(255, 107, 74, 0.07);
    position: relative;
    overflow: hidden;
}

.award-badge::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -40px;
    top: -40px;
    border-radius: 50%;
    background: rgba(255, 200, 87, 0.25);
    animation: pulseSoft 3s ease-in-out infinite;
}

.icon-bubble {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(46, 196, 182, 0.14);
    color: #0f766e;
    margin-bottom: 1rem;
    animation: wiggle 4.5s ease-in-out infinite;
}

.icon-bubble.coral { background: rgba(255, 107, 74, 0.14); color: var(--coral-deep); }
.icon-bubble.sun { background: rgba(255, 200, 87, 0.22); color: #b7791f; }
.icon-bubble.mint { background: rgba(125, 222, 168, 0.28); color: #2f855a; }

.feature-grid,
.value-grid,
.branch-grid,
.fee-grid,
.gallery-grid,
.why-grid {
    display: grid;
    gap: 1.25rem;
}

.feature-grid,
.why-grid {
    grid-template-columns: repeat(4, 1fr);
}

.value-grid,
.branch-grid,
.fee-grid {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature,
.value,
.branch,
.fee,
.panel,
.step,
.testimonial,
.contact-card {
    background: rgba(255, 250, 246, 0.92);
    border: 1px solid rgba(255, 214, 186, 0.45);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: 0 14px 34px rgba(31, 42, 55, 0.1), 0 4px 12px rgba(255, 107, 74, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover,
.value:hover,
.branch:hover,
.fee:hover,
.panel:hover,
.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.media-frame {
    position: relative;
    border-radius: calc(var(--radius) + 0.5rem);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 360px;
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
}

.float-chip {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: white;
    color: var(--ink);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    box-shadow: var(--shadow);
    animation: bob 3s ease-in-out infinite;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.steps-3 {
    grid-template-columns: repeat(3, 1fr);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--teal), #45d0c0);
    color: white;
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.page-hero {
    padding: 4.2rem 0 2.5rem;
}

.page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    max-width: 14ch;
}

.quote-banner {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) + 0.6rem);
    padding: 2.6rem;
    background:
        linear-gradient(135deg, rgba(46, 196, 182, 0.92), rgba(255, 107, 74, 0.88)),
        url("../images/campus-exterior.png") center/cover;
    color: white;
}

.quote-banner blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1.25;
    max-width: 18ch;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 240px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    color: white;
    font-weight: 800;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.75));
}

.fee {
    text-align: center;
}

.fee .price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--coral-deep);
    margin: 0.6rem 0;
}

.fee.featured {
    background: linear-gradient(180deg, #fff8ef, #ffffff);
    border-color: rgba(255, 200, 87, 0.55);
    transform: translateY(-8px);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
}

.testimonial strong {
    display: block;
    font-family: var(--font-display);
}

.stars {
    color: #f6b100;
    margin-bottom: 0.7rem;
    letter-spacing: 0.08em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.4rem;
}

.form {
    display: grid;
    gap: 0.9rem;
}

.form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 800;
    font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    border: 1px solid rgba(31, 42, 55, 0.1);
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    font: inherit;
    background: white;
}

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

.site-footer {
    margin-top: 2rem;
    background: #17303a;
    color: rgba(255, 255, 255, 0.86);
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.site-footer h3,
.site-footer h4 {
    font-family: var(--font-display);
    color: white;
    margin: 0 0 0.8rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.site-footer a:hover {
    color: var(--sun);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.float-actions {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 70;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
}

.whatsapp-float {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
    animation: bob 2.8s ease-in-out infinite;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.55;
    pointer-events: none;
    animation: drift 10s ease-in-out infinite;
}

.blob-1 {
    width: 120px;
    height: 120px;
    background: rgba(255, 200, 87, 0.35);
    top: 12%;
    right: 8%;
}

.blob-2 {
    width: 90px;
    height: 90px;
    background: rgba(46, 196, 182, 0.28);
    bottom: 18%;
    left: 6%;
    animation-delay: -3s;
}

.marquee-icons {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1rem;
    min-width: max-content;
    animation: marquee 22s linear infinite;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(31, 42, 55, 0.08);
    font-weight: 800;
    white-space: nowrap;
}

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

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-6deg); }
    75% { transform: rotate(6deg); }
}

@keyframes pulseSoft {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes slowZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.1); }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(18px, -14px); }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
    .feature-grid,
    .why-grid,
    .value-grid,
    .branch-grid,
    .fee-grid,
    .gallery-grid,
    .testimonial-grid,
    .steps,
    .award-strip,
    .split,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps,
    .steps-3 {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.4rem);
        right: 1.25rem;
        left: 1.25rem;
        background: white;
        border-radius: 1.2rem;
        box-shadow: var(--shadow);
        padding: 0.8rem;
        flex-direction: column;
        align-items: stretch;
        display: none;
    }

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

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .fee.featured {
        transform: none;
    }
}

@media (max-width: 680px) {
    .feature-grid,
    .why-grid,
    .value-grid,
    .branch-grid,
    .fee-grid,
    .gallery-grid,
    .testimonial-grid,
    .steps,
    .award-strip,
    .split,
    .contact-grid,
    .footer-grid,
    .mosaic,
    .color-stats {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 78vh;
    }

    .hero-content {
        padding: 3.2rem 0 2.6rem;
    }

    .hero-brand {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
        max-width: none;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-row {
        width: 100%;
    }

    .section {
        padding: 3.2rem 0;
    }

    .page-hero {
        padding: 2.8rem 0 1.4rem;
    }

    .page-hero h1 {
        max-width: none;
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .topbar {
        font-size: 0.8rem;
        padding: 0.45rem 0;
    }

    .topbar .container {
        justify-content: center;
        text-align: center;
    }

    .brand-text strong {
        font-size: 1.15rem;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .container {
        width: min(1160px, calc(100% - 1.35rem));
    }

    .quote-banner {
        padding: 1.6rem;
    }

    .mosaic-tall {
        min-height: 220px;
    }

    .floater {
        opacity: 0.6;
    }

    .floater.star {
        opacity: 0.95;
        width: 16px;
        height: 16px;
    }

    .float-actions {
        right: 0.75rem;
        bottom: 0.75rem;
        gap: 0.5rem;
    }

    .whatsapp-float,
    .scroll-top {
        width: 50px;
        height: 50px;
    }
}

/* ===== Mouse trail FX (normal system cursor + heart trail) ===== */
.cursor-fx {
    display: block;
}

.cursor-trail {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
}

.cursor-spark {
    position: fixed;
    pointer-events: none;
    translate: -50% -50%;
    opacity: 0.95;
}

.cursor-spark.is-heart {
    width: 14px;
    height: 14px;
    background: #ff6b8a;
    box-shadow: 0 0 12px rgba(255, 107, 138, 0.55);
    clip-path: path('M7 12.2C7 12.2 1.2 8.4 1.2 4.4C1.2 2.2 2.8 1.1 4.3 1.1C5.5 1.1 6.4 1.8 7 2.7C7.6 1.8 8.5 1.1 9.7 1.1C11.2 1.1 12.8 2.2 12.8 4.4C12.8 8.4 7 12.2 7 12.2Z');
}

/* ===== Colorful animated section bands ===== */
.band {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.band > .container {
    position: relative;
    z-index: 2;
}

.band-floaters {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floater {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.2px);
    opacity: 0.55;
    animation: floatOrbit 12s ease-in-out infinite;
}

.floater.f1 { width: 140px; height: 140px; left: 6%; top: 12%; background: rgba(255, 107, 74, 0.22); }
.floater.f2 { width: 90px; height: 90px; right: 10%; top: 22%; background: rgba(46, 196, 182, 0.24); animation-delay: -3s; }
.floater.f3 { width: 120px; height: 120px; left: 40%; bottom: 8%; background: rgba(255, 200, 87, 0.28); animation-delay: -6s; }
.floater.f4 { width: 70px; height: 70px; right: 22%; bottom: 18%; background: rgba(255, 138, 200, 0.24); animation-delay: -2s; }

.floater.star {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    rotate: 20deg;
    background: #ffc857;
    box-shadow: 0 0 0 6px rgba(255, 200, 87, 0.18);
    animation: twinkle 3.4s ease-in-out infinite;
}

.floater.star.s1 { left: 18%; top: 30%; }
.floater.star.s2 { right: 16%; top: 40%; animation-delay: -1.2s; background: #ff8ac8; box-shadow: 0 0 0 6px rgba(255, 138, 200, 0.18); }
.floater.star.s3 { left: 55%; top: 16%; animation-delay: -2s; background: #2ec4b6; box-shadow: 0 0 0 6px rgba(46, 196, 182, 0.18); }

.band-coral {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 138, 200, 0.28), transparent 35%),
        radial-gradient(circle at 85% 70%, rgba(255, 107, 74, 0.2), transparent 40%),
        linear-gradient(160deg, #fff1ea 0%, #ffe5f2 48%, #fff8ef 100%);
}

.band-teal {
    background:
        radial-gradient(circle at 80% 20%, rgba(46, 196, 182, 0.28), transparent 36%),
        radial-gradient(circle at 10% 80%, rgba(125, 222, 168, 0.25), transparent 40%),
        linear-gradient(165deg, #e9fbff 0%, #e7fff5 50%, #f4fffb 100%);
}

.band-sun {
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 200, 87, 0.35), transparent 34%),
        radial-gradient(circle at 90% 60%, rgba(255, 138, 100, 0.2), transparent 38%),
        linear-gradient(180deg, #fff7df 0%, #ffe9c8 55%, #fff4ea 100%);
}

.band-pattern {
    background-color: #fff8f2;
    background-image:
        linear-gradient(180deg, rgba(255, 248, 242, 0.88), rgba(232, 247, 255, 0.9)),
        url("../images/bg-playful-pattern.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.band-darkish {
    background:
        linear-gradient(135deg, rgba(23, 48, 58, 0.92), rgba(46, 196, 182, 0.78)),
        url("../images/campus-exterior.png") center/cover;
    color: white;
}

.band-darkish .lead,
.band-darkish .section-head .lead,
.band-darkish p {
    color: rgba(255, 255, 255, 0.88);
}

.band-darkish .eyebrow {
    color: #ffe8a8;
}

.band-darkish h2 {
    color: white;
}

.feature,
.value,
.branch,
.fee,
.panel,
.step,
.testimonial,
.contact-card,
.award-badge {
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(255, 244, 236, 0.9));
    border: 1px solid rgba(255, 214, 186, 0.5);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 36px rgba(31, 42, 55, 0.11), 0 6px 16px rgba(255, 107, 74, 0.07);
}

.feature:nth-child(4n + 1) { border-top: 4px solid var(--teal); }
.feature:nth-child(4n + 2) { border-top: 4px solid var(--coral); }
.feature:nth-child(4n + 3) { border-top: 4px solid var(--sun); }
.feature:nth-child(4n + 4) { border-top: 4px solid #ff8ac8; }

.color-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    border-radius: var(--radius);
    padding: 1.35rem 1.1rem;
    color: white;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-card span {
    font-weight: 800;
    font-size: 0.92rem;
}

.stat-card::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    right: -20px;
    top: -20px;
    background: rgba(255, 255, 255, 0.18);
    animation: pulseSoft 3s ease-in-out infinite;
}

.stat-a { background: linear-gradient(145deg, #ff6b4a, #ff8ac8); }
.stat-b { background: linear-gradient(145deg, #2ec4b6, #45d0c0); }
.stat-c { background: linear-gradient(145deg, #ffc857, #ff9f1c); color: #1f2a37; }
.stat-d { background: linear-gradient(145deg, #7ddea8, #2f9e6f); }

.mosaic {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 0.85rem;
}

.mosaic figure {
    margin: 0;
    border-radius: 1.2rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    min-height: 180px;
    height: 100%;
    background: #f3e8dc;
}

.mosaic figure img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.mosaic figure:hover img {
    transform: scale(1.08);
}

.mosaic-tall {
    grid-row: span 2;
    min-height: 100%;
}

.mosaic-tall img {
    min-height: 100%;
}

.mosaic figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.85rem 1rem;
    color: white;
    font-weight: 800;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.72));
}

.image-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.image-ribbon figure {
    margin: 0;
    border-radius: 1.1rem;
    overflow: hidden;
    min-height: 150px;
    box-shadow: 0 12px 28px rgba(31, 42, 55, 0.12);
    position: relative;
}

.image-ribbon img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.image-ribbon figure:hover img {
    transform: scale(1.07) rotate(0.5deg);
}

.tilt-card {
    transition: transform 0.35s ease;
}

.tilt-card:hover {
    transform: translateY(-8px) rotate(-0.8deg);
}

@keyframes floatOrbit {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(18px, -22px) scale(1.05); }
    66% { transform: translate(-14px, 12px) scale(0.96); }
}

@keyframes twinkle {
    0%, 100% { transform: rotate(20deg) scale(1); opacity: 0.55; }
    50% { transform: rotate(50deg) scale(1.25); opacity: 1; }
}

@media (max-width: 980px) {
    .color-stats,
    .mosaic,
    .image-ribbon {
        grid-template-columns: 1fr 1fr;
    }

    .mosaic {
        grid-template-rows: none;
        grid-auto-rows: minmax(220px, auto);
    }

    .mosaic figure,
    .mosaic figure img {
        min-height: 220px;
        height: 220px;
    }

    .mosaic-tall {
        grid-row: auto;
        min-height: 220px;
    }

    .mosaic-tall img {
        min-height: 220px;
    }

    .media-frame,
    .media-frame img {
        min-height: 280px;
    }

    .band-pattern {
        background-attachment: scroll;
    }

}

@media (max-width: 680px) {
    .reveal {
        opacity: 1;
        transform: none;
    }

    .image-ribbon {
        grid-template-columns: 1fr 1fr;
    }

    .image-ribbon figure,
    .image-ribbon img {
        min-height: 140px;
        height: 140px;
    }

    .mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: minmax(210px, auto);
    }

    .mosaic figure,
    .mosaic figure img,
    .mosaic-tall,
    .mosaic-tall img {
        width: 100%;
        min-height: 210px;
        height: 210px;
    }

    .gallery-item,
    .gallery-item img {
        min-height: 220px;
        height: 220px;
    }

    .media-frame,
    .media-frame img {
        min-height: 240px;
        height: 240px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-media,
    .hero-media img {
        width: 100%;
        height: 100%;
        min-height: 70vh;
    }

    .color-stats {
        grid-template-columns: 1fr 1fr;
    }

    .promo-modal-card--image img {
        max-height: min(78dvh, 78vh);
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* ===== Language switcher ===== */
.nav-tools {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: auto;
}

.lang-switch {
    position: relative;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(31, 42, 55, 0.1);
    background: linear-gradient(135deg, #fff7e8, #eafff8);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    color: var(--ink);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    min-width: 170px;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 0.4rem;
    z-index: 80;
    display: grid;
    gap: 0.2rem;
}

.lang-menu[hidden] {
    display: none !important;
}

.lang-menu button {
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0.65rem 0.75rem;
    border-radius: 0.75rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    color: var(--ink);
}

.lang-menu button:hover,
.lang-menu button.active {
    background: rgba(46, 196, 182, 0.14);
    color: #0f766e;
}

@media (min-width: 981px) {
    .nav-row {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .brand {
        order: 1;
    }

    .nav-links {
        order: 2;
        margin-left: auto;
    }

    .nav-tools {
        order: 3;
        margin-left: 0;
    }
}

/* ===== Scroll to top (same row as WhatsApp) ===== */
.scroll-top {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--coral), #ff8ac8);
    color: white;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 26px rgba(255, 107, 74, 0.35);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.7);
    transition: 0.25s ease;
    pointer-events: none;
}

.scroll-top.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.scroll-top[hidden] {
    display: none !important;
}

/* ===== Promo modal (page load) ===== */
.promo-modal[hidden] {
    display: none !important;
}

.promo-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.promo-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(4px);
}

.promo-modal-card {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: min(90dvh, 90vh);
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #fffaf5, #fff4ea);
    border-radius: 1.4rem;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.28);
    padding: 0;
    overflow: hidden;
    border: 2px solid rgba(255, 200, 87, 0.45);
    animation: promoPop 0.45s cubic-bezier(0.2, 0.9, 0.2, 1);
    text-align: center;
    margin: auto;
}

.promo-modal-card--image {
    width: min(420px, 100%);
    max-height: min(88dvh, 88vh);
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.promo-image-link {
    display: block;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.35);
    line-height: 0;
}

.promo-poster {
    width: 100%;
    height: auto;
    max-height: min(82dvh, 82vh);
    object-fit: contain;
    display: block;
    background: #fff8f1;
}

.promo-media {
    width: 100%;
    height: clamp(120px, 28vw, 190px);
    flex-shrink: 0;
    overflow: hidden;
}

.promo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-body {
    padding: 1rem 1.25rem 1.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    flex: 1 1 auto;
    min-height: 0;
}

.promo-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    border: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.18);
}

.promo-modal-card--image .promo-close {
    top: -0.35rem;
    right: -0.35rem;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #ff6b4a, #ff8ac8);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.65rem;
}

.promo-modal-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 5vw, 2rem);
    margin: 0 0 0.4rem;
    line-height: 1.15;
}

.promo-body > p {
    margin: 0 auto 0.85rem;
    max-width: 36ch;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.95rem;
}

.promo-perks {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    text-align: left;
}

.promo-perks li {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(31, 42, 55, 0.06);
    border-radius: 0.85rem;
    padding: 0.6rem 0.75rem;
    font-weight: 800;
    font-size: 0.86rem;
}

.promo-actions {
    justify-content: center;
    flex-wrap: wrap;
}

.promo-actions .btn {
    min-width: 140px;
}

body.promo-open {
    overflow: hidden;
}

@keyframes promoPop {
    from { opacity: 0; transform: translateY(24px) scale(0.92); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 680px) {
    .promo-modal {
        align-items: center;
        padding: 0.75rem;
    }

    .promo-modal-card {
        width: 100%;
        max-height: min(92dvh, 92vh);
        border-radius: 1.25rem;
        border: 2px solid rgba(255, 200, 87, 0.45);
        margin: 0;
    }

    .promo-modal-card--image {
        width: min(100%, 420px);
        max-height: none;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .promo-poster {
        max-height: min(78dvh, 78vh);
        border-radius: 1rem;
    }

    .promo-modal-card--image .promo-close {
        top: 0.4rem;
        right: 0.4rem;
    }

    .promo-media {
        height: 140px;
    }

    .promo-body {
        padding: 0.9rem 1rem calc(1rem + env(safe-area-inset-bottom));
    }

    .promo-perks {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .promo-perks li {
        padding: 0.55rem 0.7rem;
        font-size: 0.84rem;
    }

    .promo-actions {
        flex-direction: column;
        width: 100%;
    }

    .promo-actions .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .promo-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
    }
}

@media (max-height: 700px) {
    .promo-media {
        height: 110px;
    }

    .promo-body > p {
        font-size: 0.88rem;
        margin-bottom: 0.65rem;
    }

    .promo-modal-card h2 {
        font-size: 1.3rem;
    }

    .promo-poster {
        max-height: min(72dvh, 72vh);
    }
}

/* ===== Help bot (jumping hey bot + thinking chat bubble) ===== */
.help-bot {
    position: fixed;
    left: 1.1rem;
    bottom: 1.1rem;
    z-index: 75;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.help-bot-bubble {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #fff6ef);
    color: var(--ink);
    border-radius: 1.25rem 1.25rem 1.25rem 0.35rem;
    padding: 0.75rem 1rem;
    font-weight: 800;
    font-size: 0.88rem;
    box-shadow: 0 14px 30px rgba(31, 42, 55, 0.14);
    max-width: 210px;
    border: 2px solid rgba(46, 196, 182, 0.28);
    opacity: 0;
    transform: translateY(10px) scale(0.92);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.help-bot-bubble.is-visible {
    opacity: 1;
    transform: none;
}

.help-bot-bubble.is-hidden {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
}

.help-bot-bubble-tail {
    position: absolute;
    left: 14px;
    bottom: -8px;
    width: 16px;
    height: 16px;
    background: #fff6ef;
    border-right: 2px solid rgba(46, 196, 182, 0.28);
    border-bottom: 2px solid rgba(46, 196, 182, 0.28);
    transform: rotate(45deg);
    border-radius: 0 0 4px 0;
}

.help-bot-btn {
    width: 84px;
    height: 96px;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #ffe8eb);
    box-shadow: 0 14px 28px rgba(255, 51, 68, 0.28), 0 0 0 2px rgba(255, 255, 255, 0.9);
    cursor: pointer;
    position: relative;
    display: grid;
    place-items: end center;
    padding: 0 0 2px;
    overflow: visible;
}

.full-bot-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(255, 51, 68, 0.25));
}

.full-bot {
    position: relative;
    display: block;
    width: 72px;
    height: 96px;
}

.full-bot--modal {
    width: 78px;
    height: 104px;
}

.full-bot-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    display: block;
}

.full-bot-hey {
    display: none !important;
}

.help-modal-mascot,
.help-modal-face,
.help-modal-hand,
.help-modal-hey {
    display: none !important;
}

.help-modal-card--bubble {
    border-radius: 1.85rem 1.85rem 1.85rem 0.45rem;
    border: 2px solid rgba(46, 196, 182, 0.28);
    padding-top: 1rem;
    overflow: visible;
    max-height: none;
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 138, 200, 0.14), transparent 28%),
        linear-gradient(180deg, #ffffff, #fff8f1);
}

.help-modal-tail {
    position: absolute;
    left: 28px;
    bottom: -12px;
    width: 24px;
    height: 24px;
    background: #fff8f1;
    border-right: 2px solid rgba(46, 196, 182, 0.28);
    border-bottom: 2px solid rgba(46, 196, 182, 0.28);
    transform: rotate(45deg);
    border-radius: 0 0 6px 0;
}

.help-modal-think {
    position: absolute;
    border-radius: 50%;
    background: #fff8f1;
    border: 2px solid rgba(46, 196, 182, 0.28);
    box-shadow: 0 6px 14px rgba(31, 42, 55, 0.08);
}

.help-modal-think.think-1 {
    width: 14px;
    height: 14px;
    left: 18px;
    bottom: -28px;
}

.help-modal-think.think-2 {
    width: 10px;
    height: 10px;
    left: 10px;
    bottom: -42px;
}

.help-modal-think.think-3 {
    width: 7px;
    height: 7px;
    left: 4px;
    bottom: -54px;
}

.bot-body-group {
    transform-origin: 60px 145px;
    animation: botJump 1.45s ease-in-out infinite;
}

.wave-arm {
    transform-origin: 84px 75px;
    animation: botWaveArm 1.15s ease-in-out infinite;
}

.bot-head {
    transform-origin: 60px 50px;
    animation: botHeadTilt 2s ease-in-out infinite;
}

.bot-shadow {
    animation: botShadowPulse 1.45s ease-in-out infinite;
}

.help-modal[hidden] {
    display: none !important;
}

.help-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0.75rem;
    overflow: auto;
}

.help-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
    backdrop-filter: blur(3px);
}

.help-modal-card {
    position: relative;
    z-index: 1;
    width: min(400px, calc(100vw - 1.5rem));
    max-height: none;
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: linear-gradient(180deg, #ffffff, #fff8f1);
    border-radius: 1.45rem 1.45rem 1.45rem 0.55rem;
    box-shadow: var(--shadow);
    padding: 1rem 1rem 1.1rem;
    margin: 0 0 5.8rem 0.15rem;
    border: 1px solid rgba(46, 196, 182, 0.2);
    animation: modalIn 0.28s ease;
}

.help-modal-inner {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
    max-height: min(58dvh, 430px);
    padding-right: 0.15rem;
}

.help-modal-head {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 0.35rem;
    padding-right: 2.2rem;
}

.help-modal-head h3 {
    margin: 0;
    font-size: clamp(1.15rem, 4vw, 1.4rem);
    line-height: 1.2;
}

.help-modal-lead {
    margin: 0 0 0.75rem !important;
    font-size: 0.9rem !important;
}

.help-modal-close {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    border: 0;
    background: rgba(31, 42, 55, 0.06);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
}

.help-questions {
    display: grid;
    gap: 0.45rem;
    margin: 0;
}

.help-item {
    display: grid;
    gap: 0.4rem;
}

.help-q {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(31, 42, 55, 0.08);
    background: white;
    border-radius: 0.9rem;
    padding: 0.7rem 0.85rem;
    font-weight: 800;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.help-q:hover,
.help-q.active {
    background: linear-gradient(135deg, rgba(225, 29, 46, 0.08), rgba(255, 200, 87, 0.16));
    border-color: rgba(225, 29, 46, 0.28);
    transform: none;
}

.help-inline-answer {
    background: rgba(225, 29, 46, 0.07);
    border-radius: 0.9rem;
    padding: 0.75rem 0.85rem;
    border: 1px dashed rgba(225, 29, 46, 0.28);
    animation: modalIn 0.22s ease;
}

.help-inline-answer[hidden] {
    display: none !important;
}

.help-inline-answer strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.82rem;
    color: #e11d2e;
}

.help-inline-answer p {
    margin: 0;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.45;
}

.help-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.7rem;
}

.help-inline-actions .btn {
    padding: 0.65rem 0.9rem;
    font-size: 0.84rem;
}

.help-answer {
    display: none !important;
}

body.bot-open {
    overflow: hidden;
}

@keyframes botJump {
    0%, 100% { transform: translateY(0); }
    35% { transform: translateY(-10px); }
    55% { transform: translateY(-2px); }
    70% { transform: translateY(-7px); }
}

@keyframes botWaveArm {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-28deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-22deg); }
}

@keyframes botHeadTilt {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(4deg); }
}

@keyframes botShadowPulse {
    0%, 100% { transform: scaleX(1); opacity: 0.2; }
    35% { transform: scaleX(0.72); opacity: 0.12; }
    70% { transform: scaleX(0.85); opacity: 0.16; }
}

@keyframes heyPop {
    0%, 100% { transform: scale(1) rotate(-6deg); }
    50% { transform: scale(1.12) rotate(4deg); }
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 680px) {
    .help-bot {
        left: 0.65rem;
        bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
    }

    .help-bot-btn {
        width: 68px;
        height: 80px;
    }

    .full-bot {
        width: 58px;
        height: 78px;
    }

    .help-bot-bubble {
        max-width: min(176px, calc(100vw - 5.5rem));
        font-size: 0.78rem;
        padding: 0.65rem 0.85rem;
    }

    .help-modal {
        padding: 0.65rem;
        padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
        align-items: flex-end;
        justify-content: flex-start;
        overflow: hidden;
    }

    .help-modal-card,
    .help-modal-card--bubble {
        width: min(100%, calc(100vw - 1.3rem));
        max-width: 100%;
        max-height: min(72dvh, 560px);
        margin: 0 0 5.2rem 0;
        border-radius: 1.45rem 1.45rem 1.45rem 0.4rem;
        border: 2px solid rgba(46, 196, 182, 0.28);
        padding: 0.85rem 0.8rem 1rem;
        box-sizing: border-box;
        overflow: visible;
    }

    .help-modal-inner {
        max-height: min(56dvh, 420px);
        padding-right: 0.1rem;
        padding-bottom: 0.15rem;
    }

    .help-modal-head {
        padding-right: 2.4rem;
        margin-bottom: 0.25rem;
    }

    .help-modal-head h3 {
        font-size: 1.15rem;
    }

    .help-modal-lead {
        font-size: 0.84rem !important;
        margin-bottom: 0.65rem !important;
    }

    .help-modal-close {
        top: 0.55rem;
        right: 0.55rem;
        width: 34px;
        height: 34px;
    }

    .help-q {
        padding: 0.72rem 0.8rem;
        font-size: 0.86rem;
        border-radius: 0.85rem;
        line-height: 1.3;
    }

    .help-inline-answer {
        padding: 0.7rem 0.75rem;
    }

    .help-inline-answer p {
        font-size: 0.84rem;
    }

    .help-modal-tail {
        left: 22px;
        bottom: -10px;
        width: 18px;
        height: 18px;
        display: block;
    }

    .help-modal-think {
        display: block;
    }

    .help-modal-think.think-1 {
        width: 11px;
        height: 11px;
        left: 14px;
        bottom: -24px;
    }

    .help-modal-think.think-2 {
        width: 8px;
        height: 8px;
        left: 8px;
        bottom: -36px;
    }

    .help-modal-think.think-3 {
        width: 6px;
        height: 6px;
        left: 3px;
        bottom: -46px;
    }

    .help-inline-actions {
        flex-direction: column;
    }

    .help-inline-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .lang-toggle span {
        display: none;
    }

    .nav-links {
        top: calc(100% + 0.55rem);
    }
}

@media (max-width: 380px) {
    .help-modal-card,
    .help-modal-card--bubble {
        margin-bottom: 4.8rem;
        max-height: min(70dvh, 520px);
    }

    .help-modal-inner {
        max-height: min(52dvh, 380px);
    }

    .help-bot-btn {
        width: 62px;
        height: 74px;
    }

    .full-bot {
        width: 54px;
        height: 72px;
    }
}

/* ===== Full-page floating stars ===== */
.sky-stars {
    position: fixed;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.sky-star {
    position: absolute;
    width: 12px;
    height: 12px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.7;
    box-shadow: 0 0 8px rgba(255, 200, 87, 0.45);
    animation: skyDrift linear infinite;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sky-star.big {
    width: 18px;
    height: 18px;
    opacity: 0.85;
}

@keyframes skyDrift {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(0.85);
        opacity: 0.35;
    }
    40% {
        transform: translate3d(var(--dx), var(--dy), 0) rotate(var(--spin)) scale(1.15);
        opacity: 0.95;
    }
    100% {
        transform: translate3d(var(--dx2), var(--dy2), 0) rotate(0deg) scale(0.9);
        opacity: 0.3;
    }
}

@media (max-width: 680px) {
    .sky-stars {
        z-index: 4;
    }

    .sky-star {
        width: 13px;
        height: 13px;
        opacity: 0.8;
    }

    .sky-star.big {
        width: 18px;
        height: 18px;
        opacity: 0.95;
    }
}

/* ===== Gallery clickable + lightbox ===== */
[data-lightbox-item] {
    cursor: pointer;
}

.gallery-item {
    cursor: pointer;
}

.gallery-zoom {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.18);
    opacity: 0;
    transform: scale(0.85);
    transition: 0.25s ease;
}

.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
    opacity: 1;
    transform: none;
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 28, 0.82);
    backdrop-filter: blur(5px);
}

.lightbox-figure {
    position: relative;
    z-index: 1;
    margin: 0;
    width: min(980px, calc(100vw - 2rem));
    max-height: min(84vh, 820px);
    animation: promoPop 0.3s ease;
}

.lightbox-figure img {
    width: 100%;
    max-height: min(74vh, 740px);
    object-fit: contain;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-figure figcaption {
    color: white;
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 800;
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 2;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: white;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    transition: 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.28);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
}

.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }

body.lightbox-open {
    overflow: hidden;
}

.cursor-spark.is-star {
    width: 16px;
    height: 16px;
    border-radius: 0;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    box-shadow: 0 0 16px currentColor, 0 0 28px rgba(255, 200, 87, 0.45);
}

@media (max-width: 680px) {
    .lightbox-nav.prev { left: 0.4rem; }
    .lightbox-nav.next { right: 0.4rem; }
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
}
