:root {
    --blue-950: #0f2436;
    --blue-900: #1a3e5c;
    --blue-800: #245170;
    --orange-500: #ff6f3c;
    --orange-400: #ff8559;
    --teal-500: #2a9d8f;
    --gold-400: #e9c46a;
    --gray-400: #a3a3a3;
    --white-100: #f4f4f4;
    --ink-100: #dfe8ee;
    --panel: rgba(20, 49, 73, 0.76);
    --panel-solid: #16344d;
    --panel-alt: rgba(17, 40, 59, 0.9);
    --line: rgba(244, 244, 244, 0.12);
    --shadow: 0 22px 60px rgba(4, 15, 24, 0.42);
    --shadow-soft: 0 18px 44px rgba(4, 15, 24, 0.26);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --max-width: 1180px;
    --header-height: 64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "DM Sans", sans-serif;
    color: var(--white-100);
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 111, 60, 0.2), transparent 25%),
        radial-gradient(circle at 90% 10%, rgba(42, 157, 143, 0.14), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(233, 196, 106, 0.1), transparent 24%),
        linear-gradient(180deg, #0f2538 0%, #14304a 45%, #10273b 100%);
    line-height: 1.65;
    position: relative;
}

body.nav-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1440'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.32' stroke-width='3'%3E%3Cpath d='M45 245c122-81 256-94 369-31s249 75 366 12 249-53 364 29'/%3E%3Cpath d='M-11 410c146-58 269-40 369 54s220 111 359 42 269-73 409-12'/%3E%3Cpath d='M77 611c131-95 268-108 381-35s238 95 362 28 253-51 367 48'/%3E%3Cpath d='M-15 838c159-61 292-48 400 39s225 96 355 27 269-79 396-18'/%3E%3Cpath d='M121 1030c135-78 257-79 366-2s238 91 357 20 244-65 362 17'/%3E%3Cpath d='M42 1231c149-71 279-69 390 5s228 83 350 17 252-62 387 8'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    z-index: -1;
}

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

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

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

button {
    cursor: pointer;
}

input,
select,
textarea {
    background: rgba(10, 24, 36, 0.44);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.92rem 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.menu-toggle:focus-visible,
.video-card:focus-visible,
.path-card:focus-visible,
.floating-whatsapp:focus-visible,
.faq-item summary:focus-visible {
    outline: none;
    border-color: rgba(255, 111, 60, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 111, 60, 0.18);
}

[hidden] {
    display: none !important;
}

main {
    display: block;
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 18px);
}

.container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(12, 29, 43, 0.72);
    border-bottom: 1px solid rgba(244, 244, 244, 0.08);
}

.nav-row {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand img {
    width: 110px;
    height: auto;
}

.brand-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.15;
}

.brand-meta strong {
    font-size: 0.94rem;
    font-weight: 700;
}

.brand-meta span {
    font-size: 0.82rem;
    color: rgba(244, 244, 244, 0.72);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: rgba(244, 244, 244, 0.82);
    font-size: 0.96rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.current {
    color: var(--orange-500);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.menu-toggle .menu-lines,
.menu-toggle .menu-lines::before,
.menu-toggle .menu-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white-100);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    content: "";
}

.menu-toggle .menu-lines::before {
    transform: translateY(-6px);
}

.menu-toggle .menu-lines::after {
    transform: translateY(4px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 52px;
    padding: 0.9rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    color: #fff;
    box-shadow: 0 16px 32px rgba(255, 111, 60, 0.22);
}

.button-primary:hover {
    box-shadow: 0 18px 40px rgba(255, 111, 60, 0.3);
}

.button-ghost {
    color: var(--white-100);
    border-color: rgba(244, 244, 244, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
    border-color: rgba(255, 111, 60, 0.44);
    background: rgba(255, 111, 60, 0.08);
}

.button-block {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.hero::before {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 111, 60, 0.24), transparent 72%);
    top: -140px;
    left: -120px;
}

.hero::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.18), transparent 70%);
    right: -140px;
    top: 18%;
}

.hero-home {
    padding: 4.5rem 0 3.5rem;
}

.hero-center {
    position: relative;
    text-align: center;
    padding: 4rem 0 1rem;
}

.eyebrow,
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: fit-content;
    margin-bottom: 1.2rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 111, 60, 0.22);
    background: rgba(255, 111, 60, 0.08);
    color: var(--orange-500);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-logo {
    width: min(250px, 58vw);
    margin: 0 auto 1.2rem;
}

.hero h1,
.section-head h2,
.intro-copy h2,
.corporate-panel h2,
.cta-panel h2,
.copy-stack h2,
.payment-card h3,
.price-card h3,
.floating-panel h3,
.process-card h3,
.delivery-card h3,
.feature-card h3,
.step-card h3 {
    font-family: "Playfair Display", serif;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 7vw, 4.85rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.hero p {
    margin: 1rem auto 0;
    max-width: 720px;
    color: var(--ink-100);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.stat-strip {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-item {
    padding: 1.15rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.stat-item strong {
    display: block;
    font-size: 1.18rem;
    color: #fff;
}

.stat-item span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(244, 244, 244, 0.76);
    font-size: 0.95rem;
}

.section {
    padding: 5.4rem 0;
}

.section-compact {
    padding-top: 2.2rem;
}

.section-alt {
    background: linear-gradient(180deg, rgba(11, 28, 42, 0.4), rgba(10, 26, 40, 0.72));
    border-top: 1px solid rgba(244, 244, 244, 0.05);
    border-bottom: 1px solid rgba(244, 244, 244, 0.05);
}

.section-head {
    max-width: 760px;
    margin-bottom: 2rem;
}

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

.section-head h2,
.intro-copy h2,
.copy-stack h2,
.corporate-panel h2,
.corporate-copy h2,
.map-copy h2,
.cta-panel h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.06;
}

.section-head p,
.intro-copy p,
.copy-stack p,
.corporate-panel p,
.corporate-copy p,
.map-copy p,
.cta-panel p,
.payment-card p,
.price-card p,
.floating-panel p {
    margin: 0.9rem 0 0;
    color: var(--ink-100);
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.path-card {
    position: relative;
    display: block;
    padding: 1.45rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 244, 244, 0.08);
    background: linear-gradient(180deg, rgba(27, 63, 92, 0.8), rgba(17, 43, 65, 0.92));
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.path-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: var(--card-accent, var(--orange-500));
}

.path-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 111, 60, 0.28);
    box-shadow: var(--shadow);
}

.path-icon {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 2rem;
}

.path-card h3 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.1;
}

.path-card p {
    margin: 0.8rem 0 1rem;
    color: rgba(244, 244, 244, 0.82);
}

.path-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    color: var(--card-accent, var(--orange-500));
}

.intro-panel {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.2rem;
    padding: 1.4rem;
    border: 1px solid rgba(244, 244, 244, 0.08);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(27, 63, 92, 0.74), rgba(17, 43, 65, 0.94));
    box-shadow: var(--shadow-soft);
}

.process-steps {
    display: grid;
    gap: 0.9rem;
}

.process-card,
.bullet-card,
.feature-card,
.step-card,
.delivery-card,
.payment-card,
.price-card,
.video-card,
.gallery-card,
.corporate-panel,
.corporate-copy,
.cta-panel,
.floating-panel {
    border: 1px solid rgba(244, 244, 244, 0.08);
    background: linear-gradient(180deg, rgba(27, 63, 92, 0.78), rgba(17, 43, 65, 0.92));
    box-shadow: var(--shadow-soft);
}

.process-card {
    padding: 1rem 1.05rem;
    border-radius: var(--radius-md);
}

.step-number {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 0.65rem;
    border-radius: 50%;
    background: rgba(255, 111, 60, 0.12);
    color: var(--orange-500);
    font-weight: 700;
}

.process-card h3,
.delivery-card h3,
.feature-card h3,
.step-card h3 {
    margin: 0;
    font-size: 1.12rem;
}

.process-card p,
.delivery-card p,
.feature-card p,
.step-card p,
.bullet-card p,
.price-card li,
.payment-steps li {
    margin: 0.55rem 0 0;
    color: rgba(244, 244, 244, 0.82);
}

.video-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.video-card {
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
}

.video-thumb {
    position: relative;
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center;
}

.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(9, 19, 30, 0.08) 55%, rgba(9, 19, 30, 0.72) 100%);
}

.play-badge {
    position: absolute;
    inset: auto auto 1rem 1rem;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 111, 60, 0.9);
    font-size: 1.2rem;
}

.video-copy {
    padding: 1rem;
}

.video-copy strong {
    display: block;
    font-size: 1rem;
}

.video-copy span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(244, 244, 244, 0.72);
    font-size: 0.92rem;
}

