:root {
    --bg: #f5f7fc;
    --surface: #ffffff;
    --surface-soft: #eef3ff;
    --primary: #144ABB;
    --primary-strong: #2F318B;
    --primary-soft: #e8f0ff;
    --text: #121938;
    --muted: #68708f;
    --border: rgba(25, 35, 74, 0.1);
    --shadow: 0 22px 44px rgba(25, 35, 74, 0.08);
    --shadow-soft: 0 12px 28px rgba(35, 49, 95, 0.08);
    --radius-xl: 32px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(100, 132, 255, 0.12), transparent 30%),
        linear-gradient(180deg, #fbfcff 0%, var(--bg) 22%, #ffffff 100%);
}

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

.site-shell {
    min-height: 100vh;
}

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

.container--narrow {
    width: min(calc(100% - 40px), 840px);
}

.section {
    padding: 56px 0;
}

.section--soft {
    background: linear-gradient(180deg, rgba(241, 244, 252, 0.88), rgba(255, 255, 255, 0.96));
}

.section--news {
    padding-bottom: 64px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0 0;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #144ABB, #2F318B);
    border-radius: 24px;
    color: #f7f8ff;
    box-shadow: 0 16px 32px rgba(20, 74, 187, 0.24);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: fit-content;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.brand__copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand__copy strong {
    font-size: 0.95rem;
    line-height: 1.1;
}

.brand__copy small {
    color: rgba(247, 248, 255, 0.78);
    font-size: 0.72rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex: 1;
    flex-wrap: wrap;
}

.primary-nav a {
    font-size: 0.92rem;
    color: rgba(248, 249, 255, 0.88);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    color: #ffffff;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #144ABB, #2F318B);
    box-shadow: 0 12px 22px rgba(20, 74, 187, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
    box-shadow: 0 16px 26px rgba(20, 74, 187, 0.32);
}

.button--ghost,
.button--outline {
    background: #ffffff;
    color: var(--primary-strong);
    border-color: rgba(20, 74, 187, 0.18);
}

.button--light {
    min-height: 42px;
    padding: 0 18px;
    background: #ffffff;
    color: var(--primary-strong);
}

.button--compact {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.9rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 740px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-heading h2 {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 2.8vw, 2.85rem);
    line-height: 1.08;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.section-heading--between {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    max-width: none;
    text-align: left;
}

.section-heading--between h2 {
    margin-bottom: 0;
}

.hero {
    padding-top: 56px;
}

.hero__inner {
    text-align: center;
}

.hero h1 {
    width: min(920px, 100%);
    margin: 18px auto 16px;
    font-size: clamp(2.4rem, 4.9vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero h1 span {
    color: var(--primary);
}

.hero__lead {
    width: min(700px, 100%);
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    width: min(860px, 100%);
    margin: 44px auto 22px;
}

.hero-visual__frame {
    position: relative;
    padding: 18px;
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.hero-visual__photo {
    min-height: 420px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.08), transparent 60%),
        radial-gradient(circle at 72% 24%, rgba(255, 210, 154, 0.82), transparent 14%),
        radial-gradient(circle at 66% 34%, rgba(255, 222, 183, 0.98), transparent 10%),
        radial-gradient(circle at 48% 65%, rgba(48, 56, 104, 0.56), transparent 22%),
        linear-gradient(0deg, rgba(115, 71, 22, 0.86) 0 28%, transparent 28%),
        linear-gradient(120deg, #303965 0%, #191d34 34%, #5c3c2c 72%, #e0a54e 100%);
    position: relative;
    overflow: hidden;
}

.hero-visual__photo::before {
    content: "";
    position: absolute;
    inset: 12% 42% 18% 10%;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(193, 218, 255, 0.92)),
        linear-gradient(135deg, rgba(73, 92, 183, 0.75), rgba(22, 25, 53, 0.65));
    box-shadow: 0 22px 28px rgba(13, 15, 42, 0.2);
    transform: perspective(800px) rotateX(16deg) rotateY(-12deg);
}

.hero-visual__photo::after {
    content: "";
    position: absolute;
    inset: 12% 0 0 0;
    background:
        linear-gradient(108deg, transparent 58%, rgba(255, 232, 193, 0.9) 58% 60%, transparent 60%),
        radial-gradient(circle at 62% 46%, rgba(255, 206, 160, 0.96), transparent 12%),
        radial-gradient(circle at 68% 33%, rgba(255, 224, 184, 0.95), transparent 5%),
        radial-gradient(circle at 76% 55%, rgba(46, 52, 84, 0.48), transparent 18%);
}

.hero-visual__badge {
    position: absolute;
    top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.hero-visual__badge strong,
.stat-card strong {
    display: block;
    font-size: 0.92rem;
}

.hero-visual__badge small,
.stat-card span {
    color: var(--muted);
    font-size: 0.78rem;
}

.hero-visual__badge--left {
    left: -12px;
}

.hero-visual__badge--right {
    right: -12px;
}

.chip-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5ddc95, #2f9d63);
    box-shadow: 0 0 0 6px rgba(93, 220, 149, 0.14);
}

.hero-visual__stats {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.stat-card {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    min-width: 132px;
    text-align: left;
}

.partner-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.partner-strip span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.section--split {
    padding-top: 34px;
}

.split-card {
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 34px;
    align-items: center;
    padding: 22px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.split-card__media {
    min-height: 340px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 28% 34%, rgba(255, 244, 227, 0.94), transparent 12%),
        radial-gradient(circle at 63% 52%, rgba(32, 42, 95, 0.46), transparent 24%),
        linear-gradient(135deg, #1f294a, #4f5d92 50%, #e0bb9a);
    position: relative;
    overflow: hidden;
}

.split-card__media::before {
    content: "";
    position: absolute;
    inset: auto 12% 0 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(74, 36, 14, 0.1), rgba(101, 53, 18, 0.62));
}

.split-card__media::after {
    content: "";
    position: absolute;
    inset: 18% 18% 22% 16%;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(224, 231, 255, 0.86)),
        linear-gradient(135deg, rgba(63, 69, 173, 0.32), transparent);
}

.split-card__content h2 {
    margin: 16px 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.12;
}

.split-card__content p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.85;
}

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

.program-card {
    position: relative;
    overflow: hidden;
    min-height: 226px;
    padding: 20px 18px 88px;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(25, 35, 74, 0.04);
}

.program-card__content {
    position: relative;
    z-index: 2;
    max-width: 72%;
}

.program-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #1d2943;
}

.program-card p {
    margin: 16px 0 0;
    color: #617495;
    line-height: 1.28;
    font-size: 0.98rem;
}

.program-card__art {
    position: absolute;
    inset: 0;
    height: auto;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 80% auto;
    pointer-events: none;
}

.program-card--target .program-card__art {
    background-image: url("/assets/images/1.png");
    background-size: 78% auto;
}

.program-card--books .program-card__art {
    background-image: url("/assets/images/2.png");
    background-size: 80% auto;
}

.program-card--checklist .program-card__art {
    background-image: url("/assets/images/3.png");
    background-size: 76% auto;
}

.program-card--vr .program-card__art {
    background-image: url("/assets/images/4.png");
    background-size: 78% auto;
}

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

.space-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.space-card__media,
.news-card__media,
.news-card__thumb,
.agenda-card__visual {
    min-height: 0;
    position: relative;
    overflow: hidden;
}

.space-card__media::before,
.news-card__media::before,
.news-card__thumb::before,
.agenda-card__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 24% 28%, rgba(255, 244, 227, 0.9), transparent 12%),
        radial-gradient(circle at 66% 48%, rgba(39, 53, 104, 0.44), transparent 24%),
        linear-gradient(135deg, rgba(22, 29, 57, 0.86), rgba(69, 81, 144, 0.7), rgba(228, 197, 150, 0.82));
}

