:root {
    --bg: #0a0a0f;
    --bg2: #10101a;
    --card: #13131f;
    --accent: #c8a97e;
    --accent2: #e8c9a0;
    --pink: #d4608a;
    --pink2: #f07aaa;
    --text: #f0eee8;
    --muted: #8a8880;
    --border: rgba(200,169,126,0.15);
    --glow: rgba(200,169,126,0.08);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
}

/* NAV */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10,10,15,0.95), transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.logo span { color: var(--pink); }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

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

.lang-switch {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px;
}

.lang-btn {
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    background: none;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.lang-btn.active {
    background: var(--accent);
    color: #0a0a0f;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

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

.nav-cta:hover {
    background: var(--pink2);
    transform: translateY(-1px);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,96,138,0.18) 0%, transparent 70%),
            radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,169,126,0.12) 0%, transparent 60%),
            radial-gradient(ellipse 30% 30% at 80% 60%, rgba(212,96,138,0.08) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(200,169,126,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(200,169,126,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-content { position: relative; max-width: 860px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(200,169,126,0.1);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
}

.badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pink);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
    position: relative;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--accent));
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 48px;
    font-weight: 300;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--pink), #b94a7a);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(212,96,138,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212,96,138,0.45);
}

.btn-secondary {
    padding: 16px 36px;
    background: rgba(255,255,255,0.05);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(200,169,126,0.08);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.8s 0.4s ease both;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 400;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* PAIN SECTION */
.section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-sub {
    color: var(--muted);
    max-width: 520px;
    font-size: 1rem;
    font-weight: 300;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 56px;
}

.pain-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.pain-card:hover {
    border-color: rgba(212,96,138,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pain-card:hover::before { opacity: 1; }

.pain-icon {
    width: 48px; height: 48px;
    background: rgba(212,96,138,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.pain-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FEATURES */
.features-wrap {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-sub { margin: 0 auto; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(200,169,126,0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(200,169,126,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent);
}

.feature-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 10px;
    background: rgba(200,169,126,0.08);
    border: 1px solid rgba(200,169,126,0.15);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: rgba(200,169,126,0.25);
    transform: translateY(-3px);
}

.review-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.review-role {
    font-size: 0.78rem;
    color: var(--muted);
}

/* PRICING */
.pricing-wrap {
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .section-sub { margin: 0 auto; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 20px 80px rgba(200,169,126,0.15);
}

.popular-badge {
    position: absolute;
    top: 20px; right: 20px;
    padding: 5px 12px;
    background: var(--accent);
    color: #0a0a0f;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}

.plan-price span {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
}

.plan-desc {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 28px;
}

.plan-features { list-style: none; margin-bottom: 36px; }

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.plan-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
}

.plan-btn.primary {
    background: linear-gradient(135deg, var(--pink), #b94a7a);
    color: #fff;
    box-shadow: 0 8px 24px rgba(212,96,138,0.25);
}

.plan-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212,96,138,0.4);
}

.plan-btn.outline {
    background: none;
    color: var(--text);
    border: 1px solid var(--border);
}

.plan-btn.outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* CTA BANNER */
.cta-banner {
    margin: 0 40px 80px;
    background: linear-gradient(135deg, rgba(212,96,138,0.15), rgba(200,169,126,0.1));
    border: 1px solid rgba(212,96,138,0.2);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212,96,138,0.12), transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 36px;
    position: relative;
}

.cta-banner .hero-ctas { position: relative; }

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
    gap: 20px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.footer-logo span { color: var(--pink); }

.footer-copy {
    font-size: 0.82rem;
    color: var(--muted);
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hidden lang content */
.lang-ru { display: none; }
.lang-en { display: block; }
body.ru .lang-ru { display: block; }
body.ru .lang-en { display: none; }

/* Inline lang spans */
span.lang-ru { display: none; }
body.ru span.lang-ru { display: inline; }
body.ru span.lang-en { display: none; }
span.lang-en { display: inline; }

@media(max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .section { padding: 72px 20px; }
    .hero { padding: 100px 20px 60px; }
    .cta-banner { margin: 0 20px 60px; padding: 48px 28px; }
    footer { flex-direction: column; text-align: center; padding: 32px 20px; }
}


/* ---------- OVERLAY ---------- */
.cp-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(6, 6, 10, 0.82);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cp-overlay.cp-open {
    opacity: 1;
    pointer-events: all;
}

/* ---------- MODAL ---------- */
.cp-modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #13131f;
    border: 1px solid rgba(200,169,126,0.18);
    border-radius: 24px;
    padding: 48px 44px 40px;
    box-shadow:
            0 40px 100px rgba(0,0,0,0.6),
            0 0 0 1px rgba(200,169,126,0.06) inset;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
    max-height: 92vh;
    overflow-y: auto;
}

.cp-overlay.cp-open .cp-modal {
    transform: translateY(0) scale(1);
}

/* ---------- CLOSE ---------- */
.cp-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,169,126,0.12);
    border-radius: 10px;
    color: #8a8880;
    cursor: pointer;
    transition: all 0.2s;
}

.cp-close:hover {
    background: rgba(212,96,138,0.12);
    border-color: rgba(212,96,138,0.25);
    color: #f0eee8;
}

/* ---------- HEADER ---------- */
.cp-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: rgba(200,169,126,0.08);
    border: 1px solid rgba(200,169,126,0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    color: #c8a97e;
    font-weight: 500;
    margin-bottom: 20px;
}

.cp-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #d4608a;
    animation: cpPulse 2s infinite;
}

@keyframes cpPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.5; transform:scale(1.4); }
}

