/* style.css */

:root {
    --bg-primary: #a1d4dd;      /* Основной фон (голубой) */
    --bg-secondary: #aebbe3;    /* Дополнительный фон (сиреневый) */
    --text-dark: #2c3e50;       /* Тёмный текст */
    --text-light: #ffffff;      /* Светлый текст */
    --btn-color: #2c3e50;       /* Цвет кнопок */
    --btn-hover: #1a252f;       /* Цвет кнопок при наведении */
    --accent-gold: #d4a017;     /* Акцентный золотой */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Типографика и Шрифты --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* --- Навигация (Glassmorphism) --- */
.navbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--text-dark) !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--accent-gold);
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 8px;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-btn-custom {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
    transition: all 0.3s;
    border: none;
}

.nav-btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
    color: white !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-link { margin: 10px 0; display: inline-block; }
    .nav-btn-custom { display: block; text-align: center; margin-top: 15px; width: 100%; }
}

/* --- Шапка сайта (Site Header) --- */
.site-header {
    background: linear-gradient(135deg, #a1d4dd 0%, #aebbe3 50%, #fbdebf 100%);
    padding: 60px 0 40px;
    padding-top: 100px; /* Отступ под фиксированное меню */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.site-header::before, .site-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
}
.site-header::before { width: 300px; height: 300px; top: -100px; left: -100px; }
.site-header::after { width: 400px; height: 400px; bottom: -150px; right: -150px; }

.header-decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}
.deco-1 { top: 20px; left: 10%; animation-delay: 0s; }
.deco-2 { top: 40px; right: 15%; animation-delay: 1s; }
.deco-3 { bottom: 30px; left: 20%; animation-delay: 2s; }
.deco-4 { bottom: 50px; right: 10%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.header-content { position: relative; z-index: 1; }

.header-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(44, 62, 80, 0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
    animation: fadeInDown 0.8s ease-out;
}

.header-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin: 20px 0;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #2c3e50 0%, #d4a017 50%, #2c3e50 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite, fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes shine { to { background-position: 200% center; } }

.header-subtitle {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 20px 0;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.header-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4a017, transparent);
    margin: 25px auto;
    border-radius: 2px;
    animation: scaleX 1s ease-out 0.6s both;
}

@keyframes scaleX { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 991px) { .header-title { font-size: 3.5rem; } .header-subtitle { font-size: 1.5rem; } }
@media (max-width: 768px) { 
    .site-header { padding: 40px 0 30px; padding-top: 100px; }
    .header-title { font-size: 2.8rem; } 
    .header-subtitle { font-size: 1.3rem; }
    .header-decoration { display: none; }
}
@media (max-width: 480px) { .header-title { font-size: 2.2rem; } .header-subtitle { font-size: 1.1rem; } }

/* --- Общие классы секций --- */
section { padding: 80px 0; }
.section-bg-primary { background-color: var(--bg-primary); }
.section-bg-secondary { background-color: var(--bg-secondary); }

/* --- Кнопки --- */
.btn-custom {
    background-color: var(--btn-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--btn-color);
}
.btn-custom:hover {
    background-color: var(--btn-hover);
    border-color: var(--btn-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--btn-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--btn-color);
    transition: all 0.3s;
}
.btn-outline-custom:hover {
    background-color: var(--btn-color);
    color: white;
}

.btn-cta {
    background-color: #2c3e50;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    border: 3px solid #ffffff;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s; z-index: -1;
}
.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(44, 62, 80, 0.35);
    color: #fff;
}
.btn-cta:hover::before { left: 100%; }
.btn-cta i { transition: transform 0.3s; display: inline-block; }
.btn-cta:hover i { transform: translateX(5px) rotate(-10deg); }

.cta-urgency {
    color: rgba(44, 62, 80, 0.8);
    font-size: 0.9rem;
    margin-top: 12px;
    font-weight: 500;
}
.cta-urgency i { color: #d4a017; animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

html { scroll-behavior: smooth; }

/* --- Hero Section --- */
.hero-section {
    padding: 100px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.2);
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 500px;
    border: 5px solid rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}
.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 50px; height: 3px;
    background: var(--btn-color);
    border-radius: 2px;
}

.upt-box {
    background-color: #fbdebf;
    border: 3px solid #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 25px 0;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.12);
    position: relative;
    overflow: hidden;
}
.upt-box::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--btn-color), #d4a017);
}
.upt-list { list-style: none; padding: 0; margin: 0; }
.upt-list li {
    position: relative; padding-left: 28px; margin-bottom: 10px;
    line-height: 1.55; font-size: 1.05rem; color: var(--text-dark); font-weight: 500;
}
.upt-list li:last-child { margin-bottom: 0; }
.upt-list li::before { content: '🔹'; position: absolute; left: 0; top: 3px; font-size: 0.95rem; }