.space-card__media::after,
.news-card__media::after,
.news-card__thumb::after,
.agenda-card__visual::after {
    content: "";
    position: absolute;
    inset: auto 8% 12% 10%;
    height: 34%;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 18px rgba(18, 25, 56, 0.18);
}

.space-card__media--photo::before,
.space-card__media--photo::after {
    display: none;
}

.space-card__media--photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.space-1::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 235, 206, 0.95), transparent 10%),
        linear-gradient(135deg, rgba(18, 28, 59, 0.88), rgba(88, 101, 170, 0.72), rgba(225, 194, 150, 0.84));
}

.space-2::before {
    background:
        radial-gradient(circle at 78% 28%, rgba(255, 210, 157, 0.96), transparent 11%),
        linear-gradient(135deg, rgba(18, 24, 48, 0.9), rgba(45, 54, 103, 0.8), rgba(113, 81, 61, 0.72));
}

.space-3::before {
    background:
        radial-gradient(circle at 55% 26%, rgba(255, 243, 224, 0.96), transparent 9%),
        linear-gradient(135deg, rgba(37, 45, 76, 0.9), rgba(124, 143, 214, 0.7), rgba(211, 226, 252, 0.78));
}

.space-4::before {
    background:
        radial-gradient(circle at 40% 28%, rgba(255, 223, 177, 0.92), transparent 10%),
        linear-gradient(135deg, rgba(35, 41, 70, 0.92), rgba(67, 80, 140, 0.74), rgba(176, 188, 216, 0.8));
}

