/* ===========================================================================
   TONDO — стили. Бренд-палитра амуты. Адаптив + RTL.
   =========================================================================== */

:root {
    /* Палитра бренда */
    --wine:      #7C174C;
    --wine-700:  #65123e;
    --dark:      #380924;
    --dark-900:  #2a0619;
    --graphite:  #323C44;
    --blue:      #7E90A8;
    --rose:      #AF95A4;
    --pinky:     #DDCED8;
    --gold:      #BE9B53;
    --gold-600:  #a8853f;

    /* Нейтральные */
    --bg:        #ffffff;
    --bg-soft:   #faf6f8;
    --bg-pinky:  #f4ecf0;
    --line:      #ece2e8;
    --text:      #2c2730;
    --text-soft: #5e5560;
    --white:     #ffffff;

    /* Типографика */
    --font-head: "Playfair Display", "Cormorant Garamond", "Open Sans Hebrew", Georgia, serif;
    --font-body: "Open Sans", "Open Sans Hebrew", "Heebo", system-ui, -apple-system, Segoe UI, sans-serif;

    /* Размеры */
    --container: 1180px;
    --radius:    16px;
    --radius-sm: 10px;
    --shadow:    0 18px 50px -24px rgba(56, 9, 36, .35);
    --shadow-sm: 0 6px 20px -10px rgba(56, 9, 36, .28);
    --ease:      cubic-bezier(.22, .61, .36, 1);
}

/* Иврит — другой стек шрифтов */
html[lang="he"] {
    --font-head: "Heebo", "Open Sans Hebrew", "Playfair Display", sans-serif;
    --font-body: "Open Sans Hebrew", "Heebo", "Open Sans", sans-serif;
}

/* --- Сброс / база --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wine); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--wine-700); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--dark); font-weight: 700; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.muted { color: var(--text-soft); font-size: .92em; }

.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--wine); color: #fff;
    padding: 10px 16px; z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* --- Кнопки --------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5em;
    padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: .98rem;
    border: 2px solid transparent; transition: all .25s var(--ease); white-space: nowrap;
    line-height: 1.1; text-align: center;
}
.btn-primary { background: var(--wine); color: #fff; border-color: var(--wine); }
.btn-primary:hover { background: var(--wine-700); border-color: var(--wine-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn-outline:hover { background: var(--wine); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.95); color: var(--wine); border-color: #fff; transform: translateY(-2px); }
.btn-support { background: var(--gold); color: var(--dark); border-color: var(--gold); padding: 9px 18px; font-size: .9rem; }
.btn-support:hover { background: var(--gold-600); border-color: var(--gold-600); color: var(--dark); }
.btn.is-loading { opacity: .7; pointer-events: none; }

/* --- Шапка ---------------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--dark); }
.brand:hover { color: var(--dark); }
.brand-logo { border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: .14em; color: var(--dark); }
.brand-tag { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > ul { display: flex; align-items: center; gap: 26px; }
.main-nav a { color: var(--graphite); font-weight: 600; font-size: .98rem; position: relative; padding: 4px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--wine); transition: width .25s var(--ease); }
.main-nav a:hover, .main-nav a.active { color: var(--wine); }
.main-nav a.active::after, .main-nav a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; gap: 2px; background: var(--bg-pinky); border-radius: 999px; padding: 3px; }
.lang-switch a { font-size: .8rem; font-weight: 700; padding: 5px 10px; border-radius: 999px; color: var(--text-soft); }
.lang-switch a::after { display: none; }
.lang-switch a.active { background: var(--wine); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--dark); border-radius: 2px; transition: .25s var(--ease); }

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(135deg, rgba(56,9,36,.92), rgba(124,23,76,.86)), url("/tondim/bg-dark.jpg") center/cover;
}
.hero-home { padding: clamp(80px, 14vw, 150px) 0 clamp(70px, 10vw, 120px); }
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero-kicker { display: inline-block; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 18px; border: 1px solid rgba(190,155,83,.5); padding: 6px 16px; border-radius: 999px; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); color: #fff; line-height: 1.05; margin-bottom: 22px; }
.hero-subtitle { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: rgba(255,255,255,.9); max-width: 640px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Полоса статистики ---------------------------------------------------- */
.stats-band { background: var(--dark); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 36px 24px; text-align: center; }
.stat { padding: 8px; }
.stat-num { display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: .92rem; color: rgba(255,255,255,.78); }

/* --- Секции --------------------------------------------------------------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--bg-soft); }
.section-approach { background: var(--bg-pinky); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker { display: inline-block; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--wine); font-weight: 700; margin-bottom: 14px; }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.section-lead { font-size: 1.12rem; color: var(--text-soft); }
.prose-lead { font-size: 1.12rem; color: var(--text-soft); max-width: 820px; margin-bottom: 40px; }

/* --- Миссия --------------------------------------------------------------- */
.mission-inner { display: grid; grid-template-columns: 1.4fr .9fr; gap: 50px; align-items: center; }
.mission-text p { font-size: 1.1rem; color: var(--text-soft); margin-top: 14px; }
.mission-emblem { display: flex; justify-content: center; }
.mission-emblem img { filter: drop-shadow(0 20px 40px rgba(56,9,36,.2)); }

