:root {
    --bg-dark: #0d0f12;
    --bg-panel: #161920;
    --bg-muted: #11151b;
    --accent: #ff5a18;
    --accent-hover: #e24c10;
    --accent-soft: #ff7b45;
    --accent-deep: #b91f12;
    --accent-border: rgba(255, 123, 69, 0.28);
    --accent-border-strong: rgba(255, 123, 69, 0.56);
    --accent-glow: rgba(255, 123, 69, 0.2);
    --copper: #7a351e;
    --copper-soft: #c56a32;
    --success: #38d078;
    --danger: #ff5a4e;
    --text-main: #f6f7f8;
    --text-muted: #a8afb8;
    --border-color: rgba(255, 255, 255, 0.12);
    --shadow-accent: 0 18px 45px rgba(255, 74, 0, 0.18);
    --font-heading: 'Montserrat', Arial, sans-serif;
    --font-body: 'Inter', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

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

button,
input,
select {
    font: inherit;
}

button {
    letter-spacing: 0;
}

section {
    scroll-margin-top: 104px;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.w-100 {
    width: 100%;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border: 0;
    border-radius: 6px;
    color: var(--text-main);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.btn-primary {
    background: var(--accent);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
}

.btn-secondary,
.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover,
.btn-outline:hover {
    border-color: var(--accent);
    color: #fff;
}

.section-head {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-kicker,
.hero-kicker {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(255, 90, 24, 0.16);
}

.section-title {
    margin-top: 8px;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 2.45rem;
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
}

.section-intro {
    max-width: 720px;
    margin: 18px auto 0;
    color: var(--text-muted);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 86px;
    overflow: hidden;
    isolation: isolate;
    background: #08090b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
}

.header::before,
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.header::after,
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.header::before,
.header::after,
.footer::before,
.footer::after {
    display: none;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 1.8vw, 22px);
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.logo {
    flex: 0 0 auto;
}

.footer-logo {
    justify-self: start;
}

.logo::before,
.footer-logo::before {
    content: '';
    position: absolute;
    inset: -20px -34px;
    z-index: -1;
    background:
        radial-gradient(circle at 42% 50%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06) 24%, rgba(255, 255, 255, 0) 64%);
    filter: blur(14px);
    opacity: 0.72;
    pointer-events: none;
}

.logo::before {
    inset: -22px -42px;
}

.logo img {
    width: auto;
    height: 52px;
    max-width: none;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.44));
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.98rem;
    white-space: nowrap;
}

.header .btn {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.76rem;
}

.header-socials,
.contact-socials {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 900;
}

.social-icon-small {
    width: 36px;
    height: 36px;
}

.social-icon-small svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: rgba(255, 90, 24, 0.1);
    border-color: rgba(255, 90, 24, 0.42);
    color: var(--accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.social-icon.is-disabled,
[data-social].is-disabled {
    cursor: default;
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    margin-top: 86px;
    overflow: hidden;
    isolation: isolate;
    background: #090b0e;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero-slides,
.hero-slide,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.9s ease, transform 6.4s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1) brightness(0.82) contrast(1.03);
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 8, 11, 0.14) 0%, rgba(6, 8, 11, 0.36) 100%),
        linear-gradient(90deg, rgba(6, 8, 11, 0.68) 0%, rgba(6, 8, 11, 0.34) 34%, rgba(6, 8, 11, 0.18) 66%, rgba(6, 8, 11, 0.34) 100%);
}

.hero-slide-primary img {
    filter: saturate(1.02) brightness(0.9) contrast(1.02);
}

.hero-slide-primary::after {
    background:
        linear-gradient(180deg, rgba(6, 8, 11, 0.1) 0%, rgba(6, 8, 11, 0.3) 100%),
        linear-gradient(90deg, rgba(6, 8, 11, 0.58) 0%, rgba(6, 8, 11, 0.28) 38%, rgba(6, 8, 11, 0.14) 68%, rgba(6, 8, 11, 0.28) 100%);
}