.cp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: #f0eee8;
    margin-bottom: 10px;
}

.cp-title em {
    font-style: normal;
    color: #c8a97e;
}

.cp-sub {
    font-size: 0.87rem;
    color: #8a8880;
    margin-bottom: 32px;
    line-height: 1.55;
}

/* ---------- FORM ---------- */
.cp-form { display: flex; flex-direction: column; gap: 22px; }

.cp-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.cp-legend {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #8a8880;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.cp-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cp-radio-label {
    cursor: pointer;
}

.cp-radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cp-radio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,169,126,0.15);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #8a8880;
    transition: all 0.2s;
    user-select: none;
}

.cp-radio-label input:checked + .cp-radio-box {
    background: rgba(200,169,126,0.1);
    border-color: #c8a97e;
    color: #c8a97e;
    box-shadow: 0 0 0 3px rgba(200,169,126,0.08);
}

.cp-radio-label:hover .cp-radio-box {
    border-color: rgba(200,169,126,0.35);
    color: #f0eee8;
}

/* ---------- FIELDS ---------- */
.cp-field-wrap { display: flex; flex-direction: column; gap: 8px; }
.cp-hidden { display: none !important; }

.cp-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: #8a8880;
    letter-spacing: 0.2px;
}

.cp-optional {
    font-weight: 400;
    opacity: 0.7;
}

.cp-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cp-input-prefix {
    position: absolute;
    left: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: #c8a97e;
    pointer-events: none;
    line-height: 1;
}

.cp-input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,169,126,0.15);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #f0eee8;
    outline: none;
    transition: all 0.2s;
}

.cp-input--prefix { padding-left: 28px; }

.cp-input::placeholder { color: #4a4845; }

.cp-input:focus {
    border-color: #c8a97e;
    background: rgba(200,169,126,0.06);
    box-shadow: 0 0 0 3px rgba(200,169,126,0.1);
}

.cp-input.cp-error {
    border-color: rgba(212,96,138,0.6);
    box-shadow: 0 0 0 3px rgba(212,96,138,0.1);
}

.cp-textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,169,126,0.15);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #f0eee8;
    outline: none;
    resize: vertical;
    min-height: 90px;
    transition: all 0.2s;
}

.cp-textarea::placeholder { color: #4a4845; }

.cp-textarea:focus {
    border-color: #c8a97e;
    background: rgba(200,169,126,0.06);
    box-shadow: 0 0 0 3px rgba(200,169,126,0.1);
}

.cp-field-error {
    font-size: 0.78rem;
    color: #d4608a;
    min-height: 16px;
    display: block;
}

/* ---------- SUBMIT ---------- */
.cp-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #d4608a, #b94a7a);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(212,96,138,0.3);
}

.cp-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212,96,138,0.45);
}

.cp-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cp-spinner svg {
    animation: cpSpin 0.8s linear infinite;
}

@keyframes cpSpin { to { transform: rotate(360deg); } }

.cp-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: #4a4845;
}

/* ---------- SUCCESS ---------- */
.cp-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 0 8px;
    gap: 12px;
}

.cp-success-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: rgba(200,169,126,0.1);
    border: 2px solid rgba(200,169,126,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a97e;
    animation: cpSuccess 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes cpSuccess {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.cp-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f0eee8;
}

.cp-success-sub {
    color: #8a8880;
    font-size: 0.9rem;
}

/* ---------- SCROLLBAR ---------- */
.cp-modal::-webkit-scrollbar { width: 4px; }
.cp-modal::-webkit-scrollbar-track { background: transparent; }
.cp-modal::-webkit-scrollbar-thumb { background: rgba(200,169,126,0.2); border-radius: 4px; }

/* ---------- MOBILE ---------- */
@media (max-width: 520px) {
    .cp-modal { padding: 36px 24px 32px; border-radius: 20px; }
    .cp-title { font-size: 1.55rem; }
}

/* ── ROOT ───────────────────────────────────────────────────── */
.fs2-root {
  position: relative;
  background: var(--bg, #0a0a0f);
  border-top: 1px solid rgba(200,169,126,0.1);
  border-bottom: 1px solid rgba(200,169,126,0.1);
}
 
/* ── STICKY ─────────────────────────────────────────────────── */
.fs2-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  overflow: hidden;
}
 
/* ── LEFT PANEL ─────────────────────────────────────────────── */
.fs2-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px 60px 48px;
  position: relative;
  background: #0a0a0f;
  z-index: 2;
}
 
