/* ═══════════════════════════════════════════
   Школа Осознанности — Леа Молодой
   Landing Page Styles
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
    /* Colors */
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --sand: #E8DCCF;
    --stone: #D4C5B2;
    --navy: #1B2A4A;
    --navy-light: #2C3E5E;
    --navy-pale: #3D5A7C;
    --gold: #B8934F;
    --gold-light: #C9A96E;
    --gold-pale: #E0CFA8;
    --white: #FFFFFF;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --text-lighter: #999999;
    --rose: #E8D0D0;
    --rose-dark: #D4A0A0;
    --sage: #C5D5C0;
    --sky: #C0D0E0;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-hebrew: 'Noto Serif Hebrew', 'Times New Roman', serif;

    /* Spacing */
    --section-gap: 7rem;
    --container-max: 1100px;
    --container-pad: 2rem;

    /* Misc */
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 8px 32px rgba(27, 42, 74, 0.10);
    --shadow-lg: 0 20px 60px rgba(27, 42, 74, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin-right: 0.75rem;
    vertical-align: middle;
}

.section-label--center {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.25;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    border: none;
    letter-spacing: 0.02em;
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(184, 147, 79, 0.3);
}
.btn--gold:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 24px rgba(184, 147, 79, 0.4);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn--outline-dark {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--stone);
}
.btn--outline-dark:hover {
    background: var(--cream-dark);
    border-color: var(--navy);
}

.btn--telegram {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #2AABEE;
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(42, 171, 238, 0.35);
}
.btn--telegram:hover {
    background: #2299D6;
    box-shadow: 0 6px 28px rgba(42, 171, 238, 0.45);
    transform: translateY(-1px);
}

.btn--full { display: block; width: 100%; }

/* ═══════════════════════ NAV ═══════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
}

/* Default: on top of hero — light text */
.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    opacity: 1;
    transition: opacity var(--transition);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav__links a:hover {
    opacity: 1;
    color: var(--white);
}

.nav__cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    opacity: 1 !important;
    padding: 0.55rem 1.5rem !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}

/* Burger icon — light on hero */
.nav__burger span {
    background: var(--white);
}

/* Scrolled state — dark text on light background */
.nav--scrolled {
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
}

.nav--scrolled .nav__logo {
    color: var(--navy);
    text-shadow: none;
}

.nav--scrolled .nav__links a {
    color: var(--navy);
    opacity: 0.75;
    text-shadow: none;
}

.nav--scrolled .nav__links a:hover {
    opacity: 1;
    color: var(--navy);
}

.nav--scrolled .nav__burger span {
    background: var(--navy);
}

/* Mobile menu overlay (when open on hero) */
.nav--open .nav__links {
    background: rgba(27, 42, 74, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav--open.nav--scrolled .nav__links {
    background: rgba(253, 248, 240, 0.97);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition);
}

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 40%, var(--navy-pale) 100%);
    overflow: hidden;
    padding: 2rem;
}

/* Hero background images cycling */
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.hero__bg--active {
    opacity: 1;
}

/* Hero dots navigation */
.hero__dots {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.hero__dot:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.hero__dot--active {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: scale(1.2);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Dark semi-transparent layer for text readability + subtle gold glow */
    background:
        linear-gradient(180deg, rgba(15, 22, 40, 0.65) 0%, rgba(27, 42, 74, 0.55) 50%, rgba(15, 22, 40, 0.7) 100%),
        radial-gradient(ellipse at 50% 35%, rgba(201, 169, 110, 0.2) 0%, transparent 60%);
}

.hero__pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(232, 208, 208, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(197, 213, 192, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(224, 207, 168, 0.03) 0%, transparent 60%);
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero__hebrew {
    font-family: var(--font-hebrew);
    font-size: 1.5rem;
    color: var(--gold-light);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    direction: rtl;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero__scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.hero__scroll span::after {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 0.5; }
    50% { top: 18px; opacity: 1; }
}

/* ═══════════════════════ ABOUT ═══════════════════════ */
.about {
    padding: var(--section-gap) 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image-frame {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-lg);
}

.about__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sand) 50%, var(--rose) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    opacity: 0.5;
    font-style: italic;
}

.about__accent {
    position: absolute;
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about__accent--1 {
    width: 120px;
    height: 160px;
    background: var(--gold-pale);
    opacity: 0.4;
    top: -1.5rem;
    right: -1.5rem;
}

.about__accent--2 {
    width: 80px;
    height: 80px;
    background: var(--rose);
    opacity: 0.5;
    bottom: -1rem;
    left: -1rem;
}

.about__text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about__text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.about__credentials {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sand);
}

.credential {
    display: flex;
    flex-direction: column;
}

.credential__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.credential__label {
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin-top: 0.3rem;
}

