/* ============================================================
   Ariel — sections.css
   Стили секций лендинга. Подключается после base.css.
   ============================================================ */

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: #222;
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 900px) {
    .hero-inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 60px; }
    .hero-text { flex: 0 0 55%; }
}
.hero-label {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.hero-title {
    color: #fff;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.2rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 580px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.hero .btn-secondary:hover { background: rgba(255,255,255,.1); }

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.hero-feature {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    animation: bounce 1.8s ease-in-out infinite;
    text-decoration: none;
}
.hero-scroll:hover { text-decoration: none; color: #fff; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
@media (max-width: 899px) {
    .hero-stats { margin-top: -8px; }
}
.hero-stat {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    padding: 14px 18px;
    text-align: center;
    min-width: 90px;
}
.hero-stat-num {
    display: block;
    font-family: var(--font-head, Georgia, serif);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-lbl {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.75);
    line-height: 1.3;
}

/* ---------- Trust ---------- */
.trust {
    padding: 48px 0;
    background: #f5f5f5;
    border-bottom: 1px solid #e8ebed;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
    text-align: center;
    padding: 16px 8px;
}
.trust-num {
    display: block;
    font-family: var(--font-head, Georgia, serif);
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
    font-weight: 700;
    color: var(--accent, #ff7a00);
    line-height: 1.1;
    margin-bottom: 6px;
}
.trust-lbl {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* ---------- About ---------- */
.about { padding: 80px 0; background: var(--cream, #f6f1e7); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 768px) {
    .about-grid { grid-template-columns: 1fr 1.2fr; gap: 56px; }
}
.about-photo {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    background: #eef2f5;
    position: relative;
}
.about-photo picture,
.about-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-photo-empty {
    display: flex; align-items: center; justify-content: center;
    height: 100%;
    color: #8a98a3; font-size: 14px;
}
.about-body {
    color: #4a5560;
    line-height: 1.7;
    font-size: 16px;
}
.about-photo-wrap {
    position: relative;
    align-self: start;
}
.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--brand, #222);
    color: #fff;
    padding: 16px 18px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    min-width: 100px;
}
.about-badge-num {
    display: block;
    font-family: var(--font-head, Georgia, serif);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent, #ff7a00);
}
.about-badge-lbl {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    opacity: .85;
}
.about-points {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.about-points li {
    padding-left: 22px;
    position: relative;
    color: #4a5560;
    font-size: 15px;
}
.about-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand, #222);
    font-weight: 700;
}

/* ---------- Why-us ---------- */
.why-us { padding: 80px 0; background: #1a2430; }
.why-us .section-title { color: #fff; }
.why-us .section-title::after { background: var(--accent, #ff7a00); }

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    overflow: hidden;
}
@media (min-width: 640px)  { .why-us-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-us-grid { grid-template-columns: repeat(3, 1fr); } }

.why-us-item {
    background: #1a2430;
    padding: 32px 28px;
    transition: background .2s ease;
}
.why-us-item:hover { background: #1f2c3a; }

.why-us-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--accent, #ff7a00);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(255,122,0,.3);
}
.why-us-title {
    font-size: 17px;
    margin: 0 0 8px;
    color: #fff;
}
.why-us-text {
    color: rgba(255,255,255,.55);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ---------- Offer ---------- */
.offer { padding: 60px 0; }
.offer-card {
    background: linear-gradient(135deg, var(--brand, #222), color-mix(in srgb, var(--brand, #222) 70%, #000));
    color: #fff;
    border-radius: 10px;
    padding: 44px 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    position: relative;
}
@media (min-width: 768px) {
    .offer-card { grid-template-columns: 1.6fr 1fr; }
}
.offer-card::before {
    content: "";
    position: absolute;
    top: -50px; right: -50px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: var(--accent, #ff7a00);
    opacity: 0.18;
}
.offer-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem);
}
.offer-text {
    color: rgba(255,255,255,0.92);
    margin: 0 0 12px;
    font-size: 16px;
}
.offer-conditions {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin: 0;
}
.offer-cta { display: flex; justify-content: flex-start; }
@media (min-width: 768px) { .offer-cta { justify-content: flex-end; } }
.offer-btn {
    background: var(--accent, #ff7a00) !important;
    border-color: var(--accent, #ff7a00) !important;
    padding: 14px 28px !important;
    font-size: 16px !important;
}
.offer-btn:hover { filter: brightness(1.1); }

.offer-band {
    position: relative;
    background: #222;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.offer-band-inner {
    max-width: 680px;
    margin: 0 auto;
}
.offer-band-title {
    font-size: clamp(1.8rem, 2.5vw + 1rem, 3rem);
    color: #fff;
    margin-bottom: 16px;
}
.offer-band-text {
    color: rgba(255,255,255,.85);
    font-size: 17px;
    margin-bottom: 32px;
}

/* ---------- Catalog filters ---------- */
.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.catalog-filter-btn {
    padding: 8px 18px;
    border: 1.5px solid #e8ebed;
    border-radius: 20px;
    background: #fff;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s ease;
}
.catalog-filter-btn:hover,
.catalog-filter-btn.is-active {
    border-color: var(--accent, #ff7a00);
    color: var(--accent, #ff7a00);
    background: rgba(255,122,0,.06);
}

/* ---------- Gallery ---------- */
.gallery { padding: 60px 0 0; background: var(--cream, #f6f1e7); }
.gallery .container { padding-bottom: 40px; }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 0;
    background: #eef2f5;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .15s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item picture,
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.gallery-video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    padding-left: 4px;
    pointer-events: none;
}
.gallery-video-noposter {
    width: 100%; height: 100%;
    background: #222;
    color: rgba(255,255,255,0.4);
    font-size: 32px;
    display: flex; align-items: center; justify-content: center;
}

.gallery-swiper-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 0 60px;
}
.gallery-swiper {
    overflow: visible;
    padding: 0 20px;
}
.gallery-swiper .swiper-slide {
    width: 320px;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0.7;
    transform: scale(0.95);
    transition: opacity .3s, transform .3s;
}
.gallery-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}
@media (min-width: 768px) {
    .gallery-swiper .swiper-slide { width: 440px; height: 330px; }
}
.gallery-slide-btn {
    width: 100%; height: 100%;
    border: 0; padding: 0; background: none; cursor: pointer;
    display: block;
}
.gallery-slide-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* image lightbox */
.image-lightbox {
    position: fixed; inset: 0;
    z-index: 1200;
    display: none;
}
.image-lightbox.is-open { display: block; }
.image-lightbox-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.94);
}
.image-lightbox-img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    max-width: 92vw; max-height: 86vh;
    object-fit: contain;
    border-radius: 4px;
}
.image-lightbox-close,
.image-lightbox-prev,
.image-lightbox-next {
    position: absolute;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 0; border-radius: 50%;
    font-size: 26px; line-height: 1;
    cursor: pointer;
    transition: background .15s;
}
.image-lightbox-close:hover,
.image-lightbox-prev:hover,
.image-lightbox-next:hover { background: rgba(255,255,255,0.25); }
.image-lightbox-close { top: 20px; right: 20px; }
.image-lightbox-prev  { top: 50%; left: 20px;  transform: translateY(-50%); }
.image-lightbox-next  { top: 50%; right: 20px; transform: translateY(-50%); }

/* ---------- Comparison ---------- */
.comparison { padding: 80px 0; background: var(--cream, #f6f1e7); }
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .comparison-grid { grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: start; }
}
.comparison-card {
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid #e8ebed;
}
.comparison-card--good {
    background: #fff;
    border-color: var(--accent, #ff7a00);
    box-shadow: 0 4px 24px rgba(255,122,0,.1);
}
.comparison-card--bad {
    background: #f9f9f9;
    border-color: #e8ebed;
}
.comparison-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.comparison-badge {
    background: var(--accent, #ff7a00);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: 4px;
}
.comparison-card-title {
    margin: 0;
    font-size: 20px;
    color: #222;
}
.comparison-card--bad .comparison-card-title { color: #888; }
.comparison-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comparison-yes, .comparison-no {
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 6px;
}
.comparison-yes {
    background: rgba(255,122,0,.07);
    color: #222;
    font-weight: 500;
}
.comparison-no {
    background: #f5f5f5;
    color: #999;
    text-decoration: line-through;
}

/* ---------- Stages ---------- */
.stages { padding: 80px 0; background: #1a2430; }
.stages .section-title { color: #fff; }
.stages .section-title::after { background: var(--accent, #ff7a00); }
.stages .section-intro { color: rgba(255,255,255,.5); }

/* ── Desktop: горизонтальный таймлайн ── */
.stages-flow {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    gap: 0;
}
.stage-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
}

/* Кружок с номером и горизонтальные соединители */
.stage-marker {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}
.stage-marker::before,
.stage-marker::after {
    content: '';
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.15);
}
.stage-step:first-child .stage-marker::before,
.stage-step:last-child  .stage-marker::after {
    background: transparent;
}
.stage-circle {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent, #ff7a00);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255,122,0,.3);
    position: relative;
    z-index: 1;
}
.stage-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}
.stage-text {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin: 0;
    line-height: 1.55;
}

/* ── Mobile: вертикальный список ── */
@media (max-width: 767px) {
    .stages-flow {
        flex-direction: column;
        gap: 0;
    }
    .stage-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 0 0 28px 0;
        gap: 18px;
    }
    .stage-step:last-child { padding-bottom: 0; }
    .stage-marker {
        flex-direction: column;
        width: auto;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .stage-marker::before { display: none; }
    .stage-marker::after {
        flex: 1;
        width: 2px;
        height: auto;
        min-height: 28px;
        background: rgba(255,255,255,.15);
    }
    .stage-step:last-child .stage-marker::after { display: none; }
    .stage-circle { width: 44px; height: 44px; font-size: 15px; }
}

.payment-note {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 32px;
    padding: 20px 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    font-size: 15px;
}
.payment-note-icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
}
.payment-note strong {
    display: block;
    font-size: 17px;
    color: #fff;
    margin-bottom: 6px;
}
.payment-note p {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    margin: 0;
}

/* ---------- Production ---------- */
.production { padding: 80px 0; background: var(--cream, #f6f1e7); }

.production-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}
@media (min-width: 900px) {
    .production-grid { grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
}

/* Медиа-колонка */
.production-media { position: relative; }

.production-swiper {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3.2;
    background: #eef2f5;
    position: relative;
    z-index: 0;
}
.production-swiper .swiper-slide picture { display: block; width: 100%; height: 100%; }
.production-swiper .swiper-slide img    { display: block; width: 100%; height: 100%; object-fit: cover; }

.production-pagination.swiper-pagination-bullets {
    bottom: 14px !important;
}
.production-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,.6);
    opacity: 1;
}
.production-swiper .swiper-pagination-bullet-active { background: #fff !important; }

.production-placeholder {
    border-radius: 12px;
    aspect-ratio: 4 / 3.2;
    background: #eef2f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #8a98a3;
    font-size: 14px;
    cursor: pointer;
}

.production-badge {
    position: absolute;
    right: -16px;
    bottom: -20px;
    z-index: 1;
    background: var(--accent, #ff7a00);
    color: #fff;
    padding: 16px 22px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(255,122,0,.35);
    line-height: 1;
}
.production-badge-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-head, sans-serif);
    line-height: 1;
}
.production-badge-lbl {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.9;
    max-width: 110px;
    line-height: 1.3;
}
@media (max-width: 899px) {
    .production-badge { right: 0; bottom: -16px; }
}

/* Текстовая колонка */
.production-lead {
    color: #4a5560;
    font-size: 16px;
    line-height: 1.7;
    margin: -0.4em 0 28px;
    max-width: 480px;
}

.production-points {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    gap: 12px;
}
@media (min-width: 560px) {
    .production-points { grid-template-columns: 1fr 1fr; }
}

.production-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
}
.production-point svg {
    flex-shrink: 0;
    color: var(--accent, #ff7a00);
    margin-top: 1px;
}

/* ---------- Included ---------- */
.included { padding: 80px 0; background: #fff; }
.included-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}
@media (min-width: 640px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .included-grid { grid-template-columns: repeat(3, 1fr); } }
.included-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8ebed;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .18s, border-color .18s;
}
.included-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); border-color: transparent; }

.included-item-media {
    aspect-ratio: 3 / 2;
    background: #f5f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.included-item-media picture { display: block; width: 100%; height: 100%; }
.included-item-media img     { display: block; width: 100%; height: 100%; object-fit: cover; }

.included-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent, #ff7a00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.included-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}
.included-note {
    font-size: 13px;
    color: #888;
    line-height: 1.45;
}
.included-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--accent, #ff7a00), #e06000);
    border-radius: 12px;
    color: #fff;
}
.included-cta-text {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #fff;
}
.included-cta .btn {
    background: #fff;
    color: var(--accent, #ff7a00);
    border-color: #fff;
    font-weight: 700;
}
.included-cta .btn:hover { background: rgba(255,255,255,.9); }

/* ---------- Materials ---------- */
.materials {
    padding: 80px 0;
    background: #fff;
}
.materials-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
@media (min-width: 960px) {
    .materials-layout { grid-template-columns: 1.2fr 1fr; gap: 60px; }
}
.materials-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mat-row {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #e8ebed;
}
.mat-row:first-child { padding-top: 0; }
.mat-row:last-child  { border-bottom: 0; }
.mat-num {
    font-family: var(--font-head, Georgia, serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--accent, #ff7a00);
    opacity: .7;
    line-height: 1.2;
    flex-shrink: 0;
    width: 36px;
}
.mat-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 4px;
}
.mat-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.55;
}
.materials-aside {
    position: sticky;
    top: 90px;
}
.materials-aside-img {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 24px;
}
.materials-aside picture {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 24px;
}
.materials-aside picture img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.materials-aside-placeholder {
    background: #eef2f5;
    aspect-ratio: 4/3;
    border-radius: 8px;
    margin-bottom: 24px;
}
.materials-aside-card {
    background: #f5f5f5;
    border: 1px solid #e8ebed;
    border-radius: 10px;
    padding: 28px 26px;
}
.materials-aside-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #222;
}
.materials-aside-card p {
    color: #666;
    font-size: 15px;
    margin: 0 0 20px;
}
.materials-aside-card .btn { width: 100%; }

/* ---------- Reviews ---------- */
.reviews { padding: 80px 0; background: var(--cream, #f6f1e7); }
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
@media (min-width: 768px)  { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
    background: #fff;
    padding: 26px 24px;
    border-radius: 8px;
    border: 1px solid #e8ebed;
    display: flex; flex-direction: column;
    gap: 14px;
}
.review-rating { color: var(--accent, #ff7a00); font-size: 16px; }
.review-rating .star { color: #d1d8de; }
.review-rating .star.filled { color: var(--accent, #ff7a00); }
.review-text {
    color: #4a5560;
    line-height: 1.65;
    margin: 0;
    font-size: 15px;
    font-style: italic;
}
.review-meta {
    display: flex; align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}
.review-meta picture { display: block; }
.review-avatar-img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.review-author {
    font-weight: 600;
    color: #222;
    font-size: 14px;
}

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; background: #fff; }

.faq-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    margin: 0 0 40px;
}
@media (min-width: 768px) {
    .faq-columns { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.faq-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    margin-bottom: 0;
    background: #fff;
    border-radius: 10px;
    border: 1px solid transparent;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    overflow: hidden;
    transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] {
    box-shadow: 0 4px 18px rgba(0,0,0,.09);
    border-color: rgba(255,122,0,.25);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    list-style: none;
    user-select: none;
    line-height: 1.35;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream, #f6f1e7);
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff7a00' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .25s ease;
}
.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 22px 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    border-top: 1px solid #f0ebe0;
    padding-top: 14px;
}
.faq-cta {
    max-width: 820px;
    margin: 40px auto 0;
    padding: 36px 40px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.faq-cta p {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 0 0 20px;
}
.faq-cta .btn {
    min-width: 200px;
}

/* ---------- Contacts enhancements ---------- */
.contacts-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
@media (min-width: 900px) {
    .contacts-band { grid-template-columns: 1.1fr 1fr; gap: 56px; }
}
.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}
.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-item-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1.2;
}
.contact-item-label {
    font-size: 12px;
    color: #8a98a3;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 2px;
}
.contact-item-value {
    font-size: 15px;
    color: #222;
}
a.contact-item-value { color: #222; }
a.contact-item-value:hover { text-decoration: underline; }
.contact-phone { font-size: 22px !important; font-weight: 700 !important; }
.contacts-messengers {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.contacts-msg-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s;
}
.contacts-msg-btn:hover { opacity: .85; text-decoration: none; }
.contacts-msg-btn--wa {
    background: #25d366;
    color: #fff;
}
.contacts-msg-btn--tg {
    background: #229ed9;
    color: #fff;
}
.contacts-map {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #eef2f5;
    margin-top: 8px;
}
.contacts-map iframe {
    width: 100%; height: 100%;
    border: 0;
}

/* ---------- CTA card ---------- */
.cta-card {
    background: #fff;
    border: 1px solid #e8ebed;
    border-radius: 12px;
    padding: 32px 30px;
    box-shadow: 0 12px 40px rgba(0,0,0,.07);
    position: sticky;
    top: 90px;
}
.cta-card-badge {
    display: inline-block;
    background: var(--accent, #ff7a00);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .03em;
}
.cta-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #222;
}
.cta-card > p {
    color: #666;
    font-size: 15px;
    margin: 0 0 20px;
}
.cta-card-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}
.form-input {
    border: 1px solid #e8ebed;
    border-radius: 6px;
    padding: 11px 14px;
    font: inherit;
    font-size: 15px;
    color: #222;
    background: #fff;
    width: 100%;
    transition: border-color .15s, box-shadow .15s;
}
.form-input:focus {
    outline: 0;
    border-color: var(--accent, #ff7a00);
    box-shadow: 0 0 0 3px rgba(255,122,0,.1);
}
textarea.form-input { resize: vertical; min-height: 72px; }
.cta-card-form .btn { width: 100%; }
.cta-trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cta-trust li {
    font-size: 13px;
    color: #666;
    padding-left: 18px;
    position: relative;
}
.cta-trust li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent, #ff7a00);
    font-weight: 700;
}

/* ---------- Contacts form (inline) ---------- */
.contacts-form-wrap {
    margin-top: 36px;
    padding: 26px 28px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #e8ebed;
    max-width: 720px;
}
.contacts-form-title {
    margin: 0 0 18px;
    font-family: var(--font-head, Georgia, serif);
    font-size: 22px;
    color: #222;
}
.lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
@media (min-width: 640px) {
    .lead-form .form-row { grid-template-columns: 1fr 1fr; }
}
.lead-form .form-label {
    display: flex; flex-direction: column;
    gap: 4px;
    font-size: 13px; color: #666;
    font-weight: 500;
    margin-bottom: 14px;
}
.lead-form input[type=text],
.lead-form input[type=tel],
.lead-form input[type=email],
.lead-form textarea {
    border: 1px solid #e8ebed;
    border-radius: 4px;
    padding: 10px 12px;
    font: inherit;
    color: #222;
    background: #fff;
}
.lead-form input:focus,
.lead-form textarea:focus {
    outline: 0;
    border-color: var(--accent, #ff7a00);
    box-shadow: 0 0 0 3px rgba(255,122,0,.1);
}
.lead-form textarea { resize: vertical; min-height: 70px; }

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important; height: 1px !important;
    opacity: 0 !important;
}

/* ---------- Consent checkbox ---------- */
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.45;
}
.consent-checkbox {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent, #ff7a00);
    cursor: pointer;
}
.consent-label span {
    font-size: 12px;
    color: #888;
}
.consent-label a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.consent-label a:hover { color: var(--accent, #ff7a00); }

/* ---------- Order modal ---------- */
.order-modal {
    position: fixed; inset: 0;
    z-index: 1100;
    display: none;
    overflow-y: auto;
}
.order-modal.is-open { display: block; }
.order-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(20,28,35,0.82);
    backdrop-filter: blur(4px);
}
.order-modal-dialog {
    position: relative;
    max-width: 460px;
    margin: 40px auto;
    padding: 32px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    animation: cmod-in .25s ease-out;
}
@keyframes cmod-in {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.order-modal-close {
    position: absolute;
    top: 12px; right: 14px;
    width: 32px; height: 32px;
    background: transparent;
    border: 0;
    color: #666;
    font-size: 22px; line-height: 1;
    cursor: pointer;
}
.order-modal-close:hover { color: #222; }
.order-modal-title {
    margin: 0 0 6px;
    font-family: var(--font-head, Georgia, serif);
    font-size: 22px;
    color: #222;
}
.order-modal-sub {
    margin: 0 0 22px;
    color: #666;
    font-size: 14px;
}
.order-submit { width: 100%; padding: 12px 22px !important; }
.order-modal-hint {
    margin-top: 14px;
    color: #8a98a3;
    font-size: 11px;
    text-align: center;
}

/* ---------- Public toast ---------- */
.pub-toast {
    position: fixed;
    right: 22px; bottom: 22px;
    z-index: 1300;
    background: var(--accent, #ff7a00);
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
    font: 14px/1.4 -apple-system, sans-serif;
    transition: opacity .25s;
    max-width: 320px;
}
.pub-toast.is-error { background: #b8312b; }

/* ---------- Footer enhancements ---------- */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (min-width: 960px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1.2fr; gap: 48px; }
}
.footer-brand {
    display: inline-block;
    font-family: var(--font-head, Georgia, serif);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-decoration: none;
}
.footer-brand:hover { text-decoration: none; color: rgba(255,255,255,.85); }
.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    margin: 0 0 18px;
}
.footer-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin: 0 0 12px;
}
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-nav a {
    color: rgba(255,255,255,.75);
    font-size: 14px;
}
.footer-nav a:hover { color: #fff; text-decoration: none; }
.footer-phone {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.footer-phone:hover { text-decoration: none; color: rgba(255,255,255,.85); }
.footer-email {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin-bottom: 12px;
}
.footer-email:hover { color: #fff; text-decoration: none; }
.footer-requisites {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 10px 0 0;
}
.footer-req-row {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.footer-req-label {
    min-width: 40px;
    color: rgba(255,255,255,.3);
    flex-shrink: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.site-footer .footer-copyright {
    color: rgba(255,255,255,.4);
    font-size: 13px;
    margin: 0;
}
.footer-legal {
    color: rgba(255,255,255,.25);
    font-size: 11px;
    text-align: center;
    line-height: 1.6;
}
.footer-privacy-link {
    color: rgba(255,255,255,.35);
    font-size: 12px;
    text-decoration: none;
    transition: color .2s;
}
.footer-privacy-link:hover {
    color: rgba(255,255,255,.7);
    text-decoration: underline;
}
.site-footer .footer-inner {
    display: block;
}
