@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #0B0B0B;
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
}

.hero-emblem {
    width: 240px;
    height: 240px;
    object-fit: cover;
    display: block;
    margin: 0 auto 34px;
    border-radius: 50%;
    filter: saturate(0.88) contrast(0.96) drop-shadow(0 0 28px rgba(212, 175, 55, 0.16));
    opacity: 0.94;
}

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 40px 40px;
    text-align: center;
    background-color: #0B0B0B;
}

.hero-code-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient( circle at center, rgba(11, 11, 11, 0) 0%, rgba(11, 11, 11, 0.15) 48%, rgba(11, 11, 11, 0.75) 100% ), radial-gradient( circle at 12% 18%, rgba(212, 175, 55, 0.055), transparent 24% ), radial-gradient( circle at 88% 82%, rgba(212, 175, 55, 0.05), transparent 26% ), linear-gradient( to bottom, rgba(212, 175, 55, 0.055), transparent 18%, transparent 82%, rgba(212, 175, 55, 0.04) );
}

.hero-code-vignette::before,
.hero-code-vignette::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-color: rgba(212, 175, 55, 0.10);
    border-style: solid;
    opacity: 0.38;
}

.hero-code-vignette::before {
    top: 115px;
    left: 72px;
    border-width: 1px 0 0 1px;
    border-radius: 42px 0 0 0;
    box-shadow: inset 22px 22px 0 -21px rgba(212, 175, 55, 0.08), inset 44px 44px 0 -43px rgba(212, 175, 55, 0.045);
}

.hero-code-vignette::after {
    right: 72px;
    bottom: 70px;
    border-width: 0 1px 1px 0;
    border-radius: 0 0 42px 0;
    box-shadow: inset -22px -22px 0 -21px rgba(212, 175, 55, 0.08), inset -44px -44px 0 -43px rgba(212, 175, 55, 0.045);
}
.hero-content {
    max-width: 900px;
}


h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.5rem;
    color: #B8B8B8;
    line-height: 1.8;
    margin-bottom: 50px;
}

.small-text {
    margin-top: -20px;
    margin-bottom: 40px;
    color: #888;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    background-color: #D4AF37;
    color: #000;
    text-decoration: none;
    padding: 18px 42px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.25s ease;
}

.hero-line {
    width: 180px;
    height: 1px;
    background: #D4AF37;
    margin: 35px auto;
    opacity: 0.7;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient( rgba(212,175,55,0.03) 1px, transparent 1px );
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
    background: rgba(0,0,0,0.65);
    border-bottom: 1px solid rgba(212,175,55,0.08);
}

.section {
    padding: 140px 60px;
}

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

/* Global link reset */
a,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 72px;
    background: rgba(11, 11, 11, 0.78);
    border-bottom: 1px solid rgba(212, 175, 55, 0.10);
    z-index: 1000;
}

/* Brand */
.site-brand {
    justify-self: start;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: #F5F5F5 !important;
    text-decoration: none !important;
}

/* Center navigation */
.site-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 42px;
}

