/* Современные переменные */
:root {
    --primary: #6adad8;
    --primary-hover: #5bc5c3;
    --text: #1a1d2d;
    --text-light: #667085;
    --bg: #f9fbfd;
    --card-bg: #ffffff;
    --border: #e4e7eb;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --font: 'Inter', system-ui, sans-serif;
}

/* Секция */
.modern-split-section {
    padding: 80px 0;
    background: var(--bg);
    font-family: var(--font);
}

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

.mod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Адаптив: на мобильных — одна колонка */
@media (max-width: 992px) {
    .mod-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Левая колонка */
.mod-col-left .mod-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.3;
}

.mod-col-left .mod-title span {
    color: var(--primary);
}

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

.mod-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.mod-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mod-item p {
    margin: 0;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Правая колонка — форма */
.mod-col-right {
    display: flex;
    justify-content: center;
}

.mod-form-card {
    background: var(--card-bg, #fff);
    padding: 40px;
    border-radius: var(--radius, 16px);
    box-shadow: var(--shadow, 0 10px 30px rgba(0, 0, 0, 0.1));
    width: 100%;
    max-width: 420px;
    border: 1px solid #f0f2f5;
}

.mod-badge {
    display: inline-block;
    background: var(--primary, #6adad8);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.mod-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text, #111);
    margin: 0 0 24px 0;
}

/* Стили для полей формы — input и select */
.form__body label {
    display: block;
    margin-bottom: 16px;
}

.form__body input[type="text"],
.form__body select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border, #ddd);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text, #111);
    background: #fcfdfe;
    transition: var(--transition, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease);
    box-sizing: border-box;
}

.form__body select {
    /* Добавляем стрелку вниз для select */
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236adad8'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.form__body input[type="text"]:focus,
.form__body select:focus {
    outline: none;
    border-color: var(--primary, #6adad8);
    background: white;
    box-shadow: 0 0 0 4px rgba(106, 218, 216, 0.1);
}

/* Кнопка отправки */
.mod-form-card button[type="submit"] {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary, #6adad8);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition, all 0.3s ease);
    margin: 24px 0;
}

.mod-form-card button[type="submit"]:hover {
    background: var(--primary-hover, #5fc7c5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 218, 216, 0.25);
}

/* Блок с ценой (если добавишь позже) — можно использовать */
.mod-price-block {
    text-align: center;
    margin: 24px 0;
}

.mod-old-price {
    text-decoration: line-through;
    color: var(--text-light, #888);
    margin-right: 8px;
    font-size: 16px;
}

.mod-new-price {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

/* Дополнительная подпись под формой */
.mod-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light, #888);
    margin-top: 16px;
    line-height: 1.5;
    font-style: italic;
}

/* Адаптив для малых экранов */
@media (max-width: 480px) {
    .mod-form-card {
        padding: 30px 20px;
    }

    .mod-col-left .mod-title {
        font-size: 2rem;
    }

    .mod-form-card button[type="submit"] {
        padding: 14px;
        font-size: 0.95rem;
    }

    .mod-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .mod-form-title {
        font-size: 1.4rem;
    }
}




/* Секция "What is Pulsero?" — только твой текст */
.pulsero-about-section {
    padding: 80px 0;
    background: #f9fbfd;
    font-family: 'Inter', system-ui, sans-serif;
}

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

.pulsero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Адаптив: на мобильных — текст сверху */
@media (max-width: 992px) {
    .pulsero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pulsero-col-img {
        order: -1;
    }
}

/* Изображение */
.pulsero-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.pulsero-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Заголовок */
.pulsero-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1d2d;
    margin-bottom: 24px;
    line-height: 1.3;
}

.pulsero-title span {
    color: #6adad8;
}

/* Текст — без изменений, только разбивка на логические абзацы */
.pulsero-content {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

.pulsero-content p {
    margin: 0 0 16px 0;
}

/* Адаптив для малых экранов */
@media (max-width: 480px) {
    .pulsero-about-section {
        padding: 60px 0;
    }
    .pulsero-title {
        font-size: 2rem;
    }
    .pulsero-content {
        font-size: 15px;
    }
    .pulsero-image-wrapper {
        padding: 15px;
    }
}







/* Mechanism of Action */
.pulsero-mechanism {
    padding: 100px 0;
    background: #f9fbfd;
    font-family: 'Inter', system-ui, sans-serif;
}

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

.pulsero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1d2d;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pulsero-title span {
    color: #6adad8;
}

.pulsero-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #667085;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pulsero-mechanism-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Адаптив */
@media (max-width: 992px) {
    .pulsero-mechanism-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pulsero-title {
        font-size: 2.2rem;
    }
    .pulsero-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

/* Карточка механизма */
.pulsero-mechanism-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pulsero-mechanism-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(106, 218, 216, 0.12);
}

.pulsero-mechanism-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulsero-mechanism-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(106, 218, 216, 0.2));
}

.pulsero-mechanism-card h3 {
    font-size: 1.3rem;
    color: #1a1d2d;
    margin-bottom: 14px;
    font-weight: 600;
}

.pulsero-mechanism-card p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}







/* Active Ingredients — Clean & Modern */
.pulsero-ingredients {
    padding: 100px 0;
    background: #f9fbfd;
    font-family: 'Inter', system-ui, sans-serif;
}

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

.pulsero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1d2d;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pulsero-title span {
    color: #6adad8;
}

.pulsero-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #667085;
    max-width: 700px;
    margin: 0 auto 70px;
}

.pulsero-ingredients-grid {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.pulsero-ingredient {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.pulsero-ingredient-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: white;
}

.pulsero-ingredient-media img {
    width: 100%;
    height: auto;
    display: block;
}

.pulsero-ingredient-content h3 {
    font-size: 1.6rem;
    color: #1a1d2d;
    margin-bottom: 20px;
    font-weight: 600;
}

.pulsero-ingredient-content p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin: 0 0 16px 0;
}

.pulsero-ingredient-content p em {
    font-style: italic;
    color: #333;
}

/* === МОБИЛЬНЫЕ: картинка всегда сверху === */
@media (max-width: 992px) {
    .pulsero-ingredient {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .pulsero-title {
        font-size: 2.2rem;
    }
    .pulsero-ingredient-content h3 {
        font-size: 1.4rem;
    }
    .pulsero-ingredient-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}






/* Therapeutic Effects */
.pulsero-effects {
    padding: 100px 0;
    background: #f9fbfd;
    font-family: 'Inter', system-ui, sans-serif;
}

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

.pulsero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1d2d;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pulsero-title span {
    color: #6adad8;
}

.pulsero-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #667085;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Сетка эффектов — 2 колонки на десктопе */
.pulsero-effects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pulsero-effect-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.pulsero-effect-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulsero-effect-icon svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 4px rgba(106, 218, 216, 0.2));
}

.pulsero-effect-item strong {
    display: block;
    color: #1a1d2d;
    font-size: 16px;
    margin-bottom: 6px;
}

/* Футер */
.pulsero-effects-footer {
    margin-top: 60px;
    text-align: center;
    color: #667085;
    font-style: italic;
    line-height: 1.6;
    font-size: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Адаптив */
@media (max-width: 992px) {
    .pulsero-effects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pulsero-effects-footer {
        font-size: 16px;
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .pulsero-title {
        font-size: 2.2rem;
    }
    .pulsero-effect-item {
        gap: 12px;
    }
    .pulsero-effect-icon {
        width: 36px;
        height: 36px;
    }
    .pulsero-effect-icon svg {
        width: 18px;
        height: 18px;
    }
}





/* Package Leaflet — Medical & Trustworthy Style */
.pulsero-leaflet {
    padding: 100px 0;
    background: #f9fbfd;
    font-family: 'Inter', system-ui, sans-serif;
    color: #333;
}

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

.pulsero-leaflet-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #eaeaea;
}

.pulsero-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1d2d;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pulsero-title span {
    color: #6adad8;
}

/* Контент инструкции */
.pulsero-leaflet-content {
    margin: 40px 0;
}

.pulsero-leaflet-item {
    margin-bottom: 28px;
}

.pulsero-leaflet-item h3 {
    font-size: 1.2rem;
    color: #1a1d2d;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    padding-left: 12px;
}

/* Маленькая вертикальная линия слева от заголовка — как в медицинских документах */
.pulsero-leaflet-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #6adad8;
    border-radius: 2px;
}

.pulsero-leaflet-item p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* Дисклеймер */
.pulsero-leaflet-disclaimer {
    margin-top: 40px;
    padding: 20px;
    background: #f0f7f7;
    border-left: 4px solid #6adad8;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.pulsero-leaflet-disclaimer strong {
    color: #1a1d2d;
}

/* Адаптив */
@media (max-width: 768px) {
    .pulsero-leaflet-wrapper {
        padding: 30px 20px;
    }
    .pulsero-title {
        font-size: 2rem;
    }
    .pulsero-leaflet-item h3 {
        font-size: 1.1rem;
    }
    .pulsero-leaflet-item p,
    .pulsero-leaflet-disclaimer {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pulsero-leaflet {
        padding: 60px 0;
    }
    .pulsero-leaflet-wrapper {
        padding: 20px;
    }
}






/* Pharmacist's Opinion */
.pulsero-opinion {
    padding: 100px 0;
    background: #f9fbfd;
    font-family: 'Inter', system-ui, sans-serif;
}

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

.pulsero-opinion-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Адаптив: на мобильных — изображение сверху */
@media (max-width: 992px) {
    .pulsero-opinion-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pulsero-opinion-image {
        order: -1;
    }
}

/* Изображение врача и упаковки */
.pulsero-opinion-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Контент отзыва */
.pulsero-opinion-content {
    color: #333;
}

.pulsero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1d2d;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pulsero-title span {
    color: #6adad8;
}

.pulsero-opinion-author {
    font-size: 1.1rem;
    color: #667085;
    margin-bottom: 24px;
    font-style: italic;
}

.pulsero-opinion-text {
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 16px;
    color: #555;
}

.pulsero-opinion-text p {
    margin: 0 0 16px 0;
}

.pulsero-opinion-signature {
    font-size: 14px;
    color: #667085;
    font-style: italic;
    margin-top: 24px;
}

/* Адаптив для малых экранов */
@media (max-width: 480px) {
    .pulsero-opinion {
        padding: 60px 0;
    }
    .pulsero-title {
        font-size: 2.2rem;
    }
    .pulsero-opinion-author {
        font-size: 1rem;
    }
    .pulsero-opinion-text {
        font-size: 15px;
    }
}






/* Customer Reviews */
.pulsero-reviews {
    padding: 100px 0;
    background: #f9fbfd;
    font-family: 'Inter', system-ui, sans-serif;
}

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

.pulsero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1d2d;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pulsero-title span {
    color: #6adad8;
}

.pulsero-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #667085;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pulsero-reviews-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #eaeaea;
}

.pulsero-reviews-intro {
    margin-bottom: 40px;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

.pulsero-reviews-intro p {
    margin: 0 0 16px 0;
}

.pulsero-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pulsero-review-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.pulsero-review-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid #f0f2f5;
}

.pulsero-review-content {
    flex: 1;
}

.pulsero-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pulsero-review-header strong {
    font-size: 1.1rem;
    color: #1a1d2d;
    font-weight: 600;
}

.pulsero-review-rating {
    display: flex;
    gap: 4px;
}

.star {
    width: 20px;
    height: 20px;
    fill: #6adad8;
    filter: drop-shadow(0 1px 2px rgba(106, 218, 216, 0.3));
}

.pulsero-review-text {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* === Адаптив: на мобильных (до 992px) === */
@media (max-width: 992px) {
    .pulsero-reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pulsero-review-item {
        flex-direction: column;
        align-items: center; /* Центрируем аватар и контент */
    }

    .pulsero-review-avatar img {
        width: 120px;
        height: 120px;
    }

    .pulsero-review-header {
        flex-direction: column;
        gap: 8px;
        text-align: center; /* Заголовок и рейтинг — по центру */
    }

    .pulsero-review-rating {
        justify-content: center; /* Звёзды — по центру */
    }
}

@media (max-width: 480px) {
    .pulsero-reviews {
        padding: 60px 0;
    }
    .pulsero-title {
        font-size: 2.2rem;
    }
    .pulsero-reviews-intro p,
    .pulsero-review-text {
        font-size: 15px;
        text-align: center; /* Текст отзывов — тоже по центру */
    }
}



/* How to Use — From Zero, Modern Design */
.mod-use {
    padding: 100px 0;
    background: #f9fbfd;
    font-family: 'Inter', system-ui, sans-serif;
    color: #333;
}

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

.mod-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1d2d;
    text-align: center;
    margin-bottom: 70px;
}

.mod-title {
    background: linear-gradient(90deg, #6adad8, #4a9eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mod-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
}

.mod-step {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
}

.mod-step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mod-step-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(106, 218, 216, 0.2));
}

