/* ==========================================
   CSS Variables - Цветовая палитра
   ========================================== */
:root {
    /* Основные цвета - Новая палитра */
    --color-sage: #9DB6A7;
    /* Cascade Green */
    --color-jade: #9DB19E;
    /* Jade Dragon */
    --color-rosemary: #6B7464;
    /* Rosemary */
    --color-rose: #C4A8A8;
    /* Dressy Rose */
    --color-sand: #B99676;
    /* Likeable Sand */
    --color-white: #E6DBD0;
    /* Intimate White */

    /* Новые цвета для Hero секции */
    --color-hero-bg: #5C6B55;
    /* Тёмно-оливковый зелёный */
    --color-hero-bg-alt: #4A5A44;
    /* Более тёмный зелёный */
    --color-hero-text: #FFFFFF;
    /* Белый текст */
    --color-hero-accent: #8B7355;
    /* Коричнево-бежевый акцент */

    /* Дополнительные цвета */
    --color-bg-light: #FAFAF8;
    --color-bg-cream: #F5F2ED;
    --color-text-dark: #2C3E3A;
    --color-text-gray: #5A6862;
    --color-border: #E8E4DD;
    --bg-btn: #89655e;

    /* Тени */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Градиенты */
    --gradient-sage: linear-gradient(135deg, var(--color-sage) 0%, var(--color-jade) 100%);
    --gradient-warm: linear-gradient(135deg, var(--color-white) 0%, var(--color-bg-cream) 100%);
    --gradient-hero: linear-gradient(180deg, var(--color-hero-bg) 0%, var(--color-hero-bg-alt) 100%);
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 85px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   Animated Background
   ========================================== */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: var(--color-bg-light);
}

/* Эффект зернистости (Noise) */
.bg-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 10;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.bg-shape-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-sage), transparent 70%);
    opacity: 0.25;
    animation: floatBackground 40s infinite ease-in-out;
}

.bg-shape-2 {
    bottom: -15%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-bg-cream), transparent 70%);
    opacity: 0.35;
    animation: floatBackground 35s infinite ease-in-out reverse;
}

.bg-shape-3 {
    top: 30%;
    right: 15%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--color-rose), transparent 70%);
    opacity: 0.15;
    animation: floatBackground 45s infinite ease-in-out;
}

.bg-shape-4 {
    top: 60%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--color-jade), transparent 70%);
    opacity: 0.15;
    animation: floatBackground 50s infinite ease-in-out alternate;
}

.bg-shape-5 {
    top: 10%;
    right: 40%;
    width: 25vw;
    height: 25vw;
    background: radial-gradient(circle, var(--color-white), transparent 70%);
    opacity: 0.3;
    animation: floatBackground 30s infinite ease-in-out alternate-reverse;
}

@keyframes floatBackground {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(40px, 60px) scale(1.1) rotate(5deg);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

/* ==========================================
   Typography
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-gray);
}

/* ==========================================
   Container & Layout
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ==========================================
   Navigation
   ========================================== */
#navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sage);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-sage);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.burger-menu:hover {
    transform: scale(1.1);
}