.site-nav a {
    color: #B8B8B8 !important;
    text-decoration: none !important;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.site-nav a:hover {
    color: #D4AF37 !important;
}

/* Language dropdown */
.site-language {
    justify-self: end;
    position: relative;
}

.language-dropdown {
    position: relative;
}

.language-dropdown summary {
    list-style: none;
    cursor: pointer;
    color: #B8B8B8 !important;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.language-dropdown summary:hover {
    color: #D4AF37 !important;
}

.language-dropdown summary::-webkit-details-marker {
    display: none;
}

.language-menu {
    position: absolute;
    top: 34px;
    right: 0;
    min-width: 96px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(11, 11, 11, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.language-menu a {
    color: #B8B8B8 !important;
    text-decoration: none !important;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.language-menu a:hover {
    color: #D4AF37 !important;
}

.section-placeholder {
    min-height: 70vh;
    padding: 140px 72px;
    scroll-margin-top: 100px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

/* Shared sections */

.section {
    position: relative;
    padding: 140px 72px;
    background: #0B0B0B;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    scroll-margin-top: 100px;
}

.section-inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: #D4AF37;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

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

.section-heading h2,
.programs-intro h2,
.contact-inner h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.1;
    color: #F5F5F5;
}

.section-heading p,
.programs-intro p,
.contact-inner p {
    margin-top: 24px;
    color: #B8B8B8;
    font-size: 1.05rem;
    line-height: 1.85;
}

/* Programs section */

.programs-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.programs-intro {
    max-width: 620px;
}

    .programs-intro h2 {
        margin: 0;
        font-family: 'Playfair Display', serif;
        font-size: 4.2rem;
        font-weight: 600;
        line-height: 1;
        color: #F5F5F5;
    }

    .programs-intro p {
        margin-top: 26px;
        color: #B8B8B8;
        font-size: 1.04rem;
        line-height: 1.9;
    }

.program-main-card {
    position: relative;
    padding: 54px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012) );
    border: 1px solid rgba(212, 175, 55, 0.30);
    border-radius: 34px;
    box-shadow: 0 0 70px rgba(212, 175, 55, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    overflow: hidden;
}

    .program-main-card::before {
        content: "❦";
        position: absolute;
        top: 26px;
        right: 34px;
        font-family: 'Playfair Display', serif;
        font-size: 4rem;
        color: rgba(212, 175, 55, 0.10);
        pointer-events: none;
    }

.card-label {
    display: inline-block;
    margin-bottom: 30px;
    color: #D4AF37;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.program-main-card h3 {
    margin: 0 0 22px;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #F5F5F5;
}

.program-main-card p {
    margin: 0 0 28px;
    color: #B8B8B8;
    font-size: 1rem;
    line-height: 1.85;
}

.program-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .program-list li {
        position: relative;
        padding: 16px 0 16px 34px;
        color: #F5F5F5;
        line-height: 1.6;
        border-bottom: 1px solid rgba(212, 175, 55, 0.10);
    }

        .program-list li:last-child {
            border-bottom: none;
        }

        .program-list li::before {
            content: "✦";
            position: absolute;
            left: 0;
            top: 16px;
            color: #D4AF37;
            font-size: 0.85rem;
        }

.text-link {
    display: inline-block;
    margin-top: 34px;
    color: #D4AF37 !important;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

    .text-link:hover {
        opacity: 0.72;
    }

.future-programs {
    margin-top: 72px;
    max-width: 760px;
    text-align: center;
}

.future-programs-line {
    width: 120px;
    height: 1px;
    margin: 0 auto 28px;
    background: rgba(212, 175, 55, 0.65);
}

.future-programs p {
    color: #8F8F8F;
    line-height: 1.8;
    font-size: 0.98rem;
}
/* Process */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    padding: 36px 30px;
    background: rgba(255, 255, 255, 0.018);
    border-top: 1px solid rgba(212, 175, 55, 0.38);
    transition: 0.3s ease;
}

    .process-step:hover {
        background: rgba(255, 255, 255, 0.035);
    }

.step-number {
    display: block;
    margin-bottom: 30px;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
}

.process-step h3 {
    margin: 0 0 16px;
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: #F5F5F5;
}

.process-step p {
    margin: 0;
    color: #B8B8B8;
    line-height: 1.75;
}

/* Packages */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.package-card {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
}

.package-featured {
    border-color: rgba(212, 175, 55, 0.58);
    box-shadow: 0 0 55px rgba(212, 175, 55, 0.10);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 18px;
    background: #D4AF37;
    color: #0B0B0B;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.package-card h3 {
    margin: 14px 0 24px;
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: #F5F5F5;
}

.package-lessons {
    color: #B8B8B8;
    font-size: 0.88rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.package-price {
    margin: 22px 0;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-size: 3.1rem;
    font-weight: 600;
}

.package-card p {
    margin: 0;
    color: #B8B8B8;
    line-height: 1.7;
    min-height: 64px;
}

.package-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 13px 24px;
    min-width: 170px;
    color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.035);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.package-link:hover {
    color: #0B0B0B !important;
    background: #D4AF37;
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.16);
}

.package-featured .package-link {
    color: #0B0B0B !important;
    background: #D4AF37;
    border-color: #D4AF37;
    box-shadow: 0 0 26px rgba(212, 175, 55, 0.14);
}

.package-featured .package-link:hover {
    background: #E0BE46;
    border-color: #E0BE46;
    box-shadow: 0 0 36px rgba(212, 175, 55, 0.24);
}

/* Advantages */

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.advantage-card {
    padding: 42px;
    background: rgba(255, 255, 255, 0.022);
    border-left: 1px solid rgba(212, 175, 55, 0.45);
    transition: 0.3s ease;
}

    .advantage-card:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .advantage-card h3 {
        margin: 0 0 18px;
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: #F5F5F5;
    }

    .advantage-card p {
        margin: 0;
        color: #B8B8B8;
        line-height: 1.8;
    }

/* Reviews */

.reviews-placeholder {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.20);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.018);
}

