﻿/* Вариант 3 - Премиум/Профессиональный */

:root {
    --primary: #e9d5ff;
    --secondary: #2d1b4e;
    --accent: #a855f7;
    --accent-hover: #9333ea;
    --accent-light: #c084fc;
    --text: #f3f4f6;
    --text-light: #d1d5db;
    --text-muted: #9ca3af;
    --bg: #0f0318;
    --bg-light: #1a0b2e;
    --bg-card: #240046;
    --bg-dark: #0a0212;
    --border: rgba(168, 85, 247, 0.2);
    --shadow: rgba(168, 85, 247, 0.15);
    --button-color: #e94560;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    letter-spacing: -0.01em;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

section {
    animation: fadeIn 0.6s ease-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header .container {
    padding-left: 5px !important;
}

/* Header */
.header {
    background: rgba(15, 3, 24, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(168, 85, 247, 0.4);
    border-bottom: 1px solid var(--border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 40px 0.8rem 20px !important;
    height: 80px;
    max-height: 80px;
    overflow: visible !important;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text);
    text-decoration: none;
    display: block;
    margin-right: 40px !important;
    margin-left: -20px !important;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
    /* Убран цветовой фильтр - логотип в оригинальных цветах */
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s;
}

.logo-img:hover {
    /* Убран цветовой фильтр - логотип в оригинальных цветах */
    filter: drop-shadow(3px 3px 12px rgba(0, 0, 0, 0.3));
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

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

.nav a:hover::after {
    width: 100%;
}

/* Header Contacts */
.header-contacts {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0.5rem;
}

.header-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1.1rem;
    font-weight: 500;
}

.header-contact-link:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
}

.header-contact-link svg {
    width: 28px;
    height: 28px;
}

/* Цвет для WhatsApp */
.header-contact-link[href*="wa.me"] svg {
    color: #25D366;
}

.header-contact-link[href*="wa.me"]:hover svg {
    color: #128C7E;
}

/* Цвет для Telegram */
.header-contact-link[href*="t.me"] svg {
    color: #0088cc;
}

.header-contact-link[href*="t.me"]:hover svg {
    color: #006699;
}

.header-phone-number {
    white-space: nowrap;
}

.header-btn {
    padding: 0.7rem 1.8rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.header-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--accent-light);
    border-radius: 3px;
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    background: rgba(13, 2, 33, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    z-index: 999;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.mobile-menu.active {
    display: flex !important;
    overflow: visible;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}

.mobile-menu a:hover {
    background: var(--bg-light);
    color: var(--accent);
}

.mobile-menu-btn {
    background: var(--accent);
    color: #fff !important;
    font-weight: 600;
    margin-top: 1rem;
}

.mobile-menu-btn:hover {
    background: var(--accent-hover) !important;
}

/* Hero Section */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
    scroll-margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/plaj.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 46, 0.75) 0%, rgba(26, 35, 46, 0.65) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 1rem 0 2.5rem 0;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(168, 85, 247, 0.2);
    color: var(--accent-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-center {
    text-align: center;
}

/* Desktop version - 3 lines */
.hero-title-desktop {
    display: block;
}

/* Mobile version - 4 lines */
.hero-title-mobile {
    display: none;
}

.hero-desc-mobile {
    display: none;
}

.hero-desc-desktop {
    display: block;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.hero-desc-center {
    text-align: center;
}

.hero-subdesc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-style: italic;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-contacts {
    display: flex;
    gap: 1rem;
}

/* Компактные контакты в строку */
.hero-contacts-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-link-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-link-compact:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-link-compact svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-link-compact.phone span {
    white-space: nowrap;
}

.contact-link-compact.whatsapp,
.contact-link-compact.telegram {
    padding: 0.7rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-link svg {
    width: 20px;
    height: 20px;
}

/* Убрали отдельный стиль для phone - теперь все кнопки одинаковые */

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.hero-actions .btn-primary {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.6);
}

.btn-block {
    width: 100%;
}

/* Stats Section */
.stats {
    display: none;
    /* Блок убран согласно правкам */
    background: var(--bg-light);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Section Title */
.section-title {
    margin-bottom: 2rem;
}

.benefits .section-title {
    margin-bottom: 0.5rem;
}

.section-title.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent-light);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 1.5rem 0;
    scroll-margin-top: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-image {
    margin-top: 0;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 0.9rem;
    line-height: 1.8;
    text-align: justify;
    hyphens: none;
    word-spacing: -0.05em;
}

/* Стили из редактора имеют приоритет над базовыми стилями */
.about-text [style*="color"] {
    color: inherit !important;
}

.about-text [style*="font-size"] {
    font-size: inherit !important;
}

.about-text [style*="text-align"] {
    text-align: inherit !important;
}

.about-text [style*="line-height"] {
    line-height: inherit !important;
}

.about-text [style*="margin"] {
    margin: inherit !important;
}

.about-text [style*="padding"] {
    padding: inherit !important;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

.about-feature span {
    color: var(--text);
    font-weight: 500;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
}

/* About Carousel */
.about-carousel {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.about-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.about-carousel-slide.active {
    transform: translateX(0);
    z-index: 1;
}

.about-carousel-slide.prev {
    transform: translateX(-100%);
}

.about-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    color: #1a0033;
}

.about-carousel-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.about-carousel-btn.prev {
    left: 10px;
}

.about-carousel-btn.next {
    right: 10px;
}

.about-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.about-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.about-carousel-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}

/* Locations Section */
.locations {
    padding: 2rem 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.location-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.location-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #1a0033;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
}

.location-content {
    padding: 2.5rem;
}

.location-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.location-content>p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.location-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.location-features li {
    color: var(--text);
    font-size: 0.95rem;
}

/* Requirements Section */
.requirements {
    display: none;
    /* Блок убран, информация в FAQ */
    padding: 3rem 0;
    background: var(--bg-light);
}

.requirements-content {
    max-width: 900px;
    margin: 0 auto;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.requirement-item {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    align-items: center;
}

.req-number {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.req-icon {
    width: 70px;
    height: 70px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.req-icon img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.requirement-item:hover .req-icon img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.req-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.req-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.requirements-cta {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.req-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.requirements-note {
    background: var(--primary);
    color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.requirements-note h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.requirements-note p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Process Section */
.process {
    display: none;
    /* Блок убран согласно правкам */
    padding: 3rem 0;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-arrow {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 300;
}

/* Benefits Section */
.benefits {
    padding-top: 0.4rem !important;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    background-image: url('images/plaj2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    scroll-margin-top: 67px;
    margin-bottom: 0;
    border-bottom: none;
}

.benefits-title {
    color: #2d1b4e !important;
}

.benefits-title-desktop {
    display: block;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.benefits-title-mobile {
    display: none;
}

.benefits .section-title h2 {
    color: #2d1b4e !important;
}

/* Benefits Mobile List - скрыт на десктопе */
.benefits-mobile-list {
    display: none;
}

/* Benefits Carousel - Star Layout */
.benefits {
    position: relative;
}

.benefits-carousel-container {
    position: relative;
    width: 100%;
    height: 680px;
    margin: 3rem 0 0.5rem 0;
}

.benefit-circle {
    position: absolute;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--secondary) 100%);
    border-radius: 50%;
    border: 2px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Неактивные кружки - маленькие */
.benefit-circle {
    width: 160px;
    height: 160px;
    padding: 1rem;
}

/* Неактивные кружки при наведении */
.benefit-circle:not(.active):hover {
    width: 180px;
    height: 180px;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
    border-color: var(--accent);
    margin-top: -10px;
    margin-left: -10px;
    z-index: 50;
}

/* Активный кружок - большой прямоугольный */
.benefit-circle.active {
    width: 1000px;
    height: 380px;
    padding: 1.8rem 2.5rem;
    z-index: 100;
    border-color: var(--accent);
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.5);
    cursor: default;
    justify-content: flex-start;
    border-radius: 20px;
}

/* Увеличенный размер для блоков с большим текстом */
.benefit-circle[data-benefit="1"].active,
.benefit-circle[data-benefit="3"].active,
.benefit-circle[data-benefit="5"].active {
    width: 1100px;
    height: 430px;
}

/* Активный кружок при наведении - не расширяется */
.benefit-circle.active:hover {
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.7);
}

/* Иконка */
.benefit-circle-icon {
    width: 45px;
    height: 45px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    margin-bottom: 0.6rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.benefit-circle.active .benefit-circle-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
    margin-top: 0;
    border-radius: 50% !important;
}

.benefit-circle-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-circle.active .benefit-circle-icon svg {
    width: 28px;
    height: 28px;
}

/* Заголовок */
.benefit-circle h3 {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500 !important; /* Средняя толщина для более широких букв */
    font-family: Arial, sans-serif !important;
    line-height: 1.2;
    margin: 0;
    transition: all 0.3s;
}

.benefit-circle h3 strong,
.benefit-circle h3 b {
    font-weight: 700 !important; /* Жирный только для тегов strong/b */
}

.benefit-circle.active h3 {
    font-size: 1rem;
    font-weight: 500 !important; /* Средняя толщина, жирность только через strong */
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.benefit-circle.active h3 strong,
.benefit-circle.active h3 b {
    font-weight: 700 !important; /* Жирный для strong/b в активном состоянии */
}

/* Контент - скрыт у неактивных */
.benefit-circle-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.benefit-circle.active .benefit-circle-content {
    display: block;
    opacity: 1;
    overflow-y: auto;
    max-height: 350px;
    padding: 0 1rem;
}

.benefit-circle.active .benefit-circle-content::-webkit-scrollbar {
    width: 0;
    display: none;
}

.benefit-circle.active .benefit-circle-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.benefit-circle.active:hover .benefit-circle-content {
    max-height: 400px;
}

.benefit-circle-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    white-space: normal;
    word-spacing: 0.05em;
}

/* Унифицированные стили для всех преимуществ - Arial 12px с полуторным интервалом */
.benefit-circle[data-benefit="0"].active .benefit-circle-content p,
.benefit-circle[data-benefit="1"].active .benefit-circle-content p,
.benefit-circle[data-benefit="2"].active .benefit-circle-content p,
.benefit-circle[data-benefit="3"].active .benefit-circle-content p,
.benefit-circle[data-benefit="4"].active .benefit-circle-content p,
.benefit-circle[data-benefit="5"].active .benefit-circle-content p {
    font-family: Arial, sans-serif !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    font-weight: normal !important;
    color: var(--text-light) !important;
    text-align: justify;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    white-space: normal;
    word-spacing: 0.05em;
}

/* Позиции кружков - неактивные в ряд сверху, активный снизу */
@media (min-width: 769px) {

    /* Неактивные кружки в горизонтальный ряд сверху, прямо под заголовком */
    .benefit-circle[data-position="top"] {
        left: 20%;
        top: -2%;
        transform: translate(-50%, 0);
    }

    .benefit-circle[data-position="right-top"] {
        left: 35%;
        top: -2%;
        transform: translate(-50%, 0);
    }

    .benefit-circle[data-position="right-bottom"] {
        left: 50%;
        top: -2%;
        transform: translate(-50%, 0);
    }

    .benefit-circle[data-position="left-bottom"] {
        left: 65%;
        top: -2%;
        transform: translate(-50%, 0);
    }

    .benefit-circle[data-position="left-top"] {
        left: 80%;
        top: -2%;
        transform: translate(-50%, 0);
    }

    /* Центр - активный снизу под 3-м кружком */
    .benefit-circle[data-position="center"] {
        left: 50%;
        top: 23%;
        transform: translate(-50%, 0);
    }
}

/* FAQ Section */
.faq {
    padding: 0.5rem 0 0.5rem 0;
    position: relative;
    background-image: url('images/neon.png');
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
    scroll-margin-top: 70px;
    margin-top: -5px;
    border-top: none;
}

.faq-title-desktop {
    display: block;
}

.faq-title-mobile {
    display: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 10px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:first-child.active .faq-answer {
    max-height: 2000px !important;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1cap 1.8rem;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.1);
}

.faq-question h3:not([style]) {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

/* Если у h3 есть inline стили - не перезаписываем */
.faq-question h3[style] {
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
    padding: 0 1.8rem 1.2rem;
    color: #ffffff;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: justify;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FAQ Toggle Button */
.faq-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, #b8942e 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(200, 169, 78, 0.3);
}

.faq-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 78, 0.4);
}

.faq-toggle-btn.expanded .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-toggle-icon {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8rem;
}

/* FAQ List - плавная анимация */
.faq-list {
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 5000px;
    opacity: 1;
}

/* FAQ List collapsed state - плавное скрытие */
.faq-list.collapsed {
    max-height: 0 !important;
    opacity: 0;
    pointer-events: none;
}

/* Анимация сворачивания */
.faq-list.collapsing {
    max-height: 0 !important;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FAQ items - плавное появление */
.faq-list .faq-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Каскадная анимация появления */
.faq-list:not(.collapsed):not(.collapsing) .faq-item {
    animation: faqSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes faqSlideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-list .faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-list .faq-item:nth-child(2) { animation-delay: 0.08s; }
.faq-list .faq-item:nth-child(3) { animation-delay: 0.11s; }
.faq-list .faq-item:nth-child(4) { animation-delay: 0.14s; }
.faq-list .faq-item:nth-child(5) { animation-delay: 0.17s; }
.faq-list .faq-item:nth-child(6) { animation-delay: 0.20s; }
.faq-list .faq-item:nth-child(7) { animation-delay: 0.23s; }
.faq-list .faq-item:nth-child(8) { animation-delay: 0.26s; }
.faq-list .faq-item:nth-child(9) { animation-delay: 0.29s; }
.faq-list .faq-item:nth-child(10) { animation-delay: 0.32s; }
.faq-list .faq-item:nth-child(11) { animation-delay: 0.35s; }
.faq-list .faq-item:nth-child(12) { animation-delay: 0.38s; }
.faq-list .faq-item:nth-child(13) { animation-delay: 0.41s; }
.faq-list .faq-item:nth-child(14) { animation-delay: 0.44s; }
.faq-list .faq-item:nth-child(15) { animation-delay: 0.47s; }

/* Мобильные стили для FAQ toggle */
@media (max-width: 768px) {
    .faq-toggle-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* Тёмно-фиолетовый фон для FAQ на мобильной */
    .faq {
        min-height: auto;
        padding-bottom: 2rem;
        background: #0d0221 !important;
        background-image: none !important;
    }
}
.faq-list .faq-item:nth-child(11) { animation-delay: 0.33s; }
.faq-list .faq-item:nth-child(12) { animation-delay: 0.36s; }
.faq-list .faq-item:nth-child(13) { animation-delay: 0.39s; }
.faq-list .faq-item:nth-child(14) { animation-delay: 0.42s; }
.faq-list .faq-item:nth-child(n+15) { animation-delay: 0.45s; }

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes faqFadeOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

.faq-list.collapsed .faq-item {
    animation: none;
    opacity: 1;
}

.faq-list.collapsing .faq-item {
    animation: faqFadeOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.faq-list.collapsing .faq-item:nth-child(n+10) { animation-delay: 0s; }
.faq-list.collapsing .faq-item:nth-child(9) { animation-delay: 0.02s; }
.faq-list.collapsing .faq-item:nth-child(8) { animation-delay: 0.04s; }
.faq-list.collapsing .faq-item:nth-child(7) { animation-delay: 0.06s; }
.faq-list.collapsing .faq-item:nth-child(6) { animation-delay: 0.08s; }
.faq-list.collapsing .faq-item:nth-child(5) { animation-delay: 0.1s; }
.faq-list.collapsing .faq-item:nth-child(4) { animation-delay: 0.12s; }
.faq-list.collapsing .faq-item:nth-child(3) { animation-delay: 0.14s; }
.faq-list.collapsing .faq-item:nth-child(2) { animation-delay: 0.16s; }
.faq-list.collapsing .faq-item:nth-child(1) { animation-delay: 0.18s; }

/* Contact Section */
.contact {
    padding: 0.5rem 0 0.2rem 0;
    background: var(--bg-light);
    scroll-margin-top: 81px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contact-description {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.2);
    flex-shrink: 0;
}

.contact-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    justify-content: flex-end;
    flex: 1;
}

.contact-method-btn {
    display: flex !important;
    align-items: center !important;
    gap: 3.5rem !important;
    padding: 10rem 4rem !important;
    background: var(--bg-card) !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    border: 3px solid rgba(157, 78, 221, 0.3) !important;
    color: var(--text) !important;
    font-weight: 500 !important;
    font-size: 1.5rem !important;
    min-height: 420px !important;
}

.contact-method-btn svg {
    width: 100px !important;
    height: 100px !important;
    flex-shrink: 0 !important;
}

.contact-method-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-method-btn.telegram {
    border-color: #0088cc !important;
}

.contact-method-btn.telegram svg {
    color: #0088cc !important;
}

.contact-method-btn.telegram:hover {
    background: rgba(0, 136, 204, 0.05);
}

.contact-method-btn.whatsapp {
    border-color: #25D366 !important;
}

.contact-method-btn.whatsapp svg {
    color: #25D366 !important;
}

.contact-method-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.05);
}

.contact-method-btn.phone {
    border-color: var(--accent);
}

.contact-method-btn.phone:hover {
    background: rgba(168, 85, 247, 0.1);
}

.phone-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    flex: 1;
}

.phone-text strong {
    font-size: 2.2rem;
    color: var(--text);
}

.phone-text span {
    font-size: 1.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.method-item:hover {
    transform: translateX(8px);
    border-color: var(--accent);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.method-icon.whatsapp {
    background: #25D366;
}

.method-icon.telegram {
    background: #0088cc;
}

.method-text {
    flex: 1;
}

.method-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.method-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(157, 78, 221, 0.2);
}

.contact-form-wrapper h3 {
    text-align: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 1rem;
}

/* Подсказка под полями возраст/город на всю ширину */
.form-row .age-hint {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: -0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-light);
    color: var(--text);
    --placeholder-color: #888;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--placeholder-color);
    opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
}

.form-submit-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1rem;
}

.form-checkbox-compact {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    flex: 1;
}

.form-checkbox-compact input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox-compact input[type="checkbox"]:focus {
    outline: 2px solid var(--accent);
}

.form-checkbox-compact label {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
    cursor: pointer;
}

.form-checkbox-compact a {
    color: var(--accent);
    text-decoration: underline;
}

.form-checkbox-compact a:hover {
    color: var(--accent-hover);
}

.btn-submit {
    flex-shrink: 0;
    white-space: nowrap;
    width: auto;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
}

.success-message {
    color: #00ff00;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 900;
    margin-top: 1.5rem;
    animation: fadeIn 0.5s ease;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.error-message-big {
    color: #ff0000;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 900;
    margin-top: 1.5rem;
    animation: fadeIn 0.5s ease;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 1.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contacts,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-contact-item strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 1.1rem;
}

.footer-contact-desc {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem !important;
}

.footer-social {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.footer-social a:hover {
    transform: scale(1.1) !important;
    background: rgba(255, 255, 255, 0.15);
}

.footer-social svg {
    width: 28px;
    height: 28px;
}

.footer-contacts a,
.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contacts a:hover,
.footer-social a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Официальные цвета для социальных иконок */
.footer-social .footer-telegram {
    color: #0088cc;
}

.footer-social .footer-telegram:hover {
    color: #006699;
}

.footer-social .footer-whatsapp {
    color: #25D366;
}

.footer-social .footer-whatsapp:hover {
    color: #128C7E;
}

.footer-social .footer-vk {
    color: #0077FF;
}

.footer-social .footer-vk:hover {
    color: #005BBB;
}

/* Промо-текст в футере (только ПК) */
.footer-promo {
    padding: 0.5rem 0;
    min-width: 200px;
}

.footer-promo-text {
    /* Базовые стили - могут быть переопределены из редактора */
    color: var(--accent);
    text-transform: none !important;
}

.footer-promo-text p {
    margin: 0;
}

/* Скрываем на мобильных */
@media (max-width: 768px) {
    .footer-promo {
        display: none !important;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-privacy {
    color: #fff !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-privacy:hover {
    color: var(--accent);
}

/* Responsive */
/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .benefit-card {
        width: 350px;
    }
}

/* Navigation Arrows */
.benefit-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(168, 85, 247, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 101;
    transition: all 0.3s;
    color: white;
}

.benefit-nav-arrow:hover {
    background: rgba(168, 85, 247, 1);
    transform: translateY(-50%) scale(1.1);
}

.benefit-nav-prev {
    left: -70px;
}

.benefit-nav-next {
    right: -70px;
}

/* Mobile */
@media (max-width: 768px) {
    .benefit-nav-arrow {
        display: none;
    }

    body {
        overflow-x: hidden;
    }

    .nav,
    .header-btn {
        display: none;
    }

    /* Контакты показываем на мобильном */
    .header-contacts {
        display: flex !important;
        gap: 2rem;
        align-items: center;
        margin-right: 0.5rem;
        margin-left: 0 !important;
    }

    .header-contact-link {
        padding: 0.4rem !important;
        font-size: 0.85rem !important;
        line-height: 1 !important;
        gap: 0 !important;
    }

    .header-contact-link svg {
        width: 22px !important;
        height: 22px !important;
    }

    .header-phone-number {
        display: none !important;
    }

    .burger-menu {
        display: flex;
        margin-left: 0 !important;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow: visible;
    }

    /* Header Mobile - узкая шапка */
    .header {
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04) !important;
        height: 45px !important;
    }

    .header .container {
        padding: 0 10px !important;
        min-height: 45px !important;
        height: 45px !important;
        gap: 0.5rem !important;
        justify-content: space-between;
    }

    .logo-img {
        height: 30px !important;
        width: auto !important;
        max-width: 90px !important;
    }

    .burger-menu {
        width: 26px !important;
        height: 26px !important;
        gap: 3px !important;
        margin-left: 0 !important;
        padding: 0 !important;
    }

    .burger-menu span {
        height: 2px !important;
    }

    .hero {
        min-height: 35vh;
        padding: 0.5rem 0;
        margin-top: 50px;
    }

    .hero-content {
        padding: 0.5rem 0 !important;
    }

    /* Hide desktop version, show mobile version */
    .hero-title-desktop {
        display: none;
    }

    .hero-title-mobile {
        display: block;
        text-align: center !important;
    }

    .hero-desc-desktop {
        display: none !important;
    }

    .hero-desc-mobile {
        display: block !important;
    }

    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.4;
        margin-bottom: 0.5rem !important;
        text-align: center;
        word-spacing: normal;
        letter-spacing: normal;
    }

    /* Последняя строка заголовка - немного меньше для влезания эмодзи */
    .hero h1.hero-title-mobile:last-of-type {
        font-size: 1.4rem;
        letter-spacing: -0.06em;
        word-spacing: 0.3em;
    }

    .hero-desc {
        font-size: 0.8rem;
        margin-bottom: 0.8rem !important;
        line-height: 1.1 !important;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.7rem;
        margin-bottom: 1rem;
    }

    .hero-actions .btn-primary {
        width: auto;
        padding: 1.2rem 3rem;
    }

    .hero-contacts {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-contacts-row {
        gap: 1rem;
    }

    .contact-link-compact {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .contact-link-compact svg {
        width: 24px;
        height: 24px;
    }

    .contact-link {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        margin-bottom: 1rem;
    }

    .section-title h2 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .benefits {
        padding: 0.3rem 0 0 0 !important;
    }

    .benefits-title-desktop {
        display: none;
    }

    .benefits-title-mobile {
        display: block;
        margin-top: 0.2rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* Benefits Mobile - 6 кружочков в ряд */
    .benefits-carousel-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        height: auto !important;
        margin: 0.5rem 0 0 0 !important;
        position: relative;
        gap: 0.3rem;
        padding: 0 0.5rem;
    }

    .benefit-circle {
        position: static !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1 1 0 !important;
        min-width: 0 !important;
        width: auto !important;
        height: auto !important;
        aspect-ratio: 1;
        padding: 0.4rem !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 50% !important;
    }

    .benefit-circle.mobile-active {
        border-color: var(--accent);
        box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
        background: rgba(168, 85, 247, 0.2);
    }

    .benefit-circle-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 0 !important;
        border-radius: 50% !important;
        overflow: hidden;
    }

    .benefit-circle-icon svg {
        width: 24px !important;
        height: 24px !important;
    }

    .benefit-circle h3 {
        display: none !important;
    }

    .benefit-circle-content {
        display: none !important;
    }

    /* Прямоугольник с описанием ниже кружочков */
    .benefit-mobile-detail {
        width: 100%;
        background: var(--bg-card);
        border: 2px solid var(--accent);
        border-radius: 12px;
        padding: 0.8rem 0.8rem 0.5rem 0.8rem;
        margin: 0.5rem 0 0 0;
        min-height: auto;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .benefit-mobile-detail.show {
        max-height: 1000px;
        opacity: 1;
        transform: translateY(0);
    }

    .benefit-mobile-detail-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.6rem;
        border-bottom: 1px solid rgba(168, 85, 247, 0.3);
        text-align: center;
    }

    .benefit-mobile-detail-icon {
        width: 45px;
        height: 45px;
        background: rgba(168, 85, 247, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-light);
        flex-shrink: 0;
    }

    .benefit-mobile-detail-icon svg {
        width: 24px;
        height: 24px;
    }

    .benefit-mobile-detail h3 {
        font-size: 0.95rem;
        color: var(--primary);
        font-weight: 500 !important; /* Средняя толщина для более широких букв */
        margin: 0;
        text-align: center;
    }

    .benefit-mobile-detail h3 strong,
    .benefit-mobile-detail h3 b {
        font-weight: 700 !important; /* Жирный только для strong/b */
    }

    .benefit-mobile-detail-content {
        color: var(--text-light);
        font-size: 0.8rem;
        line-height: 1.4;
        text-align: justify;
        max-height: 800px;
        overflow-y: auto;
    }

    .benefit-mobile-detail-content p {
        margin: 0;
        word-break: keep-all;
        hyphens: none;
        white-space: normal;
        word-spacing: 0.05em;
    }

    /* Скрываем старый список */
    .benefits-mobile-list {
        display: none !important;
    }

    .about {
        padding: 0.8rem 0 !important;
        scroll-margin-top: 45px !important;
    }

    .benefits {
        scroll-margin-top: 48px !important;
    }

    .faq {
        scroll-margin-top: 45px !important;
    }

    .contact {
        scroll-margin-top: 45px !important;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .about-text {
        padding: 0 !important;
    }

    .about-text .lead {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }

    .about-text p {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.4 !important;
    }

    .about-text h2 {
        font-size: 1.1rem !important;
        margin-bottom: 0.6rem !important;
    }

    .about .section-title h2 {
        text-align: center !important;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 0.5rem 0 0.2rem 0 !important;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .contact-description {
        order: -1 !important;
        padding: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .contact-description p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }

    .contact-form-wrapper {
        padding: 1.2rem 1rem !important;
        margin: 0 !important;
    }

    .contact-form-wrapper h3 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }

    .contact-form {
        width: 100% !important;
    }

    .form-group {
        margin-bottom: 0.8rem !important;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px !important;
        padding: 0.45rem 0.6rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        line-height: 1.3 !important;
    }

    .form-group input[type="tel"] {
        padding: 0.4rem 0.6rem !important;
    }

    .form-group textarea {
        min-height: 80px !important;
    }

    .form-checkbox {
        margin-bottom: 1rem !important;
        font-size: 0.8rem !important;
    }

    .btn-primary {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        text-align: center;
        line-height: 1.4;
    }

    .form-row {
        display: grid !important;
        grid-template-columns: 0.7fr 1.3fr !important;
        gap: 0.8rem !important;
        margin-bottom: 0.8rem !important;
    }

    .form-row .form-group {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    /* FAQ на мобильных - показываем девушек */
    .faq {
        padding: 0 0 0.5rem 0 !important;
        background-size: auto 100% !important;
    }

    .faq-title-desktop {
        display: none;
    }

    .faq-title-mobile {
        display: block;
        text-align: center;
        margin-top: 1rem !important;
    }
}

.footer {
    padding: 1rem 0 0.8rem !important;
}

.footer-content {
    grid-template-columns: 1fr 100px !important;
    gap: 1rem !important;
    text-align: left !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.8rem !important;
    align-items: start !important;
}

.footer-contacts {
    gap: 0.6rem !important;
    text-align: left !important;
}

.footer-contact-item {
    text-align: left !important;
}

.footer-contact-item strong {
    font-size: 0.85rem !important;
    white-space: nowrap !important;
}

.footer-contact-item span {
    font-size: 0.65rem !important;
    white-space: nowrap !important;
    display: block !important;
}

.footer-social {
    gap: 0.5rem !important;
    justify-content: flex-start !important;
    flex-direction: column !important;
    align-items: flex-end !important;
}

.footer-social a {
    width: 32px !important;
    height: 32px !important;
}

.footer-social svg {
    width: 18px !important;
    height: 18px !important;
}

.footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem !important;
}

.footer-copy,
.footer-privacy {
    font-size: 0.8rem !important;
}

.locations-grid {
    grid-template-columns: 1fr;
}

.requirements-list {
    gap: 1rem;
}

.requirement-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
}

.process-steps {
    flex-direction: column;
}

.process-arrow {
    transform: rotate(90deg);
}



/* Форма контактов - ИСПРАВЛЕНО */
/* КОНТАКТЫ - ПОЛНАЯ ПЕРЕДЕЛКА ДЛЯ МОБИЛЬНЫХ */
.contact {
    padding: 0.5rem 0 0.2rem 0 !important;
}

.contact .container {
    padding: 0 10px !important;
}

.contact-wrapper {
    display: block !important;
    grid-template-columns: none !important;
    padding: 0 !important;
    gap: 0 !important;
}

.contact-info {
    padding: 0 !important;
    margin-bottom: 2rem !important;
}

.contact-info h2 {
    font-size: 1.3rem !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

.contact-info>p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

.contact-methods {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    width: 100% !important;
}

.contact-method-btn {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 0.9rem !important;
    min-height: 70px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1rem !important;
}

.contact-method-btn svg {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
}

.phone-text {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    flex: 1 !important;
}

.phone-text strong {
    font-size: 1rem;
    text-align: center !important;
    width: 100% !important;
}

.phone-text span {
    font-size: 0.8rem;
    text-align: center !important;
    width: 100% !important;
}

.contact-form-wrapper {
    padding: 1.5rem 1rem !important;
    width: 100% !important;
}

.contact-form-wrapper h3 {
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
}

.form-row {
    grid-template-columns: 0.6fr 1.4fr !important;
}

.form-submit-row {
    flex-direction: column !important;
    gap: 1rem !important;
}

.btn-submit {
    width: 100% !important;
    order: 1 !important;
}

.form-checkbox-compact {
    order: 2 !important;
    justify-content: center !important;
}

.form-checkbox-compact label {
    font-size: 0.7rem !important;
    text-align: center !important;
}

.method-item {
    padding: 0.8rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
}

.method-icon {
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0 !important;
}

.method-text {
    flex: 1 !important;
    min-width: 0 !important;
}

.method-name {
    font-size: 0.9rem !important;
    margin-bottom: 0.2rem !important;
}

.method-desc {
    font-size: 0.75rem !important;
}

.testimonials-cta {
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
}

.testimonials-cta h2 {
    font-size: 1.5rem;
}

.testimonials-cta p {
    font-size: 1rem;
}

/* FAQ Mobile - компактная версия */
.faq-question {
    padding: 0.7rem 1rem !important;
}

.faq-question h3:not([style]) {
    font-size: 0.75rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    line-height: 1.25 !important;
    max-width: 90% !important;
    flex: 1 !important;
}

.faq-question h3[style] {
    white-space: normal !important;
    word-wrap: break-word !important;
    max-width: 90% !important;
    flex: 1 !important;
}

.faq-icon {
    font-size: 1.2rem !important;
}

.faq-item {
    margin-bottom: 0.4rem !important;
    border-radius: 8px !important;
}

.faq-item:first-child.active .faq-answer {
    max-height: 2000px !important;
}

.faq-item.active .faq-answer {
    padding: 0 0.5rem 0.3rem !important;
}

.faq-answer p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    padding: 0 0.5rem 0.3rem !important;
    margin-bottom: 0.3rem !important;
}

.faq-answer p:last-child {
    margin-bottom: 0 !important;
}

/* Desktop - FAQ нормальный размер шрифта */
@media (min-width: 769px) {
    .faq-question h3:not([style]) {
        font-size: 1.05rem !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
        text-align: justify;
    }

    .hero-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .benefit-card {
        width: 80% !important;
        max-width: 260px !important;
        padding: 1.2rem 0.8rem !important;
    }

    .benefit-card h3 {
        font-size: 1rem !important;
    }

    .benefit-card p {
        font-size: 0.8rem !important;
    }

    .benefit-icon {
        width: 45px !important;
        height: 45px !important;
    }

    .benefit-details span {
        font-size: 0.7rem !important;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .testimonials-cta {
        margin: 0 0.5rem;
        padding: 2rem 1rem;
    }

    .testimonials-cta h2 {
        font-size: 1.3rem;
    }

    .contact-link {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    .contact .container {
        padding: 0 8px !important;
    }

    .contact-info h2 {
        font-size: 1.1rem !important;
    }

    .contact-info>p {
        font-size: 0.85rem !important;
    }

    .method-item {
        padding: 0.7rem !important;
    }

    .method-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .method-name {
        font-size: 0.85rem !important;
    }

    .method-desc {
        font-size: 0.7rem !important;
    }

    .contact-form-wrapper {
        padding: 1rem 0.8rem !important;
    }
}



.faq-list {
    max-width: 900px;
    margin: 0 auto;
}



.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.8rem 1.2rem;
    opacity: 1;
}



/* Testimonials Section */
.testimonials {
    padding: 1.5rem 0;
    background: var(--bg-light);
}

.testimonials-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="white" opacity="0.1"/></svg>');
    pointer-events: none;
}

.testimonials-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.testimonials-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonials-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonials-cta .btn svg {
    width: 24px;
    height: 24px;
}


/* Плавающая кнопка звонка */
.floating-call-wrapper {
    position: fixed;
    bottom: 95px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.floating-call-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-call 2s infinite;
}

.floating-call-text {
    background: var(--primary);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.floating-call-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.floating-call-btn svg {
    width: 28px;
    height: 28px;
}

@keyframes pulse-call {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Кнопка "Вверх" */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, #b89850 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    border: none;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

/* Виджет "Звони сейчас" */
.call-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
    text-decoration: none;
}

.call-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .floating-call-wrapper {
        bottom: 80px;
        right: 20px;
    }

    /* Размеры кнопки и текста управляются через JavaScript из админки */

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .call-widget {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}




/* Channel CTA Mini Block - Compact version under gallery */
.channel-cta-mini {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-image: url('images/girl.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.channel-cta-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(22, 33, 62, 0.5) 100%);
    z-index: 1;
}

.channel-cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 50%;
}

.channel-cta-mini p:not([style]) {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
    text-align: right;
    width: 100%;
}

/* Для p с inline стилями - НЕ перезаписываем их */
.channel-cta-mini p[style] {
    margin: 0;
    width: 100%;
    font-weight: 600;
    /* color, font-size, line-height берутся из inline стилей */
}

/* НЕ перезаписываем inline стили у span внутри p */
.channel-cta-mini p span[style] {
    /* Все стили берутся из inline атрибутов - НЕ перезаписываем */
}

.cta-text-mobile {
    display: none;
}

.cta-text-desktop {
    display: inline;
}

.channel-cta-mini p strong {
    display: block;
    margin-top: 0.3rem;
    /* НЕ задаем color и font-size - пусть работают inline стили или наследование */
}

/* Базовый цвет только если нет стилей вообще */
.channel-cta-mini p:not([style])>strong:not([style]) {
    font-size: 1.05rem;
    color: var(--accent-light);
}

/* Если strong внутри span с цветом - наследуем */
.channel-cta-mini p span[style*="color"] strong {
    color: inherit;
}

.channel-cta-mini-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    align-self: center;
}

.channel-cta-mini-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.6);
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.channel-cta-mini-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile styles for channel CTA mini */
@media (max-width: 768px) {
    .about-image {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .channel-cta-mini {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem 1rem;
        margin-top: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        height: auto;
        min-height: 280px;
        border-radius: 12px;
        box-sizing: border-box;
    }

    .channel-cta-content {
        padding-right: 0;
        justify-content: center;
    }

    .channel-cta-mini p:not([style]) {
        font-size: 0.9rem;
        text-align: center;
        max-width: 100%;
    }

    /* Для p с inline стилями на мобилке - НЕ перезаписываем */
    .channel-cta-mini p[style] {
        max-width: 100%;
        /* font-size и line-height берутся из inline стилей */
    }

    .cta-text-desktop {
        display: none;
    }

    .cta-text-mobile {
        display: inline;
        /* font-size берётся из inline стилей */
    }

    /* Inline стили работают автоматически */

    /* Базовый размер только если нет стилей */
    .channel-cta-mini p:not([style]) strong:not([style]) {
        font-size: 1rem;
    }

    .channel-cta-mini-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/*
 Desktop - Contact blocks FORCED STYLES */
@media (min-width: 769px) {
    .contact-method-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1rem !important;
        padding: 1.5rem 1.5rem !important;
        min-height: 120px !important;
    }

    .contact-method-btn svg {
        width: 35px !important;
        height: 35px !important;
    }

    .contact-methods {
        gap: 1rem !important;
        padding-bottom: 1.4rem !important;
    }

    .phone-text {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .phone-text strong {
        font-size: 1.2rem;
    }

    .contact-method-btn.phone .phone-text strong {
        letter-spacing: 0.08em;
    }

    .phone-text span {
        font-size: 1rem;
    }

    .contact-description {
        margin-bottom: 2rem !important;
    }

    .contact-form-wrapper {
        padding-bottom: 3.4rem !important;
    }
}

/* Desktop - Footer social icons centered */
@media (min-width: 769px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: start !important;
        gap: 2rem !important;
    }

    .footer-contacts {
        justify-self: start !important;
    }

    .footer-social {
        justify-self: center !important;
    }

    .footer-promo {
        justify-self: stretch !important;
    }

    .footer {
        position: relative !important;
    }

    .footer-contact-item strong {
        font-size: 1rem !important;
    }

    .footer-contact-item strong .footer-contact-desc {
        font-size: 1rem !important;
    }

    .footer-contact-desc {
        font-size: 1rem !important;
    }
}


/* About title versions */
.about-title-mobile {
    display: none;
}

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

    .about-title-mobile {
        display: block;
        line-height: 1.3 !important;
    }
}


/* ========================================
   ПРИОРИТЕТ СТИЛЕЙ ИЗ РЕДАКТОРА
   ======================================== */

/* Контент из админки - inline стили НЕ перезаписываются базовыми стилями */
/* Используем более высокую специфичность чтобы inline стили работали */

/* Убираем жесткие ограничения для мобильной версии */
@media (max-width: 768px) {
    .about-text p[style] {
        font-size: inherit !important;
        margin-bottom: inherit !important;
    }

    .about-text .lead[style] {
        font-size: inherit !important;
        margin-bottom: inherit !important;
    }

    .about-text h2[style] {
        font-size: inherit !important;
        margin-bottom: inherit !important;
    }
}


/* ========================================
   ПРИОРИТЕТ INLINE СТИЛЕЙ ИЗ РЕДАКТОРА
   ======================================== */

/* Убираем жесткие стили для элементов с inline атрибутами */
/* Это позволяет inline стилям работать как задумано */

/* Для about-text - inline стили имеют приоритет */
/* Для channel CTA - inline стили с !important применяются через JS */
/* Для мобильной версии - inline стили с !important применяются через JS */

/* ========================================
   ФИНАЛЬНЫЙ ПРИОРИТЕТ ДЛЯ CHANNEL CTA
   ======================================== */

/* Inline стили из редактора имеют приоритет - не перезаписываем их */

/* ========================================
   СТИЛИ ДЛЯ FAQ И ПОЛИТИКИ ИЗ РЕДАКТОРА
   ======================================== */

/* FAQ контент - inline стили имеют приоритет (не перезаписываем их) */
/* Пустые правила чтобы inline стили работали */

/* Политика конфиденциальности - inline стили работают */
/* Пустые правила чтобы inline стили работали */

/* Базовые стили для таблиц в FAQ */
.faq-answer table {
    border-collapse: collapse;
    width: 100%;
    margin: 1rem 0;
}

.faq-answer table td,
.faq-answer table th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.faq-answer table th {
    background-color: #f2f2f2;
    font-weight: bold;
}


/* ========================================
   ЗАЩИТА ШАПКИ ОТ ИЗМЕНЕНИЯ РАЗМЕРА ШРИФТА
   ======================================== */

/* Контейнер шапки - не позволяем элементам сжиматься */
.header .container {
    flex-wrap: nowrap !important;
}

/* Навигация - не сжимается и не переносит текст */
.nav {
    flex-shrink: 0 !important;
}

.nav a {
    white-space: nowrap !important;
    font-size: 0.95rem !important;
}

/* Контакты в шапке - не сжимаются */
.header-contacts {
    flex-shrink: 0 !important;
}

/* Увеличенный gap для мобильной версии */
@media (max-width: 768px) {
    .header-contacts {
        gap: 2rem !important;
    }
}

.header-phone-number {
    white-space: nowrap !important;
    font-size: 1rem !important;
}

/* Кнопка откликнуться - только для десктопа */
@media (min-width: 769px) {
    .header-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        text-align: center !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Если шапка переполняется - разрешаем видимость */
.header {
    overflow: visible !important;
}

.header .container {
    overflow: visible !important;
}

/* Контактные блоки - фиксированные размеры шрифта */
.contact-method-btn .phone-text strong {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
}

.contact-method-btn .phone-text span {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
}

/* Футер - фиксированные размеры */
.footer-contact-item strong {
    font-size: 0.95rem !important;
}

.footer-contact-desc {
    font-size: 0.8rem !important;
}

.footer-bottom p {
    font-size: 0.8rem !important;
}
/* 
========== УНИФИКАЦИЯ ШРИФТОВ ПРЕИМУЩЕСТВ ========== */

/* Все заголовки преимуществ - средняя толщина шрифта */
.benefit-mobile-item h3,
.benefit-mobile-detail h3,
.benefit-circle h3 {
    font-family: Arial, sans-serif !important;
    font-weight: 500 !important; /* Средняя толщина для более широких букв */
    color: var(--primary);
}

/* Поддержка bold внутри заголовков */
.benefit-mobile-item h3 strong,
.benefit-mobile-item h3 b,
.benefit-mobile-detail h3 strong,
.benefit-mobile-detail h3 b,
.benefit-circle h3 strong,
.benefit-circle h3 b {
    font-weight: 700 !important; /* Жирный только когда есть тег */
}

/* Все тексты преимуществ - базовые стили (могут быть переопределены inline стилями) */
.benefit-mobile-item p,
.benefit-mobile-detail-content,
.benefit-mobile-detail-content p,
.benefit-circle-content p {
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    font-weight: normal;
}

/* Убираем жирность с обычного текста, оставляем только на заголовках */
.benefit-circle-content p strong,
.benefit-mobile-item p strong,
.benefit-mobile-detail-content p strong {
    font-weight: 700;
}/* ========== БАЗОВЫЕ СТИЛИ ДЛЯ ПРЕИМУЩЕСТВ (без !important чтобы inline стили работали) ========== */

/* Базовые стили для блока "Бесплатное проживание" */
.benefit-circle[data-benefit="0"] .benefit-circle-content p,
.benefit-circle[data-benefit="0"] .benefit-circle-content * {
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    font-weight: normal;
}

/* Базовые стили для span внутри преимуществ */
.benefit-circle[data-benefit="0"] .benefit-circle-content span {
    font-weight: normal;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
}