/* --- Сетки карточек ------------------------------------------------------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.feature-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; transition: transform .25s var(--ease), box-shadow .25s; height: 100%;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 14px; background: var(--bg-pinky); color: var(--wine); margin-bottom: 18px; }
.feature-icon .icon { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-soft); font-size: .98rem; }

.icon { width: 24px; height: 24px; }
.icon-sm { width: 18px; height: 18px; flex: 0 0 auto; }

/* Подход — нумерованные карточки */
.approach-card { background: var(--white); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); position: relative; height: 100%; }
.approach-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--rose); display: block; margin-bottom: 8px; }
.approach-card h3 { font-size: 1.22rem; margin-bottom: 12px; color: var(--wine); }
.approach-card p { color: var(--text-soft); }

/* --- Программы (карточки) ------------------------------------------------- */
.programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.programs-grid-lg { grid-template-columns: repeat(2, 1fr); }
.program-card {
    display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 32px 30px; color: var(--text);
    transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; height: 100%; position: relative; overflow: hidden;
}
.program-card::before { content: ""; position: absolute; inset-inline-start: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(var(--wine), var(--gold)); transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease); }
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; color: var(--text); }
.program-card:hover::before { transform: scaleY(1); }
.program-card-tag { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }
.program-card-title { font-size: 1.5rem; margin: 10px 0 4px; color: var(--dark); }
.program-card-sub { color: var(--wine); font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.program-card-summary { color: var(--text-soft); flex: 1; }
.program-card-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--wine); font-weight: 700; font-size: .95rem; }
.program-card:hover .program-card-more { gap: 12px; }

/* --- Страница (общий hero) ------------------------------------------------ */
.page-hero { background: linear-gradient(160deg, var(--dark), var(--wine)); color: #fff; padding: clamp(64px, 10vw, 110px) 0 clamp(48px, 7vw, 80px); position: relative; }
.page-hero .kicker { color: var(--gold); }
.page-title { font-size: clamp(2rem, 5vw, 3.3rem); color: #fff; margin-bottom: 18px; }
.page-lead { font-size: 1.15rem; color: rgba(255,255,255,.9); max-width: 760px; }

/* --- Поток (проблема→результат) ------------------------------------------- */
.flow-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flow-col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 22px; position: relative; }
.flow-step { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--wine); color: #fff; font-weight: 700; font-family: var(--font-head); margin-bottom: 14px; }
.flow-col h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--wine); }
.flow-col p { color: var(--text-soft); font-size: .95rem; }

/* --- Списки с галочкой ---------------------------------------------------- */
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; color: var(--text); }
.check-list .icon-sm { color: var(--gold-600); margin-top: 4px; }
.check-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }

.audience-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.audience-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--wine); }

/* --- Нумерованные карточки (направления) ---------------------------------- */
.num-card { display: flex; gap: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.num-card-n { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--rose); line-height: 1; }
.num-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.num-card p { color: var(--text-soft); font-size: .97rem; }

/* --- Ценности ------------------------------------------------------------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-chip { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 20px; text-align: center; }
.value-dot { display: inline-flex; color: var(--gold); margin-bottom: 8px; }
.value-chip h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--wine); }
.value-chip p { color: var(--text-soft); font-size: .9rem; }

/* --- Видение / управление ------------------------------------------------- */
.section-vision { background: var(--bg-pinky); }
.vision-text { font-size: 1.2rem; color: var(--graphite); }
.governance { max-width: 880px; }
.governance p { color: var(--text-soft); margin-bottom: 14px; }
.governance-partners { font-size: .98rem; }

/* --- Программа: детальная ------------------------------------------------- */
.program-hero .back-link { display: inline-block; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.program-subtitle { font-size: 1.2rem; color: var(--rose); font-weight: 600; margin-bottom: 16px; }
.program-summary { font-size: 1.25rem; color: var(--graphite); line-height: 1.5; padding: 22px 0 8px; border-bottom: 2px solid var(--bg-pinky); margin-bottom: 8px; }
.program-block { padding: 26px 0; border-bottom: 1px solid var(--line); }
.program-block h2 { font-size: 1.5rem; margin-bottom: 14px; color: var(--wine); }
.program-block p { color: var(--text-soft); }
.program-cta { background: var(--bg-soft); border-radius: var(--radius); padding: 34px; margin-top: 36px; text-align: center; }
.program-cta p { font-size: 1.15rem; color: var(--graphite); margin-bottom: 22px; }
.program-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Сообщество ----------------------------------------------------------- */
.format-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; border-top: 4px solid var(--gold); }
.format-card h3 { font-size: 1.12rem; margin-bottom: 8px; color: var(--wine); }
.format-card p { color: var(--text-soft); font-size: .95rem; }