.ornament {
    margin-bottom: 24px;
    color: #D4AF37;
    font-size: 2rem;
    opacity: 0.7;
}

.reviews-placeholder p {
    margin: 0;
    color: #B8B8B8;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Contact */

.contact-section {
    padding-bottom: 160px;
}

.contact-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.contact-inner .cta-button {
    margin-top: 40px;
}






.currency-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin: -24px auto 42px;
    color: #8F8F8F;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.currency-buttons {
    display: flex;
    gap: 10px;
}

.currency-button {
    padding: 10px 18px;
    color: #B8B8B8;
    background: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: 0.25s ease;
}

    .currency-button:hover {
        color: #D4AF37;
        border-color: rgba(212, 175, 55, 0.42);
    }

    .currency-button.is-active {
        color: #0B0B0B;
        background: #D4AF37;
        border-color: #D4AF37;
        box-shadow: 0 0 28px rgba(212, 175, 55, 0.14);
    }

.package-prices {
    margin: 22px 0;
}

.package-price {
    margin: 0;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-size: 3.1rem;
    font-weight: 600;
}

.package-price-alt {
    margin-top: 8px;
    color: #B8B8B8;
    font-size: 0.88rem;
    letter-spacing: 1.4px;
}

.currency-note {
    max-width: 760px;
    margin: 0 auto 56px;
    color: #8F8F8F;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.65;
}

.trial-card {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 34px;
    padding: 38px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background: linear-gradient( 145deg, rgba(212, 175, 55, 0.075), rgba(255, 255, 255, 0.018) );
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 34px;
    box-shadow: 0 0 54px rgba(212, 175, 55, 0.07), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    overflow: hidden;
}

    .trial-card::before {
        content: "❦";
        position: absolute;
        right: 34px;
        top: 24px;
        font-family: 'Playfair Display', serif;
        font-size: 4.4rem;
        color: rgba(212, 175, 55, 0.08);
        pointer-events: none;
    }

.trial-card-content {
    position: relative;
    z-index: 1;
    max-width: 580px;
}

.trial-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #D4AF37;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.trial-card h3 {
    margin: 0 0 12px;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #F5F5F5;
}

.trial-card p {
    margin: 0;
    color: #D8D8D8;
    font-size: 1rem;
    line-height: 1.75;
}

.trial-note {
    margin-top: 18px;
    color: #8F8F8F;
    font-size: 0.9rem;
    line-height: 1.6;
}

.trial-link {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    color: #0B0B0B !important;
    background: #D4AF37;
    border-color: #D4AF37;
    box-shadow: 0 0 26px rgba(212, 175, 55, 0.14);
}

.trial-card.is-selected {
    border-color: rgba(212, 175, 55, 0.70);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.13), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}


