/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Глобально отключаем горизонтальный скролл */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 4px;
}

.lang-btn {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: #B6FF25;
    color: #121212;
}

.lang-btn:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05);
    color: #121212;
}

:root {
    --green-lime: #ADFF2F;
    --purple-dark: #4B0082;
    --grey-light: #E0E0E0;
    --grey-medium: #C0C0C0;
    --grey-dark: #808080;
    --grey-darker: #2A2A2A;
    --black: #000000;
    --white: #FFFFFF;
    --blue-check: #0066CC;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Hero Section - Magazine Cover Style */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    box-sizing: border-box;
    background-image: url('/photos/IMG_1506.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    background: linear-gradient(120deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 1;
    backdrop-filter: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    z-index: 1;
}

/* Navigation внутри hero */
.hero-nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px 0;
}

.hero-nav-left {
    display: flex;
    gap: 26px;
    align-items: flex-start;
}

.hero-nav-link {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
    padding-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.hero-nav-link.active {
    color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px 80px;
    max-width: 600px;
    margin-left: 15%;
}

.hero-label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-subheading {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* About Section - О Роберте - Достижения сезона 2025 (Slide Style) */
.about-section {
    padding: 48px 40px;
    background: #F5F5F6;
}

.about-slide-container {
    max-width: 1200px;
    margin: 48px auto 0;
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    padding: 48px 52px;
}

/* Верхний ряд: 3 колонки */
.about-top-row {
    display: grid;
    grid-template-columns: 310px 1fr 255px;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 34px;
}

/* Левая колонка: фото */
.about-left {
    width: 100%;
}

.about-image {
    width: 100%;
    max-width: 310px;
    height: 370px;
    border-radius: 22px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

/* Центральная колонка: заголовок + достижения */
.about-center {
    display: flex;
    flex-direction: column;
}

.about-header {
    margin-bottom: 24px;
}

.about-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 4px;
    line-height: 1.1;
}

.about-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #121212;
    margin-top: 4px;
}

.achievements-cards {
    display: flex;
    flex-direction: row;
    gap: 17px;
    margin-bottom: 12px;
}

.achievement-card.dark {
    background: #151518;
    color: #FFFFFF;
    padding: 20px 22px;
    border-radius: 26px;
    min-height: 120px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.achievement-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 70px;
    justify-content: flex-start;
}

.achievement-place {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0;
}

.achievement-event {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.achievement-card--long .achievement-event {
    max-width: 180px;
}

.achievement-date {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}

.play-icon {
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121212;
    font-size: 16px;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}

.play-icon:hover {
    transform: translateY(-1px);
}

.video-note {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 13px;
    color: #444444;
    margin-top: 12px;
    line-height: 1.5;
}

/* Правая колонка: зеленый блок */
.about-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.green-highlight-block {
    width: 100%;
    max-width: 255px;
    min-height: 220px;
    background: #B6FF25;
    border-radius: 30px;
    padding: 20px 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.green-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    padding-left: 20px;
}

.green-highlight-item::before {
    content: "•";
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 16px;
    color: #121212;
    position: absolute;
    left: 0;
    top: 2px;
}

.green-highlight-item span {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #121212;
    line-height: 1.4;
    flex: 1;
}

.green-highlight-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 16px 0;
}

/* Нижние инфо-карточки */
.info-text-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 34px;
}

.info-text-card {
    background: #F3F3F4;
    border-radius: 18px;
    padding: 18px 20px;
}

.info-text-card p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #202022;
    margin: 0;
}

/* Plans Section - 2 Column Layout */
.plans-section {
    padding: 60px 0;
    position: relative;
}

.plans-section.season-plan {
    background-image: url('/photos/IMG_2846.jpg');
    background-size: cover;
    background-position: center;
}

.plan-section {
    max-width: 1060px;
    margin: 48px auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    padding: 44px 38px 40px;
}

.plans-main-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 39px;
    font-weight: 800;
    color: #121212;
    margin-bottom: 8px;
    line-height: 1.2;
}

.plans-calendar-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14px;
    color: #666666;
    margin-bottom: 28px;
}

.plan-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.plan-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-tab {
    height: 46px;
    border-radius: 14px;
    background: #C8FF28;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #121212;
}

.plan-box {
    background: #F3F3F4;
    border-radius: 20px;
    padding: 20px 26px;
}

.plan-box h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 4px;
}

.plan-sub {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14px;
    color: #5D5D64;
    margin-bottom: 12px;
    margin-top: 0;
}

.event-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14.5px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.event-row:last-child {
    border-bottom: none;
}

.event-name {
    font-weight: 500;
    color: #1A1A1A;
}

