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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #2d2d2d;
    background: #fff;
    line-height: 1.6;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle em {
    font-style: normal;
    color: #c9a96e;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a96e, #b8944e);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(185, 148, 78, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #c9a96e;
    border: 2px solid #c9a96e;
}

.btn-secondary:hover {
    background: #c9a96e;
    color: #fff;
}

.btn-center {
    text-align: center;
    margin-top: 32px;
}

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

.br-mobile {
    display: inline;
}

/* HERO — крупное фото без границ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 15% center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.05) 0%, rgba(26, 26, 26, 0.25) 30%, rgba(26, 26, 26, 0.7) 60%, rgba(26, 26, 26, 0.92) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
    margin-left: auto;
    text-align: right;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 110, 0.2);
    color: #c9a96e;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #c9a96e;
    font-size: 48px;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
}

.hero-actions {
    max-width: 500px;
    margin-left: auto;
}

.hero-actions-stack {
    display: inline-flex;
    flex-direction: column;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hero-buttons .btn {
    min-width: 220px;
    text-align: center;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    width: 100%;
}

.hero-stat {
    flex: 1;
    text-align: center;
}

.hero-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #c9a96e;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    line-height: 1.3;
    text-align: center;
}

.hero .btn-primary {
    background: #c9a96e;
    color: #1a1a1a;
}

.hero .btn-primary:hover {
    background: #d4b87a;
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* БОЛИ — Знакомо? */
.pain {
    background: #faf7f2;
}

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

.ps-box {
    padding: 32px;
    border-radius: 20px;
}

.ps-box.problem {
    background: #fef6f0;
    border-left: 4px solid #e8a87c;
}

.ps-box.solution {
    background: #f0faf4;
    border-left: 4px solid #7cc9a8;
}

.ps-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ps-box.problem .ps-label {
    color: #e8a87c;
}

.ps-box.solution .ps-label {
    color: #7cc9a8;
}

.ps-list {
    list-style: none;
}

.ps-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: #444;
}

.ps-list li:last-child {
    border: none;
}

.ps-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* ВЫГОДЫ */
.benefits-woman {
    background: #fff;
}

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

.bwf-card {
    background: #faf7f2;
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid #eee;
    transition: all 0.3s;
    text-align: center;
}

.bwf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.bwf-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5efe6, #e8ddd0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.bwf-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.bwf-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ВИДЕО */
.video-block {
    background: #1a1a1a;
}

.video-block .section-title {
    color: #fff;
}

.video-block .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

/* Кастомная кнопка play поверх постера видео (до инициализации HLS) */
.video-player {
    position: relative;
}

.video-player video {
    width: 100%;
    display: block;
    background-color: #000;
    outline: none;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.25s ease;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.25);
}

.video-play-overlay .play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, background 0.25s ease;
}

.video-play-overlay:hover .play-icon {
    transform: scale(1.08);
    background: #fff;
}

.video-play-overlay .play-icon::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 22px;
    border-color: transparent transparent transparent #c9a96e;
    margin-left: 4px;
}

.review-video .video-play-overlay .play-icon {
    width: 52px;
    height: 52px;
}

.review-video .video-play-overlay .play-icon::before {
    border-width: 10px 0 10px 16px;
}

.video-player.is-playing .video-play-overlay {
    display: none;
}

/* ТЕХНОЛОГИИ */
.features {
    background: #faf7f2;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feat-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #eee;
}

.feat-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.feat-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ТЕЛО — скульптор тела */
.body-sculptor {
    background: #f5f0e8;
}

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

.body-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.body-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.body-list {
    list-style: none;
    margin-top: 16px;
}

.body-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: #444;
}

.body-list li:last-child {
    border: none;
}

/*
.body-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
*/

.body-img img {
    width: 100%;
    display: block;
}

/* РЕЖИМЫ СВЕТА */
.light-modes {
    background: #faf7f2;
}

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

.mode-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #eee;
    text-align: center;
}

.mode-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.mode-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.mode-card p {
    font-size: 14px;
    color: #666;
}

.mode-blue .mode-dot {
    background: #4a90d9;
    box-shadow: 0 0 20px rgba(74, 144, 217, 0.3);
}

.mode-yellow .mode-dot {
    background: #f5c542;
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.3);
}

.mode-red .mode-dot {
    background: #e05050;
    box-shadow: 0 0 20px rgba(224, 80, 80, 0.3);
}