.programs-stacked {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.programs-stacked .programs-intro {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
}

.program-cards {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.program-main-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-main-card .text-link {
    margin-top: auto;
}

.program-modern-russian-card {
    border-color: rgba(212, 175, 55, 0.24);
}

.program-imperial-card {
    border-color: rgba(212, 175, 55, 0.32);
    background: linear-gradient( 145deg, rgba(212, 175, 55, 0.045), rgba(255, 255, 255, 0.018) );
}

.program-imperial-card .card-label {
    color: #D4AF37;
}

.package-course-switcher {
    max-width: 760px;
    margin: 0 auto 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #8F8F8F;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.package-course-buttons {
    display: flex;
    gap: 10px;
}

.package-course-button {
    padding: 10px 20px;
    color: #B8B8B8;
    background: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s ease;
}

.package-course-button:hover {
    color: #D4AF37;
    border-color: rgba(212, 175, 55, 0.42);
}

.package-course-button.is-active {
    color: #0B0B0B;
    background: #D4AF37;
    border-color: #D4AF37;
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.14);
}

.packages-group {
    display: none;
}

.packages-group.is-active {
    display: grid;
}


.upcoming-section {
    position: relative;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    max-width: 1280px;
    margin: 0 auto;
}

.upcoming-card {
    position: relative;
    min-width: 0;
    padding: 46px 48px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.022), rgba(212, 175, 55, 0.035) );
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 34px;
    box-shadow: 0 0 44px rgba(212, 175, 55, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.018);
    overflow: hidden;
}

.upcoming-card::before {
    content: "❦";
    position: absolute;
    right: 34px;
    top: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    color: rgba(212, 175, 55, 0.07);
    pointer-events: none;
}

.upcoming-card h3 {
    position: relative;
    z-index: 1;
    margin: 22px 0 20px;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    line-height: 1.05;
    font-weight: 600;
    color: #F5F5F5;
}

.upcoming-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 26px;
    color: #D8D8D8;
    font-size: 1rem;
    line-height: 1.75;
}

.upcoming-status {
    position: relative;
    z-index: 1;
    margin-bottom: 26px;
    color: #D4AF37;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}


.contact-hint {
    width: 100%;
    max-width: 620px;
    margin: 34px auto 28px;
    padding: 28px 32px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.022), rgba(212, 175, 55, 0.035) );
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 28px;
    box-shadow: 0 0 42px rgba(212, 175, 55, 0.045), inset 0 0 0 1px rgba(255, 255, 255, 0.018);
    text-align: left;
}

.contact-hint-title {
    margin-bottom: 18px;
    color: #D4AF37;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.contact-hint ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-hint li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #D8D8D8;
    font-size: 0.98rem;
    line-height: 1.6;
}

.contact-hint li:last-child {
    margin-bottom: 0;
}

.contact-hint li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0.1em;
    color: rgba(212, 175, 55, 0.85);
    font-size: 0.7rem;
}

/*MOBILE SECTION*/

@media (max-width: 760px) {
    .contact-hint {
        margin: 30px auto 26px;
        padding: 26px 22px;
        border-radius: 24px;
    }

    .contact-hint-title {
        text-align: center;
        font-size: 0.68rem;
        letter-spacing: 2px;
    }

    .contact-hint li {
        font-size: 0.93rem;
        line-height: 1.65;
    }
}

@media (max-width: 900px) {
    .program-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .upcoming-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .upcoming-card {
        padding: 36px 28px;
        border-radius: 28px;
    }

        .upcoming-card h3 {
            font-size: 2.15rem;
        }
}

@media (max-width: 1100px) {
    .upcoming-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .programs-stacked {
        gap: 42px;
    }

    .program-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 760px) {
    .package-course-switcher {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 38px;
    }

    .package-course-buttons {
        width: 100%;
        justify-content: center;
    }

    .package-course-button {
        flex: 1;
        max-width: 150px;
        padding: 11px 12px;
        font-size: 0.66rem;
    }
}


/*@media (max-width: 760px) {
    .hero-emblem {
        width: 96px;
        height: 96px;
        margin-bottom: 26px;
    }

    .hero h1 {
        font-size: 3.2rem;
        line-height: 1;
    }*/
/*}*/