.hero-slide-secondary img {
    filter: saturate(1) brightness(0.84) contrast(1.03);
}

.hero-shade {
    background:
        radial-gradient(circle at 16% 42%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 30%),
        linear-gradient(180deg, rgba(9, 11, 14, 0.04) 0%, rgba(9, 11, 14, 0.16) 38%, rgba(9, 11, 14, 0.34) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 180px;
    background: linear-gradient(180deg, rgba(13, 15, 18, 0), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 48px 0;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.36);
}

.hero-title {
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.hero-subtitle {
    position: relative;
    z-index: 0;
    display: inline-block;
    width: min(100%, 640px);
    margin-top: 22px;
    padding: 14px 20px 16px 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.16rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.7;
    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.62),
        0 1px 2px rgba(0, 0, 0, 0.54);
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    inset: -12px -28px -14px -22px;
    z-index: -1;
    border-radius: 28px;
    background:
        radial-gradient(circle at 18% 50%, rgba(7, 9, 12, 0.7), rgba(7, 9, 12, 0.4) 44%, rgba(7, 9, 12, 0.14) 74%, rgba(7, 9, 12, 0) 100%),
        linear-gradient(90deg, rgba(7, 9, 12, 0.5) 0%, rgba(7, 9, 12, 0.24) 58%, rgba(7, 9, 12, 0.05) 100%);
    opacity: 0.98;
    filter: blur(18px);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 90, 24, 0.03);
    border: 2px solid rgba(255, 90, 24, 0.92);
    color: #fff;
    box-shadow:
        inset 0 0 0 1px rgba(255, 90, 24, 0.12),
        0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 90, 24, 0.08);
    border-color: rgba(255, 126, 79, 1);
    color: #fff;
}

.hero-buttons .btn-secondary:focus-visible {
    outline: none;
    border-color: rgba(255, 126, 79, 1);
    box-shadow:
        0 0 0 3px rgba(255, 90, 24, 0.22),
        inset 0 0 0 1px rgba(255, 90, 24, 0.16),
        0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.hero-dot {
    width: 36px;
    height: 4px;
    padding: 0;
    background: rgba(255, 255, 255, 0.24);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-dot:hover {
    background: rgba(255, 123, 69, 0.68);
}

.hero-dot.active {
    background: var(--accent);
    box-shadow: 0 0 18px rgba(255, 90, 24, 0.3);
    transform: scaleX(1.08);
}

.catalog-section,
.salon,
.steps,
.contacts-wrapper {
    padding: 108px 0;
}

.advantages,
.comparison,
.faq {
    padding: 108px 0;
    background: var(--bg-muted);
}

.salon {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        var(--bg-dark);
}

.salon-slider {
    position: relative;
    padding: 0 74px;
}

.salon-viewport {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    background: #0a0d10;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.salon-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.45s ease, transform 0.65s ease;
}

.salon-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.salon-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 8, 11, 0.04) 0%, rgba(6, 8, 11, 0.42) 100%);
}

.salon-slide img {
    width: 100%;
    min-height: 440px;
    height: 100%;
    object-fit: cover;
}