/* ── Community Mosaic Section ────────────────────────────── */

.mosaic-section {
    position: relative;
    background: transparent;
    padding: 100px 5vw 110px;
    overflow: hidden;
}

.mosaic-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(10, 50, 90, 0.35) 0%, transparent 65%);
    pointer-events: none;
}

.mosaic-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 111, 60, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.mosaic-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mosaic-intro {
    text-align: center;
    margin-bottom: 52px;
}

.mosaic-pill {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    font-size: 13px;
    color: #FF7A3D;
    background: rgba(255, 111, 60, 0.08);
    border: 1px solid rgba(255, 111, 60, 0.35);
    border-radius: 999px;
    padding: 10px 18px;
    margin-bottom: 20px;
    font-family: "DM Sans", "Inter", sans-serif;
}

.mosaic-headline {
    font-family: "Playfair Display", "Cormorant Garamond", serif;
    font-size: clamp(38px, 5vw, 76px);
    font-weight: 800;
    line-height: 0.95;
    color: #F5F1EA;
    max-width: 820px;
    margin: 0 auto 24px;
}

.mosaic-paragraph {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    max-width: 760px;
    margin: 0 auto;
    font-family: "DM Sans", "Inter", sans-serif;
}

/* ── Mosaic Grid ── */

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 120px;
    gap: 16px;
}

.mosaic-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.35s ease;
}

.mosaic-card:hover {
    transform: translateY(-4px) scale(1.008);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.38);
}

/* ── Image Cards ── */

.mosaic-img {
    position: relative;
}

.mosaic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.mosaic-img:hover img {
    transform: scale(1.04);
}

/* ── Content Cards (glassmorphism) ── */

.mosaic-content {
    background: rgba(10, 32, 58, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ── Quote Card ── */

.mosaic-quote-card {
    justify-content: flex-start;
    padding: 32px 28px;
}

.mosaic-quote-mark {
    margin-bottom: 16px;
}

.mosaic-quote-text {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 500;
    line-height: 1.45;
    color: #F5F1EA;
    margin: 0;
}

.mosaic-quote-text em {
    color: #FF6F3C;
    font-style: italic;
    font-weight: 700;
}

/* ── Stat Card (600+) ── */

.mosaic-stat-card {
    justify-content: flex-start;
    padding: 28px 24px;
}

.mosaic-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 111, 60, 0.1);
    border: 1px solid rgba(255, 111, 60, 0.25);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}

.mosaic-stat-number {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 800;
    color: #F5F1EA;
    line-height: 1;
}

.mosaic-stat-label {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #F5F1EA;
    margin-top: 2px;
}

.mosaic-stat-desc {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.65);
    margin: 10px 0 0;
}

/* ── Impact Card (Real People) ── */

.mosaic-impact-card {
    justify-content: flex-start;
    padding: 32px 28px;
}

.mosaic-impact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 111, 60, 0.1);
    border: 1px solid rgba(255, 111, 60, 0.25);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.mosaic-impact-title {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    color: #F5F1EA;
    line-height: 1.3;
    margin: 0 0 10px;
}

.mosaic-impact-desc {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* ── Routing Hub Section ─────────────────────────────────── */

.routing-section {
    position: relative;
    background: transparent;
    padding: 80px 3.5vw 80px;
    overflow: hidden;
}

.routing-section::before {
    content: "";
    position: absolute;
    top: 5%;
    left: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 111, 60, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.routing-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 55%);
    pointer-events: none;
}

.routing-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Unified 12-column Grid ── */

.routing-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

/* Row 1: Intro (cols 1-5) + Postgrad (cols 6-12) */
.routing-intro {
    grid-column: 1 / span 5;
    padding: 20px 16px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.route-card-postgrad {
    grid-column: 6 / span 7;
    min-height: 400px;
}

/* Row 2: Stat (cols 1-2) + KCSE (cols 3-7) + Form4 (cols 8-12) */
.route-stat-card {
    grid-column: 1 / span 2;
    min-height: 280px;
}

.route-card-kcse {
    grid-column: 3 / span 5;
    min-height: 280px;
}

.route-card-form4 {
    grid-column: 8 / span 5;
    min-height: 280px;
}

/* Row 3: Team (full width) */
.route-card-team {
    grid-column: 1 / -1;
    min-height: 320px;
}

/* ── Intro Typography ── */

.routing-label {
    display: inline-block;
    color: #FF7A3D;
    letter-spacing: 0.18em;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    font-family: "DM Sans", "Inter", sans-serif;
    margin-bottom: 16px;
}

.routing-headline {
    font-family: "Playfair Display", "Cormorant Garamond", serif;
    font-size: clamp(42px, 5.2vw, 82px);
    font-weight: 800;
    line-height: 0.95;
    color: #F5F1EA;
    margin: 0 0 20px;
}

.routing-period {
    color: #FF6F3C;
}

.routing-paragraph {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    margin: 0 0 28px;
}

/* ── Trust Chips (horizontal) ── */

.routing-chips {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.routing-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.78);
}

.routing-chip-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    border: 1px solid;
    flex-shrink: 0;
}

/* ── Route Card (Image) ── */

.route-card {
    position: relative;
    display: block;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    text-decoration: none;
    color: #F5F1EA;
}

.route-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.route-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.route-card:hover .route-card-bg {
    transform: scale(1.03);
}

.route-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 16, 31, 0.88) 0%, rgba(2, 16, 31, 0.5) 50%, rgba(2, 16, 31, 0.1) 100%);
    z-index: 1;
}

.route-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 28px 30px;
}

.route-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--accent, rgba(255, 255, 255, 0.15));
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: var(--accent, #F5F1EA);
}

.route-card h3 {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 800;
    margin: 0 0 8px;
    color: #F5F1EA;
    line-height: 1.15;
}

.route-card p {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 14px;
    max-width: 320px;
}

.route-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent, #FF6F3C);
    transition: gap 0.25s ease;
}

.route-card:hover .route-card-cta {
    gap: 12px;
}

.route-card-cta svg {
    transition: transform 0.25s ease;
}

.route-card:hover .route-card-cta svg {
    transform: translateX(4px);
}

/* ── Floating Detail Cards ── */

.route-floating-card {
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 3;
    background: rgba(10, 32, 58, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    max-width: 200px;
}

.route-floating-card strong {
    display: block;
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #F5F1EA;
    margin-bottom: 8px;
}

.route-floating-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.route-floating-card li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
}

.route-floating-team {
    display: flex;
    align-items: center;
    gap: 10px;
    bottom: 24px;
    top: auto;
    right: 24px;
}

.route-floating-team strong {
    margin-bottom: 0;
}

/* ── Floating Badge (B+ Grade) ── */

.route-floating-badge {
    position: absolute;
    right: 24px;
    top: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 32, 58, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 111, 60, 0.3);
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.route-badge-label {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

.route-badge-grade {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 800;
    color: #FF6F3C;
    line-height: 1;
}

/* ── Floating Progress (Skills) ── */

.route-floating-progress {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 3;
    background: rgba(10, 32, 58, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    width: 190px;
}

.route-floating-progress strong {
    display: block;
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #F5F1EA;
    margin-bottom: 10px;
}

.route-progress-row {
    margin-bottom: 7px;
}

.route-progress-row:last-child {
    margin-bottom: 0;
}

.route-progress-label {
    display: block;
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px;
}

.route-progress-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.route-progress-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}

/* ── Stat Card ── */

.route-stat-card {
    background: rgba(10, 32, 58, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
}

.route-stat-number {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 800;
    color: #F5F1EA;
    line-height: 1;
}

.route-stat-label {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #F5F1EA;
    margin-top: 4px;
}

.route-stat-footer {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
}

.route-stat-sparkline {
    width: 100%;
    height: 36px;
    margin-top: 12px;
    opacity: 0.7;
}

.route-stat-sparkline svg {
    width: 100%;
    height: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 84px;
    gap: 1rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

.gallery-card.tall {
    grid-column: span 4;
    grid-row: span 4;
}

.gallery-card.wide {
    grid-column: span 8;
    grid-row: span 3;
}

.gallery-card.standard {
    grid-column: span 4;
    grid-row: span 3;
}

.gallery-card.note {
    grid-column: span 4;
    grid-row: span 3;
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 111, 60, 0.22), transparent 22%),
        linear-gradient(180deg, rgba(34, 74, 104, 0.92), rgba(18, 42, 62, 0.94));
}

.gallery-card.note strong,
.gallery-card.note span {
    position: relative;
    z-index: 1;
}

.gallery-card.note strong {
    font-size: 1.05rem;
}

.gallery-card.note span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(244, 244, 244, 0.78);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent, rgba(7, 17, 28, 0.75));
}

.gallery-card.note::after {
    display: none;
}