@media (max-width: 760px) {
    .hero {
        min-height: 100svh;
        padding: 96px 22px 72px;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-emblem {
        width: 88px;
        height: 88px;
        margin-bottom: 26px;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 0.95;
        letter-spacing: 1px;
        margin-bottom: 24px;
    }

    .subtitle {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-line {
        width: 100px;
        margin: 28px auto;
    }

    .small-text {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 34px;
        font-size: 0.62rem;
        letter-spacing: 3px;
        line-height: 1.8;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 15px 22px;
        font-size: 0.9rem;
    }
}

/*@media (max-width: 980px) {
    .site-header {
        height: 72px;
        padding: 0 22px;
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .site-brand {
        justify-self: start;
        font-size: 1.05rem;
    }

    .site-nav {
        display: none;
    }

    .site-language {
        justify-self: end;
    }
}*/

@media (max-width: 900px) {
    .section {
        padding: 92px 22px;
    }

    .section-inner {
        max-width: 100%;
    }

    .section-heading {
        max-width: 100%;
        margin-bottom: 52px;
    }

        .section-heading h2,
        .programs-intro h2,
        .contact-inner h2 {
            font-size: 2.8rem;
            line-height: 1;
        }

        .section-heading p,
        .programs-intro p,
        .contact-inner p {
            font-size: 0.98rem;
            line-height: 1.8;
        }

    .programs-layout,
    .process-grid,
    .packages-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .programs-layout {
        gap: 42px;
    }

    .programs-intro {
        max-width: 100%;
    }

    .program-main-card,
    .package-card,
    .advantage-card,
    .reviews-placeholder {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .program-main-card {
        padding: 32px 24px;
        border-radius: 26px;
    }

        .program-main-card h3 {
            font-size: 2.1rem;
            line-height: 1;
        }

    .program-list li {
        padding-left: 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 760px) {
    .packages-grid {
        gap: 24px;
    }

    .package-card {
        padding: 36px 26px;
        min-height: auto;
    }

        .package-card p {
            min-height: auto;
        }

    .package-price {
        font-size: 2.7rem;
    }

    .package-link {
        width: 100%;
        max-width: 230px;
    }

    .popular-badge {
        top: -14px;
        white-space: nowrap;
    }
}

@media (max-width: 760px) {
    .process-step {
        padding: 32px 26px;
    }

    .step-number {
        font-size: 2.1rem;
        margin-bottom: 22px;
    }

    .process-step h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 760px) {
    .reviews-placeholder {
        padding: 42px 24px;
        border-radius: 24px;
    }

    .contact-section {
        padding: 100px 22px 120px;
    }

    .selected-package {
        border-radius: 24px;
        padding: 16px 18px;
        font-size: 0.86rem;
    }
}

/*@media (max-width: 980px) {
    .site-header {
        height: 70px;
        padding: 0 18px;
        grid-template-columns: auto 1fr auto;
    }

    .site-brand {
        font-size: 1.08rem;
    }

    .site-actions {
        grid-column: 3;
        justify-self: end;
        gap: 18px;
    }

    .site-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px;
        background: rgba(11, 11, 11, 0.97);
        border-bottom: 1px solid rgba(212, 175, 55, 0.14);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: 0.28s ease;
        z-index: 999;
    }

        .site-nav.is-open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .site-nav a {
            padding: 18px 6px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.08);
            font-size: 0.78rem;
            letter-spacing: 2.4px;
            text-align: center;
        }

            .site-nav a:last-child {
                border-bottom: none;
            }

    .mobile-menu-toggle {
        position: relative;
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: transparent;
        border: 1px solid rgba(212, 175, 55, 0.22);
        border-radius: 999px;
        cursor: pointer;
    }

        .mobile-menu-toggle span,
        .mobile-menu-toggle::before,
        .mobile-menu-toggle::after {
            content: "";
            position: absolute;
            width: 15px;
            height: 1px;
            background: #D4AF37;
            transition: 0.25s ease;
        }

        .mobile-menu-toggle span {
            transform: translateY(0);
        }

        .mobile-menu-toggle::before {
            transform: translateY(-5px);
        }

        .mobile-menu-toggle::after {
            transform: translateY(5px);
        }

        .mobile-menu-toggle.is-open span {
            opacity: 0;
        }

        .mobile-menu-toggle.is-open::before {
            transform: rotate(45deg);
        }

        .mobile-menu-toggle.is-open::after {
            transform: rotate(-45deg);
        }
}*/

@media (max-width: 980px) {
    .site-header {
        height: 70px;
        padding: 0 18px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .site-brand {
        grid-column: 1;
        justify-self: start;
        font-size: 1.08rem;
    }

    .site-actions {
        grid-column: 3;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .site-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 22px;
        background: rgba(11, 11, 11, 0.985);
        border-bottom: 1px solid rgba(212, 175, 55, 0.16);
        transform: translateY(-130%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.28s ease;
        z-index: 999;
    }

    body.menu-open .site-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav a {
        padding: 17px 4px;
        color: #B8B8B8 !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.08);
        font-size: 0.78rem;
        letter-spacing: 2.2px;
        text-align: center;
        text-transform: uppercase;
    }

        .site-nav a:last-child {
            border-bottom: none;
        }

    .mobile-menu-toggle {
        position: relative;
        width: 36px;
        height: 36px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: transparent;
        border: 1px solid rgba(212, 175, 55, 0.35);
        border-radius: 999px;
        cursor: pointer;
        z-index: 1001;
    }

        .mobile-menu-toggle span,
        .mobile-menu-toggle::before,
        .mobile-menu-toggle::after {
            content: "";
            position: absolute;
            width: 15px;
            height: 1px;
            background: #D4AF37;
            transition: 0.25s ease;
        }

        .mobile-menu-toggle span {
            transform: translateY(0);
        }

        .mobile-menu-toggle::before {
            transform: translateY(-5px);
        }

        .mobile-menu-toggle::after {
            transform: translateY(5px);
        }

    body.menu-open .mobile-menu-toggle span {
        opacity: 0;
    }

    body.menu-open .mobile-menu-toggle::before {
        transform: rotate(45deg);
    }

    body.menu-open .mobile-menu-toggle::after {
        transform: rotate(-45deg);
    }
}



/* ============================= */
/* MOBILE SECTIONS FIX */
/* ============================= */

@media (max-width: 760px) {
    .section {
        width: 100%;
        max-width: 100%;
        padding: 90px 20px !important;
        overflow: hidden;
    }

    .section-inner {
        width: 100%;
        max-width: 100%;
    }

    .programs-layout,
    .process-grid,
    .packages-grid,
    .advantages-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 28px;
        width: 100%;
    }

    .programs-intro {
        width: 100%;
        max-width: 100%;
    }

        .programs-intro h2,
        .section-heading h2,
        .contact-inner h2 {
            max-width: 100%;
            font-size: clamp(2.35rem, 12vw, 3.05rem) !important;
            line-height: 0.95 !important;
            overflow-wrap: break-word;
            word-break: normal;
        }

        .programs-intro p,
        .section-heading p,
        .contact-inner p {
            max-width: 100%;
            font-size: 0.98rem;
            line-height: 1.75;
        }

    .program-main-card,
    .package-card,
    .advantage-card,
    .reviews-placeholder {
        width: 100%;
        max-width: 100%;
        padding: 32px 24px !important;
    }

        .program-main-card h3 {
            font-size: 2.1rem !important;
            line-height: 1;
        }

    .program-list li {
        padding-left: 28px;
        font-size: 0.94rem;
    }

    .process-step {
        width: 100%;
        max-width: 100%;
        padding: 32px 24px;
    }

    .package-card p {
        min-height: auto !important;
    }

    .package-link {
        width: 100%;
        max-width: 230px;
    }

    .popular-badge {
        white-space: nowrap;
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: 100svh;
        padding: 96px 18px 70px !important;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-emblem {
        width: 168px;
        height: 168px;
        margin-bottom: 26px;
    }

    .hero h1,
    .hero .hero-content h1 {
        max-width: 100%;
        font-size: clamp(2.85rem, 14vw, 3.55rem) !important;
        line-height: 0.95 !important;
        letter-spacing: 1px;
        margin-left: auto;
        margin-right: auto;
        overflow-wrap: break-word;
    }

    .subtitle {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.05rem;
        line-height: 1.65;
    }

    .small-text {
        max-width: 310px;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.62rem;
        letter-spacing: 2.2px;
        line-height: 1.8;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 760px) {
    .programs-section {
        overflow: hidden;
    }

    .programs-intro h2 {
        font-size: clamp(2.65rem, 13vw, 3.15rem) !important;
        line-height: 0.92 !important;
        letter-spacing: 0.3px;
        max-width: 100%;
    }

    .programs-intro p {
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .program-main-card {
        max-width: 100%;
        overflow: hidden;
    }
}

.mobile-title {
    display: none;
}

@media (max-width: 760px) {
    .desktop-title {
        display: none;
    }

    .mobile-title {
        display: inline;
    }

    .programs-title {
        font-size: clamp(2.6rem, 13vw, 3.2rem) !important;
        line-height: 0.95 !important;
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .site-header {
        height: 70px;
        padding: 0 18px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        z-index: 5000;
    }

    .site-brand {
        grid-column: 1;
        justify-self: start;
        font-size: 1.08rem;
    }

    .site-actions {
        grid-column: 3;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .site-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 22px;
        background: rgba(11, 11, 11, 0.985);
        border-bottom: 1px solid rgba(212, 175, 55, 0.16);
        transform: translateY(-130%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.28s ease;
        z-index: 4999;
    }

    body.menu-open .site-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav a {
        padding: 17px 4px;
        color: #B8B8B8 !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.08);
        font-size: 0.78rem;
        letter-spacing: 2.2px;
        text-align: center;
        text-transform: uppercase;
    }

        .site-nav a:last-child {
            border-bottom: none;
        }

    .mobile-menu-toggle {
        position: relative;
        width: 36px;
        height: 36px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: transparent;
        border: 1px solid rgba(212, 175, 55, 0.35);
        border-radius: 999px;
        cursor: pointer;
        z-index: 5001;
    }

        .mobile-menu-toggle span,
        .mobile-menu-toggle::before,
        .mobile-menu-toggle::after {
            content: "";
            position: absolute;
            width: 15px;
            height: 1px;
            background: #D4AF37;
            transition: 0.25s ease;
        }

        .mobile-menu-toggle span {
            transform: translateY(0);
        }

        .mobile-menu-toggle::before {
            transform: translateY(-5px);
        }

        .mobile-menu-toggle::after {
            transform: translateY(5px);
        }

    body.menu-open .mobile-menu-toggle span {
        opacity: 0;
    }

    body.menu-open .mobile-menu-toggle::before {
        transform: rotate(45deg);
    }

    body.menu-open .mobile-menu-toggle::after {
        transform: rotate(-45deg);
    }
}

@media (max-width: 760px) {
    .currency-switcher {
        flex-direction: column;
        gap: 14px;
        margin: -18px auto 34px;
    }

    .currency-buttons {
        width: 100%;
        justify-content: center;
    }

    .currency-button {
        flex: 1;
        max-width: 105px;
        padding: 11px 10px;
        font-size: 0.66rem;
    }

    .trial-card {
        margin-bottom: 30px;
        padding: 32px 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 28px;
    }

        .trial-card h3 {
            font-size: 2.05rem;
        }

    .trial-link {
        width: 100%;
        max-width: 270px;
    }

    .currency-note {
        margin-bottom: 44px;
        font-size: 0.82rem;
    }

    .package-price {
        font-size: 2.7rem;
    }
}

@media (max-width: 760px) {
    .program-cards {
        gap: 24px;
    }

    .program-secondary-card {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .program-cards {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
        align-items: start;
    }
}

@media (max-width: 1199px) {
    .program-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .package-course-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .package-course-button {
        width: 100%;
        max-width: none;
        padding: 12px 10px;
        font-size: 0.64rem;
        letter-spacing: 1px;
    }
}

/* ============================= */
/* FINAL PACKAGE GROUP VISIBILITY FIX */
/* ============================= */

.packages-group {
    display: none !important;
}

    .packages-group.is-active {
        display: grid !important;
    }

@media (max-width: 760px) {
    .packages-group {
        display: none !important;
    }

        .packages-group.is-active {
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 24px !important;
        }
}