/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #1a1a2e;
    background: #faf5ff;
    overflow-x: hidden;
    max-width: 100%;
    padding-top: var(--header-total-offset, 132px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-weight: 300;
}

ul, ol {
    list-style: none;
}

/* ===== CANVAS BACKGROUND ===== */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* ===== TOP BANNER ===== */
.top-banner {
    background: linear-gradient(90deg, #7c3aed 0%, #c026d3 50%, #db2777 100%);
    color: #fff;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 106;
    text-align: center;
}

.top-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.bonus-text {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.banner-close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.7;
    font-size: 1.2rem;
    line-height: 1;
    transition: opacity 0.2s;
}

.banner-close:hover {
    opacity: 1;
}

/* ===== HEADER ===== */
.main-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    padding: 12px 0;
    position: fixed;
    top: var(--top-banner-height, 0px);
    left: 0;
    right: 0;
    z-index: 105;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 200;
    color: #1a1a2e;
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    color: #7c3aed;
    background: url("../images/logo3.png");
    width: 64px;
    height: 64px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: width 0.3s ease, height 0.3s ease;
}

.main-header.scrolled .logo-icon {
    width: 45px;
    height: 45px;
}


.mt-20
{
    margin-top: 20px;
}

.logo-text b {
    font-weight: 500;
    color: #7c3aed;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 300;
    color: #4a4a6a;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #7c3aed, #db2777);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #1a1a2e;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
}

.city-link-trigger {
    font-size: 0.9rem;
    font-weight: 400;
    color: #7c3aed;
    border-bottom: 1px dashed #7c3aed;
    line-height: 1.1;
    padding-bottom: 0;
    white-space: nowrap;
    display: inline-block;
}

.city-link-trigger:hover {
    color: #7c3aed;
    border-bottom-color: #7c3aed;
}

.header-city-link {
    flex: 0 0 auto;
}

.phone-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: #1a1a2e;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.2;
}

.phone-link:hover {
    color: #7c3aed;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px;
    position: relative;
    z-index: 111;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #1a1a2e;
    transition: all 0.3s;
}

.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 243, 255, 0.76);
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    padding: calc(var(--mobile-menu-offset, 90px) + 16px) 20px 24px;
    flex-direction: column;
    gap: 14px;
    z-index: 110;
    border-top: 1px solid rgba(124, 58, 237, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.mobile-menu-logo {
    font-size: 1.1rem;
}

.mobile-menu-logo .logo-icon {
    width: 48px;
    height: 48px;
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(255, 255, 255, 0.45);
    color: #1a1a2e;
    font-size: 1.9rem;
    line-height: 1;
    transition: all 0.25s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(124, 58, 237, 0.35);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-links a {
    font-size: 1rem;
    font-weight: 400;
    color: #4a4a6a;
    padding: 10px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.mobile-menu-links a:last-child {
    border-bottom: none;
}

.mobile-menu-phone {
    margin-top: 6px;
    font-size: 1rem;
    font-weight: 500;
    color: #7c3aed;
}

body.menu-open {
    overflow: hidden;
}

body.city-modal-open {
    overflow: hidden;
}

body.privacy-modal-open {
    overflow: hidden;
}

.city-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.city-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.city-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 10, 38, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.city-modal-dialog {
    position: relative;
    width: min(760px, calc(100vw - 32px));
    max-height: calc(100vh - 60px);
    margin: 30px auto;
    overflow: auto;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 22px;
    box-shadow: 0 22px 70px rgba(26, 26, 46, 0.25);
    padding: 28px 24px 24px;
}

.city-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.18);
    background: rgba(124, 58, 237, 0.08);
    color: #4a4a6a;
    font-size: 1.7rem;
    line-height: 1;
}

.city-modal-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.city-modal-subtitle {
    font-size: 0.95rem;
    color: #6b5b95;
    margin-bottom: 18px;
}

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

.city-option-btn {
    width: 100%;
    text-align: left;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    background: rgba(255, 255, 255, 0.75);
    color: #3d3554;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
}

.city-option-btn:hover {
    border-color: rgba(124, 58, 237, 0.4);
    background: rgba(124, 58, 237, 0.08);
}

.city-option-btn.active {
    border-color: transparent;
    background: linear-gradient(135deg, #7c3aed, #c026d3);
    color: #fff;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 121;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.privacy-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.privacy-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 10, 38, 0.52);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.privacy-modal-dialog {
    position: relative;
    width: min(820px, calc(100vw - 32px));
    max-height: calc(100vh - 54px);
    margin: 27px auto;
    overflow: auto;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(124, 58, 237, 0.16);
    border-radius: 22px;
    box-shadow: 0 24px 78px rgba(16, 12, 26, 0.35);
    padding: 26px 24px 24px;
}

.privacy-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(124, 58, 237, 0.08);
    color: #4a4a6a;
    font-size: 1.7rem;
    line-height: 1;
}

.privacy-modal-title {
    font-size: 1.45rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 14px;
    padding-right: 44px;
}

.privacy-modal-content {
    display: grid;
    gap: 12px;
    color: #40385a;
    font-size: 0.94rem;
    line-height: 1.6;
}

.privacy-modal-content h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #2b2241;
    margin-top: 4px;
}