.gallery-caption {
    position: absolute;
    inset: auto 1rem 1rem;
    z-index: 1;
    font-size: 0.94rem;
    color: rgba(244, 244, 244, 0.9);
}

.corporate-grid,
.map-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1rem;
    align-items: stretch;
}

.corporate-copy,
.map-copy {
    padding: 1.35rem;
    border-radius: var(--radius-xl);
}

.corporate-copy .hero-actions,
.map-copy .hero-actions {
    justify-content: flex-start;
}

.corporate-use-cases,
.map-points {
    display: grid;
    gap: 0.9rem;
}

.corporate-card,
.map-point,
.map-frame-wrap {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 244, 244, 0.08);
    background: linear-gradient(180deg, rgba(27, 63, 92, 0.78), rgba(17, 43, 65, 0.92));
    box-shadow: var(--shadow-soft);
}

.corporate-card,
.map-point {
    padding: 1rem 1.05rem;
}

.corporate-card h3,
.map-point strong {
    margin: 0;
}

.corporate-card p {
    margin: 0.55rem 0 0;
    color: rgba(244, 244, 244, 0.82);
}

.corporate-kicker {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--orange-500);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.map-point span {
    display: block;
    margin-top: 0.3rem;
    color: rgba(244, 244, 244, 0.8);
}

.map-frame-wrap {
    overflow: hidden;
    min-height: 420px;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 244, 244, 0.11);
    background: rgba(255, 255, 255, 0.05);
}

.stack-actions {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.faq-shell {
    display: grid;
    gap: 0.9rem;
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(244, 244, 244, 0.08);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(27, 63, 92, 0.68), rgba(17, 43, 65, 0.92));
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    list-style: none;
    padding: 1.1rem 1.2rem;
    font-weight: 700;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--orange-500);
}

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

.faq-answer {
    padding: 0 1.2rem 1.1rem;
    color: rgba(244, 244, 244, 0.82);
}

.site-footer {
    padding: 3.2rem 0 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 0.9fr;
    gap: 1.2rem;
}

.footer-card {
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 244, 244, 0.08);
    background: linear-gradient(180deg, rgba(27, 63, 92, 0.68), rgba(17, 43, 65, 0.92));
}

.footer-card h3 {
    margin: 0 0 0.85rem;
    font-size: 1.02rem;
}

.footer-card p,
.footer-card a,
.footer-list {
    color: rgba(244, 244, 244, 0.8);
}

.footer-list {
    display: grid;
    gap: 0.55rem;
}

.footer-brand img {
    width: 170px;
    margin-bottom: 1rem;
}

.footer-note {
    margin-top: 1.5rem;
    text-align: center;
    color: rgba(244, 244, 244, 0.68);
    font-size: 0.92rem;
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(18, 54, 80, 0.98), rgba(255, 111, 60, 0.94));
    border: 1px solid rgba(244, 244, 244, 0.15);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
}

.floating-whatsapp span {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(6, 13, 21, 0.82);
}

.modal-panel {
    position: relative;
    width: min(960px, 100%);
    padding: 1rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(27, 63, 92, 0.94), rgba(17, 43, 65, 0.98));
    border: 1px solid rgba(244, 244, 244, 0.08);
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(244, 244, 244, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.modal-frame {
    margin-top: 2rem;
    aspect-ratio: 16 / 9;
    width: 100%;
    border: 0;
    border-radius: 18px;
}

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

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

.hero-program {
    padding: 4.25rem 0 3.6rem;
}

.hero-program-grid,
.split-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.35rem;
    align-items: center;
}

.program-copy p {
    max-width: 680px;
}

.program-visual {
    position: relative;
}

.image-frame {
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(244, 244, 244, 0.08);
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-photo {
    aspect-ratio: 4 / 4.2;
}

.classroom-photo {
    aspect-ratio: 4 / 3.2;
}

.floating-panel {
    position: absolute;
    right: -1.4rem;
    bottom: 1.2rem;
    width: min(310px, 72%);
    padding: 1.1rem;
    border-radius: var(--radius-lg);
}

.floating-panel h3 {
    margin: 0;
    font-size: 1.22rem;
}

.tick-list,
.price-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.tick-list li,
.price-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0.65rem;
    align-items: start;
}

.tick-list li::before,
.price-list li::before {
    content: "\2713";
    color: var(--orange-500);
    font-weight: 700;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.proof-pill {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(244, 244, 244, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.proof-pill strong {
    display: block;
    font-size: 1.02rem;
}

.proof-pill span {
    display: block;
    margin-top: 0.2rem;
    color: rgba(244, 244, 244, 0.75);
    font-size: 0.92rem;
}

.bullet-stack,
.feature-grid,
.steps-grid,
.delivery-grid,
.payment-grid {
    display: grid;
    gap: 1rem;
}

.bullet-stack {
    margin-top: 1.1rem;
}

.bullet-card,
.feature-card,
.step-card,
.delivery-card,
.payment-card,
.price-card {
    padding: 1.15rem;
    border-radius: var(--radius-lg);
}

.bullet-card strong,
.price-card strong,
.payment-card strong {
    color: #fff;
}

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

.feature-number,
.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--orange-500);
    background: rgba(255, 111, 60, 0.1);
}

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

.schedule-shell {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
}

.schedule-card {
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 244, 244, 0.08);
    background: linear-gradient(180deg, rgba(27, 63, 92, 0.76), rgba(17, 43, 65, 0.92));
    box-shadow: var(--shadow-soft);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.schedule-table th,
.schedule-table td {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(244, 244, 244, 0.08);
    text-align: left;
    vertical-align: top;
}

.schedule-table th {
    color: rgba(244, 244, 244, 0.72);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.price-card {
    position: relative;
}

.price-card.featured {
    border-color: rgba(255, 111, 60, 0.35);
    transform: translateY(-6px);
}

.price-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 111, 60, 0.12);
    color: var(--orange-500);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-tier {
    margin-top: 1rem;
    font-size: 0.92rem;
    color: rgba(244, 244, 244, 0.7);
}

.price-amount {
    margin-top: 0.55rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.price-meta {
    margin-top: 0.6rem;
    color: rgba(244, 244, 244, 0.76);
}

.payment-grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.payment-form {
    display: grid;
    gap: 0.95rem;
    margin-top: 1rem;
}

.field-group span,
.helper-copy,
.microcopy {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(244, 244, 244, 0.74);
    font-size: 0.92rem;
}

.payment-steps {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
}

.payment-steps li + li {
    margin-top: 0.65rem;
}

.reference-box,
.message-preview {
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(244, 244, 244, 0.08);
    background: rgba(9, 20, 30, 0.36);
}

.reference-box code {
    font-size: 0.98rem;
}

.message-preview {
    min-height: 152px;
    color: rgba(244, 244, 244, 0.82);
    white-space: pre-wrap;
}

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

.cta-panel {
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--radius-xl);
}

.cta-panel .hero-actions {
    margin-top: 1.4rem;
}

.link-inline {
    color: var(--orange-500);
    font-weight: 700;
}

.mobile-action-bar {
    display: none;
    position: fixed;
    inset: auto 0 0;
    z-index: 95;
    padding: 0.8rem 1rem max(0.8rem, env(safe-area-inset-bottom));
    background: rgba(8, 18, 28, 0.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(244, 244, 244, 0.08);
    gap: 0.8rem;
}

.mobile-action-bar .button {
    flex: 1;
    min-height: 48px;
    font-size: 0.94rem;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 111, 60, 0.44);
        transform: scale(0.94);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(255, 111, 60, 0);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 111, 60, 0);
        transform: scale(0.94);
    }
}

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