.space-card__body {
    padding: 18px;
}

.space-card__body h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.space-card__body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.75;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.agenda-list {
    margin: 0 auto;
    display: grid;
    justify-content: center;
    gap: 24px;
}

.agenda-card {
    display: grid;
    grid-template-columns: 162px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.agenda-card__visual {
    height: 156px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
}

.agenda-card__visual::after {
    display: none;
}

.agenda-card__content {
    width: 100%;
    max-width: none;
}

.agenda-card__visual--1::before {
    background-image: url('/assets/images/agenda/agenda-1.jpeg');
    background-size: cover;
    background-position: center;
}

.agenda-card__visual--2::before {
    background-image: url('/assets/images/agenda/agenda-2.jpg');
    background-size: cover;
    background-position: center;
}

.agenda-card__visual--3::before {
    background-image: url('/assets/images/agenda/agenda-3.png');
    background-size: cover;
    background-position: center;
}

.agenda-card__content h3 {
    margin: 6px 0 8px;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 700;
}

.agenda-card__content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.agenda-card__detail {
    display: inline-flex;
    align-self: center;
    justify-self: end;
    white-space: nowrap;
}

.agenda-card__meta {
    display: inline-flex;
    color: #94a3b8;
    font-size: 0.84rem;
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
    align-items: start;
}

.section--news .news-grid {
    align-items: stretch;
}

.news-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.news-card--featured {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.news-card--featured .news-card__media {
    height: 300px;
}

.news-card__media::before,
.news-card__media::after,
.news-card__thumb::before,
.news-card__thumb::after {
    display: none;
}

.news-card__media img,
.news-card__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-feature::before {
    background:
        radial-gradient(circle at 70% 24%, rgba(255, 231, 195, 0.96), transparent 10%),
        linear-gradient(135deg, rgba(23, 30, 59, 0.92), rgba(63, 77, 145, 0.74), rgba(217, 176, 133, 0.82));
}

.news-1::before {
    background:
        radial-gradient(circle at 28% 28%, rgba(255, 237, 211, 0.96), transparent 10%),
        linear-gradient(135deg, rgba(35, 41, 73, 0.92), rgba(91, 102, 175, 0.76), rgba(198, 158, 118, 0.8));
}

.news-2::before {
    background:
        radial-gradient(circle at 60% 24%, rgba(255, 237, 211, 0.96), transparent 10%),
        linear-gradient(135deg, rgba(26, 33, 64, 0.92), rgba(79, 92, 164, 0.76), rgba(186, 201, 229, 0.76));
}

.news-3::before {
    background:
        radial-gradient(circle at 46% 28%, rgba(255, 237, 211, 0.96), transparent 10%),
        linear-gradient(135deg, rgba(31, 38, 71, 0.92), rgba(97, 106, 168, 0.76), rgba(214, 183, 145, 0.78));
}

.news-card__body {
    padding: 16px;
}

.news-card--featured {
    align-self: stretch;
}

.news-card--featured .news-card__body {
    align-items: flex-start;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.news-card__body h3 {
    margin: 8px 0 10px;
    font-size: 1.18rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__body h3 a {
    color: inherit;
    display: inline;
    font-weight: inherit;
    margin-top: 0;
    text-decoration: none;
}

.news-card__body h3 a:hover {
    color: var(--primary);
}

.news-card--featured .news-card__body h3,
.news-card--list .news-card__body h3 {
    -webkit-line-clamp: 2;
}

.news-card--featured .news-card__body h3,
.news-card--featured .news-card__body p {
    width: 100%;
}

.news-card__body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.94rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card--featured .news-card__body p,
.news-card--list .news-card__body p {
    -webkit-line-clamp: 3;
}

.news-card--featured .news-card__body p {
    -webkit-line-clamp: 10;
}

.news-card__body a {
    display: inline-flex;
    margin-top: 16px;
    color: var(--primary);
    font-weight: 700;
}

.news-card__tag {
    display: inline-flex;
    align-self: flex-start;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-stack {
    display: grid;
    gap: 16px;
}

.news-card--list {
    display: grid;
    grid-template-columns: 156px minmax(0, 1fr);
    align-items: stretch;
    min-height: 136px;
}

.news-stack {
    display: grid;
    gap: 16px;
}

.news-card__thumb {
    align-self: stretch;
    height: 100%;
    overflow: hidden;
}

.news-card--list .news-card__thumb img {
    height: 100%;
    object-position: center;
}

.news-card--list .news-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.section-cta--news {
    margin-top: 26px;
}

.article-content {
    color: #475569;
}

.article-content > * + * {
    margin-top: 1.75rem;
}

.article-content p {
    margin: 0;
    color: #475569;
    font-size: 1.05rem;
    line-height: 2;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin: 3rem 0 0;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.article-content h2 {
    padding-left: 1.25rem;
    border-left: 4px solid var(--primary);
    font-size: 1.9rem;
}

.article-content h3 {
    font-size: 1.5rem;
}

.article-content h4 {
    font-size: 1.2rem;
}

.article-content blockquote {
    margin: 2.5rem 0 0;
    padding: 2rem;
    border-left: 4px solid var(--primary);
    border-radius: 24px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1.55;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.03);
}

.article-content a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.article-content a:hover {
    color: var(--primary-dark);
}

.article-content ul,
.article-content ol {
    margin: 0;
    padding-left: 1.35rem;
    color: #475569;
}

.article-content li + li {
    margin-top: 0.6rem;
}

.article-content img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.article-content figure {
    margin: 2.5rem 0 0;
}

.article-content figcaption {
    margin-top: 0.9rem;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.8;
}

.article-content figure.media,
.article-content .media {
    margin: 2.5rem 0 0;
}

.article-content iframe,
.article-content figure.media iframe,
.article-content .media iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 24px;
    background: #0f172a;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.article-content table th,
.article-content table td {
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
    vertical-align: top;
}

.article-content table th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 800;
}

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

.faq-item {
    padding: 20px 24px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    list-style: none;
    position: relative;
    padding-right: 36px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: -2px;
    right: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 1.1rem;
    font-weight: 800;
}

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

.faq-item p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.help-card {
    margin-top: 28px;
    padding: 36px 28px;
    border-radius: 28px;
    text-align: center;
    background: linear-gradient(180deg, rgba(246, 248, 255, 0.98), rgba(255, 255, 255, 0.98));
    box-shadow: var(--shadow);
}

.help-card h3 {
    margin: 0 0 10px;
    font-size: 2rem;
}

.help-card p {
    width: min(540px, 100%);
    margin: 0 auto 18px;
    color: var(--muted);
    line-height: 1.8;
}

.footer {
    margin-top: 56px;
    padding: 48px 0 24px;
    background: linear-gradient(180deg, #1d3870, #17305f);
    color: #eff4ff;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 28px;
}

.brand--footer .brand__mark {
    background: rgba(255, 255, 255, 0.12);
}

.footer__brand p,
.footer div p {
    margin: 16px 0 0;
    color: rgba(239, 244, 255, 0.72);
    line-height: 1.8;
    font-size: 0.94rem;
}

.footer h4 {
    margin: 0 0 14px;
    font-size: 1rem;
}

.footer a,
.footer span {
    display: block;
    color: rgba(239, 244, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.94rem;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(239, 244, 255, 0.14);
}

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

    .news-grid,
    .split-card,
    .agenda-card {
        grid-template-columns: 1fr;
    }

    .agenda-card {
        justify-items: start;
    }
}

@media (max-width: 860px) {
    .program-card {
        min-height: 218px;
        padding: 18px 16px 82px;
    }

    .program-card__content {
        max-width: 74%;
    }

    .topbar {
        position: static;
        padding-top: 12px;
    }

    .topbar__inner,
    .section-heading--between,
    .hero__actions,
    .hero-visual__stats,
    .footer__bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-nav {
        justify-content: flex-start;
    }

    .hero-visual__badge {
        position: static;
        margin-bottom: 12px;
    }

    .hero-visual__frame {
        padding: 14px;
    }

    .hero-visual__photo {
        min-height: 218px;
    }

    .news-card--list {
        grid-template-columns: 1fr;
    }

    .news-card__thumb {
        min-height: 180px;
    }
}

@media (max-width: 640px) {
    .program-card {
        min-height: 210px;
        padding: 16px 14px 78px;
        border-radius: 28px;
    }

    .program-card__content {
        max-width: 76%;
    }

    .program-card h3 {
        font-size: 1.05rem;
    }

    .program-card p {
        margin-top: 18px;
        font-size: 0.92rem;
    }

    .container,
    .container--narrow {
        width: min(calc(100% - 24px), var(--container));
    }

    .section {
        padding: 40px 0;
    }

    .hero {
        padding-top: 28px;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.18;
    }

    .split-card,
    .program-card,
    .help-card,
    .agenda-card,
    .space-card,
    .news-card,
    .faq-item {
        border-radius: 20px;
    }

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