.event-date {
    font-weight: 600;
    color: #000;
    letter-spacing: 0.2px;
}

/* International program styles */
.event-row-international {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.event-row-international:last-child {
    border-bottom: none;
}

.event-row-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14.5px;
}

.event-location {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-weight: 400;
    color: #666666;
    font-size: 13px;
    margin-top: 2px;
}

.plan-footnote {
    margin-top: 26px;
    background: #1C1C1F;
    color: #fff;
    border-radius: 14px;
    padding: 10px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 13px;
    display: inline-block;
}

/* Media Section - Slide Style */
.media-section {
    padding: 48px 40px;
    background: #FFFFFF;
}

.media-slide-container {
    max-width: 1180px;
    margin: 48px auto 0;
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    padding: 48px 52px;
}

.media-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 39px;
    font-weight: 800;
    color: #121212;
    margin-bottom: 6px;
    line-height: 1.2;
}

.media-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 18px;
    color: #555555;
    margin-top: 6px;
    margin-bottom: 28px;
}

.media-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.media-text {
    display: flex;
    flex-direction: column;
}

.media-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.media-box {
    background: #F5F5F6;
    border-radius: 20px;
    padding: 20px 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.media-box h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #121212;
    margin-bottom: 10px;
}

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

.media-list li {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 15px;
    color: #121212;
    margin-bottom: 8px;
    line-height: 1.6;
}

.media-list li:last-child {
    margin-bottom: 0;
}

.media-list li strong {
    font-weight: 600;
    color: #121212;
}

.media-social {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.media-social li {
    margin-bottom: 8px;
}

.media-social li:last-child {
    margin-bottom: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #121212;
    transition: opacity 0.2s ease;
    border-bottom: 2px solid #EAEAEA;
    padding-bottom: 2px;
}

.social-link:hover {
    opacity: 0.7;
}

.social-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    stroke: currentColor;
    fill: none;
}

.social-link strong {
    font-weight: 600;
    color: #121212;
}

.media-bottom {
    margin-top: 24px;
}

.media-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14.5px;
    line-height: 1.5;
    background: #F5F5F6;
    border-radius: 18px;
    padding: 16px 18px;
}

.stat-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.stat-item div {
    flex: 1;
    color: #121212;
}

.stat-item div strong {
    font-weight: 600;
    color: #121212;
    display: block;
    margin-bottom: 4px;
}

.media-photo {
    position: relative;
}

.media-image {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 500px;
}

.quote-box {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: #1C1C1F;
    color: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14.5px;
    line-height: 1.5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.quote-icon {
    margin-top: 6px;
    color: #B6FF25;
    font-size: 18px;
    text-align: right;
}

/* Partnership Section - Slide Style */
.partnership-section {
    padding: 48px 40px;
    background: #FFFFFF;
}

.partners {
    max-width: 1180px;
    margin: 48px auto 0;
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    padding: 48px 52px 50px;
}

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

.partners-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #121212;
    margin-bottom: 14px;
}

.partners-sub {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 15px;
    color: #6A6A6A;
    margin-bottom: 18px;
}

.partners-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14.5px;
    color: #3C3C3C;
    margin-bottom: 34px;
    max-width: 720px;
    line-height: 1.5;
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.partner-card {
    border-radius: 28px;
    padding: 26px 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 270px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
}

.partner-card--light {
    background: #F3F3F4;
    color: #121212;
}

.partner-card--dark {
    background: #272727;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.partner-card--accent {
    background: #49239A;
    color: #fff;
}

.partner-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}

.partner-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.partner-price {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
}

.partner-mark {
    font-size: 18px;
    flex-shrink: 0;
}

.partner-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partner-card ul li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 14.5px;
    line-height: 1.4;
}

.partner-card ul li::before {
    content: "→";
    margin-top: 1px;
    font-size: 14px;
    opacity: 0.7;
    flex-shrink: 0;
}

.cta-block {
    margin-top: 36px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #B6FF25;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-weight: 600;
    font-size: 15.5px;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(182, 255, 37, 0.3);
    transition: all 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(182, 255, 37, 0.4);
}

/* Support Section - Donation */
.support-section {
    padding: 48px 40px;
    background: #FFFFFF;
}

.donation {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    padding: 48px 52px 50px;
    max-width: 1180px;
    margin: 48px auto 0;
}

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

.donation-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.15;
    color: #121212;
}

.donation-sub {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 16px;
    color: #555555;
    margin-bottom: 36px;
    line-height: 1.5;
}

.donation-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
}

.tier {
    border: 2px solid #1A1A1A;
    border-radius: 18px;
    padding: 18px 14px;
    text-align: center;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
}

