: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; }
}