/* CSS Reset & Variables */
:root {
    --bg-dark: #050614;
    --text-main: #ffffff;
    --text-muted: #a1a3bc;
    --accent-gold: #e8b96c;
    --accent-gold-hover: #d2a45b;
    --form-bg: #eef0f5;
    --form-text: #4a4d5e;
    --form-input-bg: #ffffff;
    --border-radius: 8px;
    --font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    /* Картинка-заглушка для заднего фона с кругами */
    background-image: url('../images/photo.png.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header Styles */
.header {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo img {
    height: 32px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn {
    display: inline-block;
    background-color: var(--accent-gold);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.btn-header {
    color: var(--bg-dark);
}

.btn:hover {
    background-color: var(--accent-gold-hover);
}

/* Hero Section Styles */
.hero {
    display: flex;
    align-items: center;
    padding: 48px 0 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content {
    padding-right: 20px;
}

.subtitle {
    display: block;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 32px;
}

.hero h1 .gold-text {
    color: var(--accent-gold);
}

.hero-desc {
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    opacity: 0.9;
}

/* Form Card Styles */
.form-card {
    background-color: var(--form-bg);
    border-radius: 12px;
    padding: 40px;
    color: var(--form-text);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-card h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.form-card h2 .gold-text {
    color: var(--accent-gold);
}

.form-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 28px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: var(--border-radius);
    background-color: var(--form-input-bg);
    font-size: 14px;
    color: #333;
    font-family: inherit;
}

.form-control::placeholder {
    color: #aaa;
}

.form-control:focus {
    outline: 2px solid var(--accent-gold);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Phone Input Specifics */
.phone-input-wrapper {
    display: flex;
    background-color: var(--form-input-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    align-items: center;
    padding-left: 12px;
}

.phone-input-wrapper:focus-within {
    outline: 2px solid var(--accent-gold);
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding-right: 8px;
    border-right: 1px solid #eee;
}

.country-selector img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.country-selector span {
    font-size: 10px;
    color: #666;
}

.phone-input-wrapper input {
    flex-grow: 1;
    padding: 14px 12px;
    border: none;
    outline: none;
    background: transparent;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Apply the old commented form look to active integrated forms */
.form-wrapper .form-container-main,
.contact-section-bottom .form-container-main {
    width: 100%;
    max-width: 100%;
    background-color: #e6e6e6;
    border-radius: 18px;
    padding: 40px;
    color: var(--form-text);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.form-wrapper .form-container-main form,
.contact-section-bottom .form-container-main form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-wrapper .form-container-main .form-headline {
    margin-bottom: 18px;
    /* background-color: #ffffff; */
    border-radius: 16px;
    padding: 18px 20px 14px;
}

.form-wrapper .form-container-main .form-title {
    font-size: 42px;
    line-height: 1.12;
    font-weight: 600;
    color: #232738;
    margin-bottom: 10px;
}

.form-wrapper .form-container-main .form-title .gold-text {
    color: var(--accent-gold);
}

.form-wrapper .form-container-main .form-subtitle {
    margin-bottom: 0;
    color: #6f7488;
    font-size: 16px;
    line-height: 1.45;
}

.form-wrapper .form-container-main .u-form-vertical.u-form-spacing-10,
.contact-section-bottom .form-container-main .u-form-vertical.u-form-spacing-10 {
    margin-left: 0;
    width: 100%;
}

.form-wrapper .form-container-main .u-form-vertical.u-form-spacing-10 .u-form-group,
.contact-section-bottom .form-container-main .u-form-vertical.u-form-spacing-10 .u-form-group {
    margin-bottom: 0;
    padding-left: 0;
}

.form-wrapper .form-container-main .form__input,
.contact-section-bottom .form-container-main .form__input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: var(--border-radius) !important;
    background-color: var(--form-input-bg) !important;
    font-size: 14px;
    color: #333333 !important;
    font-family: inherit;
}

.form-wrapper .form-container-main .form__input::placeholder,
.contact-section-bottom .form-container-main .form__input::placeholder {
    color: #aaaaaa;
}

.form-wrapper .form-container-main .form__input:focus,
.contact-section-bottom .form-container-main .form__input:focus {
    outline: 2px solid var(--accent-gold);
    box-shadow: none;
}

.form-wrapper .form-container-main .rf-form-button,
.contact-section-bottom .form-container-main .rf-form-button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 30px;
    background-color: var(--accent-gold);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-wrapper .form-container-main .rf-form-button:hover,
.contact-section-bottom .form-container-main .rf-form-button:hover {
    background-color: var(--accent-gold-hover);
}

.consent-text {
    font-size: 11px;
    color: #999;
    text-align: left;
    line-height: 1.4;
}

.consent-text a {
    color: #999;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 36px;
    }
    .form-card {
        padding: 30px 20px;
    }

    .form-wrapper .form-container-main,
    .contact-section-bottom .form-container-main {
        padding: 30px 20px 0px 20px;
    }

    .form-wrapper .form-container-main .form-title {
        font-size: 22px;
    }

    .form-wrapper .form-container-main .form-subtitle {
        font-size: 14px;
    }

    .form-wrapper .form-container-main .form-headline {
        padding: 14px 14px 12px;
        border-radius: 12px;
    }
}

/* Базовые настройки для секции */
.about-section {
    background-color: #ffffff;
    padding: 30px 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    color: #1a1a1a;
}

.about-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* --- Левая колонка: Контент --- */
.about-subtitle {
    display: block;
    color: #e2bd7e;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.about-title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 32px;
}

.text-gold {
    color: #e2bd7e;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
}

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

.about-features-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
}

.about-features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 20px;
}

.about-features-list li strong {
    font-weight: 600;
}

/* --- Правая колонка: Сетка карточек --- */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: #f1f2f4;
    border-radius: 24px;
    padding: 48px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    width: 64px;
    height: 64px;
    background-color: #e6c587;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

/* --- Адаптивность --- */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-cards-grid {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 20px;
    }
}

/* Сетка карточек */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 320px);
    gap: 24px;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
}

/* Стили отдельной карточки */
.feature-card {
    background-color: #f1f2f4; /* Светло-серый фон */
    border-radius: 24px;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #e2e5ea;
}

/* Круг с иконкой */
.card-icon {
    width: 64px;
    height: 64px;
    background-color: #dfbc78; /* Золотистый цвет из макета */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

/* Заголовок карточки */
.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2430;
    line-height: 1.3;
    margin: 0 0 16px 0;
}

/* Текст описания */
.card-text {
    font-size: 15px;
    color: #4f566b;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .about-section .container {
        padding: 0 12px;
    }

    .about-container {
        padding: 0;
        gap: 24px;
    }

    .about-cards-grid {
        width: 90%;
    }

    .feature-card {
        width: 90%;
        padding: 40px 22px;
        border-radius: 20px;
    }
}
/* Базовые стили для секции */
.benefits-section {
    background-color: #ffffff;
    padding: 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
}

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

/* Разделительная линия сверху */
.divider-line {
    width: 100%;
    height: 1px;
    background-color: #f1ebd8; /* Светлый золотистый оттенок линии */
    margin-bottom: 60px;
}

/* Сетка преимуществ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* Элемент преимущества */
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Иконки */
.benefit-icon {
    width: 60px;
    height: 60px;
    color: #dfbc78; /* Золотистый цвет из макета */
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

/* Заголовки */
.benefit-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

/* Текст описания */
.benefit-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 300; /* Тонкое начертание шрифта для соответствия макету */
    margin: 0;
    max-width: 340px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 60px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
    
    .divider-line {
        margin-bottom: 40px;
    }
}
/* Секция статистики с фоновым изображением */
.stats-section {
    background-color: #050614; /* Резервный темно-синий цвет */
    /* Картинка-заглушка для заднего фона */
    background-image: url('../images/photo.png.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    color: #ffffff;
}

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

/* Сетка из 4 колонок */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Карточка статистики */
.stat-card {
    text-align: center;
}

.stat-val {
    font-size: 34px;
    font-weight: 500;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

/* Горизонтальный разделитель */
.stat-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    width: 100%;
    margin: 0 auto 16px auto;
}

/* Ограничение ширины текста для автоматического переноса */
.stat-label {
    font-size: 15px;
    line-height: 1.4;
    color: #f1f2f4;
    margin: 0 auto;
    max-width: 190px; 
    font-weight: 400;
}

/* Нижний ряд (Текст + Кнопка) */
.stats-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    flex: 1;
    max-width: 720px;
    font-weight: 400;
}

/* Стили кнопки */
.cta-button {
    display: inline-block;
    background-color: #e5c484; /* Золотистый оттенок */
    color: #ffffff;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #d4b272;
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        margin-bottom: 50px;
    }
    
    .stats-cta-row {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-description {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-val {
        font-size: 32px;
    }
}
/* Базовые настройки секции */
.services-section {
    background-color: #f5f6f8; /* Светло-серый фон как на макете */
    padding: 80px 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
}

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

/* Заголовок секции */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    display: block;
    color: #dfbc78; /* Золотистый цвет */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 500;
}

.services-title {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* Сетка карточек */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Стили карточки */
.service-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 24px 50px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Выравнивание по левому краю */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Иконка */
.service-icon {
    width: 48px;
    height: 48px;
    color: #dfbc78; /* Золотистый контур */
    margin-bottom: 32px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

/* Заголовок внутри карточки */
.service-name {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 20px 0;
    min-height: 50px; /* Выравнивание заголовков по высоте */
}

/* Текст описания */
.service-desc {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #555555;
    font-weight: 300;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-name {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-title {
        font-size: 26px;
    }
}
/* Базовые настройки секции */
.process-section {
    background-color: #ffffff;
    padding: 80px 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    color: #1a1a1a;
    text-align: center;
}

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

/* Главный заголовок */
.process-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 80px;
    color: #1a1a1a;
}

/* Обёртка для шагов и стрелок */
.steps-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

/* Карточка отдельного шага */
.step-card {
    flex: 1;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Иконка шага */
.step-icon {
    width: 72px;
    height: 72px;
    color: #dfbc78; /* Золотистый цвет из макета */
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

/* Заголовок шага */
.step-name {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 20px 0;
    color: #1a1a1a;
}

/* Описание шага */
.step-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    font-weight: 300;
    margin: 0;
}

/* Стрелки между шагами */
.step-arrow {
    width: 40px;
    height: 40px;
    color: #dfbc78;
    margin-top: 16px; /* Выравнивание по высоте иконок */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.step-arrow svg {
    width: 100%;
    height: 100%;
}

/* Адаптивность для мобильных устройств (как на втором скриншоте) */
@media (max-width: 900px) {
    .process-title {
        font-size: 28px;
        margin-bottom: 60px;
    }

    .steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-card {
        max-width: 100%;
    }

    /* Поворачиваем стрелку вертикально */
    .step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        margin-bottom: 0;
    }
}
/* Базовые настройки секции с фоновым изображением-заглушкой */
.cta-banner-section {
    background-color: #050614; /* Резервный темно-синий цвет */
    background-image: url('../images/photo.png.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Контейнер для центрирования контента */
.cta-banner-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px; /* Отступ между заголовком и кнопкой */
}

/* Стили заголовка */
.cta-banner-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* Выделение текста золотым цветом */
.highlight-gold {
    color: #e5c484;
}

/* Стили кнопки */
.cta-banner-button {
    display: inline-block;
    background-color: #e5c484; /* Золотистый цвет фона кнопки */
    color: #ffffff;
    text-decoration: none;
    padding: 20px 48px;
    border-radius: 50px; /* Овальная форма (пилюля) */
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-banner-button:hover {
    background-color: #d4b272; /* Цвет при наведении */
    transform: translateY(-2px); /* Легкий эффект поднятия */
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .cta-banner-section {
        padding: 60px 20px;
    }
    
    .cta-banner-title {
        font-size: 26px;
    }
    
    .cta-banner-container {
        gap: 30px;
    }
    
    .cta-banner-button {
        padding: 16px 36px;
        font-size: 15px;
    }
}

/* Базовые настройки секции */
.testimonials-section {
    background-color: #ffffff;
    padding: 80px 0 0 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    color: #1a1a1a;
    overflow: hidden; /* Предотвращает выход слайдера за пределы экрана */
}

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

/* Шапка: Заголовки и кнопки управления */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

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

.testimonials-subtitle {
    color: #dfbc78; /* Золотистый цвет */
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

/* Кнопки навигации */
.slider-controls {
    display: flex;
    gap: 16px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e5c484;
    border: none;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-btn:hover {
    background-color: #d4b272;
    transform: scale(1.05);
}

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

/* Обёртка слайдера */
.testimonials-slider {
    width: 100%;
    position: relative;
}

/* Трек с карточками */
.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px; /* Пространство для тени/скроллбара */
    
    /* Скрытие стандартного скроллбара */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

/* Карточка отзыва */
.testimonial-card {
    background-color: #f5f6f8; /* Светло-серый фон */
    border-radius: 24px;
    padding: 40px 32px;
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

/* Блок с информацией о пользователе */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #1a1a1a;
}

.review-date {
    font-size: 14px;
    color: #888888;
    font-weight: 400;
}

/* Текст отзыва */
.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 400;
    margin: 0;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    /* Скрываем кнопки на мобильных, так как используется нативный свайп */
    .slider-controls {
        display: none;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 30px 24px;
    }
    
    .testimonials-track {
        gap: 16px;
    }
}
/* Базовые стили для секции FAQ */
.faq-section {
    background-color: #ffffff;
    padding: 60px 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    display: flex;
    justify-content: center;
}

.faq-container {
    width: 100%;
    max-width: 600px; /* Ширина центрированного блока с вопросами */
    padding: 0 20px;
    border-top: 1px solid #f0f0f0; /* Верхняя тонкая линия над заголовком */
    padding-top: 40px;
}

/* Заголовок FAQ */
.faq-title {
    text-align: center;
    color: #dfbc78; /* Золотистый цвет */
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 40px 0;
    letter-spacing: 1px;
}

/* Список вопросов */
.faq-list {
    display: flex;
    flex-direction: column;
}

/* Отдельный элемент (вопрос + ответ) */
.faq-item {
    border-bottom: 1px solid #f0f0f0; /* Тонкая линия между вопросами */
}

.faq-item:first-child {
    border-top: 1px solid #f0f0f0; /* Линия над первым вопросом */
}

/* Кнопка с вопросом */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

/* Текст вопроса */
.question-text {
    font-size: 18px;
    font-weight: 400;
    color: #050614;
    line-height: 1.4;
    padding-right: 20px;
}

/* Иконка плюса/минуса (создана на чистом CSS) */
.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #050614;
    transition: transform 0.3s ease;
}

/* Горизонтальная линия плюса */
.faq-icon::before {
    top: 11px;
    left: 2px;
    width: 20px;
    height: 1.5px;
}

/* Вертикальная линия плюса */
.faq-icon::after {
    top: 2px;
    left: 11.25px;
    width: 1.5px;
    height: 20px;
}

/* Анимация иконки при активном классе (превращение в минус) */
.faq-question.active .faq-icon::after {
    transform: rotate(90deg) scale(0);
}

/* Блок ответа (скрыт по умолчанию) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* Внутренний контейнер ответа для отступов */
.faq-answer-content {
    padding-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    font-weight: 300;
}

/* Адаптивность для мобильных */
@media (max-width: 576px) {
    .faq-title {
        font-size: 24px;
    }
    
    .question-text {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px 0;
    }
}
/* Базовые стили секции с фоновой картинкой-заглушкой */
.contact-section-bottom {
    background-color: #050614;
    background-image: url('../images/photo.png.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.contact-container-bottom {
    width: 100%;
    max-width: 500px; /* Ограничиваем ширину формы */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Заголовок */
.contact-title-bottom {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 40px;
}

.contact-title-bottom .gold-text {
    color: #e5c484; /* Золотистый цвет */
}

/* Форма */
.bottom-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Группа полей (Label + Input) */
.form-group-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-bottom label {
    font-size: 13px;
    color: #ffffff;
    font-weight: 400;
}

/* Стандартный инпут */
.form-input-bottom {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    background-color: #ffffff;
    font-size: 14px;
    color: #333333;
    font-family: inherit;
    outline: none;
}

.form-input-bottom::placeholder {
    color: #a0a0a0;
}

.form-input-bottom:focus {
    box-shadow: 0 0 0 2px #e5c484;
}

/* Поле с телефоном и флагом */
.phone-input-wrapper-bottom {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding-left: 12px;
    overflow: hidden;
}

.phone-input-wrapper-bottom:focus-within {
    box-shadow: 0 0 0 2px #e5c484;
}

.country-selector-bottom {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding-right: 12px;
    border-right: 1px solid #e0e0e0;
}

.country-selector-bottom img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.country-selector-bottom span {
    font-size: 10px;
    color: #666;
}

.phone-input-bottom {
    flex-grow: 1;
    padding: 14px 16px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333333;
    outline: none;
}

.phone-input-bottom::placeholder {
    color: #a0a0a0;
}

/* Кнопка */
.btn-submit-bottom {
    width: 100%;
    padding: 16px;
    background-color: #e5c484;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-submit-bottom:hover {
    background-color: #d4b272;
}

/* Текст согласия */
.consent-text-bottom {
    font-size: 11px;
    color: #888888;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.consent-text-bottom a {
    color: #888888;
    text-decoration: underline;
}

.consent-text-bottom a:hover {
    color: #ffffff;
}

/* Адаптивность */
@media (max-width: 576px) {
    .contact-title-bottom {
        font-size: 24px;
    }
}
/* Базовые стили футера */
.site-footer {
    background-color: #050614; /* Темно-синий фон */
    padding: 60px 0 40px 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    color: #ffffff;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* Отступы между элементами (меню, лого, копирайт) */
}

/* Навигация */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e5c484; /* Золотистый цвет при наведении */
}

/* Логотип */
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    border: 1px solid #e5c484; /* Золотистая рамка как на макете */
    border-radius: 8px; /* Скругление углов рамки логотипа */
    display: block;
}

/* Копирайт */
.footer-copyright {
    font-size: 13px;
    color: #888888;
    font-weight: 400;
}

/* Адаптивность для мобильных */
@media (max-width: 576px) {
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}