/* тонкая вертикальная линия-разделитель */
.fs2-left::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(200,169,126,0.2) 30%,
    rgba(200,169,126,0.2) 70%,
    transparent);
}
 
/* Eyebrow */
.fs2-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d4608a;
  margin-bottom: 20px;
}
 
.fs2-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d4608a;
  animation: fs2Pulse 2s infinite;
  flex-shrink: 0;
}
 
@keyframes fs2Pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.5); }
}
 
/* Прогресс */
.fs2-progress {
  width: 48px;
  height: 2px;
  background: rgba(200,169,126,0.12);
  border-radius: 2px;
  margin-bottom: 40px;
  overflow: hidden;
}
 
.fs2-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #d4608a, #c8a97e);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(.4,0,.2,1);
}
 
/* Текстовый слот */
.fs2-text-slot {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}
 
/* Декоративный номер */
.fs2-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,169,126,0.4);
  margin-bottom: -10px;
  transition: all 0.45s cubic-bezier(.4,0,.2,1);
  user-select: none;
}
 
.fs2-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #f0eee8;
  margin: 0 0 18px;
}
 
.fs2-desc {
  font-size: 1rem;
  color: rgba(240,238,232,0.55);
  line-height: 1.7;
  font-weight: 300;
  max-width: 380px;
  margin: 0 0 24px;
}
 
.fs2-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.fs2-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(200,169,126,0.7);
  font-weight: 500;
}
 
.fs2-bullets li::before {
  content: '';
  width: 18px; height: 1px;
  background: #c8a97e;
  flex-shrink: 0;
}
 
/* Анимация смены */
.fs2-text-slot.fs2-out .fs2-step-num,
.fs2-text-slot.fs2-out .fs2-heading,
.fs2-text-slot.fs2-out .fs2-desc,
.fs2-text-slot.fs2-out .fs2-bullets {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity .25s ease, transform .25s ease;
}
 
.fs2-text-slot.fs2-in .fs2-step-num,
.fs2-text-slot.fs2-in .fs2-heading,
.fs2-text-slot.fs2-in .fs2-desc,
.fs2-text-slot.fs2-in .fs2-bullets {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .4s ease, transform .4s ease;
}
 
.fs2-text-slot.fs2-in .fs2-heading  { transition-delay: .05s; }
.fs2-text-slot.fs2-in .fs2-desc     { transition-delay: .1s; }
.fs2-text-slot.fs2-in .fs2-bullets  { transition-delay: .15s; }
 
/* Dot nav */
.fs2-dots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
}
 
.fs2-dot-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
 
.fs2-dot-pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(200,169,126,0.2);
  flex-shrink: 0;
  transition: all .3s;
}
 
.fs2-dot-btn.active .fs2-dot-pip {
  background: #d4608a;
  box-shadow: 0 0 8px rgba(212,96,138,.5);
  transform: scale(1.4);
}
 
.fs2-dot-lbl {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(200,169,126,.3);
  transition: color .3s;
  white-space: nowrap;
}
 
.fs2-dot-btn.active .fs2-dot-lbl { color: #f0eee8; }
.fs2-dot-btn:hover .fs2-dot-lbl  { color: rgba(240,238,232,.6); }
 
/* ── RIGHT PANEL ────────────────────────────────────────────── */
.fs2-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px 48px 52px;
  background: #0d0d18;
  gap: 16px;
  position: relative;
}
 
/* Фоновый паттерн */
.fs2-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,126,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,126,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
 
.fs2-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 40%, #0d0d18 100%);
  pointer-events: none;
}
 
/* Рамка браузера */
.fs2-frame {
  position: relative;
  width: 100%;
  background: #13131f;
  border-radius: 14px;
  border: 1px solid rgba(200,169,126,0.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 32px 80px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.4);
  overflow: hidden;
  z-index: 1;
}
 
/* Браузер-бар */
.fs2-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #0e0e1a;
  border-bottom: 1px solid rgba(200,169,126,0.1);
  flex-shrink: 0;
}
 
.fs2-browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  opacity: 0.85;
  flex-shrink: 0;
}
 
.fs2-browser-url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(200,169,126,0.35);
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 3px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,169,126,0.08);
  border-radius: 5px;
  margin: 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