.nav-links-mobile {
    display: none;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown summary::after {
    content: "\25BE";
    font-size: 0.72rem;
    color: currentColor;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 50%;
    min-width: 310px;
    padding: 0.8rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 244, 244, 0.08);
    background: rgba(12, 29, 43, 0.98);
    box-shadow: var(--shadow);
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown[open] .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-link strong,
.nav-dropdown-link span {
    display: block;
}

.nav-dropdown-link strong {
    font-size: 0.96rem;
}

.nav-dropdown-link span {
    margin-top: 0.18rem;
    color: rgba(244, 244, 244, 0.72);
    font-size: 0.84rem;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.current {
    color: var(--orange-500);
    background: rgba(255, 111, 60, 0.08);
    transform: translateY(-2px);
}

.nav-dropdown.is-current > summary,
.nav-dropdown summary:hover {
    color: var(--orange-500);
}

.urgency-badge {
    gap: 0.7rem;
}

.urgency-dot {
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: var(--orange-500);
    animation: pulse-dot 1.8s infinite;
}

.hero-signal-grid,
.pain-grid,
.outcome-grid,
.curriculum-grid,
.testimonial-grid,
.program-pricing-grid,
.partner-grid,
.country-grid,
.blog-grid,
.related-grid,
.article-share,
.calendar-meta {
    display: grid;
    gap: 1rem;
}

.hero-signal-grid {
    margin-top: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-signal-card,
.journey-overview,
.week-panel,
.curriculum-card,
.experience-panel,
.seat-progress-card,
.testimonial-card,
.article-card,
.sidebar-card,
.post-card,
.featured-post-card,
.article-shell,
.contact-banner,
.calendar-copy,
.calendar-card,
.blog-cta-card {
    border: 1px solid rgba(244, 244, 244, 0.08);
    background: linear-gradient(180deg, rgba(27, 63, 92, 0.78), rgba(17, 43, 65, 0.92));
    box-shadow: var(--shadow-soft);
}

.hero-signal-card {
    padding: 1.15rem;
    border-radius: var(--radius-lg);
    text-align: left;
}

.signal-label,
.week-note,
.post-category,
.article-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(244, 244, 244, 0.74);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero-signal-card strong,
.calendar-highlight strong,
.pricing-inline strong,
.curriculum-card h3,
.week-panel h3,
.article-shell h2,
.post-card h3,
.featured-post-card h2,
.blog-cta-card h3 {
    display: block;
    margin-top: 0.9rem;
    font-size: 1.18rem;
    color: #fff;
}

.hero-signal-card p,
.curriculum-card p,
.testimonial-card p,
.post-card p,
.featured-post-card p,
.calendar-copy p,
.week-panel p,
.journey-overview p {
    margin: 0.65rem 0 0;
    color: rgba(244, 244, 244, 0.8);
}

.pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
}

.partner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.3rem;
}

.country-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1rem;
}

.partner-pill,
.country-pill {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(244, 244, 244, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(244, 244, 244, 0.86);
}

.partner-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 111, 60, 0.12);
    color: var(--orange-500);
    font-weight: 700;
}

.country-flag {
    font-size: 1.25rem;
    line-height: 1;
}

.country-pill span:last-child,
.partner-pill span:last-child {
    font-size: 0.94rem;
    line-height: 1.35;
}

.icon-badge,
.curriculum-number {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(255, 111, 60, 0.12);
    color: var(--orange-500);
    font-weight: 700;
    font-size: 1rem;
}

.journey-shell,
.experience-grid,
.calendar-shell,
.blog-layout,
.article-layout {
    display: grid;
    gap: 1rem;
}

.journey-shell {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
}

.journey-overview,
.calendar-copy {
    padding: 1.35rem;
    border-radius: var(--radius-xl);
}

.week-stack {
    display: grid;
    gap: 1rem;
}

.week-panel {
    padding: 1.2rem;
    border-radius: var(--radius-lg);
}

.week-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.week-top h3 {
    margin: 0.65rem 0 0;
    font-size: 1.35rem;
}

.week-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.32rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 111, 60, 0.14);
    color: var(--orange-500);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.session-list {
    display: grid;
    gap: 0.75rem;
}

.session-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(9, 20, 30, 0.32);
    border: 1px solid rgba(244, 244, 244, 0.06);
}

.session-marker {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 111, 60, 0.14);
    color: var(--orange-500);
    font-weight: 700;
}

.session-marker.is-workspace {
    background: rgba(42, 157, 143, 0.14);
    color: var(--teal-500);
}

.session-item strong,
.curriculum-card h3,
.testimonial-card h3,
.post-card h3 {
    margin: 0;
}

.session-item p {
    margin: 0.35rem 0 0;
    color: rgba(244, 244, 244, 0.78);
}

.session-tag {
    color: rgba(244, 244, 244, 0.62);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.curriculum-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.curriculum-card {
    padding: 1.2rem;
    border-radius: var(--radius-lg);
}

.curriculum-card ul {
    margin: 0.95rem 0 0;
    padding-left: 1rem;
    color: rgba(244, 244, 244, 0.8);
}

.curriculum-card li + li {
    margin-top: 0.55rem;
}

.curriculum-note {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(244, 244, 244, 0.08);
    color: rgba(244, 244, 244, 0.78);
}

.experience-panel {
    padding: 1.45rem;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(233, 196, 106, 0.18), transparent 26%),
        linear-gradient(135deg, rgba(42, 157, 143, 0.18), rgba(17, 43, 65, 0.94));
    border-color: rgba(42, 157, 143, 0.26);
}

.seat-progress-card {
    margin-top: 1rem;
    padding: 1.15rem;
    border-radius: var(--radius-lg);
}

.seat-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.seat-progress-top strong {
    font-size: 1.05rem;
}

.seat-progress-top span {
    color: var(--orange-500);
    font-weight: 700;
}

.progress-track {
    margin-top: 0.8rem;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--orange-500), var(--teal-500));
}

.seat-progress-card p {
    margin: 0.75rem 0 0;
    color: rgba(244, 244, 244, 0.78);
}

.smartstart-hero {
    isolation: isolate;
    min-height: calc(100svh - var(--header-height));
    padding-bottom: 6.6rem;
}

.smartstart-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

.page-smartstart .floating-whatsapp {
    display: none;
}

.smartstart-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
    gap: 1.6rem;
}

.smartstart-copy {
    position: relative;
    z-index: 8;
}

.smartstart-copy .hero-badge {
    margin-bottom: 1.35rem;
    padding: 0.52rem 1.05rem;
    border-color: rgba(255, 111, 60, 0.42);
    background: rgba(255, 111, 60, 0.09);
    box-shadow: 0 0 26px rgba(255, 111, 60, 0.16);
}

.smartstart-copy h1 {
    max-width: 580px;
    font-size: 4.6rem;
    line-height: 0.94;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 18px 42px rgba(2, 10, 17, 0.32);
}

.smartstart-copy h1 span {
    display: block;
}

.smartstart-copy h1 span:nth-child(n + 3) {
    color: var(--orange-500);
}

.smartstart-stroke {
    width: 76px;
    height: 4px;
    margin-top: 1rem;
    border-radius: 999px;
    background: #6ee7ef;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.62);
    transform: rotate(-2deg);
}

.smartstart-copy p {
    margin: 1.25rem 0 0;
    max-width: 520px;
    color: rgba(244, 244, 244, 0.82);
    font-size: 1.1rem;
    line-height: 1.55;
}

.smartstart-copy .hero-actions {
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1.75rem;
}

.smartstart-copy .button {
    min-height: 58px;
    padding: 1rem 1.55rem;
}

.smartstart-copy .button-primary {
    box-shadow: 0 16px 42px rgba(255, 111, 60, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.smartstart-copy .button-ghost {
    border-color: rgba(255, 111, 60, 0.78);
    background: rgba(7, 22, 35, 0.45);
}

.smartstart-copy .button-ghost span {
    color: var(--orange-500);
}

.smartstart-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.8rem;
    column-gap: 0.4rem;
}

.smartstart-stat {
    min-width: 0;
    padding: 0 1.25rem;
    border-right: 1px solid rgba(34, 211, 238, 0.22);
}

.smartstart-stat:first-child {
    padding-left: 0;
}

.smartstart-stat:last-child {
    border-right: 0;
    padding-right: 0;
}

.stat-icon {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-bottom: 0.38rem;
    color: var(--stat-accent, var(--orange-500));
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.smartstart-stat strong,
.smartstart-stat span {
    display: block;
}

.smartstart-stat strong {
    color: #fff;
    font-size: 1.46rem;
    font-weight: 700;
    line-height: 1.05;
    white-space: nowrap;
}

.smartstart-stat span:last-child {
    margin-top: 0.28rem;
    color: rgba(244, 244, 244, 0.74);
    font-size: 0.9rem;
    line-height: 1.2;
}

.smartstart-visual {
    min-height: 790px;
    overflow: visible;
}

.smartstart-orbit {
    position: absolute;
    inset: 9% 2% 18% 10%;
    z-index: 1;
    border: 1px solid rgba(42, 157, 143, 0.22);
    border-radius: 50%;
    box-shadow:
        0 0 46px rgba(42, 157, 143, 0.14),
        inset 0 0 70px rgba(42, 157, 143, 0.05);
}

.smartstart-orbit::before,
.smartstart-orbit::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid rgba(34, 211, 238, 0.12);
}

.smartstart-orbit::before {
    inset: 10% -10% 4% -6%;
    transform: rotate(-12deg);
}

.smartstart-orbit::after {
    inset: 26% -2% 18% 8%;
    border-color: rgba(255, 111, 60, 0.1);
    transform: rotate(14deg);
}

.smartstart-desk-glow {
    position: absolute;
    left: 5%;
    right: -3%;
    bottom: 0;
    z-index: 2;
    height: 38%;
    border-radius: 46% 54% 0 0;
    background:
        radial-gradient(circle at 70% 40%, rgba(255, 111, 60, 0.1), transparent 36%),
        linear-gradient(180deg, rgba(15, 36, 54, 0), rgba(15, 36, 54, 0.68) 68%, rgba(15, 36, 54, 0.9));
    pointer-events: none;
}

.smartstart-student {
    position: absolute;
    z-index: 3;
    right: -2%;
    bottom: 3rem;
    width: min(560px, 95%);
    max-width: none;
    filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 34px rgba(34, 211, 238, 0.18));
}