.mod-step strong {
    font-size: 1.1rem;
    color: #1a1d2d;
    font-weight: 600;
    margin-bottom: 8px;
}

.mod-step span {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    font-weight: 500;
}

/* === Адаптив: с планшетов и ниже — вертикально === */
@media (max-width: 992px) {
    .mod-steps {
        gap: 30px;
    }
    .mod-step {
        min-width: 220px;
    }
    .mod-title {
        font-size: 2.2rem;
        margin-bottom: 60px;
    }
}

/* === На мобильных (до 768px) — вертикальный список === */
@media (max-width: 768px) {
    .mod-steps {
        flex-direction: column; /* Столбиком */
        gap: 50px; /* Вертикальные отступы между шагами */
        align-items: center;
    }

    .mod-step {
        min-width: 280px;
        max-width: 320px;
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .mod-step-icon {
        width: 70px;
        height: 70px;
    }

    .mod-step span {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* === На малых экранах (до 480px) === */
@media (max-width: 480px) {
    .mod-use {
        padding: 60px 0;
    }

    .mod-title {
        font-size: 1.9rem;
        margin-bottom: 50px;
    }

    .mod-steps {
        gap: 40px;
    }

    .mod-step {
        min-width: 260px;
        padding: 0 15px;
    }

    .mod-step-icon {
        width: 64px;
        height: 64px;
    }

    .mod-step strong {
        font-size: 1.05rem;
    }

    .mod-step span {
        font-size: 13px;
        line-height: 1.45;
    }
}






/* FAQ Section — Pure CSS Accordion */
.mod-faq {
    padding: 100px 0;
    background: #f9fbfd;
    font-family: 'Inter', system-ui, sans-serif;
    color: #333;
}

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

.mod-title {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.mod-title span {
    color: #6adad8;
}

.mod-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #667085;
    margin-bottom: 60px;
}

.mod-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Убираем стандартные стили details/summary */
.mod-faq-item {
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.mod-faq-item:hover {
    box-shadow: 0 6px 20px rgba(106, 218, 216, 0.12);
}

.mod-faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1d2d;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
    list-style: none;
}

.mod-faq-question:hover {
    color: #6adad8;
}

/* Скрываем стандартную стрелку */
.mod-faq-question::-webkit-details-marker {
    display: none;
}
.mod-faq-question::before {
    content: '';
    display: none;
}

.mod-faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    transform: rotate(0deg);
}

/* Поворот иконки при открытии */
.mod-faq-item[open] .mod-faq-icon {
    transform: rotate(45deg);
}

.mod-faq-answer {
    padding: 0 24px;
    background: #f9fbfd;
    border-top: 1px solid #e4e7eb;
    animation: fade-in 0.4s ease forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.mod-faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Адаптив */
@media (max-width: 480px) {
    .mod-title {
        font-size: 2.2rem;
    }
    .mod-faq-question {
        font-size: 1.05rem;
        padding: 18px 20px;
    }
    .mod-faq-icon {
        width: 22px;
        height: 22px;
    }
    .mod-faq-answer p {
        font-size: 15px;
    }
}