.mode-combo .mode-dot {
    background: linear-gradient(135deg, #4a90d9, #f5c542, #e05050);
}

.mode-flash .mode-dot {
    background: linear-gradient(135deg, #f5c542, #e05050);
}

.mode-indi .mode-dot {
    background: linear-gradient(
        135deg,
        #f7f9f9 0%,
        #e2f3f5 25%,
        #fce2e6 50%, /* розовый блик */
        #d5eef7 75%,
        #017884 100%
    );
}

/* КОМУ ПОДХОДИТ */
.avatars {
    background: #fff;
}

.avatars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.avatar-card {
    padding: 32px 20px;
    border-radius: 20px;
    background: #faf7f2;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.avatar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.avatar-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.avatar-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ОТЗЫВЫ ВИДЕО */
.reviews {
    background: #faf7f2;
}

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

.review-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
}

.review-video {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8ddd0;
}

.review-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.review-body {
    padding: 20px;
}

.review-body h4 {
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.review-body .name {
    font-size: 13px;
    color: #999;
}

/* СРАВНЕНИЕ */
.compare {
    background: #fff;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.compare-col {
    padding: 32px 24px;
}

.compare-col.middle {
    background: linear-gradient(135deg, #c9a96e, #b8944e);
    color: #fff;
}

.compare-col.salon {
    background: #faf7f2;
}

.compare-col.other {
    background: #f8f8fa;
}

.compare-col h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.compare-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.compare-col.middle .compare-item {
    border-color: rgba(255, 255, 255, 0.2);
}

.compare-price {
    font-size: 32px;
    font-weight: 800;
    margin: 20px 0 4px;
}

.compare-label {
    font-size: 13px;
    opacity: 0.7;
}

.compare-col .check {
    color: #7cc9a8;
}

.compare-col .cross {
    color: #e05050;
}

.compare-col.middle .check {
    color: #fff;
}

/* ПРОГРАММЫ */
.programs {
    background: #faf7f2;
}

.prog-block {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid #eee;
}

.prog-block h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.prog-block h3 span {
    color: #c9a96e;
}

.prog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prog-tag {
    background: #f0f0f5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #444;
}

.prog-tag.free {
    background: #e6f7e6;
    color: #2a7a2a;
}

.prog-tag.paid {
    background: #fff3e0;
    color: #b8944e;
}

.prog-more {
    margin-top: 16px;
}

.prog-more-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.prog-more-btn:hover {
    border-color: #c9a96e;
    color: #c9a96e;
}

.prog-hidden {
    display: none;
    margin-top: 12px;
}

.prog-hidden.show {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ПРОГРАММЫ СЛАЙДЕР */
.programs-slider-wrapper {
    margin-top: 32px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(-20px);
}
.programs-slider-wrapper.show {
    opacity: 1;
    transform: translateY(0);
}
.programs-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 10px;
}
.programs-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.programs-slider-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.slide-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-item img {
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
    max-height: 600px;
    cursor: zoom-in;
}
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    color: #c9a96e;
    font-size: 20px;
    transition: all 0.3s;
}
.slider-nav-btn:hover {
    background: #c9a96e;
    color: #fff;
}
.slider-nav-btn.prev-btn {
    left: 20px;
}
.slider-nav-btn.next-btn {
    right: 20px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}
.slider-dot.active {
    background: #c9a96e;
}

/* MODAL LIGHTBOX */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.show {
    opacity: 1;
}
.lightbox-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}
.lightbox-content img.dragging {
    transition: none;
}
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: background 0.3s;
}
.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}
.lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.3s;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}

/* ЦЕНА + ВЫГОДЫ */
.pricing {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.pricing .section-title {
    color: #fff;
}

.pricing .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.price-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 48px 64px;
    backdrop-filter: blur(10px);
    max-width: 560px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: #c9a96e;
    margin: 8px 0;
    line-height: 1.2;
}