.tool-card,
.journey-card {
    position: absolute;
    border: 1px solid rgba(244, 244, 244, 0.1);
    background:
        linear-gradient(180deg, rgba(27, 63, 92, 0.72), rgba(17, 43, 65, 0.88));
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.tool-card {
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 0.62rem;
    width: 166px;
    min-height: 70px;
    padding: 0.68rem 0.74rem;
    border-radius: var(--radius-md);
}

.tool-card img,
.tool-mark {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
}

.tool-card img {
    object-fit: contain;
    padding: 0;
}

.tool-mark {
    border-radius: 12px;
    color: #65d4cb;
    border: 1px solid rgba(42, 157, 143, 0.26);
    background: rgba(42, 157, 143, 0.12);
}

.tool-mark svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tool-card strong,
.tool-card span {
    display: block;
}

.tool-card strong {
    color: #fff;
    font-size: 0.84rem;
    line-height: 1.18;
}

.tool-card span {
    margin-top: 0.22rem;
    color: rgba(244, 244, 244, 0.74);
    font-size: 0.74rem;
    line-height: 1.28;
}

.tool-card-google {
    top: 7%;
    left: 0;
}

.tool-card-canva {
    top: 27%;
    left: -17%;
}

.tool-card-canva img {
    transform: scale(1.08);
}

.tool-card-notebook {
    top: 48%;
    left: -18%;
    width: 184px;
}

.tool-card-notebook img {
    filter: invert(1) brightness(1.22);
    opacity: 0.9;
}

.tool-card-ai .tool-mark {
    color: #65d4cb;
}

.tool-card-ai {
    top: 11%;
    right: -12%;
    width: 184px;
}

.tool-card-gamma {
    top: 32%;
    right: -15%;
}

.tool-card-gamma img {
    width: 42px;
    height: 42px;
}

.tool-card-future {
    top: 53%;
    right: -13%;
    width: 184px;
}

.tool-card-future,
.tool-card-campus {
    display: none;
}

.tool-card-future .tool-mark {
    color: var(--gold-400);
    border-color: rgba(233, 196, 106, 0.28);
    background: rgba(233, 196, 106, 0.12);
}

.tool-card-campus .tool-mark {
    color: #64dbe3;
}

.tool-card-campus {
    left: -17%;
    bottom: 8.8rem;
    width: 178px;
}

.tool-card-campus::after {
    content: "";
    position: absolute;
    left: 4.1rem;
    bottom: 0.78rem;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: #64dbe3;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.36);
}

.journey-card {
    z-index: 3;
    right: -1%;
    bottom: -4.2rem;
    width: min(520px, 78%);
    padding: 0.82rem 0.98rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 111, 60, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(27, 63, 92, 0.92), rgba(17, 43, 65, 0.98));
}

.journey-card h2 {
    margin: 0 0 0.62rem;
    color: var(--orange-500);
    font-size: 0.9rem;
    font-family: "DM Sans", sans-serif;
    text-align: center;
    font-weight: 800;
}

.journey-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0.52rem;
    align-items: center;
}

.journey-step strong,
.journey-step span {
    display: block;
}

.journey-step strong {
    color: var(--journey-accent);
    font-size: 0.78rem;
}

.journey-step strong::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    margin: 0.26rem 0 0.34rem;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.72;
}

.journey-step span {
    color: rgba(244, 244, 244, 0.86);
    font-size: 0.72rem;
    line-height: 1.22;
}

.journey-arrow {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #64dbe3;
    background: rgba(34, 211, 238, 0.16);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.14);
    font-size: 1.08rem;
}

.journey-arrow.is-gold {
    color: var(--gold-400);
    background: rgba(233, 196, 106, 0.22);
}

.smartstart-friday-section {
    position: relative;
}

.smartstart-friday-section .container {
    max-width: 1400px;
}

.friday-mentorship-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1rem, 2vw, 1.55rem);
    border: 1px solid rgba(244, 244, 244, 0.08);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 16% 10%, rgba(255, 111, 60, 0.12), transparent 26%),
        radial-gradient(circle at 85% 4%, rgba(42, 157, 143, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(27, 63, 92, 0.72), rgba(17, 43, 65, 0.92));
    box-shadow: var(--shadow-soft);
}

.friday-mentorship-panel::before {
    content: "";
    position: absolute;
    inset: -16% -8% auto;
    height: 72%;
    pointer-events: none;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 520'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.42' stroke-width='2'%3E%3Cpath d='M-38 118c116-76 238-82 365-18s258 61 394-9 286-56 448 42'/%3E%3Cpath d='M-58 262c132-61 250-48 354 38s235 89 391 2 315-86 476 0'/%3E%3Cpath d='M34 420c136-82 263-80 381 5s245 92 382 18 278-71 423 11'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
}

.friday-mentorship-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(1.2rem, 3vw, 2rem);
    align-items: center;
}

.friday-pill {
    gap: 0.55rem;
    width: fit-content;
    margin-bottom: 1.1rem;
    color: var(--orange-400);
    border-color: rgba(255, 111, 60, 0.42);
    background: rgba(255, 111, 60, 0.08);
}

.friday-pill svg,
.friday-feature-icon svg,
.friday-banner-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.friday-mentorship-copy h2 {
    max-width: 560px;
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: 0;
    text-wrap: balance;
}

.friday-stroke {
    width: 90px;
    height: 4px;
    margin: 1rem 0 1.15rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
    box-shadow: 0 0 18px rgba(255, 111, 60, 0.34);
    transform: rotate(-2deg);
}

.friday-mentorship-copy > p {
    max-width: 620px;
    margin: 0;
    color: rgba(244, 244, 244, 0.82);
    font-size: 1.02rem;
    line-height: 1.62;
}

.friday-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.friday-feature-card {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(244, 244, 244, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(12, 31, 48, 0.72);
}

.friday-feature-card::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 111, 60, 0.76), transparent);
}

.friday-feature-icon {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 0.7rem;
    border-radius: 14px;
    color: var(--orange-400);
    background: rgba(255, 111, 60, 0.1);
}

.friday-feature-card strong {
    display: block;
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.2;
}

.friday-feature-card p {
    margin: 0.36rem 0 0;
    color: rgba(244, 244, 244, 0.73);
    font-size: 0.9rem;
    line-height: 1.42;
}

.friday-collage {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 72px;
    gap: 0.85rem;
    min-height: 592px;
}

.friday-photo,
.friday-quote-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(244, 244, 244, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(12, 31, 48, 0.74);
    box-shadow: 0 18px 42px rgba(4, 15, 24, 0.24);
}

.friday-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.friday-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(8, 20, 32, 0.5));
}

.friday-photo-conversation {
    grid-column: 1 / span 5;
    grid-row: 1 / span 3;
}

.friday-photo-group {
    grid-column: 6 / span 7;
    grid-row: 1 / span 3;
}

.friday-quote-card {
    grid-column: 1 / span 4;
    grid-row: 4 / span 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    background:
        radial-gradient(circle at top left, rgba(255, 111, 60, 0.18), transparent 38%),
        linear-gradient(180deg, rgba(27, 63, 92, 0.9), rgba(17, 43, 65, 0.98));
}

.friday-quote-card > span {
    position: absolute;
    top: 0.62rem;
    left: 0.9rem;
    color: rgba(255, 111, 60, 0.72);
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    line-height: 1;
}

.friday-quote-card p {
    position: relative;
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    line-height: 1.15;
}

.friday-quote-card strong {
    margin-top: 0.8rem;
    color: var(--orange-400);
    font-size: 0.86rem;
}

.friday-photo-speaker {
    grid-column: 5 / span 4;
    grid-row: 4 / span 3;
}

.friday-photo-mentor {
    grid-column: 9 / span 4;
    grid-row: 4 / span 6;
}

.friday-photo-wide {
    grid-column: 1 / span 8;
    grid-row: 7 / span 3;
}

.friday-banner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    padding: 1.05rem 1.15rem;
    border: 1px solid rgba(244, 244, 244, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(12, 31, 48, 0.78);
}

