:root {
    --ink: #14121f;
    --muted: #565067;
    --line: #e7e3f0;
    --surface: #ffffff;
    --soft: #f6f4fb;
    --soft-purple: #efeafc;
    --purple: #6d28d9;
    --purple-dark: #4c1d95;
    --purple-soft: #8b5cf6;
    --gold: #d9a441;
    --ink-deep: #161127;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 22px 60px rgba(28, 18, 60, 0.16);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
    font-size: 17.5px;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

.container {
    width: calc(100% - 40px);
    max-width: var(--container);
    margin: 0 auto;
}

.icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    stroke-width: 2;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(20, 18, 31, 0.92);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(20, 18, 31, 0.97);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 50px rgba(18, 15, 36, 0.22);
}

.motion-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-soft), var(--gold));
    box-shadow: 0 0 22px rgba(217, 164, 65, 0.35);
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: 0 50%;
}

.nav {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--ink-deep);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 22px rgba(109, 40, 217, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    min-width: 0;
}

.brand-text strong {
    display: block;
    font-size: 15.5px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.brand-sub {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12.5px;
    line-height: 1.3;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.nav-links a {
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14.5px;
    font-weight: 600;
    padding: 10px 12px;
    transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: inline-flex;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.lang-switch button {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 7px 13px;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.lang-switch button.is-active {
    background: linear-gradient(135deg, var(--purple-soft), var(--purple));
    color: #ffffff;
}

.lang-switch button:focus {
    outline: none;
}

.lang-switch button:focus-visible {
    outline: 2px solid rgba(196, 181, 253, 0.65);
    outline-offset: 2px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple-soft), var(--purple));
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    padding: 12px 20px;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(109, 40, 217, 0.4);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(109, 40, 217, 0.5);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    cursor: pointer;
}

.nav-toggle:focus {
    outline: none;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--purple-soft);
    outline-offset: 2px;
}

.nav-toggle .icon {
    width: 22px;
    height: 22px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 6px 20px 18px;
    background: rgba(20, 18, 31, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    font-weight: 600;
    padding: 11px 8px;
    border-radius: 8px;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.mobile-cta {
    flex: 1;
    text-align: center;
    background: linear-gradient(135deg, var(--purple-soft), var(--purple));
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700;
    padding: 14px 16px !important;
    border-radius: 10px;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    max-width: 100%;
    min-height: 50px;
    border: 1px solid transparent;
    border-radius: 11px;
    cursor: pointer;
    font-size: 15.5px;
    font-weight: 700;
    padding: 13px 22px;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--purple-soft), var(--purple));
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(109, 40, 217, 0.34);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 18px 38px rgba(109, 40, 217, 0.46);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
}

.button-ghost:hover,
.button-ghost:focus-visible {
    background: rgba(255, 255, 255, 0.18);
}

.button-light {
    background: #ffffff;
    border-color: var(--line);
    color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
    border-color: var(--purple);
    color: var(--purple-dark);
    box-shadow: 0 12px 26px rgba(28, 18, 60, 0.12);
}

.button-outline {
    background: #ffffff;
    border: 1.5px solid var(--soft-purple);
    color: var(--purple-dark);
}

.button-outline:hover,
.button-outline:focus-visible {
    background: var(--purple);
    border-color: var(--purple);
    color: #ffffff;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 18% 18%, #32206a, transparent 55%),
        radial-gradient(circle at 86% 8%, #3f1f72, transparent 48%),
        linear-gradient(160deg, #1c1636, #120f24 72%);
    color: #ffffff;
    padding: 104px 0 110px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(circle at 50% 32%, rgba(0, 0, 0, 0.75), transparent 76%);
    opacity: 0.55;
}

/* Brand signature: orbit motif */
.hero::after {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    border: 1px solid rgba(196, 181, 253, 0.18);
    box-shadow: 0 0 0 60px rgba(139, 92, 246, 0.05), inset 0 0 120px rgba(139, 92, 246, 0.12);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 0.92fr);
    align-items: center;
    gap: 42px 54px;
    min-width: 0;
    max-width: var(--container);
}

.hero-heading,
.hero-copy {
    min-width: 0;
}

.hero-heading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.hero-copy {
    grid-column: 1;
}

.hero-media {
    position: relative;
    display: block;
    grid-column: 2;
    cursor: zoom-in;
    transition: transform 180ms ease;
}

.hero-media-frame {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.hero-media:hover,
.hero-media:focus-visible {
    transform: translateY(-2px);
}

.hero-media:hover .hero-media-frame,
.hero-media:focus-visible .hero-media-frame {
    border-color: rgba(240, 214, 138, 0.48);
    box-shadow: 0 32px 82px rgba(0, 0, 0, 0.42);
}

.hero-media:focus-visible {
    outline: 3px solid rgba(240, 214, 138, 0.55);
    outline-offset: 4px;
}

.hero-media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(18, 15, 36, 0.62));
    pointer-events: none;
}

.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
}