.scroll-hint {
    position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%);
    text-align: center; z-index: 10;
}
.scroll-hint a {
    color: var(--text-dark); font-size: 1.8rem; opacity: 0.6; transition: 0.3s;
    animation: bounce 2s infinite;
}
.scroll-hint a:hover { opacity: 1; color: var(--btn-color); }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .hero-section { min-height: auto; padding: 120px 0 80px; }
    .scroll-hint { display: none; }
    .upt-box { padding: 18px 20px; margin: 20px 0; }
    .upt-list li { font-size: 0.95rem; padding-left: 26px; margin-bottom: 8px; }
}

/* --- For Whom (Cards) --- */
.desire-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 22px 20px;
    display: flex; align-items: flex-start; gap: 15px;
    box-shadow: 0 5px 18px rgba(44, 62, 80, 0.07);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}
.desire-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 12px 32px rgba(44, 62, 80, 0.15);
    background: #ffffff; border-color: var(--btn-color);
}
.desire-icon {
    font-size: 1.5rem; color: #2c3e50; flex-shrink: 0; margin-top: 4px;
    background: #f0f4f8; width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; transition: background 0.3s;
}
.desire-card:hover .desire-icon { background: var(--bg-primary); color: #fff; }
.desire-text { font-size: 1.05rem; font-weight: 600; color: var(--text-dark); line-height: 1.45; margin: 0; }
@media (max-width: 768px) {
    .desire-card { padding: 18px; gap: 12px; }
    .desire-icon { width: 38px; height: 38px; font-size: 1.3rem; }
    .desire-text { font-size: 0.98rem; }
}

/* --- Course Process --- */
.process-img-wrapper { position: relative; padding: 10px; }
.process-img {
    border-radius: 20px; box-shadow: 0 12px 35px rgba(44, 62, 80, 0.15);
    width: 100%; height: auto; object-fit: cover; border: 4px solid rgba(255, 255, 255, 0.8);
}
.process-badge {
    position: absolute; bottom: -15px; right: -15px;
    background: #ffffff; color: #2c3e50; padding: 10px 20px;
    border-radius: 50px; font-weight: 700; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
}
.game-tag {
    display: inline-block; background: rgba(255, 255, 255, 0.9);
    color: #2c3e50; padding: 6px 14px; border-radius: 30px;
    font-size: 0.9rem; font-weight: 600; margin: 4px 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: 0.2s;
}
.game-tag:hover { background: #2c3e50; color: #fff; transform: scale(1.05); }
.challenge-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 5px solid #d4a017; padding: 20px;
    border-radius: 12px; margin-top: 25px;
}

/* --- Course Map (Timeline) --- */
.timeline-container { position: relative; max-width: 800px; margin: 0 auto; }
.timeline-line {
    position: absolute; left: 24px; top: 0; bottom: 0; width: 4px;
    background: rgba(255, 255, 255, 0.6); border-radius: 2px; z-index: 0;
}
.timeline-item { position: relative; padding-left: 70px; margin-bottom: 30px; z-index: 1; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
    position: absolute; left: 0; top: 0; width: 50px; height: 50px;
    background: #ffffff; border: 4px solid var(--bg-secondary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem; color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: 0.3s;
}
.timeline-item:hover .timeline-marker {
    background: var(--btn-color); color: #fff; border-color: #fff; transform: scale(1.1);
}
.timeline-content {
    background: rgba(255, 255, 255, 0.95); padding: 20px 25px;
    border-radius: 16px; box-shadow: 0 5px 15px rgba(44, 62, 80, 0.08);
    border-left: 5px solid transparent; transition: 0.3s;
}
.timeline-item:hover .timeline-content {
    border-left-color: var(--btn-color); transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.15);
}
.timeline-title { font-size: 1.15rem; font-weight: 700; margin: 0; color: var(--text-dark); }
@media (max-width: 576px) {
    .timeline-container { padding-left: 10px; }
    .timeline-line { left: 20px; }
    .timeline-marker { width: 42px; height: 42px; font-size: 1rem; }
    .timeline-item { padding-left: 60px; margin-bottom: 20px; }
    .timeline-content { padding: 15px 20px; }
    .timeline-title { font-size: 1.05rem; }
}