.privacy-modal-content ul {
    list-style: disc;
    padding-left: 18px;
}

.privacy-modal-content li + li {
    margin-top: 4px;
}

.privacy-modal-content a {
    color: #8f2ca7;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn.is-loading {
    opacity: 0.92;
    pointer-events: none;
}

.btn.is-loading::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: buttonSpin 0.8s linear infinite;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #c026d3 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.btn-outline {
    border: 1.5px solid #7c3aed;
    color: #7c3aed;
    background: transparent;
}

.btn-outline:hover {
    background: #7c3aed;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}

/* ===== HERO ===== */
.hero-section {

    position: relative;
    z-index: 1;
}

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

.price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
}

.price-value {
    font-size: 1.9rem;
    font-weight: 500;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 0.9rem;
    font-weight: 300;
    color: #6b5b95;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 200;
    line-height: 1.15;
    color: #1a1a2e;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-city-wrap {
    white-space: nowrap;
}

.hero-city-trigger {
    display: inline-block;
    color: #7c3aed;
    border-bottom: 1px dashed #7c3aed;
    padding-bottom: 0;
    line-height: 1;
}

.hero-city-trigger:hover {
    color: #7c3aed;
    border-bottom-color: #7c3aed;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #6b5b95;
    margin-bottom: 32px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
}

.h-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 300;
    color: #4a4a6a;
}

.h-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed, #c026d3);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 500;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-timer-block {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
}

.timer-label {
    font-size: 0.85rem;
    font-weight: 300;
    color: #6b5b95;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.t-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.t-block span:first-child {
    font-size: 1.5rem;
    font-weight: 500;
    color: #7c3aed;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.t-block small {
    font-size: 0.7rem;
    font-weight: 300;
    color: #999;
    text-transform: lowercase;
}

.gig-f
{
     font-size: 1.3rem!important;
}

.t-sep {
    font-size: 1.3rem;
    font-weight: 200;
    color: #c026d3;
    padding-bottom: 14px;
}

.hero-section .hero-image {
    position: relative;
    overflow: hidden;
}

.hero-section .hero-image img {
    width: 100%;
    height: 620px;
    object-fit: contain;
}

.hero-image-glow {

}

/* ===== ADVANTAGES BAR ===== */
.advantages-bar {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

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

.adv-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.adv-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.2);
}

.adv-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(192, 38, 211, 0.08) 100%);
    border-radius: 12px;
}

.adv-item span {
    font-size: 0.8rem;
    font-weight: 300;
    color: #4a4a6a;
    line-height: 1.4;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7c3aed;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(192, 38, 211, 0.08) 100%);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 200;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: #6b5b95;
}

.section-dark {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.03) 0%, rgba(192, 38, 211, 0.03) 100%);
}

.section-accent {
    background: #fff;
    position: relative;
}

.section-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.15), transparent);
}

.section-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.15), transparent);
}

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.2);
}

.step-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-card:hover .step-image img {
    transform: scale(1.05);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 100;
    color: #7c3aed;
    opacity: 0.3;
    padding: 20px 24px 0;
    line-height: 1;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a2e;
    padding: 8px 24px;
    line-height: 1.3;
}

.step-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: #6b5b95;
    padding: 0 24px 24px;
    line-height: 1.6;
}

/* ===== HAIR TABLE ===== */
.hair-table-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.hair-column {
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    padding: 32px;
}

