 /* Базові налаштування */
        :root {
            --bg-light: #ffe8e8;
            --accent-soft: #ffa4a4;
            --accent-deep: #d25871;
            --text-dark: #333333;
            --white: #ffffff;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body { 
            font-family: 'Montserrat', sans-serif; 
            background-color: var(--bg-light); 
            color: var(--text-dark); 
            line-height: 1.6;
            overflow-x: hidden;
            
        }

        body.page{
            margin-bottom: 0;
        }

        #page{
            overflow: hidden;
        }

        h1, h2, h3, .serif { font-family: 'Playfair Display', serif; }

        /* Шапка */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            background: #d96281;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(210, 88, 113, 0.1);
        }

        .burger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            }

        .burger span {
            width: 28px;
            height: 2px;
            background: #ffffff;
            display: block;
            transition: 0.3s;
            }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 20px;
            text-decoration: none;
            color: #ffffff;
            letter-spacing: -1px;
            font-weight: 500;
        }

        .logo span { 
            color: #fddde4; 
            font-style: italic; 
        }

        nav { display: none; gap: 40px; }
        @media (min-width: 768px) { nav { display: flex; } }

        nav a {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 700;
            text-decoration: none;
            color: #ffffff;
            transition: 0.3s;
        }

        nav a:hover { color: var(--accent-deep); }

        /* Hero Секція */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 24px 60px;
            background-image: linear-gradient(to right, rgba(255, 232, 232, 0.95), rgba(255, 232, 232, 0.3)), 
                              url('https://arnautova-course.eu/wp-content/uploads/2026/02/banner-bg.jpg');
            background-size: contain;
			background-position: top right;
			background-color: #fee7e8;
			background-repeat: no-repeat;
        }

        .hero-content { max-width: 1200px; margin: 0 auto; width: 100%; }

        .label {
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-size: 11px;
            font-weight: 700;
            color: var(--accent-deep);
            margin-bottom: 24px;
        }

        h1 { font-size: clamp(40px, 8vw, 72px); line-height: 1.1; margin-bottom: 20px; color: #000; }
        h1 span { color: var(--accent-deep); font-weight: 300; }

        .hero-sub { font-size: 22px; font-style: italic; margin-bottom: 30px; color: var(--text-dark); }

        /* Картки та блоки */
        .info-card {
            background: rgba(255, 255, 255, 0.5);
            padding: 24px;
            border-radius: 20px;
            border: 1px solid var(--accent-soft);
            margin-bottom: 30px;
            max-width: 450px;
        }

        .features-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 15px; 
            margin-bottom: 40px; 
            max-width: 28rem;
        }
        .feature-item { 
            font-size: 11px; 
            text-transform: uppercase; 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            color: #666;
         }
        .dot { 
            width: 5px; 
            height: 5px; 
            background: var(--accent-soft); 
            border-radius: 50%; }

        .note-block{
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            padding-left: 1.5rem;
            border-left: 2px solid #b0465d;
            max-width: 28rem;
            margin-bottom: 2.5rem;
        }
        .note-about{
            border-top: 1px solid #e7e5e4;
            margin-top: 32px;
            padding-top: 24px;
        }
        .note-about p{
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 700;
            font-size: 10px;
            color: #a8a29e;
            margin-bottom: 0.75rem;
        }
        .note-about .note-text{
            font-style: italic;
            font-weight: 300;
            padding: 1.5rem;
            background-color: rgb(255 233 233 / 50%);
            border-radius: 1rem;
            border-left: 4px solid #fecaca;
            box-shadow: 0 0 2px #d6d6d6;
        }
        /* Кнопки */
        .btn {
            display: inline-block;
            background: var(--accent-deep);
            color: white;
            padding: 20px 48px;
            border-radius: 50px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.15em;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(210, 88, 113, 0.2);
        }

        .btn:hover { transform: scale(1.05); background: #b5435a; box-shadow: 0 15px 30px rgba(210, 88, 113, 0.3); }

        /* Секція "Чому ми" */
        .section-padding { padding: 100px 24px; }
        .container-mid { max-width: 1400px; margin: 0 auto; }
        .text-center { text-align: center; }

        .grid-2 { display: grid; grid-template-columns: 1fr; gap: 60px; }
        .list-items{
            padding-left: 20px;
            margin-bottom: 30px;
        }
        @media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

        /* Картки напрямків */
        .directions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 60px;
        }

        .direction-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 30px;
            text-align: center;
            transition: 0.4s;
            border: 1px solid transparent;
        }

        .direction-card:hover { border-color: var(--accent-soft); transform: translateY(-10px); }
        .direction-card h3 { margin: 20px 0 10px; color: var(--accent-deep); }
        .direction-card p { font-size: 12px; color: #777; }
        .direction-card img{
            max-width: 110px;
        }
        /* Додаткові стилі для нових блоків */
    .bg-white { background-color: #ffffff; }
    .bg-pink-light { background-color: var(--bg-light); }
    .bg-pink-soft { background-color: #fff1f1; } /* Трохи світліше за bg-light для контрасту */
    
    .num-accent {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 24px;
        color: var(--accent-soft);
    }

    .card-inside {
        padding: 40px;
        border-radius: 40px;
        transition: var(--transition);
        height: 100%;
    }

    .grid-2 .card-inside p{
        position: absolute;
        bottom: 30px;
        left: 0;
        width: 100%;
    }

    .card-inside.dark { background-color: var(--accent-deep); color: white; }
    .card-inside.light { background-color: white; border: 1px solid var(--accent-soft); }
    .card-inside.accent { background-color: var(--bg-light); border: 1px solid var(--accent-soft); }

    .card-inside:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(210, 88, 113, 0.1); }

    /* Блок Кому підходить */
    .status-badge {
        display: inline-block;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
        margin-bottom: 20px;
    }
    .badge-success { background: #e8f5e9; color: #2e7d32; }
    .badge-error { background: #ffebee; color: #c62828; }

    /* Команда */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

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

    .member-photo {
        aspect-ratio: 3/4;
        border-radius: 32px;
        background-color: #eee;
        overflow: hidden;
        border: 4px solid white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        margin-bottom: 20px;
    }

    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.7s;
    }

    .member-photo:hover img { filter: grayscale(0%); }

    .team-note {
        max-width: 700px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.6);
        padding: 40px;
        border-radius: 40px;
        border: 1px solid white;
    }

    .check-icon { 
        color: var(--accent-deep); 
        margin-right: 10px; 
        font-weight: bold; 
    }

    .promo-banner {
        margin-top: 48px;
        padding: 32px;
        border-radius: 24px;
        background-color: #fff5f6; /* Дуже світлий рожевий фон */
        border: 1px solid #ffe0e3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    /* Для комп'ютерів робимо в ряд */
    @media (min-width: 768px) {
        .promo-banner {
            flex-direction: row;
        }
		
    }
		
		@media screen and (max-width: 800px){
			.hero{
				background-size: 100%;
				background-position: bottom right;
				padding-bottom: 400px;
			}
		}
		
		@media screen and (max-width: 560px){
			.hero{
				background-size: 150%;
				background-position: bottom right;
				padding-bottom: 400px;
			}
		}

    /* Стилізація аватарів викладачів */
    .teacher-group {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .avatar-stack {
        display: flex;
        margin-right: -12px;
    }

    .avatar-item {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid white;
        margin-right: -12px; /* Наповзання один на одного */
    }

    /* Яскраві кольори для аватарів (замість фото) */
    .avatar-1 { background-color: #ff9aa2; }
    .avatar-2 { background-color: #ffb7b2; }
    .avatar-3 { background-color: #ffdac1; }

    .banner-text {
        font-size: 14px;
        color: #5a4b4d;
        line-height: 1.4;
        margin-left: 30px;
    }

    .highlight-pink {
        color: #d25871; /* Ваш яскравий рожевий */
        font-weight: 700;
    }

    /* Блок з пульсуючою крапкою */
   .promo-banner .status-badge {
        display: flex;
        align-items: center;
        gap: 18px;
        font-weight: 600;
        color: #2d3436;
        font-size: 14px;
        margin-bottom: 0;
    }

    .dot-pulse {
        width: 10px;
        height: 10px;
        background-color: #00b894; /* Яскравий зелений */
        border-radius: 50%;
        position: relative;
        min-width: 10px;
    }

    /* Анімація пульсації */
    .dot-pulse::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #00b894;
        border-radius: 50%;
        animation: pulse-animation 2s infinite;
    }

    @keyframes pulse-animation {
        0% { transform: scale(1); opacity: 0.8; }
        100% { transform: scale(3); opacity: 0; }
    }

    /* Стилі для блоку порівняння */
    .compare-card {
        padding: 40px;
        border-radius: 40px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    .compare-card:hover { transform: translateY(-5px); }
    .dot-yellow { background-color: #facc15; }
    .dot-green { background-color: #22c55e; }
    .compare-card a{
        color: var(--accent-deep);
        text-decoration: none;
    }
    /* Стилі для фінального оферу */
    #pricing .container-mid{
        max-width: 960px;
    }
    .price-tag {
        font-size: 72px;
        font-weight: 300;
        color: var(--accent-deep);
        font-family: 'Playfair Display', serif;
        margin: 20px 0;
    }
    .btn-main {
        background-color: var(--accent-deep);
        color: white;
        padding: 24px 48px;
        border-radius: 100px;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 14px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        width: 100%;
        transition: var(--transition);
        box-shadow: 0 20px 40px rgba(210, 88, 113, 0.2);
    }
    .btn-main:hover {
        background-color: #b0465d;
        transform: scale(1.02);
    }

    p.subtitle{
        text-align: center;
        line-height: 1.625;
        max-width: 36rem;
        margin: 0 auto;
    }

    /* FAQ стилізація */
    details summary {
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        font-weight: 600;
        color: #333;
    }
    details summary::after {
        content: '+';
        font-size: 20px;
        color: var(--accent-deep);
        transition: transform 0.3s;
    }
    details[open] summary::after {
        transform: rotate(45deg);
    }
    
    /* Слайдер відгуків (базовий контейнер) */
    .swiper-slide img {
        border-radius: 32px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        height: 600px;
        object-fit: cover;
    }

    /* Анімація обертання для "радара" */
    @keyframes slowSpin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .radar-circle {
        position: relative;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: white;
        border: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: inset 0 0 30px rgba(0,0,0,0.02);
    }

    .radar-spin {
        position: absolute;
        inset: -1px;
        border-radius: 50%;
        border: 1px solid transparent;
        border-top: 1px solid var(--accent-soft);
        animation: slowSpin 10s linear infinite;
        pointer-events: none;
    }
		
		.radar-content{
			position: absolute;
		}
		
		.radar-content span{
			color: #ffffff!important;
		}

    .tag-float {
        position: absolute;
        background: white;
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        border: 1px solid #f0f0f0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        white-space: nowrap;
        z-index: 10;
    }

    /* Позиціонування тегів навколо кола */
    .tag-1 { top: -10px; left: 50%; transform: translateX(-50%); }
    .tag-2 { top: 25%; right: -30px; }
    .tag-3 { bottom: 20%; right: -20px; color: #999; }
    .tag-4 { bottom: -10px; left: 50%; transform: translateX(-50%); }
    .tag-5 { top: 50%; left: -40px; transform: translateY(-50%); }

    .result-dark-card {
        background: var(--accent-deep);
        color: white;
        padding: 40px;
        border-radius: 40px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(210, 88, 113, 0.15);
    }

    .offer-card {
        background: #fff;
        border-radius: 40px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(210, 88, 113, 0.1);
        display: flex;
        flex-direction: column;
        max-width: 1000px;
        margin: 0 auto;
        border: 1px solid #fcecee;
    }

    @media (min-width: 768px) {
        .offer-card { flex-direction: row; align-items: stretch; }
    }

    /* Ліва частина з фото */
    .offer-image {
        flex: 1;
        background: #fdf2f2;
        position: relative;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    /* Декоративне сяйво за фото */
    .image-glow {
        position: absolute;
        width: 150%;
        height: 150%;
        background: radial-gradient(circle, rgba(210, 88, 113, 0.15) 0%, rgba(255,255,255,0) 70%);
        animation: rotateGlow 10s linear infinite;
    }

    @keyframes rotateGlow {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .offer-image img {
        position: relative;
        z-index: 2;
        width: 80%;
        height: auto;
        border-radius: 20px;
        transform: rotate(-3deg);
        box-shadow: 20px 20px 40px rgba(0,0,0,0.1);
    }

    /* Права частина з ціною */
    .offer-content {
        flex: 1.2;
        padding: 40px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .price-container {
        display: flex;
        align-items: baseline;
        gap: 10px;
        margin: 15px 0;
    }

    .old-price {
        text-decoration: line-through;
        color: #bbb;
        font-size: 24px;
    }

    .benefits-list {
        list-style: none;
        padding: 0;
        margin: 25px 0;
    }

    .benefits-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        color: #555;
    }

    .benefits-list li::before {
        content: "✦";
        color: #d25871;
        font-weight: bold;
    }

    .special-badge {
        display: inline-block;
        background: #fff0f3;
        color: #d25871;
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 15px;
        width: fit-content;
    }

    .custom-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }
    .custom-list li {
        padding: 12px 18px;
        background: #fdfbfb;
        border-radius: 12px;
        margin-bottom: 8px;
        border: 1px solid #f5f5f5;
        font-size: 15px;
        color: #444;
    }

    /* Контейнер для фото */
    .about-image-side {
        position: relative;
        height: 100%;
        min-height: 400px;
    }
    .about-image-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 40px;
        box-shadow: 20px 20px 60px rgba(0,0,0,0.03);
    }

    /* Декоративна нотатка */
    .note-box-improved {
        background: #fffafa;
        padding: 25px;
        border-radius: 24px;
        border-left: 4px solid var(--accent-soft);
        margin-top: 25px;
    }
    .note-text-style {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 20px;
        color: #333;
        margin-top: 10px;
        display: block;
    }

    .directions-grid .card-inside img{
        max-width: 40px;
    }

    @media (max-width: 768px) {
        .radar-circle { width: 250px; height: 250px; margin: 40px auto; }
        .tag-float { font-size: 8px; padding: 6px 12px; }
    }

        /* Футер */
        footer {
            background: #d96281;
            padding: 80px 24px 40px;
            border-top: 1px solid var(--accent-soft);
        }

        footer a, footer p, footer h4{
            color: #fff;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #ffffff;
        }

        footer .social-media a{
            display: flex;
        }

        footer .social-media svg{
            width: 20px;
        }
		
		@media screen and (max-width: 768px){
            .burger {
                display: flex;
            }

            nav {
                position: fixed;
                top: 81px;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: #d96281;

                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 24px;

                transition: 0.4s ease;
                z-index: 1000;
            }

            nav.active {
                right: 0;
                display: block;
                padding: 24px;
            }
            nav a{
                color: #ffffff;
                display: block;
                margin-bottom: 10px;
            }
            .burger.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
                }

                .burger.active span:nth-child(2) {
                opacity: 0;
                }

                .burger.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
                }
			.grid-3{
				grid-template-columns: 1fr;
			}
			
			ul{
				margin: 0!important;
			}
			
			.grid-2 .card-inside p{
				position: static;
			}
			
			.team-grid{
				grid-template-columns: 1fr;
			}
		}

        .policy .container-mid{
            padding: 100px 20px;
        }

        @media screen and (max-width: 560px){
            .result-dark-card{
                padding: 20px;
            }

            .card-inside{
                padding: 20px!important;
            }

            .team-note{
                padding: 20px;
            }

            #team .team-note div{
                gap: 10px!important;
            }

            .compare-card{
                padding: 20px;
            }

            .black-compare-card{
                padding: 20px!important;
            }

            .offer-content{
                padding: 20px;
            }

            .btn-main{
                padding: 24px;
            }

            .section-padding{
                padding: 60px 20px;
            }

        }