/* ===== OLDSKOOL IMMIGRATION — PREMIUM MOBILE APP UI ===== */
:root {
    --navy: #0C1E3A;
    --navy-deep: #050F1F;
    --blue: #1A4570;
    --blue-light: #2563A8;
    --gold: #E2B84A;
    --gold-light: #F5D989;
    --gold-shine: #FFF4D6;
    --cream: #FDF9F3;
    --pearl: #FAF6EF;
    --white: #FFFFFF;
    --green: #25D366;
    --text: #0F1F35;
    --text-muted: #5A6D82;
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-soft: 0 8px 32px rgba(12, 30, 58, 0.08);
    --shadow-card: 0 16px 48px rgba(12, 30, 58, 0.12);
    --shadow-gold: 0 10px 32px rgba(226, 184, 74, 0.35);
    --gloss-inset: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    --gloss-border: 1px solid rgba(255, 255, 255, 0.65);
    --glass: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(255, 255, 255, 0.45);
    --font: 'Poppins', 'Inter', sans-serif;
    --font-display: 'Montserrat', 'Poppins', sans-serif;
    --app-nav-h: 68px;
    --bottom-nav-h: 62px;
    --app-status-h: 30px;
    /* Spacing scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    /* Type scale */
    --text-xs: 0.68rem;
    --text-sm: 0.8rem;
    --text-base: 0.9rem;
    --text-lg: 1.05rem;
    --text-xl: 1.3rem;
    --leading-tight: 1.2;
    --leading-normal: 1.55;
    --leading-relaxed: 1.65;
}

body.app-ui {
    font-family: var(--font);
    background:
        radial-gradient(ellipse 90% 70% at 0% 0%, rgba(245, 197, 66, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 10%, rgba(10, 42, 74, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #F4F6F8 0%, #FFFFFF 45%, #F4F6F8 100%);
    padding-bottom: calc(var(--bottom-nav-h) + 24px + env(safe-area-inset-bottom, 0px));
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}
body.app-ui main,
body.app-ui .site-footer {
    overflow-x: clip;
    max-width: 100%;
}
body.app-ui .container {
    width: 100%;
    max-width: 1200px;
    padding-left: 16px;
    padding-right: 16px;
}
@media (min-width: 576px) {
    body.app-ui .container { padding-left: 20px; padding-right: 20px; }
}
@media (min-width: 992px) {
    body.app-ui { padding-bottom: 0; }
}
body.app-ui.theme-dark {
    --cream: #0f1a28;
    --white: #1a2b3c;
    --text: #f0f4f8;
    --text-muted: #94a3b8;
    background: #0a1520;
}

/* Prevent horizontal scroll from wide children */
html {
    overflow-x: hidden;
    width: 100%;
}
body.app-ui .app-mobile-shell,
body.app-ui .app-section,
body.app-ui .app-hero,
body.app-ui .home-hero,
body.app-ui .app-cta-banner,
body.app-ui .app-countries-scroll {
    max-width: 100%;
}
body.app-ui .row {
    --bs-gutter-x: 1rem;
}

/* —— Top info bar —— */
.app-topbar {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, var(--blue) 100%);
    color: rgba(255,255,255,0.94);
    font-size: 0.72rem;
    padding: 6px 0;
    min-height: 36px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.app-topbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 120% at 0% 50%, rgba(245, 217, 137, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 100% at 100% 0%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.app-topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.app-topbar .container { position: relative; z-index: 1; }
.app-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.app-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    white-space: nowrap;
}
.app-topbar-item i { color: var(--gold); font-size: 0.68rem; }
.app-topbar-social { display: flex; gap: 8px; }
.app-topbar-social a {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.72rem;
    transition: 0.25s;
}
.app-topbar-social a:hover { background: var(--gold); color: var(--navy); }

/* Compact topbar — mobile only */
.app-topbar-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-width: 0;
}
.app-topbar-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.app-topbar-pill i { color: var(--gold); flex-shrink: 0; }
.app-topbar-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.app-topbar-meta i { color: var(--gold); flex-shrink: 0; font-size: 0.62rem; }
.app-topbar-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.68rem;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(217, 164, 65, 0.18);
    border: 1px solid rgba(217, 164, 65, 0.35);
    transition: 0.25s;
}
.app-topbar-call:hover { background: var(--gold); color: var(--navy); }
.app-topbar-call i { color: var(--gold); font-size: 0.62rem; transition: 0.25s; }
.app-topbar-call:hover i { color: var(--navy); }
@media (min-width: 576px) {
    .app-topbar-compact { display: none; }
}

/* Mobile — premium app shell (status strip + header) */
.app-mobile-shell {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 246, 248, 0.94) 100%);
    backdrop-filter: blur(22px) saturate(190%);
    -webkit-backdrop-filter: blur(22px) saturate(190%);
    border-bottom: 1px solid rgba(6, 27, 51, 0.06);
    box-shadow:
        0 10px 40px rgba(6, 27, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}
.app-mobile-shell::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent);
    opacity: 0.65;
    pointer-events: none;
}
.app-mobile-shell.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 48px rgba(6, 27, 51, 0.16), inset 0 1px 0 rgba(255, 255, 255, 1);
}
body.page-home .app-mobile-shell:not(.scrolled) {
    background:
        linear-gradient(180deg, rgba(6, 27, 51, 0.96) 0%, rgba(10, 42, 74, 0.88) 100%);
    border-bottom-color: rgba(245, 197, 66, 0.18);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
body.page-home .app-mobile-shell:not(.scrolled) .app-header-name,
body.page-home .app-mobile-shell:not(.scrolled) .app-header-name em {
    color: #FFFFFF;
}
body.page-home .app-mobile-shell:not(.scrolled) .app-header-tagline {
    color: rgba(255, 255, 255, 0.72);
}
body.page-home .app-mobile-shell:not(.scrolled) .app-header-logo-wrap {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 197, 66, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
body.page-home .app-mobile-shell:not(.scrolled) .app-icon-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
}
body.page-home .app-mobile-shell:not(.scrolled) .app-menu-btn {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}
body.page-home .app-mobile-shell:not(.scrolled) .app-menu-btn span {
    background: #FFFFFF;
}
@media (min-width: 992px) {
    .app-mobile-shell { display: none !important; }
}

.app-status-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: var(--app-status-h);
    padding: 5px 16px;
    background:
        linear-gradient(105deg, #061B33 0%, #0A2A4A 55%, #123B63 100%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.62rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}
.app-status-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 120% at 0% 50%, rgba(245, 197, 66, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse 50% 100% at 100% 0%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.app-status-pill,
.app-status-hours {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}
.app-status-pill {
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(245, 197, 66, 0.14);
    border: 1px solid rgba(245, 197, 66, 0.32);
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.app-status-pill i { color: var(--gold); font-size: 0.58rem; }
.app-status-hours {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.app-status-hours i { color: var(--gold); flex-shrink: 0; font-size: 0.58rem; }

/* —— App header —— */
.app-header-bar {
    background: transparent;
    border-bottom: none;
    position: relative;
    z-index: 1;
}
.app-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0 10px;
    min-height: var(--app-nav-h);
}
.app-header-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--navy);
    min-width: 0;
    flex: 1;
}
.app-header-logo-wrap {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, #FFFFFF 0%, #F4F6F8 100%);
    border: 2px solid rgba(245, 197, 66, 0.42);
    box-shadow:
        0 10px 24px rgba(6, 27, 51, 0.14),
        0 0 0 4px rgba(245, 197, 66, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}
.app-header-logo-wrap img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}
.app-header-title {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
    gap: 2px;
}
.app-header-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(0.88rem, 3.8vw, 1rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.02em;
}
.app-header-name em {
    font-style: normal;
    color: var(--gold);
    font-weight: 800;
}
.app-header-tagline {
    display: block;
    font-size: 0.58rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.app-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.app-icon-btn-ghost {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(6, 27, 51, 0.08);
    background: rgba(255, 255, 255, 0.85);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
    font-size: 0.88rem;
}
.app-icon-btn-ghost:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.app-header-call-fab {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--navy);
    background: linear-gradient(180deg, #FFE08A 0%, #F5C542 48%, #E0AD2A 100%);
    border: 2px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        0 10px 28px rgba(245, 197, 66, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.app-header-call-fab::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.app-header-call-fab:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 34px rgba(245, 197, 66, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    color: var(--navy);
}
.app-header-call-fab:hover::before { opacity: 1; }
.app-header-call-fab i {
    position: relative;
    z-index: 1;
    animation: appCallPulse 2.4s ease-in-out infinite;
}
@keyframes appCallPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.app-menu-btn {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(6, 27, 51, 0.1);
    background: linear-gradient(165deg, #FFFFFF 0%, #F4F6F8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 8px 20px rgba(6, 27, 51, 0.1), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: 0.25s ease;
}
.app-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--navy);
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}
.app-menu-btn:hover {
    border-color: rgba(245, 197, 66, 0.45);
    box-shadow: 0 10px 24px rgba(6, 27, 51, 0.14), 0 0 0 3px rgba(245, 197, 66, 0.12);
}
body.menu-open .app-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.menu-open .app-menu-btn span:nth-child(2) {
    opacity: 0;
    width: 0;
}
body.menu-open .app-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Homepage hero slider → assets/css/hero-slider.css */

/* —— Hero (legacy static — other pages) —— */
.app-hero {
    position: relative;
    background: linear-gradient(165deg, #081a30 0%, var(--navy) 40%, var(--blue) 100%);
    overflow: hidden;
    padding: 32px 0 0;
}
.app-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(140px, 36%);
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.85;
    z-index: 3;
    pointer-events: none;
}
.app-hero-map {
    position: absolute; inset: 0;
    opacity: 0.08;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpath fill='%23fff' d='M120,180 Q200,120 280,160 T440,140 T600,170 T720,150 L720,280 Q600,300 480,270 T240,290 T120,260 Z'/%3E%3C/svg%3E") center/cover no-repeat;
    pointer-events: none;
}
.app-hero-glow {
    position: absolute;
    top: -20%; right: 0;
    width: min(55%, 280px); height: 80%;
    background: radial-gradient(circle, rgba(217,164,65,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.app-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    padding-bottom: 32px;
}
@media (min-width: 992px) {
    .app-hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 48px;
        padding-bottom: 40px;
        min-height: 380px;
    }
    .app-hero { padding-top: 48px; }
}
@media (max-width: 991px) {
    .app-hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .app-hero-eyebrow {
        font-size: var(--text-xs);
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gold-light);
        margin: 0 0 var(--space-4);
        opacity: 0.95;
    }
    .app-hero-badge,
    .app-hero-btns {
        justify-content: center;
    }
    .app-hero-sub {
        margin-left: auto;
        margin-right: auto;
        font-size: var(--text-base);
        line-height: var(--leading-relaxed);
        margin-bottom: var(--space-5);
        max-width: 34ch;
    }
    .app-hero h1 {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
        margin-bottom: var(--space-4);
        letter-spacing: -0.025em;
    }
    .app-hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: var(--space-5);
        gap: var(--space-3);
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: var(--text-base);
        min-height: 48px;
    }
    .btn-hero-secondary {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.55);
        color: #fff;
    }
    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        color: #fff;
    }
    .btn-hero-secondary i { color: var(--gold-light); }
    .app-hero { padding-top: var(--space-5); }
    .app-hero-grid { padding-bottom: var(--space-4); gap: 0; }
}
.app-hero-content { color: #fff; max-width: 560px; }
.app-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217,164,65,0.15);
    border: 1px solid rgba(217,164,65,0.45);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
    color: var(--gold-light);
}
.app-hero-badge i { color: var(--gold); }
.app-hero-eyebrow { display: none; }