.hair-col-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.col-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.yes-dot {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.no-dot {
    background: linear-gradient(135deg, #ef4444, #f87171);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.hair-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.06);
}

.hair-item:last-child {
    border-bottom: none;
}

.hair-item-img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.hair-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hair-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    border-radius: 10px;
    flex-shrink: 0;
}

.hair-item-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.hair-item-text span {
    font-size: 0.82rem;
    font-weight: 300;
    color: #6b5b95;
}

/* ===== PRICE FIXATION ===== */
.price-fix-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 24px;
    padding: 48px;
}

.price-fix-content .section-header {
    text-align: left;
    margin: 0 0 24px 0;
}

.timer-row {
    display: flex;
    gap: 16px;
    margin: 32px 0;
}

.timer-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(192, 38, 211, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 80px;
}

.timer-num {
    font-size: 1.8rem;
    font-weight: 500;
    color: #7c3aed;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.timer-label-sm {
    font-size: 0.75rem;
    font-weight: 300;
    color: #999;
    text-transform: lowercase;
}

.price-fix-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
}

.price-fix-visual .hero-image {
    width: 100%;
    max-width: 280px;
    margin-top: 0;
    overflow: visible;
}

.price-fix-visual .hero-image img {
    width: 100%;
    height: clamp(230px, 66vw, 340px);
    object-fit: contain;
    object-position: center bottom;
    transform: none;
}

.orbit-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.orbit-1 {
    width: 280px;
    height: 280px;
    animation: orbit1 12s linear infinite;
}

.orbit-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(192, 38, 211, 0.2);
    animation: orbit2 10s linear infinite reverse;
}

.orbit-3 {
    width: 160px;
    height: 160px;
    border-color: rgba(219, 39, 119, 0.25);
    animation: orbit3 8s linear infinite;
}

@keyframes orbit1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbit2 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbit3 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.price-fix-center {
    text-align: center;
    z-index: 1;
}

.pfc-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 200;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pfc-unit {
    font-size: 0.9rem;
    font-weight: 300;
    color: #6b5b95;
}

/* ===== FORMS (HORIZONTAL) ===== */
.eval-form-horizontal,
.sell-form-horizontal {
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.eval-form-fields,
.sell-form-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 400;
    color: #4a4a6a;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select {
    padding: 14px 16px;
    border: 1.5px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1a1a2e;
    background: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.08);
}

.form-group input::placeholder {
    color: #aaa;
    font-weight: 200;
}

.form-group-file input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-wrap {
    position: relative;
}

.file-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border: 1.5px dashed rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 300;
    color: #7c3aed;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(124, 58, 237, 0.02);
}

.file-upload-btn:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.05);
}

.form-group-check {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 300;
    color: #4a4a6a;
}