.motion-enhanced .hero-media img {
    transform: none;
}

.hero-media-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
    padding: 0 2px;
}

.hero-media-tags span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--purple-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 8px 14px;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
    margin-bottom: 22px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #e7defb;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(36px, 5.4vw, 62px);
    line-height: 1.07;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-heading h1 {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

h1 span {
    background: linear-gradient(120deg, #c4b5fd, #f0d68a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.7;
}

.hero-lead strong {
    color: #ffffff;
    font-weight: 700;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-microcopy {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 600px;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14.5px;
    line-height: 1.6;
}

.hero-microcopy .icon {
    margin-top: 3px;
    color: #c4b5fd;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 600px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-stats li {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 20px 18px;
}

.hero-stats strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(120deg, #c4b5fd, #f0d68a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.45;
}

/* Sections */
section {
    padding: 92px 0;
}

.section-soft {
    background: var(--soft);
}

.section-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 30px auto 0;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(28, 18, 60, 0.08);
}

.section-cta p {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
}

.section-cta .button {
    flex: 0 0 auto;
}

.section-cta-compact {
    max-width: 980px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 44px;
}

.section-head-center {
    justify-content: center;
    text-align: center;
}

.section-kicker {
    margin-bottom: 10px;
    color: var(--purple);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: 0;
}

.section-copy {
    max-width: 460px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.7;
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 28px;
    box-shadow: 0 1px 0 rgba(28, 18, 60, 0.03);
}

/* Problem section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.problem-card {
    text-align: left;
}

.problem-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 13px;
    background: #fdecec;
    color: #c0392b;
}

.problem-icon .icon {
    width: 23px;
    height: 23px;
}

.problem-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.problem-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Outcome section */
.outcome-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 18px;
    align-items: stretch;
}

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

.outcome-card,
.fit-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 26px;
    box-shadow: 0 1px 0 rgba(28, 18, 60, 0.03);
}

.outcome-card .icon {
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    color: var(--purple);
}

.outcome-card h3,
.fit-panel h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.outcome-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.fit-panel {
    background: linear-gradient(165deg, #251c4a, #150f2c);
    color: #ffffff;
}

.fit-panel h3 {
    margin-bottom: 18px;
}

.fit-panel .check-list {
    gap: 13px;
}

.fit-panel .check-list li {
    color: rgba(255, 255, 255, 0.88);
}

.fit-panel .check-list li::before {
    background: linear-gradient(135deg, #c4b5fd, var(--gold));
}

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

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(140deg, var(--soft-purple), #fdf3dd);
    color: var(--purple-dark);
}

.benefit-icon .icon {
    width: 24px;
    height: 24px;
}

.benefit-card h3 {
    margin: 0 0 7px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* How it works steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    counter-reset: step;
}

.step-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 30px 26px 26px;
    box-shadow: 0 1px 0 rgba(28, 18, 60, 0.03);
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--purple-soft), var(--gold));
}