.friday-banner-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: var(--teal-500);
    background: rgba(42, 157, 143, 0.12);
}

.friday-banner strong {
    display: block;
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.3;
}

.friday-banner strong span,
.friday-signature {
    color: var(--orange-400);
}

.friday-banner p {
    margin: 0.25rem 0 0;
    color: rgba(244, 244, 244, 0.72);
}

.friday-signature {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.experience-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.experience-copy h2,
.blog-featured-copy h2,
.article-shell h1 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.06;
}

.experience-copy p {
    margin: 0.9rem 0 0;
    color: rgba(244, 244, 244, 0.82);
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.mini-gallery .image-frame {
    min-height: 180px;
}

.mini-gallery .image-frame:first-child {
    grid-row: span 2;
    min-height: 100%;
}

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

.testimonial-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.testimonial-card .video-thumb {
    aspect-ratio: 3 / 3.7;
}

.testimonial-badge {
    position: absolute;
    inset: 1rem auto auto 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    background: rgba(17, 43, 65, 0.86);
    border: 1px solid rgba(244, 244, 244, 0.12);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.program-pricing-grid {
    grid-template-columns: 1.05fr 0.95fr 0.9fr;
}

.pricing-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.pricing-inline span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(244, 244, 244, 0.08);
    color: rgba(244, 244, 244, 0.82);
}

.detail-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.detail-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(244, 244, 244, 0.08);
}

.detail-list span {
    color: rgba(244, 244, 244, 0.68);
}

.detail-list strong {
    text-align: right;
}

.calendar-shell {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.calendar-highlight {
    margin-top: 1.2rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 111, 60, 0.08);
    border: 1px solid rgba(255, 111, 60, 0.16);
}

.calendar-highlight strong {
    display: block;
    margin: 0;
    font-size: 1.08rem;
}

.calendar-highlight span {
    display: block;
    margin-top: 0.3rem;
    color: rgba(244, 244, 244, 0.72);
}

.calendar-meta {
    margin-top: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calendar-card {
    padding: 1.3rem;
    border-radius: var(--radius-xl);
}

.calendar-widget {
    display: grid;
    gap: 1rem;
}

.calendar-months {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.month-card {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(9, 20, 30, 0.36);
    border: 1px solid rgba(244, 244, 244, 0.08);
}

.month-head {
    margin-bottom: 0.8rem;
}

.month-weekdays,
.month-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.4rem;
}

.month-weekdays span {
    color: rgba(244, 244, 244, 0.62);
    font-size: 0.78rem;
    text-align: center;
    text-transform: uppercase;
}

.calendar-cell {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(244, 244, 244, 0.9);
    font-weight: 700;
    position: relative;
}

.calendar-cell.is-other-month {
    opacity: 0.34;
}

.calendar-cell.has-current {
    background: rgba(42, 157, 143, 0.16);
    color: #fff;
}

.calendar-cell.has-next {
    background: rgba(255, 111, 60, 0.18);
    color: #fff;
}

.calendar-cell.is-workspace::after {
    content: "";
    position: absolute;
    right: 0.35rem;
    bottom: 0.35rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--gold-400);
}

.calendar-session-list {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(9, 20, 30, 0.36);
    border: 1px solid rgba(244, 244, 244, 0.08);
}

.calendar-session-list strong {
    display: block;
    margin-bottom: 0.9rem;
}

.calendar-session-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(244, 244, 244, 0.08);
}

.calendar-session-row:last-child {
    border-bottom: 0;
}

.calendar-session-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.24rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 111, 60, 0.14);
    color: var(--orange-500);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.calendar-session-chip.is-workspace {
    background: rgba(42, 157, 143, 0.14);
    color: var(--teal-500);
}

.legend-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}

.legend-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(244, 244, 244, 0.74);
}

.legend-swatch {
    width: 16px;
    height: 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
}

.legend-swatch.current {
    background: rgba(42, 157, 143, 0.35);
}

.legend-swatch.next {
    background: rgba(255, 111, 60, 0.4);
}

.legend-swatch.workspace {
    background: rgba(233, 196, 106, 0.42);
}

.footer-grid {
    grid-template-columns: 1.1fr 0.85fr 0.95fr 1fr;
}

.footer-card .microcopy {
    margin: 0.9rem 0 0;
}

.footer-mini-nav a:hover,
.footer-list a:hover {
    color: var(--orange-500);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 244, 244, 0.11);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
    font-weight: 700;
}

.social-link:hover {
    color: var(--orange-500);
    border-color: rgba(255, 111, 60, 0.35);
}

.newsletter-form {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.newsletter-inline {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
}

.newsletter-form .button {
    min-width: 132px;
}

.newsletter-status {
    min-height: 1.1rem;
    color: rgba(244, 244, 244, 0.7);
    font-size: 0.88rem;
}

.hero-blog {
    padding: 3rem 0 2rem;
}

.blog-layout,
.article-layout {
    grid-template-columns: 1.1fr 0.42fr;
    align-items: start;
}

.featured-post-card,
.post-card,
.article-shell,
.sidebar-card,
.blog-cta-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.featured-post-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
}

.featured-post-card .image-frame {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.featured-post-card img,
.post-card img,
.article-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-copy,
.post-card-copy,
.article-body,
.sidebar-card,
.blog-cta-card {
    padding: 1.2rem;
}

.post-meta,
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.85rem;
    color: rgba(244, 244, 244, 0.68);
    font-size: 0.9rem;
}

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

.post-card {
    display: grid;
    grid-template-rows: 220px 1fr;
}

.post-card-copy .button,
.featured-post-card .button {
    margin-top: 1rem;
}

.sidebar-stack {
    display: grid;
    gap: 1rem;
}

.search-shell {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.search-shell input {
    flex: 1;
}

.tag-cloud,
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.category-list a,
.category-list button,
.tag-cloud a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(244, 244, 244, 0.08);
    color: rgba(244, 244, 244, 0.78);
    font-size: 0.84rem;
}

.category-list button {
    cursor: pointer;
}

.button:disabled,
.button[disabled] {
    opacity: 0.46;
    cursor: not-allowed;
    pointer-events: none;
}

.category-list a:hover,
.category-list button:hover,
.category-list button.is-active,
.tag-cloud a:hover {
    color: var(--orange-500);
    border-color: rgba(255, 111, 60, 0.28);
}

.pagination-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.article-shell {
    padding: 0;
}

.article-hero-media {
    aspect-ratio: 16 / 7.4;
    overflow: hidden;
}

.article-body {
    max-width: 760px;
}

.article-body p,
.article-body li,
.article-body blockquote {
    color: rgba(244, 244, 244, 0.84);
    line-height: 1.85;
}

.article-body h2,
.article-body h3 {
    font-family: "Playfair Display", serif;
    line-height: 1.18;
}

.article-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.15rem;
    border-left: 4px solid var(--gold-400);
    background: rgba(233, 196, 106, 0.08);
    border-radius: 0 18px 18px 0;
}

.article-share {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.4rem;
}

.article-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(244, 244, 244, 0.08);
    font-weight: 700;
}

.article-share a:hover {
    color: var(--orange-500);
}

.related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.2rem;
}

.related-card {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(244, 244, 244, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.related-card strong {
    display: block;
    margin-top: 0.7rem;
}

.related-card p {
    margin: 0.55rem 0 0;
    color: rgba(244, 244, 244, 0.78);
}

.contact-banner {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: var(--radius-xl);
}

.contact-banner strong,
.logo-stage-copy strong,
.flag-copy strong {
    display: block;
    margin-top: 0.9rem;
    font-size: 1.2rem;
    color: #fff;
}

.contact-banner p,
.logo-stage-copy p,
.flag-copy p,
.direct-contact-card p,
.contact-method-card p,
.process-node p,
.module-body p,
.logo-tile p {
    margin: 0.6rem 0 0;
    color: rgba(244, 244, 244, 0.8);
}

.contact-method-grid,
.module-grid,
.process-strip,
.logo-wall,
.form-grid,
.contact-direct-grid {
    display: grid;
    gap: 1rem;
}

.contact-method-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
}

.contact-method-card,
.direct-contact-card,
.process-node,
.logo-tile,
.module-item {
    border: 1px solid rgba(244, 244, 244, 0.08);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(27, 63, 92, 0.78), rgba(17, 43, 65, 0.92));
    box-shadow: var(--shadow-soft);
}

.contact-method-card,
.direct-contact-card,
.process-node {
    padding: 1.2rem;
}

.contact-method-card.is-primary,
.logo-tile-featured,
.flag-stage {
    background:
        radial-gradient(circle at top right, rgba(255, 111, 60, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(31, 76, 108, 0.84), rgba(17, 43, 65, 0.95));
}

.contact-method-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(255, 111, 60, 0.12);
    color: var(--orange-500);
    font-size: 1.35rem;
    font-weight: 700;
}