.check-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.check-box {
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(124, 58, 237, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.check-label input:checked + .check-box {
    background: linear-gradient(135deg, #7c3aed, #c026d3);
    border-color: transparent;
}

.check-label input:checked + .check-box::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.eval-form-submit,
.sell-form-submit {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-note {
    font-size: 0.75rem;
    font-weight: 300;
    color: #aaa;
    text-align: center;
}

.form-note a {
    color: #7c3aed;
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.form-bonus {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 400;
    color: #db2777;
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.08) 0%, rgba(192, 38, 211, 0.08) 100%);
    padding: 10px;
    border-radius: 10px;
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}

.form-toast-stack {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 250;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.form-toast {
    position: relative;
    max-width: min(420px, calc(100vw - 24px));
    min-width: 260px;
    padding: 13px 16px 13px 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.45;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.form-toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 100px;
}

.form-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.form-toast-success {
    background: rgba(17, 30, 35, 0.9);
    border-color: rgba(104, 255, 205, 0.3);
}

.form-toast-success::before {
    background: #59f3bf;
}

.form-toast-error {
    background: rgba(48, 20, 28, 0.92);
    border-color: rgba(255, 131, 158, 0.34);
}

.form-toast-error::before {
    background: #ff7f9a;
}

/* ===== EXAMPLES HORIZONTAL ===== */
.examples-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.example-card {
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.example-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
}

.example-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    position: relative;
}

.ex-img {
    position: relative;
    height: 380px;
    overflow: hidden;
}

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

.example-card:hover .ex-img img {
    transform: scale(1.05);
}

.ex-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 400;
}

.before-badge {
    background: rgba(124, 58, 237, 0.85);
    color: #fff;
}

.after-badge {
    background: rgba(16, 185, 129, 0.85);
    color: #fff;
}

.example-info {
    padding: 24px;
}

.ex-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.ex-tag {
    font-size: 0.78rem;
    font-weight: 400;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.06);
    padding: 4px 12px;
    border-radius: 100px;
}

.ex-price {
    font-size: 1.8rem;
    font-weight: 200;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.ex-currency {
    font-size: 0.9rem;
    font-weight: 300;
    color: #6b5b95;
}

.ex-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: #6b5b95;
    line-height: 1.5;
}

/* ===== PAYMENTS SLIDER ===== */
.payments-slider {
    position: relative;
    --payments-visible: 3;
    --payments-gap: 24px;
}

.payments-slider-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.payments-slider-viewport {
    overflow: hidden;
    min-width: 0;
}

.payments-slider-track {
    display: flex;
    gap: var(--payments-gap);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    touch-action: pan-y;
}

.payment-slide {
    flex: 0 0 calc((100% - (var(--payments-gap) * (var(--payments-visible) - 1))) / var(--payments-visible));
    min-width: 0;
    padding: 8px 0;
}

.payment-slide-card {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.payment-slide-card .example-info {
    padding: 20px;
}

.payment-shot {
    position: relative;
    height: clamp(240px, 31vw, 420px);
    overflow: hidden;
}

.payment-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.payments-nav {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(255, 255, 255, 0.86);
    color: #7c3aed;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.payments-nav:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #7c3aed, #c026d3);
}

.payments-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.payments-dots {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payments-dot {
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.2);
    transition: all 0.25s ease;
}

.payments-dot.is-active {
    width: 30px;
    background: linear-gradient(90deg, #7c3aed, #db2777);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
}

.payments-empty {
    padding: 20px;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px dashed rgba(124, 58, 237, 0.26);
    color: #6b5b95;
    font-size: 0.92rem;
}

/* ===== HONEST WEIGHT ===== */
.honest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.honest-content .section-header {
    text-align: left;
    margin: 0 0 24px 0;
}

.honest-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.honest-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 300;
    color: #4a4a6a;
}

.hi-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.honest-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.honest-visual img
{
    border-radius: 48px;
}

.weight-scale {

}

.scale-display {
    margin-bottom: 20px;
}

.scale-num {
    font-size: 3rem;
    font-weight: 200;
    color: #7c3aed;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.scale-unit {
    font-size: 1rem;
    font-weight: 300;
    color: #6b5b95;
    margin-left: 6px;
}

.scale-bar {
    width: 100%;
    height: 8px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 16px;
}

.scale-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7c3aed, #c026d3);
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-caption {
    font-size: 0.85rem;
    font-weight: 300;
    color: #6b5b95;
}

/* ===== REVIEWS STORIES SLIDER ===== */
#reviews {
    overflow-x: clip;
    position: relative;
    background:
        radial-gradient(70% 130% at 20% 120%, rgba(255, 121, 79, 0.14) 0%, rgba(255, 121, 79, 0) 58%),
        radial-gradient(80% 120% at 80% -20%, rgba(93, 97, 255, 0.2) 0%, rgba(93, 97, 255, 0) 62%),
        linear-gradient(180deg, #11131d 0%, #090a10 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    isolation: isolate;
}

#reviews::before,
#reviews::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.55;
}

#reviews::before {
    width: 520px;
    height: 520px;
    left: -160px;
    bottom: -220px;
    background: radial-gradient(circle, rgba(255, 138, 94, 0.34) 0%, rgba(255, 138, 94, 0) 70%);
    animation: reviewsBlobOne 16s ease-in-out infinite;
}

#reviews::after {
    width: 560px;
    height: 560px;
    right: -170px;
    top: -260px;
    background: radial-gradient(circle, rgba(122, 105, 255, 0.34) 0%, rgba(122, 105, 255, 0) 70%);
    animation: reviewsBlobTwo 18s ease-in-out infinite;
}

#reviews .container {
    max-width: none;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
}

#reviews .section-header {
    max-width: 1400px;
    margin: 0 auto 24px;
    padding: 0 clamp(16px, 3.2vw, 46px);
}

#reviews .section-tag {
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

#reviews .section-title {
    color: rgba(255, 255, 255, 0.96);
}

#reviews .section-subtitle {
    color: rgba(255, 255, 255, 0.68);
}