.app-hero-trust {
    list-style: none;
    padding: var(--space-3) var(--space-4);
    margin: 0 auto var(--space-2);
    display: grid;
    gap: 0;
    width: 100%;
    max-width: 300px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}
.app-hero-trust li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-2) 0;
}
.app-hero-trust li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.app-hero-trust li i {
    color: var(--gold);
    font-size: 0.65rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Section pills */
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(165deg, #FFFFFF 0%, #F4F6F8 100%);
    color: var(--navy);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: var(--space-3);
    border: 1px solid rgba(6, 27, 51, 0.08);
    box-shadow: 0 8px 22px rgba(6, 27, 51, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.section-pill i {
    color: var(--gold);
    font-size: 0.68rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 197, 66, 0.14);
}
.section-pill-center { margin-left: auto; margin-right: auto; }
.section-pill-light {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(217,164,65,0.4);
}

.app-section-head h2 { margin-top: 4px; }

/* Services section follows hero seamlessly */
/* Study services grid */
.app-services-study { gap: 18px; }
#services.app-section-white {
    border-radius: 28px 28px 0 0;
    margin-top: -2px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -12px 40px rgba(11, 37, 69, 0.08);
}
@media (min-width: 768px) {
    .app-services-study { grid-template-columns: repeat(3, 1fr); }
}
.app-service-card {
    padding: 28px 20px;
    align-items: flex-start;
    text-align: left;
}
.app-service-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}
.app-service-card h3 { font-size: 0.95rem; width: 100%; }

/* Country cards */
.app-country-card em {
    display: block;
    font-size: 0.62rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gold);
    margin-top: 4px;
}
.app-country-flag-office {
    background: linear-gradient(135deg, var(--navy), var(--blue)) !important;
    color: var(--gold);
    font-size: 1.4rem;
}
.app-country-office .app-country-flag { border-color: var(--gold); }

/* Form card polish */
.app-form-card .section-pill { margin-bottom: 12px; }
.app-form-card h3 { margin-bottom: 8px; }

/* CTA banner */
.app-cta-banner .section-pill { margin-bottom: 16px; }

/* Mobile topbar — legacy class unused */
.app-topbar-study { display: none; }

/* Desktop polish */
@media (min-width: 992px) {
    .app-section { padding: 64px 0; }
    .app-services-study { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* Refined cards — gloss borders handled per component */
.app-form-card {
    border: var(--gloss-border);
    box-shadow: var(--shadow-soft), var(--gloss-inset);
}
.app-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4.5vw, 2.65rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.app-hero-sub {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.65;
    max-width: 480px;
}
.app-hero-sub em { font-style: italic; color: var(--gold-light); }
.app-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(180deg, #FFE08A 0%, #F5C542 48%, #E0AD2A 100%);
    color: var(--navy-deep);
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(245, 197, 66, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-gold:hover {
    color: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(245, 197, 66, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.5s ease;
}
.btn-gold:hover::before { left: 120%; }
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}
.btn-glass:hover { background: rgba(255,255,255,0.2); color: #fff; }
a.btn-glass { text-decoration: none; }
.btn-glass .play-icon {
    width: 36px; height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 0.7rem;
}

.app-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-hero-showcase {
    position: relative;
    width: 100%;
    max-width: 340px;
    padding: 40px 32px 36px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    text-align: center;
    color: #fff;
}
.showcase-ring {
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius-xl) + 8px);
    border: 2px solid rgba(217, 164, 65, 0.25);
    pointer-events: none;
}
.showcase-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
    margin-bottom: 16px;
}
.showcase-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}
.showcase-tagline {
    font-size: 0.78rem;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0 0 18px;
    line-height: 1.5;
}
.showcase-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(11, 37, 69, 0.45);
    border: 1px solid rgba(217, 164, 65, 0.3);
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}
.showcase-pill i { color: var(--gold); flex-shrink: 0; }

/* Hero stats bar */
.app-hero-stats-bar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 576px) {
    .app-hero-stats-bar { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.app-hero .app-stat-chip {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: var(--space-3) var(--space-2);
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    min-width: 0;
}
.app-stat-chip-text {
    min-width: 0;
    text-align: left;
}
.app-hero .app-stat-chip strong {
    color: #fff;
    font-size: 1rem;
    display: block;
    line-height: 1.2;
}
.app-hero .app-stat-chip span {
    color: rgba(255,255,255,0.72);
    font-size: var(--text-xs);
    display: block;
    line-height: 1.25;
}
.app-hero .app-stat-chip i {
    width: 36px; height: 36px;
    flex-shrink: 0;
    background: rgba(217, 164, 65, 0.2);
    border-radius: 10px;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* Legacy — unused */
.app-hero-student,
.app-float-stat,
.app-hero-stats { display: none; }
.app-stat-chip {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
}
.app-stat-chip strong {
    display: block;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.1;
}
.app-stat-chip span {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
}
.app-stat-chip i {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
}
/* Stats section (below hero) uses white chips */
#stats .app-stat-chip,
.app-stats-row .app-stat-chip {
    background: var(--white);
    border: 1px solid rgba(11,37,69,0.06);
    box-shadow: var(--shadow-soft);
}
#stats .app-stat-chip strong,
.app-stats-row .app-stat-chip strong { color: var(--navy); }
#stats .app-stat-chip span,
.app-stats-row .app-stat-chip span { color: var(--text-muted); }
#stats .app-stat-chip i,
.app-stats-row .app-stat-chip i {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--gold);
}

/* Removed floating stats */
.app-float-stat { display: none; }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* —— Section common —— */
.app-section {
    padding: var(--space-7) 0;
}
@media (max-width: 991px) {
    .app-section { padding: var(--space-6) 0; }
}
.app-section-cream {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(226, 184, 74, 0.05) 0%, transparent 55%),
        linear-gradient(180deg, var(--pearl) 0%, var(--cream) 50%, var(--pearl) 100%);
}
.app-section-white {
    background: linear-gradient(180deg, #ffffff 0%, var(--pearl) 100%);
}
.app-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    flex-wrap: wrap;
}
.app-section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 4.5vw, var(--text-xl));
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.03em;
    line-height: var(--leading-tight);
    background: linear-gradient(135deg, #061B33 0%, #0A2A4A 55%, #174D7A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.app-section-head p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: var(--space-2) 0 0;
    line-height: var(--leading-normal);
}
.app-link-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    background: linear-gradient(180deg, #FFE08A 0%, #F5C542 100%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 20px rgba(245, 197, 66, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.app-link-more:hover {
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245, 197, 66, 0.38);
}