.tier span {
    font-size: 22px;
    font-weight: 700;
    display: block;
    color: #121212;
    margin-bottom: 6px;
}

.tier strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin: 6px 0 10px;
    color: #121212;
}

.tier p {
    font-size: 14px;
    color: #333333;
    line-height: 1.4;
    margin: 0;
}

.donation-links {
    border-left: 2px dashed #DDDDDD;
    padding-left: 36px;
    min-width: 220px;
    flex-shrink: 0;
}

.donation-note {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14px;
    color: #444444;
    margin-bottom: 16px;
    line-height: 1.5;
}

.boosty-btn,
.patreon-btn {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-weight: 600;
    font-size: 15.5px;
    text-align: center;
    text-decoration: none;
    padding: 14px 0;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.boosty-btn {
    background: #B6FF25;
    color: #000;
}

.patreon-btn {
    background: #FFD43B;
    color: #000;
}

.boosty-btn:hover,
.patreon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.donation-quote {
    margin-top: 40px;
    background: #F7F7F7;
    border-radius: 16px;
    padding: 18px 22px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #333333;
    text-align: center;
    line-height: 1.5;
}

/* Reasons Section - Why Support */
.reasons-section {
    padding: 48px 40px;
    background: #FFFFFF;
}

.why-support {
    max-width: 1180px;
    margin: 48px auto 0;
    display: block;
}

.why-support__inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: stretch;
}

.why-support__photo {
    background: #4C1793;
    border-radius: 32px;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.photo-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.photo-bg img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-height: 100%;
    object-fit: contain;
    width: auto;
}

/* Правая часть */
.why-support__content {
    display: flex;
    flex-direction: column;
}

.why-support__title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 800;
    color: #121212;
    margin-bottom: 10px;
}

.why-support__subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.why-support__box {
    background: #F3F3F3;
    border-radius: 26px;
    padding: 26px 26px 10px;
    border: 2px solid rgba(0, 0, 0, 0.03);
    flex: 1;
}

.why-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-num {
    width: 34px;
    height: 34px;
    background: #B6FF25;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #121212;
    flex: 0 0 34px;
}

.why-text {
    flex: 1;
}

.why-text h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 4px;
    margin-top: 0;
}

.why-text p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14.5px;
    line-height: 1.45;
    color: #2A2A2A;
    margin: 0;
}

/* Contact Section - Final Slide */
.contact-section {
    padding: 48px 40px;
    background: #FFFFFF;
}

.contacts {
    max-width: 1180px;
    margin: 48px auto 80px;
}

.contacts-inner {
    background: #fff;
    border-radius: 34px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: stretch;
    overflow: hidden;
    min-height: 440px;
}

.contacts-left {
    padding: 48px 46px 42px;
}

.contacts-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 38px;
    line-height: 1.03;
    font-weight: 800;
    color: #121212;
    margin-bottom: 16px;
}

.contacts-sub {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 15px;
    color: #444444;
    margin-bottom: 30px;
    max-width: 460px;
    line-height: 1.5;
}