.reviews-stories {
    --reviews-slide-width: clamp(250px, 22vw, 430px);
    --reviews-slide-gap: clamp(26px, 2.6vw, 44px);
    --reviews-side-scale: 0.62;
    --reviews-glow: rgba(255, 128, 72, 0.3);
    width: 100%;
    background: transparent;
    border: 0;
    padding: 20px clamp(10px, 2.6vw, 30px) 24px;
    box-shadow: none;
    position: relative;
}

.reviews-stories-head {
    max-width: none;
    margin: 0 auto 12px;
    padding: 0 clamp(8px, 2.5vw, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reviews-stories-counter {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.94);
    font-variant-numeric: tabular-nums;
}

.reviews-counter-sep {
    color: rgba(255, 255, 255, 0.42);
    margin: 0 3px;
}

.stories-autoplay-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stories-autoplay-btn .icon-play {
    display: none;
}

.stories-autoplay-btn.is-playing .icon-play {
    display: none;
}

.stories-autoplay-btn.is-playing .icon-pause {
    display: block;
}

.stories-autoplay-btn:not(.is-playing) .icon-play {
    display: block;
}

.stories-autoplay-btn:not(.is-playing) .icon-pause {
    display: none;
}

.stories-autoplay-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.reviews-stories-shell {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.reviews-stories-viewport {
    overflow: hidden;
    padding: 10px 0 22px;
}

.reviews-stories-track {
    display: flex;
    align-items: center;
    gap: var(--reviews-slide-gap);
    padding-left: calc((100% - var(--reviews-slide-width)) / 2);
    padding-right: calc((100% - var(--reviews-slide-width)) / 2);
    transition: transform 0.7s cubic-bezier(0.2, 0.86, 0.32, 1);
    will-change: transform;
    touch-action: pan-y;
}

.reviews-story-slide {
    flex: 0 0 var(--reviews-slide-width);
    width: var(--reviews-slide-width);
    transform-origin: 50% 50%;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.42;
    transform: scale(var(--reviews-side-scale)) translateZ(0);
    filter: brightness(0.7) saturate(0.82);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.5);
    transition:
        transform 0.7s cubic-bezier(0.2, 0.86, 0.32, 1),
        opacity 0.48s ease,
        filter 0.48s ease,
        box-shadow 0.48s ease;
}

.reviews-story-slide.is-active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: brightness(1) saturate(1);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.62),
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 0 52px var(--reviews-glow);
    z-index: 2;
}

.reviews-story-slide img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.stories-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 5;
}

.stories-nav-prev {
    left: clamp(4px, 1.2vw, 18px);
}

.stories-nav-next {
    right: clamp(4px, 1.2vw, 18px);
}

.stories-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.stories-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.reviews-dots {
    max-width: none;
    margin: 6px auto 0;
    padding: 0 clamp(16px, 3vw, 40px);
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    transform: translateY(25%);
}

.reviews-dot {
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.reviews-dot.is-active {
    background: linear-gradient(90deg, #ff4fa8 0%, #ff7ac2 100%);
    box-shadow: 0 0 12px rgba(255, 94, 178, 0.4);
    transform: scaleX(1.12);
}

@keyframes reviewsBlobOne {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(90px, -30px, 0) scale(1.16);
    }
}

@keyframes reviewsBlobTwo {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-80px, 44px, 0) scale(1.1);
    }
}

@keyframes reviewsFieldPulse {
    0%,
    100% {
        box-shadow: inset 0 30px 55px rgba(255, 255, 255, 0.02), inset 0 -35px 55px rgba(0, 0, 0, 0.28);
    }
    50% {
        box-shadow: inset 0 38px 70px rgba(255, 255, 255, 0.03), inset 0 -42px 70px rgba(0, 0, 0, 0.34);
    }
}

@media (prefers-reduced-motion: reduce) {
    #reviews::before,
    #reviews::after,
    .main-footer::before,
    .main-footer::after {
        animation: none;
    }
}

/* ===== PARTNER PROGRAM ===== */
.partner-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-content,
.partner-side-card {
    min-width: 0;
}

.partner-content .section-title {
    margin-bottom: 10px;
}

.partner-content .section-subtitle {
    margin-bottom: 0;
    overflow-wrap: anywhere;
}

.partner-description {
    margin-top: 12px;
    color: #5d507e;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.partner-city-trigger {
    font-size: inherit;
    line-height: inherit;
}