/* —— Services grid —— */
.app-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .app-services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
    .app-services-grid { grid-template-columns: repeat(6, 1fr); }
}
.app-service-card {
    background: linear-gradient(165deg, #ffffff 0%, var(--pearl) 100%);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-soft), var(--gloss-inset);
    border: var(--gloss-border);
    transition: 0.35s cubic-bezier(0.16,1,0.3,1);
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.app-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.app-service-card:hover::before { opacity: 1; }
.app-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(226, 184, 74, 0.2), var(--gloss-inset);
    border-color: rgba(226, 184, 74, 0.35);
    color: var(--navy);
}
.app-service-icon {
    width: 56px; height: 56px;
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 50%, var(--blue) 100%);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
    font-size: 1.35rem;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(12, 30, 58, 0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}
.app-service-card:hover .app-service-icon {
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--navy-deep);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: var(--shadow-gold), var(--gloss-inset);
}
.app-service-card h3 {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0;
    color: var(--navy);
}

@media (max-width: 479px) {
    .app-services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    .app-service-card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: var(--space-4);
        gap: var(--space-4);
    }
    .app-service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        flex-shrink: 0;
        border-radius: 14px;
    }
    .app-service-card h3 { font-size: var(--text-sm); }
    .app-service-desc { font-size: var(--text-xs); text-align: left; }
}
.app-countries-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 4px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.app-countries-scroll::-webkit-scrollbar { display: none; }
.app-country-card {
    flex: 0 0 100px;
    scroll-snap-align: start;
    text-align: center;
    text-decoration: none;
    color: var(--text);
}
.app-country-flag {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(165deg, #ffffff 0%, var(--pearl) 100%);
    box-shadow: var(--shadow-soft), var(--gloss-inset);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
    border: 2px solid rgba(255,255,255,0.8);
    overflow: hidden;
    transition: 0.3s;
}
.app-country-flag img { width: 48px; height: 36px; object-fit: contain; object-position: center; border-radius: 4px; display: block; }
.app-country-card:hover .app-country-flag {
    border-color: var(--gold-light);
    transform: scale(1.06);
    box-shadow: var(--shadow-gold), var(--gloss-inset);
}
.app-country-card span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    display: block;
}

/* —— Why choose us —— */
.app-why-section {
    position: relative;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245, 217, 137, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, var(--pearl) 0%, #F5EFE4 50%, var(--pearl) 100%);
    overflow: hidden;
}
.app-why-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(226, 184, 74, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 80%, rgba(37, 99, 168, 0.05) 0%, transparent 50%);
}
.app-why-section .container {
    position: relative;
    z-index: 1;
}
.app-why-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-5);
}
.app-why-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: var(--leading-tight);
}
.app-why-lead {
    font-size: var(--text-base);
    color: var(--text-muted);
    margin: var(--space-3) 0 0;
    line-height: var(--leading-normal);
    font-weight: 500;
}

/* Proof stats band */
.app-why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    padding: var(--space-4);
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(11, 37, 69, 0.18);
    position: relative;
    overflow: hidden;
}
.app-why-stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.app-why-stat {
    text-align: center;
    padding: var(--space-2) var(--space-1);
    position: relative;
}
.app-why-stat + .app-why-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}
.app-why-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 4vw, 1.65rem);
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1.1;
    margin-bottom: 4px;
}
.app-why-stat span {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

.app-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}
@media (min-width: 768px) {
    .app-features-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}
@media (min-width: 992px) {
    .app-features-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
.app-feature-card {
    position: relative;
    background: linear-gradient(165deg, #ffffff 0%, var(--pearl) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-5) var(--space-4) var(--space-4);
    box-shadow: var(--shadow-soft), var(--gloss-inset);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: var(--space-3) var(--space-4);
    align-items: start;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    border: var(--gloss-border);
    overflow: hidden;
}
.app-feature-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.app-feature-card:hover {
    border-color: rgba(226, 184, 74, 0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(226, 184, 74, 0.15), var(--gloss-inset);
}
.app-feature-card:hover::after { opacity: 1; }
.app-feature-num {
    grid-column: 1 / -1;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    color: rgba(11, 37, 69, 0.15);
    letter-spacing: 0.12em;
    line-height: 1;
}
.app-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 50%, var(--blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(12, 30, 58, 0.22), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.app-feature-card:hover .app-feature-icon {
    transform: scale(1.06);
    box-shadow: var(--shadow-gold), var(--gloss-inset);
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--navy-deep);
}
.app-feature-body { min-width: 0; }
.app-feature-card h4 {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 var(--space-2);
    line-height: var(--leading-tight);
}
.app-feature-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
    line-height: var(--leading-normal);
}

/* Section CTA */
.app-why-cta {
    text-align: center;
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(11, 37, 69, 0.08);
}
.app-why-cta p {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 var(--space-4);
}
.app-why-cta .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

/* —— Testimonial / Success swiper cards —— */
.app-review-card {
    background: linear-gradient(165deg, #ffffff 0%, var(--pearl) 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft), var(--gloss-inset);
    height: 100%;
    border: var(--gloss-border);
}
.app-review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.app-review-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    overflow: hidden;
}
.app-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.app-review-meta h4 { font-size: 0.95rem; color: var(--navy); margin: 0 0 2px; }
.app-review-meta span { font-size: 0.75rem; color: var(--text-muted); }
.app-review-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 12px; }
.app-review-card blockquote {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}
.app-review-visa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 6px 12px;
    background: var(--cream);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--navy);
}

/* Swiper overrides */
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* —— Stats —— */
.app-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .app-stats-row { grid-template-columns: repeat(4, 1fr); }
}
.app-stat-box {
    background: linear-gradient(165deg, #ffffff 0%, var(--pearl) 100%);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft), var(--gloss-inset);
    position: relative;
    overflow: hidden;
    border: var(--gloss-border);
}
.app-stat-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-deep), var(--gold-light), var(--gold));
}
.app-stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.app-stat-num::after { content: '+'; }
.app-stat-box[data-suffix]::after { content: none; }
.app-stat-box[data-suffix] .app-stat-num::after { content: attr(data-suffix); }
.app-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* —— Promo banner —— */
.app-promo-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    position: relative;
}
@media (min-width: 768px) {
    .app-promo-banner { grid-template-columns: 1.2fr 0.8fr; padding: 40px 36px; }
}
.app-promo-banner::before {
    content: '';
    position: absolute;
    right: -20%;
    top: -30%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(217,164,65,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.app-promo-banner h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0 0 10px;
}
.app-promo-banner p { opacity: 0.9; margin: 0 0 20px; font-size: 0.92rem; }
.app-promo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.2);
}

/* —— Appointment form —— */
.app-form-card {
    background: linear-gradient(165deg, #ffffff 0%, var(--pearl) 100%);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: var(--shadow-card), var(--gloss-inset);
    border: var(--gloss-border);
}
.app-form-card h3 {
    font-family: var(--font-display);
    color: var(--navy);
    margin: 0 0 6px;
    font-size: 1.35rem;
}
.app-form-card > p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 24px;
}
.app-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) {
    .app-form-grid { grid-template-columns: 1fr 1fr; }
    .app-form-grid .full-width { grid-column: 1 / -1; }
}
.app-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.app-form-group input,
.app-form-group select,
.app-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(11,37,69,0.08);
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--cream);
    transition: 0.25s;
    color: var(--text);
}
.app-form-group input:focus,
.app-form-group select:focus,
.app-form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(217,164,65,0.12);
}
.app-form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 8px;
}