.contact-method-card h3,
.direct-contact-card h3,
.process-node h3 {
    margin: 0.85rem 0 0;
    font-size: 1.16rem;
}

.contact-method-card .button,
.direct-contact-card .button {
    margin-top: 1rem;
}

.logo-stage {
    display: grid;
    gap: 1rem;
    margin-top: 1.3rem;
}

.logo-stage-copy {
    max-width: 760px;
}

.logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logo-tile {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 220px;
    padding: 1.4rem;
    overflow: hidden;
}

.logo-tile-featured {
    grid-column: 1 / -1;
    min-height: 260px;
}

.logo-tile img {
    width: 100%;
    height: 160px;
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(4, 15, 24, 0.14));
    transform: scale(var(--logo-scale, 1));
    transform-origin: center;
}

.logo-tile-featured img {
    height: 190px;
    max-height: 190px;
}

.logo-tile-light {
    background: linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(224, 234, 241, 0.96));
    border-color: rgba(255, 255, 255, 0.46);
}

.logo-tile-light img {
    filter: drop-shadow(0 8px 18px rgba(4, 15, 24, 0.08));
}

.logo-tile-zoom img {
    --logo-scale: 1.18;
}

.logo-tile-zoom-lg img {
    --logo-scale: 1.36;
}

.logo-tile-zoom-xl img {
    --logo-scale: 1.58;
}

.logo-note {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 111, 60, 0.12);
    color: var(--orange-500);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.flag-stage {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(244, 244, 244, 0.08);
    box-shadow: var(--shadow-soft);
}

.flag-ribbon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.flag-badge {
    display: inline-grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 26px;
    border: 1px solid rgba(244, 244, 244, 0.12);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    font-size: 2.2rem;
}

.flag-badge:nth-child(odd) {
    transform: translateY(-4px);
}

.flag-badge:nth-child(3n) {
    transform: translateY(6px);
}

.form-stack {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

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

.form-span-2 {
    grid-column: 1 / -1;
}

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

.process-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-node .step-index {
    margin-bottom: 0.8rem;
}

.module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.2rem;
}

.module-item {
    overflow: hidden;
}

.module-item summary {
    position: relative;
    list-style: none;
    padding: 1.15rem 1.2rem;
    cursor: pointer;
}

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

.module-item summary::after {
    content: "+";
    position: absolute;
    right: 1.2rem;
    top: 1.15rem;
    color: var(--orange-500);
    font-size: 1.3rem;
    line-height: 1;
}

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

.module-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(244, 244, 244, 0.72);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.module-title {
    display: block;
    margin-top: 0.9rem;
    padding-right: 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.module-lead {
    display: block;
    margin-top: 0.3rem;
    color: rgba(244, 244, 244, 0.76);
}

.module-body {
    padding: 0 1.2rem 1.2rem;
}

.module-body strong {
    color: #fff;
}

.social-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.social-strip .social-link {
    min-width: 56px;
    height: 52px;
    font-size: 0.9rem;
}

.client-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1080px;
    margin: 1.3rem auto 0;
}

@media (max-width: 1240px) {
    .smartstart-copy h1 {
        max-width: 540px;
        font-size: 3.95rem;
    }

    .smartstart-copy p {
        max-width: 580px;
    }

    .smartstart-hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
    }

    .smartstart-visual {
        min-height: 760px;
    }

    .smartstart-student {
        right: -10%;
        bottom: 2.8rem;
        width: min(640px, 103%);
    }

    .tool-card {
        width: 156px;
        min-height: 68px;
        padding: 0.64rem 0.7rem;
    }

    .tool-card-notebook,
    .tool-card-ai,
    .tool-card-future {
        width: 174px;
    }

    .tool-card-campus {
        left: -8%;
    }

    .journey-card {
        bottom: -3.8rem;
        width: min(500px, 78%);
    }
}