.step-num {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--purple-soft), var(--purple));
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.step-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Safety section */
.safety-section {
    background: linear-gradient(165deg, #221844, #111022);
    color: #ffffff;
}

.safety-section .section-kicker {
    color: #c4b5fd;
}

.safety-section h2 {
    color: #ffffff;
}

.safety-section .section-copy {
    color: rgba(255, 255, 255, 0.78);
}

.safety-section .safety-item {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
}

.safety-section .safety-item .icon {
    color: #c4b5fd;
}

/* Divisions */
.division-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.division-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 28px 22px;
    box-shadow: 0 1px 0 rgba(28, 18, 60, 0.03);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.division-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--purple-soft);
}

.division-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 15px;
    background: linear-gradient(140deg, var(--soft-purple), #fdf3dd);
    color: var(--purple-dark);
}

.division-icon .icon {
    width: 26px;
    height: 26px;
}

.division-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.division-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.division-count {
    display: inline-flex;
    border-radius: 999px;
    background: var(--soft-purple);
    color: var(--purple-dark);
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 13px;
}

/* Program filter */
.program-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--muted);
    font-size: 14.5px;
    font-weight: 700;
    padding: 11px 20px;
    cursor: pointer;
    transition: all 160ms ease;
}

.filter-chip:hover {
    border-color: var(--purple-soft);
    color: var(--purple-dark);
}

.filter-chip.is-active {
    background: linear-gradient(135deg, var(--purple-soft), var(--purple));
    border-color: transparent;
    color: #ffffff;
}

/* Program cards */
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.program-card {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 26px 26px 28px;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.program-card.is-hidden {
    display: none;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--purple-soft);
}

.program-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.program-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: linear-gradient(140deg, var(--soft-purple), #fdf3dd);
    color: var(--purple-dark);
}

.program-icon .icon {
    width: 26px;
    height: 26px;
}

.program-media {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    background: var(--soft);
}

.program-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.program-card:hover .program-media img {
    transform: scale(1.04);
}

.program-card h3 {
    margin: 4px 0 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.program-tagline {
    margin: 0;
    color: var(--purple);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.program-card > p:not(.program-tagline):not(.program-price) {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
}

.chip-row li {
    display: inline-flex;
    border-radius: 999px;
    background: var(--soft);
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 12px;
}

.program-price {
    margin: 6px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 19px;
    font-weight: 800;
}

.program-price span {
    display: inline;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.program-card .button {
    margin-top: auto;
    width: 100%;
    min-height: 52px;
}

.program-more {
    display: none;
    justify-content: center;
    margin-top: 28px;
}

.program-more .button {
    min-width: 280px;
}

/* Tags */
.tag {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 6px 13px;
    text-transform: uppercase;
}

.tag-sports {
    background: #e6f1ff;
    color: #1d4ed8;
}

.tag-tech {
    background: #e6fbf4;
    color: #0f766e;
}

.tag-tactical {
    background: #fdece8;
    color: #b91c1c;
}

.tag-business {
    background: #fff3da;
    color: #b45309;
}

.tag-creative {
    background: var(--soft-purple);
    color: var(--purple-dark);
}

/* Asset gallery */
.asset-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.asset-card {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--soft);
    box-shadow: 0 1px 0 rgba(28, 18, 60, 0.03);
}

.asset-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.asset-card.asset-extra {
    display: none;
}

.asset-gallery.show-all .asset-card.asset-extra {
    display: block;
}

.asset-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.asset-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent, rgba(20, 18, 31, 0.72));
    pointer-events: none;
}

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

.asset-card figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    width: fit-content;
    max-width: calc(100% - 24px);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink-deep);
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
    padding: 7px 11px;
}

.asset-more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.asset-more .button {
    min-width: 280px;
}

/* Packages */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 32px 28px;
}