/* --- Skills Grid --- */
.skill-card {
    background: rgba(255, 255, 255, 0.95); border-radius: 16px; padding: 25px;
    height: 100%; box-shadow: 0 5px 15px rgba(44, 62, 80, 0.08);
    transition: all 0.3s ease; position: relative; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.skill-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(44, 62, 80, 0.15); background: #ffffff; }
.skill-number {
    font-size: 3rem; font-weight: 900; color: rgba(161, 212, 221, 0.3);
    position: absolute; top: -10px; right: 10px; line-height: 1; z-index: 0;
}
.skill-content { position: relative; z-index: 1; }
.skill-title {
    font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
    color: var(--text-dark); display: flex; align-items: center; gap: 10px;
}
.skill-desc { font-size: 0.95rem; color: rgba(44, 62, 80, 0.8); line-height: 1.5; margin: 0; }
.skill-icon { color: var(--btn-color); font-size: 1.2rem; }

/* --- Author Section --- */
.author-card {
    background: rgba(255, 255, 255, 0.95); border-radius: 24px;
    overflow: hidden; box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}
.author-img-wrapper { position: relative; height: 100%; min-height: 400px; overflow: hidden; }
.author-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.author-card:hover .author-img { transform: scale(1.03); }
.author-badge {
    position: absolute; bottom: 20px; left: 20px; background: #ffffff;
    padding: 10px 20px; border-radius: 50px; font-weight: 700;
    color: var(--text-dark); box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 8px;
}
.author-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.author-name { font-size: 2rem; font-weight: 800; margin-bottom: 5px; color: var(--text-dark); }
.author-role {
    color: #d4a017; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.9rem; margin-bottom: 20px;
}
.author-quote {
    font-style: italic; border-left: 4px solid var(--bg-primary);
    padding-left: 20px; margin: 20px 0; color: rgba(44, 62, 80, 0.8); font-size: 1.1rem;
}
.author-stats {
    display: flex; gap: 30px; margin-top: 30px;
    padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.05);
}
.stat-item h4 { font-size: 1.8rem; font-weight: 800; color: var(--btn-color); margin: 0; }
.stat-item p { font-size: 0.9rem; color: rgba(44, 62, 80, 0.6); margin: 0; }
@media (max-width: 991px) {
    .author-img-wrapper { min-height: 300px; }
    .author-content { padding: 30px; }
    .author-stats { flex-wrap: wrap; gap: 20px; }
}

/* --- Reviews --- */
.testimonial-card {
    background: rgba(255, 255, 255, 0.95); border-radius: 20px; padding: 30px;
    height: 100%; box-shadow: 0 5px 20px rgba(44, 62, 80, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}
.testimonial-card:hover { transform: translateY(-10px) rotateX(2deg); box-shadow: 0 15px 35px rgba(44, 62, 80, 0.15); }
.testimonial-card::before {
    content: '"'; position: absolute; top: -20px; right: 20px;
    font-size: 8rem; color: rgba(161, 212, 221, 0.2); font-family: Georgia, serif; line-height: 1;
}
.testimonial-avatar {
    width: 70px; height: 70px; border-radius: 50%; object-fit: cover;
    border: 4px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.1); margin-bottom: 15px;
}
.testimonial-rating { color: #ffc107; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-text { font-style: italic; color: rgba(44, 62, 80, 0.85); line-height: 1.6; margin-bottom: 20px; font-size: 0.95rem; }
.testimonial-author { font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.testimonial-role { font-size: 0.85rem; color: rgba(44, 62, 80, 0.6); }
.testimonial-badge {
    position: absolute; top: 20px; left: 20px; padding: 5px 12px;
    border-radius: 20px; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-parent { background: #aebbe3; color: #2c3e50; }
.badge-teen { background: #d4a017; color: #fff; }
.video-testimonial {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15); cursor: pointer; transition: 0.3s;
}
.video-testimonial:hover { transform: scale(1.02); }
.video-testimonial img { width: 100%; height: auto; display: block; }
.video-play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 70px; height: 70px; background: rgba(255, 255, 255, 0.95);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.video-testimonial:hover .video-play-btn { background: #fff; transform: translate(-50%, -50%) scale(1.1); }
.video-play-btn i { color: var(--btn-color); font-size: 1.5rem; margin-left: 4px; }
.reviews-stats {
    background: rgba(255, 255, 255, 0.9); border-radius: 20px; padding: 30px;
    margin-bottom: 50px; text-align: center; box-shadow: 0 5px 20px rgba(44, 62, 80, 0.08);
}
.stat-big { font-size: 3rem; font-weight: 800; color: var(--btn-color); margin: 0; }
.stat-label { color: rgba(44, 62, 80, 0.7); font-size: 1rem; }
@media (max-width: 768px) {
    .testimonial-card { padding: 25px; }
    .testimonial-avatar { width: 60px; height: 60px; }
    .video-play-btn { width: 60px; height: 60px; }
    .stat-big { font-size: 2.5rem; }
}

/* --- Секция "Стоимость" (Обновлённая) --- */
.pricing-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 12px 35px rgba(44, 62, 80, 0.12);
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* Выразительная плашка над ценой */
.pricing-label {
    background: linear-gradient(135deg, #d4a017, #e8b82e);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.25);
}

.price-main {
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 10px 0;
    line-height: 1;
}
.price-currency { 
    font-size: 2.2rem; 
    vertical-align: super; 
    margin-right: 4px; 
    font-weight: 700;
}

.price-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(44,62,80,0.15), transparent);
    margin: 25px 0;
}

.discount-hint {
    background: rgba(251, 222, 191, 0.6);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.5;
}
.discount-hint i { color: #d4a017; font-size: 1.3rem; }
.discount-hint p { color: rgba(44, 62, 80, 0.8) !important; margin: 4px 0 0; }

@media (max-width: 576px) {
    .pricing-card { padding: 30px 20px; }
    .price-main { font-size: 3.2rem; }
    .pricing-label { font-size: 1.1rem; padding: 10px 20px; }
}

/* --- Footer --- */
footer { background-color: #2c3e50; color: rgba(255,255,255,0.8); padding: 40px 0; }
footer a { color: white; transition: 0.3s; }
footer a:hover { color: var(--bg-primary); }