:root {
    --main: #0e0e0e;
    --accent: #e2a53a;
    --bg: #faf8f5;
    --card-bg: #ffffff;
    --text: #2b2b2b;
    --text-muted: #7a7a7a;
    --border: #e8e4dd;
    --radius: 16px;
    --font-heading: "Philosopher", Georgia, serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}

.page { overflow-x: hidden; }

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0 0 8px;
}

.btn {
    margin-top: 30px;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn--primary { background: var(--main); color: #fff; }
.btn--outline { background: transparent; border-color: var(--main); color: var(--main); }

/* Site header */
.site-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 32px; background: #fff; border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 300;
}
.site-header__logo { text-decoration: none; color: var(--main); line-height: 1.1; display: flex; align-items: center; gap: 10px; }
.site-header__logo-img { width: 40px; height: 40px; border-radius: 50px; object-fit: cover; flex-shrink: 0; }
.site-header__logo-main { display: block; font-family: var(--font-heading); font-size: 20px; font-weight: 700; }
.site-header__logo-sub { display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.site-header__nav { display: flex; gap: 24px; }
.site-header__nav a { color: var(--main); text-decoration: none; font-size: 14px; font-weight: 600; }
.site-header__nav a:hover { color: var(--accent); }
.site-header__cta {
    background: var(--main); color: #fff; padding: 10px 20px; border-radius: 999px;
    text-decoration: none; font-size: 14px; font-weight: 600; white-space: nowrap;
}
.site-header__burger {
    display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px;
}
.site-header__burger span { width: 22px; height: 2px; background: var(--main); display: block; }
.site-header__mobile-nav {
    display: none; flex-direction: column; position: sticky; top: 65px; z-index: 299;
    background: #fff; border-bottom: 1px solid var(--border); padding: 8px 0;
}
.site-header__mobile-nav a {
    padding: 12px 24px; color: var(--main); text-decoration: none; font-size: 15px;
    border-bottom: 1px solid var(--border);
}
.site-header__mobile-nav.is-open { display: flex; }

@media (max-width: 900px) {
    .site-header__nav, .site-header__cta { display: none; }
    .site-header__burger { display: flex; }
}

/* Hero */
.hero--video {
    position: relative; overflow: hidden;
    min-height: 93vh; display: flex; align-items: center; justify-content: center;
    padding: 56px 32px;
}
.hero__video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(193,167,140,.75), rgba(184,154,125,.85));
}
.hero__inner {
    position: relative; z-index: 2; max-width: 720px; margin: 0 auto;
    text-align: center; display: flex; flex-direction: column; align-items: center;
}
.hero__eyebrow {
    font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: #fff; opacity: 0.85; margin-bottom: 14px;
}
.hero__title { font-size: 44px; line-height: 1.18; color: #fff; margin-bottom: 18px; }
.hero__subtitle { font-size: 16px; line-height: 1.7; color: #fff; opacity: 0.9; margin-bottom: 28px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.hero__btn-price { background: #fff; color: #27282C; }
.hero__btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.hero__meta {
    display: flex; flex-direction: column; gap: 6px; align-items: center;
    font-size: 13px; color: #fff; opacity: 0.85;
}
.hero__rating { margin-top: 16px; border-radius: 8px; overflow: hidden; }

@media (max-width: 900px) {
    .site-header { padding: 12px 20px; }
    .hero--video { padding: 40px 20px; min-height: 93vh; }
    .hero__title { font-size: 30px; }
}

/* Gallery marquee */
.gallery-marquee { overflow: hidden; background: var(--bg); }
.gallery-marquee__track {
    display: flex; gap: 0; width: max-content;
    animation: gallery-scroll 40s linear infinite;
}
.gallery-marquee:hover .gallery-marquee__track { animation-play-state: paused; }
.gallery-marquee__item { flex-shrink: 0; width: 280px; height: 380px; }
.gallery-marquee__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes gallery-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Section */
.section { padding: 56px 20px; max-width: 1100px; margin: 0 auto; }
.section__header { margin-bottom: 24px; text-align: center; }
.section__header h2 { font-size: 28px; }
.section__footer { text-align: center; margin-top: 24px; }

/* Swiper cards */
.swiper { overflow: visible; padding-bottom: 32px; }
.swiper-slide { width: auto; }

.swiper-pagination { position: static; margin-top: 20px; display: flex; justify-content: center; gap: 6px; }
.swiper-pagination-bullet {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: var(--border);
    opacity: 1;
    margin: 0 !important;
    transition: background .2s;
}
.swiper-pagination-bullet-active { background: var(--accent); }

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    width: 260px;
    height: 100%;
    text-align: left;
}
.card__title { font-size: 17px; }
.card__text { color: var(--text-muted); font-size: 14px; }
.card__date { color: var(--accent); font-size: 13px; font-weight: 600; margin-bottom: 6px; }

.card--service,
.card--news {
    cursor: pointer;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font: inherit;
    color: inherit;
}
.card__price { color: var(--accent); font-weight: 700; }

.card--news,
.card--service { padding: 0; overflow: hidden; gap: 0; }
.card--news,
.card--service { width: 100%; }
.news-swiper .swiper-slide,
.services-swiper .swiper-slide { height: auto; }
.card--news .card__body,
.card--service .card__body { padding: 16px 20px 20px; }
.card__media { width: 100%; overflow: hidden; background: var(--bg); }
.card__media img { width: 100%; height: auto; display: block; }

.card--service .card__media { aspect-ratio: 1; }
.card--service .card__media img { height: 100%; object-fit: cover; }
.card__media--video {
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--accent); background: #efe9df;
}