.section-join { background: var(--bg-soft); }
.join-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.step-list { counter-reset: step; margin-top: 22px; }
.step-list li { display: flex; align-items: center; gap: 14px; padding: 10px 0; font-weight: 600; color: var(--graphite); }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--wine); color: #fff; font-family: var(--font-head); flex: 0 0 auto; }

/* --- Контакты ------------------------------------------------------------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact-dl dt { font-weight: 700; color: var(--dark); margin-top: 18px; display: flex; align-items: center; gap: 8px; }
.contact-dl dt .icon-sm { color: var(--wine); }
.contact-dl dd { color: var(--text-soft); margin: 4px 0 0; }
.support-box { margin-top: 34px; background: linear-gradient(135deg, var(--wine), var(--dark)); color: #fff; border-radius: var(--radius); padding: 30px; }
.support-box h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.support-box p { color: rgba(255,255,255,.88); margin-bottom: 18px; }

/* --- Формы ---------------------------------------------------------------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-heading { font-size: 1.5rem; margin-bottom: 22px; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--graphite); }
.field .req { color: var(--wine); }
.field input, .field select, .field textarea {
    font-family: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--line);
    border-radius: var(--radius-sm); background: var(--bg-soft); color: var(--text); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--wine); background: #fff; }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-consent { font-size: .82rem; color: var(--text-soft); margin-bottom: 18px; }
.form-submit { width: 100%; }
.form-alert { display: none; padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 600; }
.form-alert.is-visible { display: block; }
.form-alert-ok { background: #e8f5ec; color: #1f7a45; border: 1px solid #b8e0c4; }
.form-alert-err { background: #fbecef; color: var(--wine-700); border: 1px solid #f0c4d0; }

/* --- CTA-полоса ----------------------------------------------------------- */
.cta-band { position: relative; color: #fff; overflow: hidden; padding: clamp(56px, 8vw, 90px) 0; text-align: center; }
.cta-band .hero-bg { background: linear-gradient(135deg, rgba(124,23,76,.95), rgba(56,9,36,.95)), url("/tondim/bg-dark.jpg") center/cover; }
.cta-band-inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 28px; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Подвал --------------------------------------------------------------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.78); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 48px; }
.footer-logo { border-radius: 50%; margin-bottom: 14px; }
.footer-name { font-family: var(--font-head); font-size: 1.2rem; color: #fff; letter-spacing: .06em; }
.footer-desc { margin: 10px 0; font-size: .95rem; }
.footer-amuta { font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-col h3 { color: var(--gold); font-size: 1rem; letter-spacing: .04em; margin-bottom: 16px; font-family: var(--font-body); text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.78); font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-contact p { margin-bottom: 8px; font-size: .95rem; }
.footer-social { display: flex; gap: 16px; margin-top: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-slogan { font-style: italic; color: var(--rose); }

/* --- 404 ------------------------------------------------------------------ */
.error-hero { min-height: 56vh; display: flex; align-items: center; }
.error-code { font-family: var(--font-head); font-size: clamp(4rem, 14vw, 9rem); font-weight: 700; color: var(--gold); display: block; line-height: 1; }

/* ===========================================================================
   RTL (иврит)
   =========================================================================== */
html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .program-card-more .icon { transform: scaleX(-1); }
html[dir="rtl"] .hero-inner,
html[dir="rtl"] .section-head:not(.center) { text-align: right; }
html[dir="rtl"] .main-nav a::after { left: auto; right: 0; }

/* ===========================================================================
   Адаптив
   =========================================================================== */
@media (max-width: 980px) {
    .mission-inner, .join-inner, .contact-inner { grid-template-columns: 1fr; gap: 36px; }
    .mission-emblem { order: -1; }
    .mission-emblem img { width: 160px; height: 160px; }
    .cards-4, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .flow-cols { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
        background: #fff; padding: 16px 24px 28px; box-shadow: var(--shadow); border-top: 1px solid var(--line);
        transform: translateY(-130%); transition: transform .3s var(--ease); max-height: calc(100vh - 74px); overflow-y: auto;
    }
    body.nav-open .main-nav { transform: translateY(0); }
    body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav > ul li { border-bottom: 1px solid var(--line); }
    .main-nav > ul a { display: block; padding: 14px 0; }
    .nav-actions { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 16px; }
    .btn-support { text-align: center; }
    .lang-switch { justify-content: center; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cards-3, .cards-2, .programs-grid, .programs-grid-lg, .two-col { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .check-list-grid { grid-template-columns: 1fr; }
    .hero-actions, .cta-band-actions, .program-cta-actions { flex-direction: column; }
    .hero-actions .btn, .cta-band-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .cards-4, .values-grid, .flow-cols { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .container { padding-inline: 18px; }
    .form-card { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