.package-featured {
    border: 1.5px solid var(--purple);
    box-shadow: 0 22px 50px rgba(109, 40, 217, 0.18);
}

.package-elite {
    border: 1.5px solid var(--gold);
    background: linear-gradient(180deg, #fffdf8, #ffffff 36%);
    box-shadow: 0 22px 50px rgba(217, 164, 65, 0.16);
}

.package-flag {
    position: absolute;
    top: -13px;
    left: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple-soft), var(--purple));
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 6px 14px;
    text-transform: uppercase;
}

.package-flag-elite {
    background: linear-gradient(135deg, var(--gold), #b8860b);
}

.package-tier {
    font-size: 24px;
    font-weight: 800;
    color: var(--purple-dark);
}

.package-elite .package-tier {
    color: #97700f;
}

.package-for {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.package-price {
    margin: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.package-price span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.package-card .check-list {
    grid-template-columns: 1fr;
    gap: 11px;
}

.package-card .button {
    margin-top: 8px;
    width: 100%;
    min-height: 52px;
}

.check-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.check-list li::before {
    content: "";
    margin-top: 7px;
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple-soft), var(--purple));
}

.package-elite .check-list li::before {
    background: linear-gradient(135deg, var(--gold), #b8860b);
}

.package-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 11px;
    margin: 28px auto 0;
    max-width: 820px;
    padding: 18px 24px;
    border: 1px dashed var(--purple-soft);
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.package-note .icon {
    margin-top: 3px;
    color: var(--purple);
}

/* Safety section */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.safety-item {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 1px 0 rgba(28, 18, 60, 0.03);
}

.safety-item .icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    color: var(--purple);
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(28, 18, 60, 0.03);
}

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

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

.faq-icon {
    flex: 0 0 auto;
    color: var(--purple);
    transition: transform 200ms ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.65;
}

/* Contact */
.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0;
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-intro {
    background: linear-gradient(165deg, #251c4a, #150f2c);
    color: #ffffff;
    padding: 50px 46px;
}

.contact-intro .section-kicker {
    color: #c4b5fd;
}

.contact-intro h2 {
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-intro > p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.7;
}

.next-steps {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
}

.next-num {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(196, 181, 253, 0.18);
    color: #c4b5fd;
    font-size: 14px;
    font-weight: 800;
}

.contact-list {
    display: grid;
    gap: 18px;
    margin: 28px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    list-style: none;
}

.contact-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
}

.contact-list li > span {
    min-width: 0;
}

.contact-list .icon {
    margin-top: 3px;
    color: #c4b5fd;
}

.contact-list strong {
    display: block;
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
}

.contact-email {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 46px;
}

.contact-card h3 {
    margin: 0 0 6px;
    font-size: 21px;
    font-weight: 700;
}

.contact-card > p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.contact-cta {
    width: 100%;
    min-height: 56px;
    margin-bottom: 28px;
}

.social-label {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

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

.social-link {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 13px 14px;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
    border-color: var(--purple-soft);
    box-shadow: 0 12px 26px rgba(28, 18, 60, 0.1);
}

.social-link .icon {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 10px;
    background: var(--soft-purple);
    color: var(--purple-dark);
}

.social-link span {
    min-width: 0;
    font-size: 13.5px;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-link strong {
    display: block;
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 700;
}

.social-link .contact-email {
    display: block;
    font-size: 12.5px;
}

/* Footer */
.site-footer {
    background: var(--ink-deep);
    color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 48px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 420px;
}

.footer-brand-text {
    min-width: 0;
}

.footer-brand strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.footer-brand p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13.5px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    font-weight: 600;
    transition: color 160ms ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: background 160ms ease, transform 160ms ease;
}

.footer-social a:hover {
    background: var(--purple);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13.5px;
    text-align: center;
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
    transition: transform 200ms ease, opacity 200ms ease, visibility 200ms ease;
}

.wa-float .icon {
    width: 26px;
    height: 26px;
}

.wa-float-label {
    display: none;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.wa-float:hover {
    transform: scale(1.06);
}

.wa-float.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

/* Responsive */
@media (max-width: 1024px) {
    .problem-grid,
    .outcome-grid,
    .benefit-grid,
    .steps-grid,
    .safety-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .outcome-layout {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

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

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

    .hero {
        padding: 82px 0 86px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-heading,
    .hero-copy,
    .hero-media {
        grid-column: 1;
    }

    .hero-media {
        grid-row: auto;
        max-width: 720px;
    }

    .hero-media img {
        min-height: 0;
        aspect-ratio: 3 / 2;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .section-head-center {
        align-items: center;
        text-align: center;
    }

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

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

@media (max-width: 680px) {
    section {
        padding: 60px 0;
    }

    body {
        font-size: 16.5px;
    }

    .nav {
        min-height: 72px;
        gap: 12px;
    }

    .mobile-menu {
        gap: 0;
        padding: 4px 20px 14px;
    }

    .mobile-menu a {
        font-size: 15.5px;
        padding: 8px;
    }

    .mobile-foot {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .mobile-cta {
        min-height: 52px;
        padding: 12px 14px !important;
    }

    .brand {
        gap: 10px;
    }

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

    .brand-text strong {
        font-size: 14px;
    }

    .brand-sub {
        display: none;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .problem-grid,
    .outcome-grid,
    .benefit-grid,
    .steps-grid,
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .section-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 20px;
    }

    .section-cta .button {
        width: 100%;
    }

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

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

    .program-card {
        gap: 10px;
        padding: 20px;
    }

    .program-top {
        gap: 10px;
    }

    .program-icon {
        width: 48px;
        height: 48px;
        border-radius: 13px;
    }

    .program-media {
        aspect-ratio: 16 / 9;
    }

    .program-card h3 {
        font-size: 20px;
    }

    .program-tagline,
    .chip-row {
        display: none;
    }

    .program-card > p:not(.program-tagline):not(.program-price) {
        font-size: 15px;
    }

    .program-price {
        margin-top: 2px;
        padding-top: 12px;
        font-size: 18px;
    }

    .program-card .button {
        min-height: 48px;
    }

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

    /* Show only featured programs on mobile until expanded */
    .program-card.program-extra {
        display: none;
    }

    .program-grid.show-all .program-card.program-extra {
        display: flex;
    }

    .program-grid.show-all .program-card.is-hidden {
        display: none;
    }

    .program-more {
        display: flex;
    }

    .program-more .button {
        width: 100%;
        min-width: 0;
    }

    .asset-card-featured {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .contact-intro,
    .contact-card {
        padding: 34px 24px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .wa-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
        border-radius: 50%;
        padding: 0;
    }

    .wa-float .icon {
        width: 24px;
        height: 24px;
    }

    .wa-float-label {
        display: none;
    }

    .hero-microcopy {
        display: none;
    }

    .hero-media {
        display: none;
    }
}

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

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

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

@media (max-width: 360px) {
    .asset-gallery {
        grid-template-columns: 1fr;
    }
}

.motion-enhanced [data-motion-reveal="true"] {
    will-change: transform, opacity, filter;
}

.motion-enhanced .button,
.motion-enhanced .nav-cta,
.motion-enhanced .mobile-cta,
.motion-enhanced .social-link,
.motion-enhanced .footer-social a,
.motion-enhanced .wa-float,
.motion-enhanced .nav-toggle,
.motion-enhanced .lang-switch button {
    will-change: transform;
}

.motion-enhanced .section-head,
.motion-enhanced .hero-heading,
.motion-enhanced .hero-copy,
.motion-enhanced .hero-media {
    backface-visibility: hidden;
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .motion-progress {
        display: none;
    }

    .motion-enhanced .hero-media img {
        transform: none;
    }
}