/* ═══════════════════════ QUOTE ═══════════════════════ */
.quote {
    padding: 4rem 0;
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.quote__inner {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote__hebrew {
    font-family: var(--font-hebrew);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
    direction: rtl;
}

.quote__text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.quote__source {
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-bottom: 0.5rem;
}

.quote__comment {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
}

/* ═══════════════════════ COURSES ═══════════════════════ */
.courses {
    padding: var(--section-gap) 0;
}

.courses__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    overflow: hidden;
    position: relative;
}

.course-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.course-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    background: var(--cream-dark);
    color: var(--navy);
    z-index: 1;
}

.course-card--primary .course-card__badge {
    background: var(--gold-pale);
    color: var(--navy);
}

.course-card--secondary .course-card__badge {
    background: var(--rose);
    color: var(--navy);
}

.course-card--accent .course-card__badge {
    background: var(--sage);
    color: var(--navy);
}

.course-card__content {
    padding: 2rem 1.75rem 1.5rem;
    flex: 1;
}

.course-card--primary {
    border-top: 4px solid var(--gold);
}

.course-card--secondary {
    border-top: 4px solid var(--rose-dark);
}

.course-card--accent {
    border-top: 4px solid var(--sage);
}

.course-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.course-card__subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.course-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.course-card__features {
    margin-bottom: 1.5rem;
}

.course-card__features li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.course-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.course-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-lighter);
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}

.course-card__action {
    padding: 0 1.75rem 1.75rem;
}

/* ═══════════════════════ TELEGRAM ═══════════════════════ */
.telegram {
    padding: var(--section-gap) 0;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.telegram::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.telegram .section-label {
    color: var(--gold-light);
}

.telegram .section-label::before {
    background: var(--gold-light);
}

.telegram__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.telegram__text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.telegram__text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.telegram__features li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.telegram__features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-light);
}

.telegram__text .btn--telegram {
    margin-top: 2rem;
}

.telegram__subscribers {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.75rem;
}

/* Telegram mockup */
.telegram__mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 380px;
    margin: 0 auto;
}

.telegram__mockup-header {
    background: #2AABEE;
    color: var(--white);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.telegram__mockup-body {
    padding: 1rem;
    background: #F0F4F8;
}

.tg-msg {
    background: var(--white);
    border-radius: 12px 12px 12px 4px;
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.6rem;
    max-width: 90%;
    position: relative;
}

.tg-msg p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.tg-msg p:last-of-type {
    margin-bottom: 0.25rem;
}

.tg-msg__time {
    display: block;
    text-align: right;
    font-size: 0.65rem;
    color: var(--text-lighter);
}

/* ═══════════════════════ CONTACT ═══════════════════════ */
.contact {
    padding: var(--section-gap) 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact__info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.contact__info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact__socials {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact__social {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition);
    border: 1px solid var(--sand);
    color: var(--text);
}

.contact__social:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.contact__social--tg:hover { background: #2AABEE; color: white; border-color: #2AABEE; }
.contact__social--ig:hover { background: #E4405F; color: white; border-color: #E4405F; }
.contact__social--yt:hover { background: #FF0000; color: white; border-color: #FF0000; }

.contact__form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--cream);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 147, 79, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.contact__form .btn {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    padding: 1rem;
}

.contact__note {
    font-size: 0.7rem;
    color: var(--text-lighter);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--navy);
    color: var(--white);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__brand h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer__brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer__links h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer__links a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__hebrew {
    font-family: var(--font-hebrew);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    direction: rtl;
}

.footer__quote p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    line-height: 1.6;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 1rem;
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 900px) {
    :root {
        --section-gap: 4rem;
    }

    .nav__links {
        display: none;
    }

    .nav--open .nav__links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 248, 240, 0.97);
        backdrop-filter: blur(12px);
        padding: 1.5rem;
        box-shadow: var(--shadow-md);
        gap: 1rem;
    }

    .nav__burger {
        display: flex;
    }

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

    .about__image {
        max-width: 300px;
        margin: 0 auto;
    }

    .courses__grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

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

    .telegram__mockup {
        max-width: 300px;
    }

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

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

@media (max-width: 500px) {
    .hero__actions {
        flex-direction: column;
    }

    .about__credentials {
        flex-direction: column;
        gap: 1rem;
    }

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

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact__form {
        padding: 1.5rem;
    }
}

/* ═══════════════════════ ANIMATIONS ═══════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.7s var(--transition) forwards;
}

.hero__title,
.hero__subtitle,
.hero__tagline,
.hero__actions,
.hero__hebrew {
    animation: fadeInUp 0.8s var(--transition) forwards;
}

.hero__hebrew       { animation-delay: 0.0s; }
.hero__title        { animation-delay: 0.1s; }
.hero__subtitle     { animation-delay: 0.25s; }
.hero__tagline      { animation-delay: 0.35s; }
.hero__actions      { animation-delay: 0.5s; }