.salon-caption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    display: grid;
    gap: 5px;
    padding: 18px 20px;
    background: rgba(8, 10, 13, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.salon-caption strong {
    font-family: var(--font-heading);
    font-size: 1.02rem;
}

.salon-caption span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.salon-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 10, 13, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.salon-arrow:hover {
    background: rgba(255, 90, 24, 0.14);
    border-color: rgba(255, 90, 24, 0.42);
}

.salon-arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.salon-arrow-prev {
    left: 0;
}

.salon-arrow-next {
    right: 0;
}

.salon-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.salon-dot {
    width: 34px;
    height: 4px;
    padding: 0;
    background: rgba(255, 255, 255, 0.18);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.salon-dot.active {
    background: var(--accent);
    transform: scaleX(1.08);
}

.filters {
    margin-bottom: 34px;
}

.filters-panel {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.filter-field {
    min-width: 0;
}

.filter-field label,
.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.filter-field input,
.filter-field select,
.form-group input {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-main);
    outline: none;
}

.filter-field select {
    color: var(--text-main);
}

.filter-field option {
    color: #151515;
}

.filter-field input:focus,
.filter-field select:focus,
.form-group input:focus {
    border-color: var(--accent);
}

.filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    grid-column: span 2;
    align-self: end;
}

.filter-count {
    grid-column: 1 / -1;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.catalog-loading,
.catalog-empty {
    grid-column: 1 / -1;
    padding: 46px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.catalog-empty h3 {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 1.45rem;
}

.catalog-empty p {
    max-width: 560px;
    margin: 0 auto 22px;
    color: var(--text-muted);
}

.product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    border-color: rgba(255, 74, 0, 0.65);
    box-shadow: var(--shadow-accent);
    transform: translateY(-4px);
}

.card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #07090c;
    border: 0;
    cursor: pointer;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img img {
    transform: scale(1.04);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    background: var(--accent);
    border-radius: 6px;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.card-brand,
.pm-brand {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.card-category {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.card-title {
    margin-bottom: 16px;
    background: transparent;
    border: 0;
    color: var(--text-main);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.32;
    text-align: left;
}

.card-title:hover {
    color: var(--accent);
}

.card-specs,
.pm-specs {
    list-style: none;
}

.card-specs {
    margin-bottom: 16px;
}

.card-specs li,
.pm-specs li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
    color: var(--text-muted);
    font-size: 0.92rem;
}

.card-specs li span:last-child,
.pm-specs li span:last-child {
    color: var(--text-main);
    text-align: right;
}

.card-availability {
    margin-top: auto;
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 700;
}

.card-price,
.pm-price {
    margin: 8px 0 16px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
}

.product-cta {
    min-height: 50px;
    box-shadow: 0 14px 34px rgba(255, 74, 0, 0.25);
}

.advantages-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.advantage-card,
.step-card {
    min-width: 0;
    padding: 28px 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0) 34%),
        var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.advantage-card {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.advantage-card:hover,
.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(255, 90, 24, 0.08);
}

.adv-icon,
.step-number {
    position: relative;
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03) 38%, rgba(0, 0, 0, 0.12) 100%),
        radial-gradient(circle at 24% 20%, rgba(255, 147, 88, 0.28), rgba(255, 147, 88, 0.14) 32%, rgba(255, 147, 88, 0.03) 64%),
        radial-gradient(circle at 78% 82%, rgba(185, 57, 16, 0.22), rgba(185, 57, 16, 0) 42%),
        rgba(255, 255, 255, 0.022);
    border: 1px solid rgba(255, 127, 67, 0.28);
    border-radius: 26px;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        inset 0 -1px 0 rgba(0, 0, 0, 0.22),
        0 22px 42px rgba(0, 0, 0, 0.22);
}

.adv-icon::before,
.step-number::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 141, 78, 0.4), rgba(255, 141, 78, 0));
    pointer-events: none;
}

.adv-icon::after,
.step-number::after {
    content: '';
    position: absolute;
    inset: 11px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    pointer-events: none;
}