/* —— CTA banner —— */
.app-cta-banner {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 35%, var(--blue) 100%);
    border-radius: var(--radius-xl);
    padding: 32px 20px;
    text-align: center;
    color: #fff;
    margin: 0 0 40px;
    max-width: 100%;
    box-shadow: 0 20px 56px rgba(12, 30, 58, 0.22), inset 0 1px 0 rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.app-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 0% 100%, rgba(245, 217, 137, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 100% 0%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.app-cta-banner .container,
.app-cta-banner > * { position: relative; z-index: 1; }
@media (min-width: 768px) {
    .app-cta-banner { padding: 40px 28px; margin-bottom: 48px; }
}
.app-cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin: 0 0 12px;
}
.app-cta-banner p { opacity: 0.9; margin-bottom: 24px; }
.app-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}
.btn-outline-white:hover { background: #fff; color: var(--navy); }
.btn-whatsapp {
    background: var(--green);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}
.btn-whatsapp:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* —— Bottom app navigation — floating island —— */
.app-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    width: auto;
    height: var(--bottom-nav-h);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    z-index: 999;
    box-shadow:
        0 18px 48px rgba(6, 27, 51, 0.18),
        0 4px 12px rgba(6, 27, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    padding: 0 4px;
}
@media (min-width: 992px) {
    .app-bottom-nav { display: none; }
}
.app-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-muted);
    font-size: 0.54rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.22s ease;
    padding: 8px 2px;
    letter-spacing: 0.02em;
    border-radius: 18px;
    margin: 6px 0;
    position: relative;
}
.app-bottom-nav a i {
    font-size: 1rem;
    transition: transform 0.22s ease, color 0.22s ease;
}
.app-bottom-nav a.active {
    color: var(--navy);
    background: linear-gradient(180deg, rgba(245, 197, 66, 0.18) 0%, rgba(245, 197, 66, 0.08) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.app-bottom-nav a.active::before { display: none; }
.app-bottom-nav a.active i {
    color: var(--gold);
    transform: translateY(-1px) scale(1.08);
}
.app-bottom-nav a:hover {
    color: var(--navy);
    background: rgba(6, 27, 51, 0.04);
}
.app-bottom-nav a:hover i { color: var(--gold); }

/* Hide old sticky bar when app nav active */
body.app-ui .sticky-quick-bar { display: none !important; }
body.app-ui .whatsapp-float { display: none !important; }

/* Dark mode toggle */
.theme-toggle .fa-moon { display: none; }
body.theme-dark .theme-toggle .fa-sun { display: none; }
body.theme-dark .theme-toggle .fa-moon { display: inline; }

/* Trust bar */
.app-trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 24px 0;
}
@media (min-width: 768px) {
    .app-trust-bar { grid-template-columns: repeat(4, 1fr); }
}
.app-trust-item {
    text-align: center;
    padding: 16px;
}
.app-trust-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}
.app-trust-item span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
}