@media (max-width: 1100px) {
    .payment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .payment-grid > :first-child {
        grid-column: 1 / -1;
    }

    .video-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-method-grid,
    .module-grid,
    .process-strip,
    .form-grid,
    .flag-stage {
        grid-template-columns: 1fr;
    }

    .logo-wall,
    .client-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .logo-tile-featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 56px;
    }

    .brand img {
        width: 95px;
    }

    .brand-meta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(244, 244, 244, 0.08);
        background: rgba(12, 29, 43, 0.96);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links-desktop {
        display: none;
    }

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

    .nav-dropdown {
        display: none;
    }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(244, 244, 244, 0.08);
    }

    .nav-links .button {
        margin-top: 0.6rem;
        width: 100%;
    }

    .stat-strip,
    .proof-grid,
    .feature-grid,
    .steps-grid,
    .pricing-grid,
    .delivery-grid,
    .footer-grid,
    .hero-signal-grid,
    .pain-grid,
    .curriculum-grid,
    .testimonial-grid,
    .testimonial-grid-four,
    .program-pricing-grid,
    .partner-grid,
    .country-grid,
    .calendar-meta,
    .blog-grid,
    .related-grid,
    .article-share {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-program-grid,
    .split-section,
    .corporate-grid,
    .map-shell,
    .intro-panel,
    .schedule-shell,
    .journey-shell,
    .friday-mentorship-grid,
    .experience-grid,
    .calendar-shell,
    .blog-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .floating-panel {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 160px;
    }

    .gallery-card.tall,
    .gallery-card.wide,
    .gallery-card.standard,
    .gallery-card.note {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Mosaic tablet: 6-column grid */
    .mosaic-section {
        padding: 80px 4vw 90px;
    }

    .mosaic-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 110px;
    }

    .mosaic-grid .mosaic-card {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    #community-speaker-audience { grid-column: 1 / span 3 !important; grid-row: 1 / span 2 !important; }
    #quote-card { grid-column: 4 / span 3 !important; grid-row: 1 / span 2 !important; }
    #community-networking { grid-column: 1 / span 3 !important; grid-row: 3 / span 2 !important; }
    #community-group-photo { grid-column: 4 / span 3 !important; grid-row: 3 / span 2 !important; }
    #learners-trained-card { grid-column: 1 / span 2 !important; grid-row: 5 / span 2 !important; }
    #community-two-men { grid-column: 3 / span 2 !important; grid-row: 5 / span 2 !important; }
    #community-audience { grid-column: 5 / span 2 !important; grid-row: 5 / span 2 !important; }
    #community-male-speaker { grid-column: 1 / span 3 !important; grid-row: 7 / span 2 !important; }
    #community-networking-trio { grid-column: 4 / span 3 !important; grid-row: 7 / span 2 !important; }
    #community-women-conversation { grid-column: 1 / span 3 !important; grid-row: 9 / span 2 !important; }
    #real-impact-card { grid-column: 4 / span 3 !important; grid-row: 9 / span 2 !important; }
    #community-wide-audience { grid-column: 1 / span 6 !important; grid-row: 11 / span 2 !important; }

    /* Routing hub tablet */
    .routing-section {
        padding: 70px 4vw 60px;
    }

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

    .routing-intro {
        grid-column: 1 / -1;
        padding: 0 0 10px;
    }

    .routing-headline {
        font-size: clamp(44px, 8vw, 72px);
    }

    .routing-chips {
        flex-direction: row;
    }

    .route-card-postgrad {
        grid-column: 1 / -1;
        min-height: 360px;
    }

    .route-stat-card {
        grid-column: 1 / -1;
        min-height: 170px;
    }

    .route-card-kcse {
        grid-column: span 1;
        min-height: 360px;
    }

    .route-card-form4 {
        grid-column: span 1;
        min-height: 360px;
    }

    .route-card-team {
        grid-column: 1 / -1;
        min-height: 240px;
    }

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

    .payment-grid > :first-child {
        grid-column: auto;
    }

    .featured-post-card,
    .calendar-months {
        grid-template-columns: 1fr;
    }

    .smartstart-hero {
        min-height: 0;
        padding: 3.8rem 0 3.2rem;
    }

    .smartstart-hero .container {
        width: min(var(--max-width), calc(100% - 2rem));
    }

    .smartstart-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .smartstart-copy h1 {
        max-width: 760px;
        font-size: 4.25rem;
    }

    .smartstart-copy p {
        max-width: 720px;
    }

    .smartstart-visual {
        min-height: 790px;
        width: min(820px, 100%);
        margin: 0 auto;
    }

    .smartstart-student {
        right: 4%;
        width: min(660px, 84%);
    }

    .tool-card-campus {
        left: 0;
    }

    .journey-card {
        right: 2%;
        bottom: -4.4rem;
        width: min(520px, 76%);
    }

    .friday-mentorship-copy h2 {
        max-width: 760px;
    }

    .friday-mentorship-copy > p {
        max-width: 760px;
    }

    .friday-collage {
        grid-auto-rows: 78px;
        min-height: 630px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(var(--max-width), calc(100% - 1.2rem));
    }

    .hero-home {
        padding-top: 2.8rem;
    }

    .hero-center {
        padding-top: 2rem;
    }

    .hero h1 {
        font-size: clamp(2.05rem, 12vw, 3.2rem);
    }

    .section {
        padding: 4.25rem 0;
    }

    .section-compact {
        padding-top: 1.75rem;
    }

    .stat-strip,
    .proof-grid,
    .feature-grid,
    .steps-grid,
    .pricing-grid,
    .delivery-grid,
    .footer-grid,
    .path-grid,
    .hero-signal-grid,
    .pain-grid,
    .curriculum-grid,
    .testimonial-grid,
    .testimonial-grid-four,
    .program-pricing-grid,
    .partner-grid,
    .country-grid,
    .contact-method-grid,
    .module-grid,
    .logo-wall,
    .process-strip,
    .client-wall,
    .calendar-meta,
    .blog-grid,
    .related-grid,
    .article-share {
        grid-template-columns: 1fr;
    }

    .video-rail {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 82%;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scroll-snap-type: x proximity;
    }

    .video-card {
        scroll-snap-align: start;
    }

    .video-thumb {
        aspect-ratio: 3 / 4.2;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 140px;
    }

    /* Mosaic mobile: single column */
    .mosaic-section {
        padding: 72px 20px;
    }

    .mosaic-headline {
        font-size: clamp(34px, 11vw, 50px);
    }

    .mosaic-paragraph {
        font-size: 16px;
    }

    .mosaic-intro {
        margin-bottom: 36px;
    }

    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 14px;
    }

    .mosaic-grid .mosaic-card {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }

    .mosaic-img {
        height: 240px;
    }

    #community-wide-audience {
        height: 280px;
    }

    .mosaic-content {
        padding: 24px;
        min-height: auto;
    }

    .mosaic-quote-card {
        padding: 28px 24px;
    }

    .mosaic-quote-text {
        font-size: 18px;
    }

    /* Routing hub mobile */
    .routing-section {
        padding: 60px 16px;
    }

    .routing-headline {
        font-size: clamp(36px, 11vw, 52px);
    }

    .routing-paragraph {
        font-size: 16px;
    }

    .routing-chips {
        flex-direction: column;
        gap: 10px;
    }

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

    .routing-intro,
    .route-card-postgrad,
    .route-card-kcse,
    .route-card-form4,
    .route-stat-card,
    .route-card-team {
        grid-column: 1 / -1;
    }

    .route-card-postgrad,
    .route-card-kcse,
    .route-card-form4 {
        min-height: 380px;
    }

    .route-stat-card {
        min-height: 150px;
    }

    .route-card-team {
        min-height: 280px;
    }

    .route-floating-progress {
        width: 170px;
    }

    .footer-card {
        padding: 1rem;
    }

    .week-top,
    .session-item,
    .detail-list li,
    .newsletter-inline,
    .search-shell,
    .calendar-session-row {
        grid-template-columns: 1fr;
        display: grid;
    }

    .form-grid,
    .flag-stage {
        grid-template-columns: 1fr;
        display: grid;
    }

    .detail-list li {
        gap: 0.25rem;
    }

    .detail-list strong {
        text-align: left;
    }

    .session-item {
        grid-template-columns: 44px 1fr;
    }

    .session-tag {
        grid-column: 2;
    }

    .featured-post-card {
        grid-template-columns: 1fr;
    }

    .logo-tile-featured {
        grid-column: auto;
    }

    .flag-ribbon {
        justify-content: flex-start;
    }

    .floating-whatsapp {
        bottom: 5.2rem;
    }

    .mobile-action-bar {
        display: flex;
    }

    .page-program .site-footer {
        padding-bottom: 8rem;
    }

    .smartstart-hero {
        padding: 3rem 0 2.4rem;
    }

    .smartstart-hero .container {
        width: min(var(--max-width), calc(100% - 1.2rem));
    }

    .smartstart-copy .hero-badge {
        max-width: 100%;
        font-size: 0.72rem;
        line-height: 1.25;
        text-align: left;
    }

    .smartstart-copy h1 {
        max-width: 100%;
        font-size: 3.05rem;
        line-height: 0.98;
    }

    .smartstart-copy p {
        font-size: 1.02rem;
    }

    .smartstart-copy .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .smartstart-copy .button {
        width: 100%;
    }

    .smartstart-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0;
        padding: 1rem;
        border: 1px solid rgba(244, 244, 244, 0.08);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.04);
    }

    .smartstart-stat {
        padding: 0 1rem;
    }

    .smartstart-stat:nth-child(2n) {
        border-right: 0;
    }

    .smartstart-stat:nth-child(odd) {
        padding-left: 0;
    }

    .smartstart-stat:nth-child(even) {
        padding-right: 0;
    }

    .smartstart-stat strong {
        font-size: 1.42rem;
    }

    .smartstart-visual {
        min-height: auto;
        margin-top: 0.6rem;
        overflow: visible;
    }

    .smartstart-orbit {
        inset: 8% -16% 27% -6%;
    }

    .smartstart-student {
        right: -14%;
        top: 8rem;
        bottom: auto;
        width: 118%;
    }

    .tool-card {
        width: min(184px, 48%);
        min-height: 74px;
        gap: 0.62rem;
        padding: 0.68rem;
        border-radius: 16px;
    }

    .tool-card img,
    .tool-mark {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .tool-mark svg {
        width: 20px;
        height: 20px;
    }

    .tool-card strong {
        font-size: 0.84rem;
    }

    .tool-card span {
        font-size: 0.76rem;
        line-height: 1.25;
    }

    .tool-card-google {
        top: 1rem;
        left: 0;
    }

    .tool-card-ai {
        top: 4.6rem;
        right: 0;
    }

    .tool-card-canva {
        top: 10.5rem;
        left: 0.45rem;
    }

    .tool-card-notebook {
        top: auto;
        bottom: 11.8rem;
        left: 0;
    }

    .tool-card-future {
        top: auto;
        right: 0;
        bottom: 14.2rem;
    }

    .tool-card-gamma,
    .tool-card-campus {
        display: none;
    }

    .journey-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 34rem;
        padding: 1rem;
    }

    .journey-card h2 {
        text-align: left;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .journey-arrow {
        display: none;
    }

    .friday-mentorship-panel {
        padding: 0.85rem;
        border-radius: var(--radius-lg);
    }

    .friday-pill {
        max-width: 100%;
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .friday-mentorship-copy h2 {
        font-size: clamp(2.35rem, 11vw, 3.25rem);
    }

    .friday-mentorship-copy > p {
        font-size: 1rem;
    }

    .friday-feature-grid {
        grid-template-columns: 1fr;
    }

    .friday-collage {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 0.75rem;
        min-height: 0;
    }

    .friday-photo,
    .friday-quote-card,
    .friday-photo-conversation,
    .friday-photo-group,
    .friday-photo-speaker,
    .friday-photo-mentor,
    .friday-photo-wide {
        grid-column: 1;
        grid-row: auto;
    }

    .friday-photo {
        aspect-ratio: 4 / 3;
    }

    .friday-photo-group,
    .friday-photo-speaker,
    .friday-photo-wide {
        aspect-ratio: 16 / 10;
    }

    .friday-photo-mentor {
        aspect-ratio: 4 / 5;
    }

    .friday-quote-card {
        min-height: 190px;
    }

    .friday-banner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .friday-signature {
        justify-self: start;
    }
}

@media (max-width: 460px) {
    .smartstart-copy h1 {
        font-size: 2.55rem;
    }

    .smartstart-stats {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .smartstart-stat,
    .smartstart-stat:nth-child(2n),
    .smartstart-stat:nth-child(odd),
    .smartstart-stat:nth-child(even) {
        display: grid;
        grid-template-columns: 34px 1fr;
        column-gap: 0.7rem;
        padding: 0;
        border-right: 0;
    }

    .smartstart-stat span:last-child {
        grid-column: 2;
    }

    .stat-icon {
        grid-row: span 2;
        margin-bottom: 0;
    }

    .smartstart-visual {
        min-height: auto;
    }

    .smartstart-student {
        right: -24%;
        top: 8.8rem;
        bottom: auto;
        width: 132%;
    }

    .journey-card {
        margin-top: 46.5rem;
    }

    .tool-card {
        width: min(168px, 49%);
    }

    .tool-card-notebook,
    .tool-card-future {
        display: none;
    }

    .friday-quote-card p {
        font-size: 1.22rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

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