.adv-icon svg,
.step-number svg {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.advantage-card h3,
.step-card h3 {
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.25;
}

.advantage-card p,
.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.table-container {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: var(--bg-panel);
}

.compare-table th,
.compare-table td {
    padding: 18px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.compare-table th {
    background: rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.positive {
    color: var(--success);
    font-weight: 700;
}

.negative {
    color: var(--danger);
    font-weight: 700;
}

.steps-grid {
    position: relative;
}

.step-card {
    position: relative;
}

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

.faq-item {
    margin-bottom: 14px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    background: transparent;
    border: 0;
    color: var(--text-main);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
}

.faq-question span {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-question span::before,
.faq-question span::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
    background: var(--accent);
    transition: transform 0.25s ease;
}

.faq-question span::after {
    transform: rotate(90deg);
}

.faq-item.active .faq-question span::after {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
    max-height: 260px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-info-box,
.contact-form-box {
    min-width: 0;
    padding: 32px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.contact-title {
    margin: 8px 0 22px;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.15;
}

.contact-details {
    display: grid;
    gap: 14px;
}

.contact-details p {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items: baseline;
}

.contact-details span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-details strong {
    font-weight: 700;
}

.contact-socials a,
.footer-links a {
    color: var(--text-main);
}

.contact-socials a {
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--accent-border);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.2;
}

.contact-socials a:hover,
.footer-links a:hover {
    color: var(--accent);
}

.map-container {
    position: relative;
    margin-top: 24px;
    overflow: hidden;
    background: var(--bg-muted);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.map-container::before,
.map-container::after {
    content: '';
    position: absolute;
    left: 50%;
    pointer-events: none;
    z-index: 1;
}

.map-container::before {
    top: calc(50% - 16px);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 2px rgba(255, 90, 24, 0.24);
}

.map-container::after {
    top: 50%;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
    transform: translate(-50%, -100%) rotate(-45deg);
}

.map-container iframe {
    display: block;
}

.form-note,
.modal p {
    margin-bottom: 22px;
    color: var(--text-muted);
}

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

.field-error {
    border-color: var(--danger) !important;
}

.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 6px 0 16px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 4px;
    accent-color: var(--accent);
}

.checkbox-group a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-status {
    min-height: 24px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-status.success {
    color: var(--success);
}

.form-status.error {
    color: var(--danger);
}

.footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 18px 0;
    background: #08090b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(250px, 320px);
    gap: 20px;
    align-items: center;
}

.footer-shop-link {
    min-width: 232px;
    white-space: nowrap;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px 22px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-socials {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-copyright {
    max-width: 320px;
    color: var(--text-muted);
    font-size: 0.86rem;
    text-align: right;
}

.policy-page {
    padding-top: 156px;
    padding-bottom: 100px;
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 123, 69, 0.08), rgba(255, 123, 69, 0) 24%),
        linear-gradient(180deg, rgba(13, 15, 18, 0.98), rgba(13, 15, 18, 1));
}

.policy-shell {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
}

.policy-content {
    padding: clamp(28px, 5vw, 54px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 22%),
        var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.policy-kicker {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.policy-content h1 {
    margin-top: 8px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
}

.policy-meta,
.policy-lead,
.policy-content p,
.policy-content li {
    color: var(--text-muted);
}

.policy-meta {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: 0.98rem;
}

.policy-lead {
    max-width: 800px;
    margin-bottom: 8px;
    line-height: 1.78;
}

.policy-section + .policy-section {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-content h2 {
    margin-bottom: 14px;
    font-family: var(--font-heading);
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--text-main);
}

.policy-content p {
    line-height: 1.8;
}

.policy-content p + p,
.policy-content ul + p {
    margin-top: 14px;
}

.policy-list {
    display: grid;
    gap: 10px;
    padding-left: 20px;
    line-height: 1.8;
}

.policy-note {
    margin-top: 18px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--accent-border);
    border-radius: 12px;
    color: var(--text-main);
    line-height: 1.7;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: min(500px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 34px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    transform: translateY(16px);
    transition: transform 0.25s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-lg {
    width: min(980px, 100%);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.7rem;
}

.modal-close:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.modal h2 {
    margin-bottom: 10px;
    padding-right: 44px;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1.2;
}

.product-modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 28px;
}

.product-modal-image {
    overflow: hidden;
    background: #07090c;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.product-modal-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.product-gallery[data-count="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-gallery[data-count="1"] {
    display: none;
}

.gallery-thumb {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #07090c;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
}

.gallery-thumb.active {
    border-color: var(--accent);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-availability {
    color: var(--success) !important;
    font-weight: 700;
}

.product-video-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 4px 0 12px;
    color: var(--accent);
    font-weight: 700;
}

.product-video-link:hover {
    color: #fff;
}

@media (max-width: 1080px) {
    .header-nav {
        display: none;
    }

    .filters-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .catalog-grid,
    .advantages-grid,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contacts-grid,
    .product-modal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    section {
        scroll-margin-top: 84px;
    }

    .container {
        width: min(100% - 28px, 1200px);
    }

    .header {
        height: 72px;
    }

    .logo img {
        width: auto;
        height: 42px;
        max-width: none;
        object-fit: contain;
        object-position: center center;
    }

    .logo {
        padding: 0;
    }

    .header-container {
        gap: 12px;
    }

    .header-contacts {
        gap: 10px;
    }

    .header-socials {
        gap: 6px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
    }

    .social-icon svg {
        width: 17px;
        height: 17px;
    }

    .social-icon span {
        font-size: 0.56rem;
    }

    .header-phone {
        display: none;
    }

    .header .btn {
        min-height: 32px;
        padding: 6px 10px;
        font-size: 0.68rem;
    }

    .hero {
        min-height: 620px;
        margin-top: 72px;
    }

    .hero-slide::after {
        background:
            linear-gradient(180deg, rgba(8, 10, 13, 0.14) 0%, rgba(8, 10, 13, 0.3) 68%, rgba(8, 10, 13, 0.4) 100%),
            linear-gradient(90deg, rgba(8, 10, 13, 0.58) 0%, rgba(8, 10, 13, 0.28) 56%, rgba(8, 10, 13, 0.34) 100%);
    }

    .hero-slide-primary::after {
        background:
            linear-gradient(180deg, rgba(8, 10, 13, 0.1) 0%, rgba(8, 10, 13, 0.24) 68%, rgba(8, 10, 13, 0.32) 100%),
            linear-gradient(90deg, rgba(8, 10, 13, 0.48) 0%, rgba(8, 10, 13, 0.22) 56%, rgba(8, 10, 13, 0.28) 100%);
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-subtitle {
        width: min(100%, 540px);
        padding: 12px 18px 14px 0;
        font-size: 1rem;
    }

    .hero-subtitle::before {
        inset: -8px -18px -10px -14px;
        border-radius: 22px;
        filter: blur(14px);
    }

    .hero-buttons,
    .filter-actions {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero-pagination {
        margin-top: 24px;
        gap: 8px;
    }

    .hero-dot {
        width: 28px;
    }

    .hero-buttons .btn,
    .filter-actions .btn {
        width: 100%;
    }

    .catalog-section,
    .salon,
    .steps,
    .contacts-wrapper,
    .advantages,
    .comparison,
    .faq {
        padding: 72px 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .filters-panel,
    .catalog-grid,
    .advantages-grid,
    .steps-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .salon-slider {
        padding: 0 0 58px;
    }

    .salon-viewport,
    .salon-slide img {
        min-height: 320px;
    }

    .salon-caption {
        right: 16px;
        bottom: 16px;
        left: 16px;
        padding: 14px 16px;
    }

    .salon-caption span {
        font-size: 0.88rem;
    }

    .salon-arrow {
        top: auto;
        bottom: 0;
        transform: none;
        width: 42px;
        height: 42px;
    }

    .salon-arrow-prev {
        left: calc(50% - 52px);
    }

    .salon-arrow-next {
        right: calc(50% - 52px);
    }

    .footer-container {
        gap: 14px;
    }

    .filter-actions {
        grid-column: auto;
    }

    .contact-info-box,
    .contact-form-box,
    .modal {
        padding: 24px 18px;
    }

    .contact-details p {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .footer-container,
    .footer-copyright {
        text-align: center;
    }

    .footer-shop-link {
        width: 100%;
        min-width: 0;
    }

    .policy-page {
        padding-top: 118px;
        padding-bottom: 72px;
    }

    .policy-shell {
        width: min(100% - 28px, 980px);
    }

    .policy-content {
        padding: 28px 18px;
        border-radius: 14px;
    }

    .policy-section + .policy-section {
        margin-top: 28px;
        padding-top: 24px;
    }

    .modal-overlay {
        align-items: flex-start;
        padding: 12px;
    }

    .modal {
        max-height: calc(100vh - 24px);
    }
}

@media (max-width: 420px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .card-content {
        padding: 16px;
    }
}