/* Гифки */
.fs2-gif-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #0a0a14;
  overflow: hidden;
}
 
.fs2-gif-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
}
 
.fs2-gif-slide.active { opacity: 1; }
 
.fs2-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
 
/* Лоадер */
.fs2-loader {
  position: absolute;
  inset: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
 
.fs2-loader.visible { opacity: 1; }
 
.fs2-loader-ring {
  width: 32px; height: 32px;
  border: 2px solid rgba(200,169,126,0.12);
  border-top-color: #c8a97e;
  border-radius: 50%;
  animation: fs2Spin .7s linear infinite;
}
 
@keyframes fs2Spin { to { transform: rotate(360deg); } }
 
/* Счётчик */
.fs2-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  color: rgba(200,169,126,0.3);
  z-index: 1;
}
 
#fs2CountCur {
  color: #c8a97e;
  transition: opacity .3s;
}
 
.fs2-counter-sep { opacity: .4; }
 
/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .fs2-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
    min-height: 100svh;
  }
 
  .fs2-left {
    padding: 40px 24px 20px;
    justify-content: flex-start;
  }
 
  .fs2-left::after { display: none; }
 
  .fs2-eyebrow { margin-bottom: 12px; }
  .fs2-progress { margin-bottom: 24px; }
 
  .fs2-text-slot {
    min-height: auto;
    flex: none;
  }
 
  .fs2-step-num { font-size: 3.2rem; margin-bottom: -6px; }
 
  .fs2-heading { font-size: clamp(1.7rem, 6vw, 2.2rem); margin-bottom: 12px; }
  .fs2-desc    { font-size: 0.92rem; margin-bottom: 16px; }
 
  /* Dots горизонтально */
  .fs2-dots {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }
 
  .fs2-dot-lbl { display: none; }
 
  .fs2-dot-pip {
    width: 8px; height: 8px;
  }
 
  .fs2-dot-btn.active .fs2-dot-pip {
    transform: scale(1.2);
  }
 
  .fs2-right {
    padding: 16px 20px 32px;
    background: #0a0a0f;
  }
 
  .fs2-right::before { display: none; }
  .fs2-right::after  { display: none; }
 
  .fs2-frame {
    border-radius: 10px;
    max-width: 100%;
  }
 
  .fs2-gif-wrap { aspect-ratio: 16/9; }
}
 
@media (max-width: 480px) {
  .fs2-left { padding: 32px 16px 16px; }
  .fs2-right { padding: 12px 16px 28px; }
  .fs2-bullets { display: none; }
}
 
/* ── ENTRANCE ANIMATION ──────────────────────────────────────── */
.fs2-sticky {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
 
.fs2-root.fs2-visible .fs2-sticky {
  opacity: 1;
  transform: none;
}

.fs2-gif-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .3s ease;
    background-color: rgba(18, 18, 18, .6);
    backdrop-filter: blur(10px);
}

.fs2-gif-wrap:hover .fs2-gif-hover {
    opacity: 1;
    transition: .3s ease;
}

.fs2-slide-demo.active + .fs2-gif-hover {
    opacity: 1;
    transition: .3s ease;
}


.demo-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  animation: demoBarIn 0.6s 1.5s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes demoBarIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.demo-bar.demo-bar-hidden {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
  transition: all 0.3s ease;
}

.demo-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px 12px 20px;
  background: rgba(19, 19, 31, 0.92);
  border: 1px solid rgba(200,169,126,0.2);
  border-radius: 100px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  white-space: nowrap;
}

.demo-bar-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(240,238,232,0.65);
  font-weight: 400;
}

.demo-bar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #28c840;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(40,200,64,0.6);
  animation: demoBarPulse 2s infinite;
}

@keyframes demoBarPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}

.demo-bar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: linear-gradient(135deg, #d4608a, #b94a7a);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(212,96,138,0.35);
}

.demo-bar-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(212,96,138,0.5);
}

.demo-bar-close {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: none;
  color: rgba(200,169,126,0.3);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
  flex-shrink: 0;
}

.demo-bar-close:hover {
  color: rgba(200,169,126,0.8);
  background: rgba(200,169,126,0.08);
}

/* Скрывать когда попап открыт */
.cp-open ~ .demo-bar { opacity: 0; pointer-events: none; }

@media (max-width: 600px) {
    
    .demo-bar-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }
  .demo-bar { bottom: 16px; left: 16px; right: 16px; transform: none; }
  .demo-bar.demo-bar-hidden { transform: translateY(16px); }
  @keyframes demoBarIn {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
  }
  .demo-bar-inner { border-radius: 16px; gap: 12px; flex-direction: column; }
  .demo-bar-text span:not(.demo-bar-dot) { display: none; }
}