.partner-points {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.partner-point {
    position: relative;
    padding: 0 0 0 26px;
    color: #3e3f61;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.45;
}

.partner-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
}

.partner-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.partner-link {
    padding: 10px 16px;
    border-radius: 100px;
    border: 1px solid rgba(124, 58, 237, 0.24);
    background: rgba(255, 255, 255, 0.82);
    color: #7c3aed;
    font-size: 0.86rem;
    font-weight: 400;
    transition: all 0.25s ease;
}

.partner-link:hover {
    transform: translateY(-1px);
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.24);
}

.partner-side-card {
    border-radius: 22px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.16);
    box-shadow: 0 16px 42px rgba(33, 29, 59, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.partner-side-label {
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b5b95;
}

.partner-side-note {
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #5d507e;
    overflow-wrap: anywhere;
}

.partner-side-form {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.partner-side-form .form-group {
    gap: 5px;
}

.partner-side-form .form-group label {
    font-size: 0.78rem;
}

.partner-submit-btn {
    width: 100%;
    margin-top: 2px;
}

/* ===== SUPPORT SECTION ===== */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-content .section-header {
    text-align: left;
    margin: 0 0 24px 0;
}

.support-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.support-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.support-channel:hover {
    background: #fff;
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
}

.sc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(192, 38, 211, 0.08) 100%);
    color: #7c3aed;
    border-radius: 12px;
    flex-shrink: 0;
}

.sc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sc-name {
    font-size: 0.95rem;
    font-weight: 400;
    color: #1a1a2e;
}

.sc-status {
    font-size: 0.82rem;
    font-weight: 300;
    color: #6b5b95;
}

.support-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-orb {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-text {
    font-size: 2.5rem;
    font-weight: 200;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: pulse1 3s ease-in-out infinite;
}

.ring-2 {
    width: 160px;
    height: 160px;
    border-color: rgba(192, 38, 211, 0.2);
    animation: pulse2 3s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 120px;
    height: 120px;
    border-color: rgba(219, 39, 119, 0.25);
    animation: pulse3 3s ease-in-out infinite 1s;
}

@keyframes pulse1 {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.7; }
}

@keyframes pulse2 {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.7; }
}

@keyframes pulse3 {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.04); opacity: 0.7; }
}

/* ===== FOOTER ===== */
.main-footer {
    background:
        radial-gradient(70% 130% at 20% 120%, rgba(255, 121, 79, 0.14) 0%, rgba(255, 121, 79, 0) 58%),
        radial-gradient(80% 120% at 80% -20%, rgba(93, 97, 255, 0.2) 0%, rgba(93, 97, 255, 0) 62%),
        linear-gradient(180deg, #11131d 0%, #090a10 100%);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
}

.main-footer::before,
.main-footer::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.55;
}

.main-footer::before {
    width: 520px;
    height: 520px;
    left: -160px;
    bottom: -220px;
    background: radial-gradient(circle, rgba(255, 138, 94, 0.34) 0%, rgba(255, 138, 94, 0) 70%);
    animation: reviewsBlobOne 16s ease-in-out infinite;
}

.main-footer::after {
    width: 560px;
    height: 560px;
    right: -170px;
    top: -260px;
    background: radial-gradient(circle, rgba(122, 105, 255, 0.34) 0%, rgba(122, 105, 255, 0) 70%);
    animation: reviewsBlobTwo 18s ease-in-out infinite;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    color: #c084fc;
}

.footer-logo .logo-text b {
    color: #c084fc;
}