.popup__media { margin-bottom: 16px; border-radius: 12px; overflow: hidden; }
.popup__media img { width: 100%; display: block; }
.popup__media iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
.popup__media--avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; }

.card--teacher {
    text-align: center; cursor: pointer; background: var(--card-bg);
    font: inherit; color: inherit;
}
.card__avatar {
    width: 200px; height: 201px; border-radius: 7%;
    background: #e5e0d5; margin: 0 auto 12px;
}
.card__role { color: var(--accent); font-size: 13px; font-weight: 600; margin-bottom: 8px; }

/* About */
.section--about {
    position: relative; max-width: none; padding: 0;
    background-size: cover; background-position: center;
    overflow: hidden;
}
.about__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14,14,14,.75), rgba(14,14,14,.55));
}
.about__inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 200px 20px; }
.section--about .section__header h2 { color: #fff; }
.about__content { max-width: 720px; margin: 0 auto; text-align: center; color: #eee; }
.about__content p { line-height: 1.7; }

/* Popup */
.popup { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; }
.popup.is-open { display: flex; }
.popup__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.popup__body {
    position: relative; background: #fff; border-radius: var(--radius);
    padding: 28px; max-width: 420px; width: calc(100% - 40px);
}
.popup__close {
    position: absolute; top: 12px; right: 16px; border: none; background: none;
    font-size: 24px; cursor: pointer; color: var(--text-muted);
}
.popup__price { color: var(--accent); font-weight: 700; margin-bottom: 12px; }

.section--legal { max-width: 800px; }
.section--legal .section__header { text-align: left; }
.legal-content { font-size: 15px; line-height: 1.8; }
.legal-content p { margin: 0 0 14px; }
.legal-content ul, .legal-content ol { margin: 0 0 14px; padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { font-weight: 700; }
.legal-content a { color: var(--accent); word-break: break-word; }

.cert-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.cert-gallery__item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border, #e5e5e5);
    background: var(--fon, #f4f4f4);
    aspect-ratio: 3/4;
}
.cert-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.cert-gallery__item:hover img { transform: scale(1.04); }

.cert-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    cursor: zoom-out;
}
.cert-lightbox.is-open { display: flex; }
.cert-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.cert-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 640px) {
    .cert-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.rich-text { font-size: 14px; line-height: 1.6; color: var(--text); }
.rich-text p { margin: 0 0 12px; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text ul, .rich-text ol { margin: 0 0 12px; padding-left: 20px; }
.rich-text li { margin-bottom: 4px; }
.rich-text a { color: var(--accent); }
.rich-text strong { font-weight: 700; }

/* Swiper arrows */
.reviews-video-swiper, .reviews-widgets-swiper { position: relative; }
.reviews-video-swiper .swiper-button-prev,
.reviews-video-swiper .swiper-button-next,
.reviews-widgets-swiper .swiper-button-prev,
.reviews-widgets-swiper .swiper-button-next {
    width: 40px; height: 40px; margin-top: -20px;
    background: #fff; border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,.15);
    color: var(--main);
}
.reviews-video-swiper .swiper-button-prev::after,
.reviews-video-swiper .swiper-button-next::after,
.reviews-widgets-swiper .swiper-button-prev::after,
.reviews-widgets-swiper .swiper-button-next::after {
    font-size: 16px; font-weight: 700;
}
.reviews-video-swiper .swiper-button-prev,
.reviews-widgets-swiper .swiper-button-prev { left: -10px; }
.reviews-video-swiper .swiper-button-next,
.reviews-widgets-swiper .swiper-button-next { right: -10px; }
.reviews-video-swiper .swiper-button-disabled,
.reviews-widgets-swiper .swiper-button-disabled { opacity: 0; pointer-events: none; }

/* Reviews */
.reviews-video-swiper .swiper-slide { width: 100%; }
.reviews-video-swiper iframe { width: 100%; height: 500px; display: block; border-radius: var(--radius); border: 1px solid var(--border); }

.reviews-widgets-swiper { margin-top: 32px; }
.reviews-widgets-swiper .swiper-slide { width: 100%; }
.reviews-widget { position: relative; height: 600px; overflow: hidden; border-radius: var(--radius); }
.reviews-widget iframe { width: 100%; height: 100%; border: 1px solid var(--border); border-radius: var(--radius); }
.reviews-widget__label {
    position: absolute; bottom: 8px; left: 0; width: 100%; text-align: center;
    font-size: 10px; color: #b3b3b3; text-decoration: none;
}

/* Contacts */
.contacts__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; }
.contacts__row { padding: 12px 0; border-bottom: 1px solid var(--border); }
.contacts__label { display: block; font-size: 13px; color: var(--text-muted); }
.contacts__map { min-height: 320px; border-radius: var(--radius); overflow: hidden; }
.contacts__map iframe { display: block; }

/* PWA banner */
.pwa-banner {
    background: var(--main); color: #fff; border-radius: var(--radius);
    padding: 32px; display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
.pwa-banner__text p { color: #cfcfcf; margin: 0; }
.pwa-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pwa-banner .btn--outline { border-color: #fff; color: #fff; }
.pwa-banner .btn--primary { background: var(--accent); color: #0e0e0e; }

/* Floating buttons */
.floating-btn {
    position: fixed; bottom: 20px; z-index: 150;
    background: var(--main); color: #fff; border-radius: 999px;
    padding: 14px 20px; text-decoration: none; font-weight: 600; font-size: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.floating-btn--schedule { left: 20px; }

.floating-btn--support {
    right: 20px; width: 56px; height: 56px; padding: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; cursor: pointer;
}

.support-panel {
    display: none; flex-direction: column;
    position: fixed; bottom: 90px; right: 20px; z-index: 999;
    width: 340px; max-width: calc(100vw - 40px); max-height: 560px;
    background: #fff; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,.25);
    overflow: hidden;
}
.support-panel.is-open { display: flex; }
.support-panel__header {
    background: var(--main); color: #fff; padding: 16px 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.support-panel__title { font-weight: 700; font-size: 15px; }
.support-panel__subtitle { font-size: 12px; color: #9ca3af; }
.support-panel__close { cursor: pointer; font-size: 20px; }
.support-panel__gate {
    padding: 20px 16px; display: flex; flex-direction: column; gap: 14px;
    min-height: 220px; justify-content: center;
}
.support-panel__gate p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
.support-panel__gate form { display: flex; gap: 8px; }
.support-panel__gate input {
    flex: 1; border: 1px solid var(--border); border-radius: 20px;
    padding: 10px 14px; font-size: 13px; outline: none; font-family: inherit;
}
.support-panel__gate button {
    background: var(--accent); color: #0e0e0e; border: none; border-radius: 20px;
    padding: 10px 16px; font-size: 13px; font-weight: 600; cursor: pointer; flex-shrink: 0;
}
.support-panel__messages {
    flex: 1; overflow-y: auto; padding: 14px 16px;
    display: flex; flex-direction: column; gap: 10px;
    min-height: 200px; max-height: 340px;
}
.support-msg { max-width: 80%; }
.support-msg--visitor { align-self: flex-end; }
.support-msg--staff { align-self: flex-start; }
.support-msg__body {
    padding: 8px 12px; border-radius: 12px; font-size: 13px; line-height: 1.4;
}
.support-msg--visitor .support-msg__body { background: var(--accent); color: #0e0e0e; }
.support-msg--staff .support-msg__body { background: #f4f4f4; color: #111; }
.support-msg__time { font-size: 10px; color: #aaa; margin-top: 2px; }
.support-msg--visitor .support-msg__time { text-align: right; }
.support-panel__form {
    display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid #f0f0f0;
}
.support-panel__form input {
    flex: 1; border: 1px solid var(--border); border-radius: 20px;
    padding: 10px 14px; font-size: 13px; outline: none; font-family: inherit;
}
.support-panel__form button {
    background: var(--accent); color: #0e0e0e; border: none; border-radius: 50%;
    width: 38px; height: 38px; cursor: pointer; flex-shrink: 0;
}

/* Schedule page */
.section--schedule { max-width: 800px; }
.schedule-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; }
.schedule-tab {
    padding: 10px 20px; border-radius: 999px; border: 2px solid var(--border);
    background: var(--card-bg); color: var(--text); font: inherit; font-weight: 600;
    font-size: 14px; cursor: pointer;
}
.schedule-tab.is-active { border-color: var(--accent); color: var(--accent); }

.schedule-day {
    border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.schedule-day__toggle {
    width: 100%; text-align: left; padding: 16px 20px; background: var(--card-bg);
    border: none; font: inherit; font-weight: 700; font-size: 16px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.schedule-day__toggle::after { content: '+'; font-size: 20px; color: var(--accent); }
.schedule-day.is-open .schedule-day__toggle::after { content: '−'; }
.schedule-day__body { display: none; padding: 0 20px 16px; }
.schedule-day.is-open .schedule-day__body { display: block; }
.schedule-entry { padding: 8px 0; border-top: 1px solid var(--border); }
.schedule-entry:first-child { border-top: none; }
.schedule-entry__time { color: var(--accent); font-weight: 700; font-size: 14px; }
.schedule-entry__teacher { color: var(--text-muted); }

@media (max-width: 720px) {
    .hero__title { font-size: 34px; }
    .contacts__grid { grid-template-columns: 1fr; }
    .contacts__map { min-height: 260px; }
}

/* Site footer */
.site-footer { background: #1c1a17; color: #cfc7ba; padding: 56px 32px 24px; }
.site-footer__inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
}
.site-footer .site-header__logo { color: #fff; }
.site-footer .site-header__logo-sub { color: #a89f92; }
.site-footer__tagline { font-size: 13px; color: #a89f92; margin-top: 12px; max-width: 240px; }
.site-footer__col { display: flex; flex-direction: column; gap: 10px; }
.site-footer__title { font-family: var(--font-heading); font-size: 15px; color: #fff; margin-bottom: 4px; }
.site-footer__col a { color: #cfc7ba; text-decoration: none; font-size: 13px; }
.site-footer__col a:hover { color: var(--accent); }
.site-footer__bottom {
    max-width: 1200px; margin: 40px auto 0; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 12px; color: #8a8175; text-align: center;
}

@media (max-width: 900px) {
    .site-footer { padding: 40px 20px 20px; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; }
    .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .site-footer__inner { grid-template-columns: 1fr; }
}

/* ===== Колесо Фортуны — плавающий виджет ===== */
.floating-btn--wheel {
    position: fixed;
    left: 20px;
    top: 15%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 150;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    animation: wheelBtnPulse 2.4s ease-in-out infinite;
}
.floating-btn--wheel span:first-child { font-size: 24px; line-height: 1; }
.floating-btn--wheel__label {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}
@keyframes wheelBtnPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.25), 0 0 0 0 rgba(226,165,58,.5); }
    50% { box-shadow: 0 8px 24px rgba(0,0,0,.25), 0 0 0 10px rgba(226,165,58,0); }
}
@media (max-width: 640px) {
    .floating-btn--wheel { left: 12px; width: 62px; height: 62px; }
    .floating-btn--wheel span:first-child { font-size: 20px; }
    .floating-btn--wheel__label { font-size: 8px; }
}

.wheel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14,14,14,.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.wheel-overlay.is-open { display: flex; }

.wheel-modal {
    position: relative;
    background: var(--bg);
    border-radius: 24px;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.wheel-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
}
.wheel-modal__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.wheel-modal__inner[hidden] { display: none; }
.wheel-modal__title {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--main);
    margin: 0 0 6px;
}
.wheel-modal__subtitle { color: var(--text-muted); font-size: 14px; margin: 0 0 20px; }

.wheel-canvas-wrap { position: relative; width: 260px; height: 260px; margin-bottom: 22px; }
#wheelCanvas {
    width: 260px; height: 260px;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.25));
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
.wheel-arrow {
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 26px solid var(--main);
    z-index: 10;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,.25));
}

.wheel-form { width: 100%; display: flex; flex-direction: column; gap: 12px; }
.wheel-form__input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--card-bg);
    color: var(--text);
}
.wheel-form__input:focus { outline: none; border-color: var(--accent); }
.wheel-form__error { color: #c0392b; font-size: 13px; min-height: 16px; text-align: left; }
.wheel-form__submit {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--main);
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform .15s, opacity .15s;
}
.wheel-form__submit:hover { transform: translateY(-1px); }
.wheel-form__submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.wheel-form__agree {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted);
    text-align: left;
    cursor: pointer;
}
.wheel-form__agree input { margin-top: 2px; accent-color: var(--accent); }

.wheel-spinning__text { font-family: var(--font-body); font-weight: 700; font-size: 17px; color: var(--main); padding: 40px 0; }
.wheel-spinning__dots { display: block; color: var(--accent); font-size: 28px; animation: wheelBlink 1s infinite; margin-top: 8px; }
@keyframes wheelBlink { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }

.wheel-result__emoji { font-size: 56px; margin-bottom: 8px; }
.wheel-result__prize {
    background: var(--accent);
    color: var(--main);
    border-radius: 14px;
    padding: 18px 20px;
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 12px 0 18px;
    width: 100%;
}
.wheel-result__note { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }

/* Стрелка-индикатор кликабельности на карточках Новостей/Направлений/Преподавателей */
.card--news, .card--service, .card--teacher { position: relative; }
.card__arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,.18);
}
.card--teacher .card__arrow { top: 16px; right: 16px; }