.burger-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.burger-menu.active .burger-icon {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    background: var(--gradient-hero);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

/* Плавающие декоративные элементы */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-elements * {
    min-width: min(34vw, 34vh);
}

@keyframes float-smooth {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(1.5deg);
    }

    66% {
        transform: translateY(5px) rotate(-1.5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.floating-img {
    position: absolute;
    filter: none;
    animation: float-smooth 10s ease-in-out infinite;
    animation-direction: alternate;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
    z-index: 1;
    border-radius: 12px;
}

.floating-1 {
    width: 280px;
    top: 8%;
    left: 3%;
}

.floating-2 {
    width: 400px;
    top: 45%;
    right: 5%;
    animation-delay: 3s;
}

.floating-3 {
    width: 220px;
    bottom: 8%;
    left: 5%;
    animation-delay: -7s;
}

.floating-4 {
    width: 200px;
    top: 12%;
    right: 5%;
    animation-delay: -3s;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    color: var(--color-hero-text);
    margin-bottom: 0.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: clamp(1.7rem, 3vw, 3.3rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    color: var(--color-white);
    font-size: clamp(1rem, 2vw, 1.8rem);
    margin-bottom: 0.4rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    margin-bottom: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    margin-bottom: 60px;
}

.hero-image-wrapper {
    max-width: min(500px, 80vw);
    margin: 0.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-image-wrapper:hover {
    transform: scale(1.02);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    padding: 0.65rem 1.25rem;
    border: none;
    border-radius: 50px;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--bg-btn);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(157, 182, 167, 0.4);
}

.btn-outline {
    background: white;
    color: var(--color-text-dark);
    border: 2px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-sage);
    background: rgba(157, 182, 167, 0.05);
    color: var(--color-sage);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(157, 182, 167, 0.2);
}

/* Hero section white outline buttons */
.hero .btn-outline {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text-dark);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero .btn-outline:hover {
    background: rgba(157, 182, 167, 0.15);
    border-color: var(--color-sage);
    color: var(--color-sage);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding-top: 3rem;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about .section-title {
    margin-bottom: 3rem;
}

.about-text h3 {
    color: var(--color-hero-bg);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.about-text p {
    line-height: 1.8;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   Benefits Section
   ========================================== */

.benefits-section {
    margin-top: 5rem;
    background: var(--color-rose);
    padding: 50px;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.benefits-section h3 {
    color: rgb(255, 255, 255);
    padding: 10px;
}

.benefits-grid {
    display: grid;
    max-width: 1200px;
    position: relative;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-card {
    background: var(--color-hero-bg);
    padding: 1.75rem;
    border-radius: 16px;
    border-left: 4px solid var(--color-sage);
    transition: all 0.3s ease;
}

.benefit-card p {
    color: white;
    letter-spacing: .5px;
}

.benefit-card:nth-child(even) {
    border-left-color: var(--color-rose);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--color-sage);
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.benefit-card p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.benefits-footer {
    text-align: center;
    font-size: 1.4rem;
    color: white;
    font-style: italic;
    max-width: 700px;
    margin: 2.5rem auto 0;
}

/* ==========================================
   Carousel Section
   ========================================== */
.carousel-section {
    padding: 5rem 0;
    background: var(--color-hero-bg);
}

.carousel-section h2,
.carousel-section .section-subtitle {
    color: white;
}

.carousel-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-content {
    text-align: center;
}

.slide-number {
    display: inline-block;
    background: var(--bg-btn);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.slide-content h3 {
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.slide-content p {
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 1rem;
}

.slide-image {
    max-width: 450px;
    height: 260px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    background: white;
    color: var(--color-text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    border-color: var(--color-sage);
    color: var(--color-sage);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-sage);
    width: 32px;
    border-radius: 6px;
}

/* Bonus Slide Styles */
.slide-number.bonus-slide {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #5C3D00;
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
}

.bonus-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
    padding: 0;
}

.bonus-list li {
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--color-bg-cream) 0%, white 100%);
    border-radius: 12px;
    font-size: 1.05rem;
    color: var(--color-text-dark);
    border-left: 4px solid var(--color-sage);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

/* ==========================================
   CTA Section
   ========================================== */
.cta {
    padding: 5rem 0;
    background: white;
}

.cta .btn {
    background: var(--color-hero-bg);
}

.cta-box {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-rose);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.cta-title {
    margin-bottom: 2rem;
    color: white;
}

.cta-image {
    max-width: 400px;
    max-height: 400px;
    margin: 0 auto 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: white
}

.price {
    position: relative;
}

.price::before {
    background-color: var(--color-hero-bg);
    content: "";
    display: block;
    height: 3px;
    width: 10%;
    position: absolute;
    bottom: 110%;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.price-info {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-bg-light);
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--color-text-gray);
    font-size: 0.95rem;
    margin: 0;
}


/* ==========================================
   Footer
   ========================================== */
footer {
    background: var(--color-text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 0;
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (min-width: 1200px) {
    .floating-img {
        display: block;
    }
}

@media (max-width: 1024px) {
    .floating-1 {
        width: 220px;
    }

    .floating-2,
    .floating-3 {
        width: 180px;
    }

    .floating-4 {
        width: 160px;
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 100px;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    /* Burger Menu для мобильных */
    .burger-menu {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu a {
        display: block;
        padding: 15px 10px;
        font-size: 1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero {
        height: 100vh;
        height: 100dvh;
        padding: 0;
    }

    .hero-content {
        padding: 60px 1rem 1rem;
        max-height: 100vh;
        max-height: 100dvh;
    }

    .hero-title {
        font-size: clamp(1.2rem, 5vw, 1.75rem);
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.25rem);
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-container {
        padding: 0.5rem;
    }

    .floating-img {
        opacity: 0.7;
    }

    .floating-1 {
        width: 150px;
        top: 5%;
        left: -2%;
    }

    .floating-2 {
        width: 120px;
        top: 65%;
        right: -2%;
    }

    .floating-3 {
        width: 110px;
        bottom: 8%;
        left: 3%;
    }

    .floating-4 {
        width: 100px;
        top: 10%;
        right: 2%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-image-wrapper {
        max-width: 50vw;
        margin: 0.75rem auto;
        border-radius: 16px;
    }

    .hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .carousel-container {
        padding: 2rem 1.5rem;
    }

    .carousel-wrapper {
        min-height: auto;
    }

    .slide-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .bonus-list li {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    .slide-image {
        height: 280px;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0.875rem 1rem;
    }

    .logo {
        font-size: 0.95rem;
    }

    .nav-menu {
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    .hero-container {
        padding: 0.25rem;
    }

    .floating-elements {
        display: none;
    }

    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }

    .carousel-controls {
        gap: 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .slide-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .slide-content p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .bonus-list li {
        font-size: 0.75rem;
        padding: 0.6rem 0.8rem;
        margin-bottom: 0.5rem;
    }

    .slide-image {
        height: 220px;
    }

    .slide-number {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .hero-content {
        padding: 55px 0.5rem 0.5rem;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-image-wrapper {
        max-width: 55vw;
        margin: 0.5rem auto;
    }

    .hero-buttons {
        gap: 0.4rem;
    }

    .section-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .logo {
        font-size: 0.85rem;
    }

    .hero {
        padding: 65px 0 10px;
    }

    .hero-content {
        padding: 0.5rem;
    }

    .hero-title {
        font-size: 1.25rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }
}

/* ==========================================
   Scroll Animations
   ========================================== */

/* Скрытое состояние перед анимацией */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Анимированное (видимое) состояние */
.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Вариации анимаций */
.scroll-animate.from-left {
    transform: translateX(-40px);
}

.scroll-animate.from-left.animated {
    transform: translateX(0);
}

.scroll-animate.from-right {
    transform: translateX(40px);
}

.scroll-animate.from-right.animated {
    transform: translateX(0);
}

.scroll-animate.zoom {
    transform: scale(0.9);
}

.scroll-animate.zoom.animated {
    transform: scale(1);
}

/* Каскадные задержки */
.scroll-animate.delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate.delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate.delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate.delay-4 {
    transition-delay: 0.4s;
}

.scroll-animate.delay-5 {
    transition-delay: 0.5s;
}

.scroll-animate.delay-6 {
    transition-delay: 0.6s;
}

.scroll-animate.delay-7 {
    transition-delay: 0.7s;
}

.scroll-animate.delay-8 {
    transition-delay: 0.8s;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ==========================================
   Contacts Section
   ========================================== */
.contacts-section {
    padding: 5rem 0;
    background: var(--color-bg-light);
    display: flex;
    justify-content: center;
}

.contacts-card {
    background: white;
    padding: 3rem 2rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contacts-card .section-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dark);
}

.contacts-subtitle {
    margin-bottom: 2.5rem;
    color: var(--color-text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.support-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.icon-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-hero-bg);
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon-link svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.icon-link:hover {
    transform: scale(1.1);
}

.icon-link.telegram:hover {
    color: #229ED9;
}

.icon-link.whatsapp:hover {
    color: #25D366;
}

.icon-link.email:hover {
    color: var(--color-sage);
}


/* ==========================================
   Site Footer
   ========================================== */
.site-footer {
    background: var(--color-hero-bg);
    color: var(--color-white);
    padding: 4rem 0 3rem;
    text-align: center;
    font-size: 0.9rem;
}

.site-footer .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.site-footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer .social-links a svg {
    width: 20px;
    height: 20px;
}

.site-footer .social-links a:hover {
    background: var(--color-white);
    color: var(--color-hero-bg);
    transform: translateY(-3px);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--color-white);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.footer-legal-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.legal-item {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.5;
}



.legal-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-item a:hover {
    color: var(--color-white);
}

@media (max-width: 600px) {
    .footer-legal-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .contacts-card {
        padding: 2rem 1.5rem;
        width: 90%;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* End of file */