.footer-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 280px;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c084fc;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #c084fc;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .payments-slider {
        --payments-visible: 2;
        --payments-gap: 20px;
    }

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

    .header-inner {
        gap: 12px;
    }

    .header-actions {
        display: none;
    }

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

    .hero-section .hero-image img {
        height: 580px;
    }

    .hero-grid {
        gap: 40px;
    }

    .adv-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .hair-table-wrap {
        grid-template-columns: 1fr;
    }

    .price-fix-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .honest-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .honest-visual {
        order: -1;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-visual {
        order: -1;
    }

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

    #reviews .section-header {
        padding: 0 24px;
    }

    .reviews-stories {
        --reviews-slide-width: clamp(220px, 32vw, 340px);
        --reviews-slide-gap: clamp(20px, 2.2vw, 30px);
        --reviews-side-scale: 0.62;
        padding: 20px 10px 20px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-city-link {
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    .payments-slider {
        --payments-visible: 1;
        --payments-gap: 0px;
    }

    .partner-block {
        gap: 24px;
    }

    .partner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .partner-link {
        width: 100%;
        text-align: center;
    }

    .container {
        padding: 0 20px;
    }

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

    .hero-section .hero-image img {
        height: clamp(470px, 122vw, 640px);
        object-fit: contain;
        object-position: center top;
        transform: translateY(-24px) scale(1.08);
        transform-origin: top center;
    }

    .hero-section .hero-image {
        margin-top: -56px;
    }

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

    .hero-features {
        grid-template-columns: 1fr;
    }

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

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

    .hair-column {
        min-width: 0;
        padding: 22px 18px;
    }

    .hair-col-title {
        font-size: 1.05rem;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .hair-item {
        align-items: flex-start;
        gap: 12px;
    }

    .hair-item-img {
        width: 74px;
        height: 74px;
        border-radius: 12px;
    }

    .hair-item-text {
        min-width: 0;
    }

    .hair-item-text strong,
    .hair-item-text span {
        overflow-wrap: anywhere;
    }

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

    .examples-horizontal {
        grid-template-columns: 1fr;
    }

    .payments-slider-shell {
        grid-template-columns: 1fr;
        position: relative;
    }

    .payments-nav {
        position: absolute;
        top: 43%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        z-index: 3;
    }

    .payments-nav-prev {
        left: 6px;
    }

    .payments-nav-next {
        right: 6px;
    }

    .payment-shot {
        height: clamp(260px, 84vw, 420px);
    }

    .step-image {
        height: 300px;
    }

    .ex-img {
        height: 300px;
    }

    .eval-form-fields,
    .sell-form-fields {
        grid-template-columns: 1fr;
    }

    .timer-row {
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .content-section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 40px 0 30px;
    }

    .price-fix-block {
        padding: 32px 24px;
    }

    .eval-form-horizontal,
    .sell-form-horizontal {
        padding: 28px 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    #reviews .section-header {
        padding: 0 20px;
    }

    .reviews-stories {
        --reviews-slide-width: clamp(210px, 70vw, 300px);
        --reviews-slide-gap: 16px;
        --reviews-side-scale: 0.63;
        padding: 16px 6px 18px;
    }

    .reviews-stories-track {
        padding-left: calc((100% - var(--reviews-slide-width)) / 2);
        padding-right: calc((100% - var(--reviews-slide-width)) / 2);
    }

    .stories-nav {
        width: 44px;
        height: 44px;
    }

    .stories-nav svg {
        width: 20px;
        height: 20px;
    }

    .reviews-dot {
        width: 18px;
        height: 2px;
    }

    .city-modal-dialog {
        width: calc(100vw - 20px);
        margin: 10px auto;
        max-height: calc(100vh - 20px);
        border-radius: 16px;
        padding: 22px 16px 16px;
    }

    .privacy-modal-dialog {
        width: calc(100vw - 20px);
        margin: 10px auto;
        max-height: calc(100vh - 20px);
        border-radius: 16px;
        padding: 22px 16px 16px;
    }

    .city-modal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .hero-section .hero-image img {
        height: clamp(430px, 132vw, 560px);
        transform: translateY(-18px) scale(1.05);
    }

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

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

    .form-toast-stack {
        right: 10px;
        left: 10px;
        bottom: 14px;
    }

    .form-toast {
        min-width: 0;
        max-width: none;
        width: 100%;
    }

    .timer-card {
        padding: 16px;
        min-width: 60px;
    }

    .timer-num {
        font-size: 1.4rem;
    }

    .example-images {
        grid-template-columns: 1fr;
    }

    .step-image {
        height: 240px;
    }

    .ex-img {
        height: 240px;
    }

    .honest-item {
        align-items: flex-start;
    }

    .reviews-stories-head {
        margin-bottom: 12px;
    }

    .reviews-stories-counter {
        font-size: 0.95rem;
    }

    .stories-autoplay-btn {
        width: 36px;
        height: 36px;
    }

    .stories-nav {
        width: 40px;
        height: 40px;
    }

    .reviews-dot {
        width: 14px;
        height: 2px;
    }

    .city-modal-grid {
        grid-template-columns: 1fr;
    }

    .city-modal-title {
        font-size: 1.3rem;
    }

    .privacy-modal-title {
        font-size: 1.22rem;
    }
}

@keyframes buttonSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