/* Tech stack section */
.app-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .app-tech-grid { grid-template-columns: repeat(4, 1fr); }
}
.app-tech-card {
    background: linear-gradient(165deg, #ffffff 0%, var(--pearl) 100%);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-soft), var(--gloss-inset);
    border: var(--gloss-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.app-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), var(--gloss-inset);
}
.app-tech-card i {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 10px;
}
.app-tech-card strong { display: block; color: var(--navy); font-size: 0.9rem; }
.app-tech-card span { font-size: 0.72rem; color: var(--text-muted); }

/* Desktop nav strip — keep visible on large screens */
@media (min-width: 992px) {
    .app-header-title { display: flex; }
}
@media (max-width: 991px) {
    /* Desktop header fixed off-screen; nav drawer stays in DOM */
    body.app-ui .header-stack {
        position: static;
        height: 0;
        overflow: visible;
        z-index: 1002;
        background: transparent;
        box-shadow: none;
    }
    body.app-ui .site-header {
        position: static;
        height: 0;
        overflow: visible;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none;
    }
    body.app-ui .header-accent-bar { display: none; }
    .header-brand-row { display: none; }
    .header-nav-row {
        border: none;
        background: transparent;
        height: 0;
        min-height: 0;
        overflow: visible;
    }
    .top-bar { display: none; }
    .main-nav { display: none; }
    .main-nav.active { display: flex; }
    .mobile-toggle { display: none !important; }
}

/* —— Gallery — beautiful grid, full image visibility —— */
.app-gallery-section {
    position: relative;
    background:
        radial-gradient(ellipse 80% 55% at 50% -10%, rgba(245, 197, 66, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(10, 42, 74, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #FFFFFF 0%, #F4F6F8 50%, #FFFFFF 100%);
    overflow: hidden;
}
.app-gallery-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 8% 15%, rgba(245, 217, 137, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 92% 85%, rgba(37, 99, 168, 0.08) 0%, transparent 50%);
}
.app-gallery-section .container { position: relative; z-index: 1; }
.app-gallery-head h2 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.app-gallery-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.app-gallery-stats span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy);
    padding: 8px 14px;
    border-radius: 50px;
    background: linear-gradient(165deg, #FFFFFF 0%, #F4F6F8 100%);
    border: 1px solid rgba(6, 27, 51, 0.08);
    box-shadow: 0 8px 22px rgba(6, 27, 51, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.app-gallery-stats i { color: var(--gold); font-size: 0.72rem; }

/* Base grid */
.app-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .app-gallery-grid { gap: 20px; }
}

/* Homepage — larger 4:5 cards */
.app-gallery-grid-featured {
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
    .app-gallery-grid-featured { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* Full page — uniform premium showcase grid */
.app-gallery-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (min-width: 768px) {
    .app-gallery-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
@media (min-width: 1200px) {
    .app-gallery-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

/* Legacy masonry — fallback */
.app-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (min-width: 768px) {
    .app-gallery-masonry { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.app-gallery-masonry .app-gallery-item {
    margin-bottom: 0;
}

.app-gallery-item {
    position: relative;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.app-gallery-item:hover,
.app-gallery-item:focus-visible {
    transform: translateY(-6px);
    outline: none;
}
.app-gallery-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(165deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 24px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 16px 40px rgba(6, 27, 51, 0.1),
        0 4px 12px rgba(6, 27, 51, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    overflow: hidden;
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.app-gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #061B33, #F5C542, #FFE08A, #F5C542, #061B33);
    z-index: 2;
}
.app-gallery-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #061B33;
    background: linear-gradient(180deg, #FFE08A 0%, #F5C542 100%);
    box-shadow: 0 6px 18px rgba(245, 197, 66, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.app-gallery-ribbon i { font-size: 0.55rem; }
.app-gallery-item:hover .app-gallery-card,
.app-gallery-item:focus-visible .app-gallery-card {
    border-color: rgba(226, 184, 74, 0.45);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(226, 184, 74, 0.12), var(--gloss-inset);
}
.app-gallery-item:focus-visible .app-gallery-card {
    box-shadow: 0 0 0 3px var(--gold), var(--shadow-card);
}
.app-gallery-frame {
    display: block;
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin: 10px 10px 0;
    border-radius: 18px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 197, 66, 0.12) 0%, transparent 55%),
        linear-gradient(145deg, #061B33 0%, #0A2A4A 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 8px 24px rgba(6, 27, 51, 0.18);
}
.app-gallery-grid-featured .app-gallery-frame {
    aspect-ratio: 4 / 5;
}
.app-gallery-grid-featured .app-gallery-item img {
    object-fit: contain;
    object-position: center center;
    padding: 6px;
}
.app-gallery-showcase .app-gallery-frame,
.app-gallery-masonry .app-gallery-frame {
    aspect-ratio: 3 / 4;
    margin: 10px 10px 0;
    padding: 0;
}
.app-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.app-gallery-showcase .app-gallery-item img,
.app-gallery-masonry .app-gallery-item img {
    object-fit: contain;
    padding: 6px;
}
.app-gallery-item:hover img { transform: scale(1.04); }
.app-gallery-overlay {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: auto;
    height: auto;
    aspect-ratio: 3 / 4;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(5, 15, 31, 0.35) 0%, rgba(5, 15, 31, 0.72) 100%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 2;
}
.app-gallery-grid-featured .app-gallery-overlay {
    aspect-ratio: 4 / 5;
}
.app-gallery-item:hover .app-gallery-overlay,
.app-gallery-item:focus-visible .app-gallery-overlay { opacity: 1; }
.app-gallery-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px 14px;
    margin-top: auto;
    background: linear-gradient(180deg, rgba(244, 246, 248, 0.5) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-top: 1px solid rgba(6, 27, 51, 0.05);
}
.app-gallery-card-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    min-width: 0;
    flex: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.app-gallery-card-label i {
    color: #fff;
    flex-shrink: 0;
    font-size: 0.62rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #22C55E 0%, #16A34A 100%);
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.35);
}
.app-gallery-card-action {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFE08A 0%, #F5C542 100%);
    box-shadow: 0 6px 16px rgba(245, 197, 66, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: 0.25s ease;
}
.app-gallery-item:hover .app-gallery-card-action {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(245, 197, 66, 0.45);
}
.app-gallery-zoom {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: var(--shadow-gold), var(--gloss-inset);
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.app-gallery-view {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.app-gallery-foot {
    margin-top: 36px;
    text-align: center;
}
.app-gallery-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px !important;
}
.app-gallery-cta-count {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.85;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
}
.app-gallery-note {
    margin-top: 28px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.app-gallery-note i { color: var(--gold); }
.app-gallery-empty {
    text-align: center;
    padding: 48px 24px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(11, 37, 69, 0.08);
    box-shadow: 0 4px 24px rgba(11, 37, 69, 0.04);
}
.app-gallery-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(217, 164, 65, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.app-gallery-empty h3 { color: var(--navy); margin-bottom: 8px; }
.app-gallery-empty p { color: var(--text-muted); margin-bottom: 20px; max-width: 420px; margin-left: auto; margin-right: auto; }
.app-gallery-empty-page { padding: 64px 32px; }
.btn-outline-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
}
.app-page-banner { margin-top: 0; }
.app-gallery-page {
    position: relative;
    padding-top: 48px;
    padding-bottom: 64px;
    background: linear-gradient(180deg, var(--pearl) 0%, #ffffff 40%, var(--pearl) 100%);
    overflow: hidden;
}
.app-gallery-page-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 40% at 0% 0%, rgba(226, 184, 74, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 100% 20%, rgba(37, 99, 168, 0.05) 0%, transparent 50%);
}
.app-gallery-page .container { position: relative; z-index: 1; }

.app-gallery-banner .app-gallery-banner-desc {
    max-width: 520px;
    margin: 0 auto 16px;
    font-size: 1rem;
    opacity: 0.92;
    line-height: 1.65;
}
.app-gallery-banner .breadcrumb {
    justify-content: center;
}

.app-gallery-page-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}
.app-gallery-page-hint {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.app-gallery-page-hint i { color: var(--gold); }

.app-gallery-page-cta {
    margin-top: 48px;
}
.app-gallery-page-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--blue) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 56px rgba(12, 30, 58, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #fff;
}
.app-gallery-page-cta-inner strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 4px;
}
.app-gallery-page-cta-inner span {
    font-size: 0.88rem;
    opacity: 0.88;
}

/* Gallery page tabs */
.app-gallery-page-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.app-gallery-page-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    border: 2px solid rgba(11, 37, 69, 0.12);
    background: #fff;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}
.app-gallery-page-tab span {
    background: var(--cream);
    color: var(--navy);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 20px;
}
.app-gallery-page-tab.is-active,
.app-gallery-page-tab:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.app-gallery-page-tab.is-active span,
.app-gallery-page-tab:hover span {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Video gallery grid */
.app-gallery-videos,
.app-gallery-videos-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .app-gallery-videos-page { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.app-gallery-videos-preview {
    margin-top: 28px;
}
.app-gallery-videos-preview .app-gallery-videos {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.app-gallery-video-item {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    border-radius: 14px;
    transition: transform 0.25s ease;
}
.app-gallery-video-item:hover,
.app-gallery-video-item:focus-visible {
    transform: translateY(-3px);
    outline: none;
}
.app-gallery-video-card {
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft), var(--gloss-inset);
    border: var(--gloss-border);
    background: linear-gradient(165deg, #ffffff 0%, var(--pearl) 100%);
}
.app-gallery-video-frame {
    display: block;
    aspect-ratio: 16 / 10;
    background: var(--navy);
    overflow: hidden;
}
.app-gallery-video-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.app-gallery-video-item:hover img { transform: scale(1.04); }
.app-gallery-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(180deg, rgba(11, 37, 69, 0.15) 0%, rgba(11, 37, 69, 0.55) 100%);
    color: #fff;
    opacity: 0.92;
    transition: opacity 0.25s ease;
}
.app-gallery-video-play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold), var(--gloss-inset);
    border: 1px solid rgba(255,255,255,0.35);
}
.app-gallery-video-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.app-gallery-video-title {
    display: block;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    padding: 0 4px;
}

/* Gallery lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 36, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.gallery-lightbox-panel {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    max-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery-lightbox-figure {
    margin: 0;
    width: 100%;
    background: #0d1f35;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    position: relative;
}
.gallery-lightbox-img {
    display: block;
    width: 100%;
    max-height: min(72vh, 720px);
    object-fit: contain;
    background: #081422;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gallery-lightbox-img.is-loaded { opacity: 1; }
.gallery-lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(217, 164, 65, 0.25);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: gallerySpin 0.7s linear infinite;
}
.gallery-lightbox-img.is-loaded + .gallery-lightbox-loader { display: none; }
.gallery-lightbox-video-wrap {
    width: 100%;
    background: #081422;
    min-height: 220px;
}
.gallery-lightbox-video-wrap[hidden] { display: none !important; }
.gallery-lightbox-iframe,
.gallery-lightbox-video-el {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(72vh, 720px);
    border: none;
    background: #000;
}
.gallery-lightbox-iframe[hidden],
.gallery-lightbox-video-el[hidden] { display: none !important; }
.gallery-lightbox-img[style*="display: none"],
.gallery-lightbox-figure:has(.gallery-lightbox-video-wrap:not([hidden])) .gallery-lightbox-img { display: none !important; }
@keyframes gallerySpin { to { transform: rotate(360deg); } }
.gallery-lightbox-caption {
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    line-height: 1.55;
    text-align: center;
    max-height: 120px;
    overflow-y: auto;
    background: linear-gradient(180deg, #0d1f35 0%, #0b2545 100%);
}
.gallery-lightbox-caption:empty { display: none; }
.gallery-lightbox-counter {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    z-index: 3;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}
.gallery-lightbox-close {
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.1rem;
}
.gallery-lightbox-close:hover { background: var(--gold); color: var(--navy); }
.gallery-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}
.gallery-lightbox-nav:hover { background: var(--gold); color: var(--navy); }
.gallery-lightbox-prev { left: -56px; }
.gallery-lightbox-next { right: -56px; }
@media (max-width: 768px) {
    .gallery-lightbox { padding: 12px; }
    .gallery-lightbox-close { top: 8px; right: 8px; background: rgba(11, 37, 69, 0.85); }
    .gallery-lightbox-prev { left: 8px; }
    .gallery-lightbox-next { right: 8px; }
    .gallery-lightbox-nav {
        width: 38px;
        height: 38px;
        background: rgba(11, 37, 69, 0.75);
    }
    .gallery-lightbox-img { max-height: 58vh; }
}
body.gallery-lightbox-open { overflow: hidden; }

/* —— About section —— */
.app-about-section {
    background: linear-gradient(180deg, var(--cream) 0%, #fff 50%, var(--cream) 100%);
}
.app-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 992px) {
    .app-about-grid { grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
}
.app-about-lead {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-light);
    margin: 16px 0 20px;
}
.app-about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}
.app-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.5;
}
.app-about-list i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.app-about-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.app-about-card {
    background: linear-gradient(145deg, var(--navy) 0%, var(--blue) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: 0 20px 60px rgba(11, 37, 69, 0.2);
    position: relative;
    overflow: hidden;
}
.app-about-card::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 60%; height: 80%;
    background: radial-gradient(circle, rgba(217,164,65,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.app-about-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(217, 164, 65, 0.2);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.app-about-card h3 { font-size: 1.25rem; margin-bottom: 20px; position: relative; }
.app-about-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
}
.app-about-metric {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
}
.app-about-metric strong {
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1.2;
}
.app-about-metric span {
    font-size: 0.72rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.app-about-tagline {
    font-size: 0.88rem;
    opacity: 0.9;
    text-align: center;
    position: relative;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

/* —— Process steps —— */
.app-process-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
}
@media (min-width: 768px) {
    .app-process-track { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}
.app-process-step {
    background: #fff;
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.app-process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 37, 69, 0.1);
}
.app-process-num {
    position: absolute;
    top: 12px; right: 14px;
    font-size: 0.68rem;
    font-weight: 800;
    color: rgba(11, 37, 69, 0.2);
    letter-spacing: 0.05em;
}
.app-process-icon {
    width: 52px; height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(217,164,65,0.15) 0%, rgba(217,164,65,0.05) 100%);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(217, 164, 65, 0.25);
}
.app-process-step h4 {
    font-size: 0.92rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.app-process-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}
.app-process-cta { text-align: center; margin-top: 32px; }

/* —— FAQ —— */
.app-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 900px;
}
@media (min-width: 992px) {
    .app-faq-grid { margin: 0 auto; }
}
.app-faq-item {
    background: #fff;
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(11, 37, 69, 0.04);
    transition: box-shadow 0.25s ease;
}
.app-faq-item[open] {
    box-shadow: 0 8px 28px rgba(11, 37, 69, 0.08);
    border-color: rgba(217, 164, 65, 0.3);
}
.app-faq-item summary {
    padding: 18px 48px 18px 20px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    position: relative;
    line-height: 1.45;
}
.app-faq-item summary::-webkit-details-marker { display: none; }
.app-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.72rem;
    color: var(--gold);
    transition: transform 0.25s ease;
}
.app-faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.app-faq-item p {
    padding: 0 20px 18px;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-light);
    border-top: 1px solid rgba(11, 37, 69, 0.06);
    padding-top: 14px;
}

/* —— Mobile polish (≤991px) —— */
@media (max-width: 991px) {
    .app-header-inner {
        padding: 6px 0 8px;
        min-height: 64px;
        gap: 8px;
    }
    .app-header-logo-wrap {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 16px;
    }
    .app-header-logo-wrap img {
        width: 34px;
        height: 34px;
    }
    .app-header-name { font-size: 0.84rem; }
    .app-header-tagline { font-size: 0.54rem; }
    .app-header-call-fab,
    .app-menu-btn {
        width: 42px;
        height: 42px;
    }
    .app-header-call-fab { font-size: 0.88rem; }
    .app-status-strip { padding: 4px 14px; }
    .app-status-hours span { max-width: 42vw; overflow: hidden; text-overflow: ellipsis; }
    .app-section-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: var(--space-5);
    }
    .app-section-head.text-center { align-items: center; text-align: center; }
    .app-section-head h2 { font-size: 1.22rem; }
    .app-link-more { font-size: var(--text-sm); }
    body.app-ui .swiper { overflow: hidden; max-width: 100%; }
    body.app-ui .row { margin-left: 0; margin-right: 0; }
}
@media (max-width: 400px) {
    .app-status-pill { font-size: 0.56rem; padding: 3px 8px; }
    .app-status-hours { font-size: 0.56rem; }
    .app-header-tagline { display: none; }
    .app-header-name { font-size: 0.8rem; }
    .app-topbar-meta span { font-size: 0.6rem; }
    .app-hero-trust { max-width: 100%; }
    .app-hero-stats-bar .app-stat-chip span { font-size: 0.55rem; }
    .app-why-stat span { font-size: 0.58rem; }
    .app-feature-card { padding: var(--space-4); }
    .app-feature-icon { width: 46px; height: 46px; font-size: 1.05rem; }
}

/* ===== Old Skool client-presentation mobile UI layer ===== */
body.app-ui {
    --navy: #061B33;
    --navy-deep: #061B33;
    --blue: #0A2A4A;
    --blue-light: #174D7A;
    --gold: #F5C542;
    --gold-light: #FFE08A;
    --pearl: #F4F6F8;
    --cream: #F4F6F8;
    --text: #10243A;
    --text-muted: #5C6C7D;
    background:
        radial-gradient(ellipse 90% 50% at 0% 0%, rgba(245, 197, 66, 0.14) 0%, transparent 52%),
        linear-gradient(180deg, #061B33 0%, #0A2A4A 360px, #F4F6F8 361px, #FFFFFF 100%);
}

.oskool-top-destinations {
    position: relative;
    z-index: 8;
    margin-top: -30px;
    padding-bottom: 20px;
}

.oskool-mobile-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 28px;
    box-shadow:
        0 22px 58px rgba(6, 27, 51, 0.14),
        0 8px 20px rgba(6, 27, 51, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.92);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.oskool-mobile-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 28px 64px rgba(6, 27, 51, 0.18),
        0 10px 24px rgba(6, 27, 51, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.oskool-destination-strip {
    padding: 18px 16px 16px;
}

.oskool-mini-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.oskool-mini-head .section-pill {
    margin-bottom: 0;
    white-space: nowrap;
}

.oskool-mini-head h2 {
    margin: 2px 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
    color: var(--navy);
    text-align: right;
}

.oskool-flag-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.oskool-flag-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 84px;
    padding: 10px 4px;
    border-radius: 22px;
    text-decoration: none;
    color: var(--navy);
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F8 100%);
    border: 1px solid rgba(6, 27, 51, 0.07);
    box-shadow: 0 10px 26px rgba(6, 27, 51, 0.08);
}

.oskool-flag-chip span {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(245, 197, 66, 0.42);
    overflow: hidden;
}

.oskool-flag-chip img {
    width: 34px;
    height: 26px;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
    display: block;
}

.oskool-flag-chip strong {
    font-size: 0.68rem;
    line-height: 1.1;
}

.oskool-mobile-showcase {
    background:
        radial-gradient(ellipse 60% 42% at 90% 0%, rgba(245, 197, 66, 0.14) 0%, transparent 55%),
        linear-gradient(180deg, #FFFFFF 0%, #F4F6F8 100%);
}

.oskool-mobile-showcase .app-section-head h2,
.oskool-compact-head h2 {
    color: var(--navy);
}

.oskool-mobile-showcase .app-service-card {
    min-height: 174px;
    padding: 18px 14px;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(6, 27, 51, 0.08);
    box-shadow: 0 16px 34px rgba(6, 27, 51, 0.1);
}

.oskool-mobile-showcase .app-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(145deg, #061B33 0%, #0A2A4A 100%);
    color: var(--gold);
}

.oskool-mobile-showcase .app-service-card h3 {
    font-size: 0.86rem;
    line-height: 1.25;
}

.oskool-mobile-showcase .app-service-desc {
    font-size: 0.7rem;
    line-height: 1.45;
}

.oskool-screen-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 22px;
}

.oskool-why-card,
.oskool-story-card,
.oskool-assets-block {
    padding: 20px;
}

.oskool-icon-list {
    display: grid;
    gap: 12px;
}

.oskool-icon-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F8 100%);
    border: 1px solid rgba(6, 27, 51, 0.06);
}

.oskool-icon-list span,
.oskool-asset-card span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    background: linear-gradient(145deg, #061B33 0%, #0A2A4A 100%);
    box-shadow: 0 12px 24px rgba(6, 27, 51, 0.16);
}

.oskool-icon-list strong {
    font-size: 0.88rem;
    color: var(--navy);
    line-height: 1.35;
}

.oskool-story-card {
    background:
        radial-gradient(ellipse 80% 80% at 100% 0%, rgba(245, 197, 66, 0.22) 0%, transparent 46%),
        linear-gradient(145deg, #061B33 0%, #0A2A4A 100%);
    color: #FFFFFF;
}

.oskool-story-card .section-pill {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
    color: #FFFFFF;
}

.oskool-story-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.oskool-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(245, 197, 66, 0.25);
}

.oskool-story-card h3 {
    margin: 0 0 2px;
    font-size: 1rem;
    color: #FFFFFF;
}

.oskool-stars {
    color: var(--gold);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
}

.oskool-story-card blockquote {
    margin: 0;
    color: rgba(255,255,255,0.88);
    font-size: 0.92rem;
    line-height: 1.65;
}

.oskool-assets-block {
    margin-top: 22px;
    border-radius: 28px;
    background: #FFFFFF;
    border: 1px solid rgba(6, 27, 51, 0.08);
    box-shadow: 0 18px 45px rgba(6, 27, 51, 0.1);
}

.oskool-assets-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.oskool-asset-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 70px;
    padding: 12px;
    border-radius: 20px;
    background: #F4F6F8;
    border: 1px solid rgba(6, 27, 51, 0.06);
}

.oskool-asset-card strong {
    font-size: 0.8rem;
    color: var(--navy);
    line-height: 1.2;
}

.oskool-destination-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 22px;
    overflow-x: auto;
    padding: 4px 4px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.oskool-destination-cards::-webkit-scrollbar {
    display: none;
}

.oskool-destination-card {
    position: relative;
    min-height: 260px;
    border-radius: 28px;
    overflow: hidden;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(6, 27, 51, 0.18);
    scroll-snap-align: start;
    isolation: isolate;
}

.oskool-destination-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.oskool-destination-card:hover img {
    transform: scale(1.08);
}

.oskool-destination-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6, 27, 51, 0.05) 0%, rgba(6, 27, 51, 0.2) 45%, rgba(6, 27, 51, 0.86) 100%),
        radial-gradient(ellipse 70% 50% at 20% 0%, rgba(245, 197, 66, 0.22) 0%, transparent 55%);
}

.oskool-destination-label {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
}

.oskool-destination-label em {
    display: inline-flex;
    margin-bottom: 7px;
    padding: 6px 10px;
    border-radius: 50px;
    background: rgba(245, 197, 66, 0.18);
    border: 1px solid rgba(245, 197, 66, 0.34);
    color: var(--gold-light);
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 700;
}

.oskool-destination-label strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.12rem;
}

.app-bottom-nav {
    /* Floating island styles defined above */
}

@media (min-width: 768px) {
    .oskool-screen-grid {
        grid-template-columns: 1fr 1fr;
    }

    .oskool-assets-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .oskool-mobile-showcase .app-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .oskool-mobile-showcase .app-service-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .oskool-mobile-showcase .app-service-card h3,
    .oskool-mobile-showcase .app-service-desc {
        text-align: left;
    }
}

@media (max-width: 575px) {
    body.app-ui .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .oskool-top-destinations {
        margin-top: -18px;
    }

    .oskool-destination-strip {
        border-radius: 24px;
        padding: 14px 12px;
    }

    .oskool-mini-head {
        display: block;
    }

    .oskool-mini-head h2 {
        text-align: left;
        margin-top: 10px;
    }

    .oskool-flag-row {
        gap: 8px;
    }

    .oskool-flag-chip {
        min-height: 76px;
        border-radius: 18px;
    }

    .oskool-flag-chip span {
        width: 40px;
        height: 40px;
    }

    .oskool-flag-chip img {
        width: 30px;
        height: 22px;
    }

    .oskool-flag-chip strong {
        font-size: 0.6rem;
    }

    .oskool-mobile-showcase .app-service-card {
        min-height: 168px;
        padding: 14px 12px;
    }

    .oskool-mobile-showcase .app-service-icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        font-size: 1.08rem;
    }

    .oskool-mobile-showcase .app-service-card h3 {
        font-size: 0.78rem;
    }

    .oskool-mobile-showcase .app-service-desc {
        font-size: 0.66rem;
    }

    .oskool-why-card,
    .oskool-story-card,
    .oskool-assets-block {
        padding: 16px;
        border-radius: 24px;
    }

    .oskool-assets-grid {
        gap: 10px;
    }

    .oskool-asset-card {
        min-height: 64px;
        padding: 10px;
    }

    .oskool-asset-card span {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .oskool-destination-cards {
        grid-template-columns: repeat(5, 78vw);
        margin-left: -2px;
        margin-right: -2px;
    }

    .oskool-destination-card,
    .oskool-destination-card img {
        min-height: 230px;
    }
}

@media (max-width: 400px) {
    .oskool-mobile-showcase .app-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .oskool-mobile-showcase .app-service-card {
        min-height: 160px;
        gap: 9px;
    }

    .oskool-flag-chip {
        padding-left: 2px;
        padding-right: 2px;
    }
}

/* ===== Gallery + sections — premium mobile polish ===== */
@media (max-width: 575px) {
    .app-gallery-grid,
    .app-gallery-grid-featured,
    .app-gallery-showcase {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding: 2px 2px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .app-gallery-grid::-webkit-scrollbar,
    .app-gallery-grid-featured::-webkit-scrollbar,
    .app-gallery-showcase::-webkit-scrollbar {
        display: none;
    }
    .app-gallery-grid .app-gallery-item,
    .app-gallery-grid-featured .app-gallery-item,
    .app-gallery-showcase .app-gallery-item {
        flex: 0 0 min(74vw, 290px);
        scroll-snap-align: start;
    }
    .app-gallery-stats {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        margin-bottom: 18px;
        scrollbar-width: none;
    }
    .app-gallery-stats::-webkit-scrollbar { display: none; }
    .app-gallery-section { padding-top: 28px; padding-bottom: 28px; }
    .app-gallery-overlay {
        left: 10px;
        right: 10px;
        top: 10px;
    }
}

.app-service-card,
.app-review-card {
    border-radius: 22px;
    border: 1px solid rgba(6, 27, 51, 0.07);
    box-shadow:
        0 14px 36px rgba(6, 27, 51, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.app-review-card {
    background: linear-gradient(165deg, #FFFFFF 0%, #F8FAFC 100%);
}

.app-review-stars {
    color: #F5C542;
    margin-bottom: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

.app-gallery-foot .app-gallery-cta {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-gallery-cta-count {
    border-left: none;
    padding-left: 0;
    width: 100%;
    text-align: center;
    opacity: 0.75;
}

/* Homepage — mobile app carousels */
@media (max-width: 575px) {
    .success-swiper,
    .testimonial-swiper {
        overflow: visible;
        padding-bottom: 8px;
    }
    .success-swiper .swiper-slide,
    .testimonial-swiper .swiper-slide {
        height: auto;
    }
    .success-swiper .app-review-card,
    .testimonial-swiper .app-review-card {
        min-height: 220px;
    }
    .app-cta-banner {
        margin: 0 14px 24px;
        border-radius: 24px;
        padding: 24px 18px;
    }
    .app-section {
        padding: 28px 0;
    }
    body.app-ui .site-footer-premium .footer-wave {
        display: none;
    }
}

/* ===== Skyline-inspired homepage sections ===== */
.app-quick-actions {
    padding: 18px 0 8px;
    margin-top: -8px;
    position: relative;
    z-index: 2;
}

.app-quick-actions-grid {
    display: grid;
    gap: 12px;
}

.app-quick-action-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid rgba(6, 27, 51, 0.08);
    box-shadow: 0 12px 32px rgba(6, 27, 51, 0.08);
    text-decoration: none;
    color: var(--navy, #061B33);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-quick-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(6, 27, 51, 0.12);
    color: var(--navy, #061B33);
}

.app-quick-action-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    background: linear-gradient(135deg, #061B33 0%, #0D2F52 100%);
    color: #F5C542;
}

.app-quick-action-card--visit .app-quick-action-icon {
    background: linear-gradient(135deg, #F5C542 0%, #E8B42E 100%);
    color: #061B33;
}

.app-quick-action-card--blog .app-quick-action-icon {
    background: linear-gradient(135deg, #0E7490 0%, #0891B2 100%);
    color: #fff;
}

.app-quick-action-card h3 {
    font-size: 1rem;
    margin: 0 0 4px;
    font-weight: 700;
}

.app-quick-action-card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(6, 27, 51, 0.65);
}

.app-quick-action-arrow {
    margin-left: auto;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(6, 27, 51, 0.06);
    color: var(--navy, #061B33);
    font-size: 0.75rem;
}

/* Open Doors stats strip */
.app-open-doors {
    position: relative;
    padding: 48px 0;
    overflow: hidden;
    color: #fff;
}

.app-open-doors-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(245, 197, 66, 0.18) 0%, transparent 55%),
        linear-gradient(155deg, #061B33 0%, #0A2540 45%, #061B33 100%);
    z-index: 0;
}

.app-open-doors .container {
    position: relative;
    z-index: 1;
}

.app-open-doors-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
}

.app-open-doors-head h2 {
    color: #fff;
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    margin: 12px 0;
}

.app-open-doors-head p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.app-open-doors-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.app-open-doors-stat {
    text-align: center;
    padding: 22px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.app-open-doors-stat strong {
    display: block;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #F5C542;
    line-height: 1.1;
    margin-bottom: 6px;
}

.app-open-doors-stat span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Destination guides */
.app-dest-guides-section {
    background: #F8FAFC;
}

.app-dest-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.app-dest-guide-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px 20px;
    border: 1px solid rgba(6, 27, 51, 0.07);
    box-shadow: 0 10px 28px rgba(6, 27, 51, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-dest-guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(6, 27, 51, 0.1);
}

.app-dest-guide-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-dest-guide-head h3 {
    margin: 0;
    font-size: 1.05rem;
}

.app-dest-guide-head h3 a {
    color: var(--navy, #061B33);
    text-decoration: none;
}

.app-dest-guide-head h3 a:hover {
    color: #C9A227;
}

.app-dest-guide-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.app-dest-guide-list li {
    font-size: 0.84rem;
    color: rgba(6, 27, 51, 0.72);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

.app-dest-guide-list li i {
    color: #16A34A;
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.app-dest-guide-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy, #061B33);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.app-dest-guide-link:hover {
    color: #C9A227;
}

/* University events swiper */
.app-events-section {
    overflow: hidden;
    max-width: 100%;
}

.app-events-section .container {
    max-width: 100%;
    overflow: hidden;
}

.app-events-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
}

.app-events-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 44px;
    margin: 0;
}

.app-events-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.app-event-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px 18px;
    min-height: 196px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(6, 27, 51, 0.08);
    box-shadow: 0 8px 28px rgba(6, 27, 51, 0.07);
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.app-event-card-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.app-event-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #F5C542;
    background: rgba(6, 27, 51, 0.92);
    padding: 5px 10px;
    border-radius: 6px;
    align-self: flex-start;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-event-type {
    font-size: 0.76rem;
    color: rgba(6, 27, 51, 0.55);
    line-height: 1.35;
}

.app-event-card h3 {
    font-size: 0.95rem;
    line-height: 1.45;
    margin: 0 0 12px;
    flex: 1;
    color: var(--navy, #061B33);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.app-event-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(6, 27, 51, 0.08);
    font-size: 0.72rem;
    min-width: 0;
}

.app-event-brand {
    color: rgba(6, 27, 51, 0.65);
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 1;
}

.app-event-brand i {
    flex-shrink: 0;
    color: var(--gold, #F5C542);
}

.app-event-brand-full,
.app-event-brand-short {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.app-event-brand-short {
    display: none;
}

.app-event-tag {
    background: rgba(245, 197, 66, 0.18);
    color: #8B6914;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.65rem;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 46%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-events-pagination {
    bottom: 4px !important;
}

.app-events-swiper .swiper-pagination-bullet {
    background: rgba(6, 27, 51, 0.22);
    opacity: 1;
    width: 7px;
    height: 7px;
}

.app-events-swiper .swiper-pagination-bullet-active {
    background: #F5C542;
    width: 20px;
    border-radius: 6px;
}

.app-events-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-58%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(6, 27, 51, 0.1);
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy, #061B33);
    box-shadow: 0 6px 20px rgba(6, 27, 51, 0.12);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.app-events-nav:hover {
    background: var(--navy, #061B33);
    color: #fff;
}

.app-events-prev { left: -6px; }
.app-events-next { right: -6px; }

@media (min-width: 992px) {
    .app-events-nav {
        display: flex;
    }

    .app-events-slider-wrap {
        padding: 0 8px;
    }
}

@media (max-width: 575px) {
    .app-events-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .app-events-section .app-section-head {
        margin-bottom: 18px;
    }

    .app-events-section .app-link-more {
        width: 100%;
        justify-content: center;
        margin-top: 4px;
    }

    .app-event-card {
        padding: 16px 14px;
        min-height: 180px;
        border-radius: 16px;
    }

    .app-event-card h3 {
        font-size: 0.88rem;
        -webkit-line-clamp: 4;
    }

    .app-event-card-foot {
        flex-wrap: wrap;
        gap: 6px;
    }

    .app-event-brand-full {
        display: none;
    }

    .app-event-brand-short {
        display: inline;
    }

    .app-event-tag {
        max-width: 100%;
        font-size: 0.62rem;
    }

    .app-events-nav {
        display: none !important;
    }
}

@media (max-width: 400px) {
    .app-event-tag {
        white-space: normal;
        text-align: center;
        line-height: 1.25;
    }
}

/* Partner universities */
.app-partners-section {
    background: #fff;
}

.app-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

.app-partner-card {
    text-align: center;
    padding: 20px 14px;
    border-radius: 18px;
    background: linear-gradient(165deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid rgba(6, 27, 51, 0.07);
    box-shadow: 0 8px 24px rgba(6, 27, 51, 0.06);
    transition: transform 0.2s ease;
}

.app-partner-card:hover {
    transform: translateY(-3px);
}

.app-partner-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 12px;
    background: rgba(6, 27, 51, 0.06);
    color: var(--navy, #061B33);
    font-size: 1.1rem;
}

.app-partner-card strong {
    display: block;
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--navy, #061B33);
    margin-bottom: 6px;
}

.app-partner-card em {
    font-style: normal;
    font-size: 0.72rem;
    color: rgba(6, 27, 51, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* Promo trio */
.app-promo-trio-section {
    padding-top: 28px;
    padding-bottom: 40px;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(56, 189, 248, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.app-promo-trio-head {
    margin-bottom: 22px;
}

.app-promo-trio-grid {
    display: grid;
    gap: 18px;
    align-items: stretch;
}

.app-promo-trio-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    padding: 26px 22px 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(6, 27, 51, 0.08);
    box-shadow: 0 12px 32px rgba(6, 27, 51, 0.07);
    text-decoration: none;
    color: #061B33;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
    overflow: hidden;
}

.app-promo-trio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #38BDF8, #F5C542, #818CF8);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.app-promo-trio-card--light:hover::before {
    opacity: 1;
}

.app-promo-trio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(6, 27, 51, 0.12);
}

.app-promo-trio-card--light h3,
.app-promo-trio-card--light p,
.app-promo-trio-card--light .app-promo-trio-link {
    color: inherit;
}

.app-promo-trio-card--light h3 {
    color: #061B33;
}

.app-promo-trio-card--light p {
    color: #5C6C7D;
}

.app-promo-trio-card--light .app-promo-trio-link {
    color: #061B33;
}

/* Featured / dark center card */
.app-promo-trio-card--featured,
.app-promo-trio-card--gold {
    background:
        radial-gradient(ellipse 80% 80% at 100% 0%, rgba(56, 189, 248, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 60% 60% at 0% 100%, rgba(245, 197, 66, 0.1) 0%, transparent 50%),
        linear-gradient(145deg, #061B33 0%, #0A2A4A 55%, #123B63 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(6, 27, 51, 0.28);
    color: #FFFFFF;
}

.app-promo-trio-card--featured:hover,
.app-promo-trio-card--gold:hover {
    color: #FFFFFF;
    box-shadow: 0 24px 56px rgba(6, 27, 51, 0.35);
}

.app-promo-trio-card--featured h3,
.app-promo-trio-card--featured p,
.app-promo-trio-card--featured .app-promo-trio-link,
.app-promo-trio-card--gold h3,
.app-promo-trio-card--gold p,
.app-promo-trio-card--gold .app-promo-trio-link {
    color: #FFFFFF;
}

.app-promo-trio-card--featured p,
.app-promo-trio-card--gold p {
    color: rgba(255, 255, 255, 0.88);
}

.app-promo-trio-card--featured .app-promo-trio-link,
.app-promo-trio-card--gold .app-promo-trio-link {
    color: #F5C542;
}

.app-promo-trio-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 10px;
    border-radius: 50px;
    background: rgba(245, 197, 66, 0.2);
    border: 1px solid rgba(245, 197, 66, 0.45);
    color: #FFE08A;
}

.app-promo-trio-card--featured .app-promo-trio-icon,
.app-promo-trio-card--gold .app-promo-trio-icon {
    background: rgba(245, 197, 66, 0.18);
    color: #F5C542;
    border: 1px solid rgba(245, 197, 66, 0.35);
}

.app-promo-trio-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(6, 27, 51, 0.06) 0%, rgba(6, 27, 51, 0.03) 100%);
    color: #061B33;
    font-size: 1.2rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.app-promo-trio-card h3 {
    font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
    font-size: 1.12rem;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.app-promo-trio-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 auto;
    padding-bottom: 16px;
    flex: 1;
}

.app-promo-trio-link {
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.app-promo-trio-card:hover .app-promo-trio-link {
    gap: 12px;
}

@media (min-width: 768px) {
    .app-quick-actions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .app-quick-action-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        min-height: 200px;
        padding: 22px 20px;
    }

    .app-quick-action-arrow {
        margin-left: 0;
        margin-top: auto;
    }

    .app-promo-trio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .app-open-doors-stats {
        gap: 10px;
    }

    .app-open-doors-stat {
        padding: 16px 8px;
    }

    .app-open-doors-stat strong {
        font-size: 1.5rem;
    }

    .app-open-doors-stat span {
        font-size: 0.68rem;
    }

    .app-dest-guides-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .app-dest-guides-grid::-webkit-scrollbar {
        display: none;
    }

    .app-dest-guide-card {
        flex: 0 0 min(82vw, 320px);
        scroll-snap-align: start;
    }

    .app-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