.price-amount small {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.price-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.price-benefits {
    text-align: left;
    list-style: none;
    margin-bottom: 32px;
}

.price-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.price-benefits li:last-child {
    border: none;
}

.pricing .btn-primary {
    background: #c9a96e;
    color: #1a1a1a;
    font-size: 18px;
    padding: 18px 48px;
}

/* FAQ */
.faq {
    background: #fff;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-q {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-q span {
    font-size: 18px;
    color: #c9a96e;
}

.faq-a {
    font-size: 15px;
    color: #666;
    margin-top: 12px;
    line-height: 1.7;
    display: none;
}

/* КОНТАКТ */
.contact {
    background: #faf7f2;
}

.contact-form {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #c9a96e;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.contact-form .btn-primary {
    width: 100%;
    font-size: 17px;
}

.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

.footer a {
    color: #c9a96e;
    text-decoration: none;
}

/* ===== MEDIA QUERIES ===== */

@media (max-width: 768px) {
    .br-mobile {
        display: none;
    }

    .hero {
        min-height: 100vh;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-bg {
        object-position: 30% top;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(26, 26, 26, 0.55) 0%,
            rgba(26, 26, 26, 0.45) 25%,
            rgba(26, 26, 26, 0.60) 50%,
            rgba(26, 26, 26, 0.92) 100%
        );
    }

    .hero h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .hero h1 span {
        font-size: 24px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .slider-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .slider-nav-btn.prev-btn {
        left: 10px;
    }
    .slider-nav-btn.next-btn {
        right: 10px;
    }

    .lightbox-prev, .lightbox-next {
        display: none !important;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        text-align: center;
        width: 100%;
    }

    .pricing .btn-primary {
        font-size: 16px;
        padding: 16px 32px;
    }

    .hero-stats {
        gap: 4px;
        margin-top: 20px;
    }

    .hero-stat-num {
        font-size: 22px;
    }

    .hero-stat-label {
        font-size: 11px;
        white-space: normal;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .ps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

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

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

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

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

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

    .body-sculptor .body-benefits,
    .body-benefits-section .body-benefits {
        grid-template-columns: 1fr !important;
    }

    .price-box {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .avatars-grid {
        grid-template-columns: 1fr;
    }
}


/* Icon stand-in sizing */
.fa-icon {
    font-size: 18px;
    vertical-align: -2px;
}

.bwf-icon .fa-icon {
    font-size: 28px;
    color: #b8944e;
}

.feat-card .fa-icon, .mode-icon .fa-icon {
    font-size: 22px;
    vertical-align: -3px;
}

.avatar-card .fa-icon {
    font-size: 28px;
    vertical-align: -3px;
    color: #c9a96e;
}

.prog-block h3 .fa-icon {
    margin-right: 8px;
}

.compare-col .fa-icon.check {
    color: #fff; /* Было #4caf50 */
}

.compare-col .fa-icon.cross {
    color: #e05050;
}

.ps-icon .fa-icon {
    color: #c9a96e;
}

.hero-badge .fa-icon {
    margin-right: 8px;
}

.price-benefits .fa-icon.check {
    color: #4caf50;
    margin-right: 8px;
}


/* BODY — скульптор тела — премиальные карточки преимуществ */
.body-benefits-section {
    background: #f5f0e8;
}

.body-sculptor .body-benefits,
.body-benefits-section .body-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.body-sculptor .benefit-card,
.body-benefits-section .benefit-card {
    display: flex;  /* для растягивания карточек по высоте */
    flex-direction: column; /* для растягивания карточек по высоте */
    background: #faf7f2;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #e0d6c8;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(185, 148, 78, 0.06);
}

.body-sculptor .benefit-card::before,
.body-benefits-section .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a96e, #d4b87a, #c9a96e);
    opacity: 0;
    transition: opacity 0.4s;
}

.body-sculptor .benefit-card:hover,
.body-benefits-section .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(185, 148, 78, 0.18);
    border-color: #c9a96e;
    background: #fff;
}

.body-sculptor .benefit-card:hover::before,
.body-benefits-section .benefit-card:hover::before {
    opacity: 1;
}

.body-sculptor .benefit-icon,
.body-benefits-section .benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f5efe6, #e8ddd0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(185, 148, 78, 0.08);
}

.body-sculptor .benefit-card:hover .benefit-icon,
.body-benefits-section .benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, #f0e8dc, #e0d0b8);
}

.body-sculptor .benefit-card h3,
.body-benefits-section .benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px; /* было 6px */
    line-height: 1.3;
}

.body-sculptor .benefit-sub,
.body-benefits-section .benefit-sub {
    font-size: 13px;
    color: #c9a96e;
    font-weight: 600;
    margin-bottom: 10px; /* было 14px */
    padding-bottom: 10px; /* было 14px */
    border-bottom: 1px solid #e8e0d4;
}

.body-sculptor .benefit-card p,
.body-benefits-section .benefit-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 6px; /* было 10px */
}

.body-sculptor .benefit-list,
.body-benefits-section .benefit-list {
    list-style: none;
    margin: 10px 0 14px;
    padding: 0;
}

.body-sculptor .benefit-list li,
.body-benefits-section .benefit-list li {
    padding: 6px 0 6px 24px; /* было 9px */
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid rgba(185, 148, 78, 0.08);
    position: relative;
}

.body-sculptor .benefit-list li::before,
.body-benefits-section .benefit-list li::before {
    content: '▸';
    position: absolute;
    left: 4px;
    color: #c9a96e;
    font-weight: 700;
}

.body-sculptor .benefit-card > ul.benefit-list:first-of-type,
.body-benefits-section .benefit-card > ul.benefit-list:first-of-type {
    margin-top: 0;
}

.body-sculptor .benefit-list li:first-child,
.body-benefits-section .benefit-list li:first-child {
    padding-top: 0;
}

.body-sculptor .benefit-list li:last-child,
.body-benefits-section .benefit-list li:last-child {
    border: none;
}

.body-sculptor .benefit-label,
.body-benefits-section .benefit-label {
    font-weight: 700;
    color: #333;
}

.body-sculptor .benefit-result,
.body-benefits-section .benefit-result {
    margin-top: auto; /* прижимает зелёный блок к низу карточки */
    /*margin-top: 10px; !* было 14px *!*/
    padding: 10px 16px; /* было 12px 16px */
    background: linear-gradient(135deg, rgba(124, 201, 168, 0.12), rgba(124, 201, 168, 0.04));
    border-left: 3px solid #7cc9a8;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    line-height: 1.5;
}

.body-sculptor .benefit-result .fa-icon,
.body-benefits-section .benefit-result .fa-icon {
    margin-right: 8px;
}