.manager-card {
    background: #B6FF25;
    border-radius: 24px;
    padding: 20px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.manager-name {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #121212;
    margin: 0;
}

.manager-role {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 14px;
    color: #121212;
    margin-bottom: 4px;
    margin-top: 0;
}

.manager-link {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.manager-link:hover {
    text-decoration: underline;
}

.contacts-photo {
    position: relative;
    overflow: visible;
    padding: 24px;
}

.contacts-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        max-width: 100%;
        padding: 0 32px;
    }
    
    .about-container,
    .plans-grid,
    .media-container,
    .reasons-container,
    .contact-container {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    /* Hero mobile */
    .hero {
        min-height: 95vh;
        background-position: 70% 20%;
        padding: 110px 16px 48px;
    }
    
    .hero::before {
        background: linear-gradient(180deg, rgba(12,12,12,0.55) 0%, rgba(12,12,12,0) 100%);
    }
    
    .hero-nav {
        position: relative;
        background: linear-gradient(180deg, rgba(12,12,12,0.55) 0%, rgba(12,12,12,0) 100%);
        gap: 8px;
        padding: 16px 16px 12px;
        margin: -110px -16px 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-nav::before,
    .hero-nav::after {
        display: none;
    }
    
    .hero-nav-left {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        gap: 8px;
    }
    
    .hero-nav::-webkit-scrollbar,
    .hero-nav-left::-webkit-scrollbar {
        display: none;
    }
    
    .hero-nav-link {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 1);
        background: rgba(255, 255, 255, 0.07);
        border-radius: 9999px;
        padding: 10px 16px;
        white-space: nowrap;
        text-shadow: none;
        border-bottom: none;
        transition: background 0.2s ease;
    }
    
    .hero-nav-link:hover {
        background: rgba(255, 255, 255, 0.12);
    }
    
    .hero-nav-link.active {
        color: rgba(255, 255, 255, 1);
        background: rgba(255, 255, 255, 0.22);
        font-weight: 600;
        border-bottom: none;
    }
    
    .language-toggle {
        margin-top: 12px;
        align-self: flex-end;
    }
    
    .lang-btn {
        font-size: 12px;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .lang-btn.active {
        background: #B6FF25;
        color: #121212;
    }
    
    .hero-content {
        max-width: 320px;
        position: relative;
        top: 0;
        transform: none;
        justify-content: flex-start;
        padding: 0;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 30px;
        line-height: 1.05;
    }
    
    .hero-label {
        font-size: 13px;
    }
    
    .hero-subheading {
        font-size: 14px;
    }
    
    .hero-tagline {
        font-size: 13px;
        max-width: 90%;
    }
    
    /* About section mobile */
    .about-section {
        padding: 32px 20px;
    }
    
    .about-slide-container {
        padding: 32px 24px;
        margin-top: 24px;
    }
    
    .about-top-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-image {
        max-width: 100%;
        height: auto;
        min-height: 280px;
    }
    
    .achievements-cards {
        flex-direction: column;
        gap: 16px;
    }
    
    .achievement-card.dark {
        min-height: auto;
        height: auto;
    }
    
    .green-highlight-block {
        max-width: 100%;
        min-height: auto;
    }
    
    .info-text-blocks {
        grid-template-columns: 1fr;
    }
    
    /* Plans section mobile */
    .plans-section {
        padding: 32px 20px;
    }
    
    .plan-section {
        padding: 32px 24px;
        margin: 24px auto;
    }
    
    .plans-main-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .plan-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .plan-tab {
        width: 100%;
    }
    
    /* Media section mobile */
    .media-section {
        padding: 32px 20px;
    }
    
    .media-slide-container {
        padding: 32px 24px;
        margin-top: 24px;
    }
    
    .media-title {
        font-size: 28px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .media-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .media-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .media-image {
        min-height: 400px;
    }
    
    /* Contact section mobile */
    .contact-section {
        padding: 32px 20px;
    }
    
    .contacts {
        margin: 24px auto 60px;
    }
    
    .contacts-inner {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .contacts-left {
        padding: 32px 24px;
    }
    
    .contacts-title {
        font-size: 30px;
    }
    
    .contacts-photo {
        min-height: 240px;
    }
    
    .hero-container,
    .about-container,
    .plans-grid,
    .media-container,
    .reasons-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    /* Reasons/Why Support section mobile */
    .reasons-section {
        padding: 32px 20px;
    }
    
    .why-support {
        margin-top: 24px;
    }
    
    .why-support__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .why-support__photo {
        min-height: 320px;
    }
    
    .why-support__title {
        font-size: 30px;
    }
    
    .why-support__box {
        padding: 24px 22px 10px;
    }
    
    /* Support/Donation section mobile */
    .support-section {
        padding: 32px 20px;
    }
    
    .donation {
        padding: 32px 24px;
        margin-top: 24px;
    }
    
    .donation-title {
        font-size: 28px;
    }
    
    .donation-grid {
        flex-direction: column;
        gap: 32px;
    }
    
    .tiers {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .donation-links {
        border-left: none;
        border-top: 2px dashed #DDDDDD;
        padding-left: 0;
        padding-top: 24px;
        min-width: auto;
        width: 100%;
    }
    
    .donation-quote {
        margin-top: 32px;
        padding: 16px 18px;
    }
    
    /* Partnership section mobile */
    .partnership-section {
        padding: 32px 20px;
    }
    
    .partners {
        padding: 32px 24px;
        margin-top: 24px;
    }
    
    .partners-title {
        font-size: 28px;
    }
    
    .partner-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .partner-card {
        min-height: auto;
    }
    
    .cta-block {
        margin-top: 48px;
        margin-bottom: 48px;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 15px;
    }
    
    .info-text-blocks {
        grid-template-columns: 1fr;
    }
    
    .donation-platforms {
        border-left: none;
        border-top: 2px dashed var(--grey-medium);
        padding-left: 0;
        padding-top: 22px;
        min-width: auto;
    }
}

@media (max-width: 568px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-label {
        font-size: 12px;
    }
    
    .hero-subheading {
        font-size: 13px;
    }
    
    .hero-tagline {
        font-size: 13px;
    }
}
