/* ============================================
   ЛЕНДИНГ СОВМЕСТИМОСТЬ — Романтическая тема
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --lr-bg: #0d0a14;
    --lr-bg2: #150e1f;
    --lr-card: rgba(255,255,255,0.04);
    --lr-card-hover: rgba(255,255,255,0.08);
    --lr-border: rgba(255,255,255,0.08);
    --lr-text: #f0e8f4;
    --lr-text-dim: #9b8ba8;
    --lr-text-light: rgba(255,255,255,0.5);
    --lr-pink: #f472b6;
    --lr-rose: #fb7185;
    --lr-purple: #a78bfa;
    --lr-violet: #c084fc;
    --lr-gold: #fbbf24;
    --lr-green: #34d399;
    --lr-gradient: linear-gradient(135deg, #f472b6 0%, #a78bfa 50%, #c084fc 100%);
    --lr-gradient-warm: linear-gradient(135deg, #fb7185 0%, #f472b6 50%, #a78bfa 100%);
    --lr-gradient-soft: linear-gradient(135deg, rgba(244,114,182,0.12) 0%, rgba(167,139,250,0.08) 50%, rgba(192,132,252,0.05) 100%);
    --lr-radius: 20px;
    --lr-radius-sm: 12px;
    --lr-shadow: 0 8px 32px rgba(0,0,0,0.4);
    --lr-glow: 0 0 40px rgba(244,114,182,0.15);
}

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

.lr-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--lr-bg);
    color: var(--lr-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */
.lr-bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.lr-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.lr-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(244,114,182,0.3), transparent 70%);
    top: -100px; left: -100px;
    animation: lr-orbFloat1 12s ease-in-out infinite alternate;
}

.lr-orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(167,139,250,0.25), transparent 70%);
    top: 40%; right: -150px;
    animation: lr-orbFloat2 15s ease-in-out infinite alternate;
}

.lr-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(251,113,133,0.2), transparent 70%);
    bottom: 10%; left: 20%;
    animation: lr-orbFloat3 18s ease-in-out infinite alternate;
}

@keyframes lr-orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 80px) scale(1.2); }
}
@keyframes lr-orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -60px) scale(1.15); }
}
@keyframes lr-orbFloat3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -40px) scale(1.1); }
}

/* ============================================
   HERO
   ============================================ */
.lr-hero {
    position: relative;
    padding: 70px 20px 50px;
    text-align: center;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.lr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--lr-gradient-soft);
    border: 1px solid rgba(244,114,182,0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--lr-pink);
    margin-bottom: 24px;
    animation: lr-fadeInDown 0.8s ease-out;
    position: relative;
}

.lr-badge-pulse {
    width: 8px; height: 8px;
    background: var(--lr-pink);
    border-radius: 50%;
    animation: lr-pulse 2s ease-in-out infinite;
}

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

.lr-hero-title {
    font-size: clamp(28px, 7vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    animation: lr-fadeInUp 0.8s ease-out 0.1s both;
}

.lr-gradient-text {
    background: var(--lr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lr-hero-subtitle {
    font-size: clamp(15px, 3.5vw, 18px);
    color: var(--lr-text-dim);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6;
    animation: lr-fadeInUp 0.8s ease-out 0.2s both;
}

.lr-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--lr-gradient-warm);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: lr-fadeInUp 0.8s ease-out 0.3s both;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(244,114,182,0.35);
    font-family: inherit;
}

.lr-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(244,114,182,0.45);
}

.lr-hero-cta:active {
    transform: translateY(-1px);
}

.lr-hero-stats {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 36px;
    animation: lr-fadeInUp 0.8s ease-out 0.4s both;
}

.lr-stat { text-align: center; }

.lr-stat-num {
    font-size: 22px;
    font-weight: 700;
    background: var(--lr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lr-stat-label {
    font-size: 12px;
    color: var(--lr-text-dim);
    margin-top: 2px;
}

/* ============================================
   SECTIONS
   ============================================ */
.lr-section {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 640px;
    margin: 0 auto;
}

.lr-section-title {
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.lr-section-subtitle {
    font-size: 14px;
    color: var(--lr-text-dim);
    text-align: center;
    margin-bottom: 24px;
}

/* ============================================
   PAIN POINTS
   ============================================ */
.lr-pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 420px) {
    .lr-pain-grid { grid-template-columns: 1fr; }
}

.lr-pain-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: var(--lr-card);
    border: 1px solid var(--lr-border);
    border-radius: var(--lr-radius-sm);
    transition: all 0.3s;
}

.lr-pain-card:hover {
    background: var(--lr-card-hover);
    border-color: rgba(244,114,182,0.15);
    transform: translateY(-2px);
}

.lr-pain-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.lr-pain-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--lr-text-dim);
}

/* ============================================
   CHAT SECTION
   ============================================ */
.lr-chat-section {
    position: relative;
    z-index: 1;
    padding: 40px 20px 60px;
    max-width: 640px;
    margin: 0 auto;
}

.lr-chat-wrapper {
    background: linear-gradient(135deg, #1a1028 0%, #161230 50%, #0f0d1e 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(244,114,182,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(244,114,182,0.08);
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

/* Chat Header */
.lr-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lr-chat-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--lr-gradient-soft);
    border: 2px solid rgba(244,114,182,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.lr-chat-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.lr-chat-status {
    font-size: 12px;
    color: var(--lr-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lr-status-dot {
    width: 6px; height: 6px;
    background: var(--lr-green);
    border-radius: 50%;
    animation: lr-pulse 2s ease-in-out infinite;
}

/* Chat Messages */
.lr-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 120px;
    max-height: 450px;
    scroll-behavior: smooth;
}

.lr-chat-messages::-webkit-scrollbar { width: 4px; }
.lr-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(244,114,182,0.3);
    border-radius: 4px;
}

/* Message Bubbles */
.lr-msg {
    max-width: 88%;
    animation: lr-msgIn 0.4s ease-out;
}

@keyframes lr-msgIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.lr-msg.bot { align-self: flex-start; }
.lr-msg.user { align-self: flex-end; }

.lr-msg-bubble {
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.lr-msg.bot .lr-msg-bubble {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-bottom-left-radius: 6px;
}

.lr-msg.user .lr-msg-bubble {
    background: var(--lr-gradient-warm);
    color: #fff;
    border-bottom-right-radius: 6px;
}

.lr-msg-time {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
    padding: 0 6px;
}

.lr-msg.user .lr-msg-time { text-align: right; }

/* Typing indicator */
.lr-typing {
    align-self: flex-start;
    display: flex;
    gap: 5px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    border-bottom-left-radius: 6px;
    animation: lr-msgIn 0.3s ease-out;
}

.lr-typing span {
    width: 7px; height: 7px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: lr-typingBounce 1.4s ease-in-out infinite;
}

.lr-typing span:nth-child(2) { animation-delay: 0.2s; }
.lr-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes lr-typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Date Input Card */
.lr-date-card {
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    animation: lr-fadeInUp 0.4s ease-out;
}

.lr-date-card-inner {
    background: rgba(244,114,182,0.08);
    border: 1px solid rgba(244,114,182,0.2);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.lr-date-label {
    font-size: 13px;
    color: var(--lr-text-dim);
    text-align: center;
}

.lr-date-input {
    width: 100%;
    max-width: 260px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
    text-align: center;
}

.lr-date-input:focus {
    border-color: var(--lr-pink);
    box-shadow: 0 0 20px rgba(244,114,182,0.15);
}

.lr-date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.lr-date-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--lr-gradient-warm);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(244,114,182,0.3);
}

.lr-date-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(244,114,182,0.4);
}

.lr-date-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Chat Text Input */
.lr-chat-input-area {
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    animation: lr-fadeInUp 0.3s ease-out;
}

.lr-chat-input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lr-chat-input {
    flex: 1;
    padding: 13px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.lr-chat-input:focus {
    border-color: rgba(244,114,182,0.4);
    box-shadow: 0 0 20px rgba(244,114,182,0.1);
}

.lr-chat-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.lr-chat-send {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--lr-gradient-warm);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(244,114,182,0.3);
}

.lr-chat-send:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(244,114,182,0.4);
}

.lr-chat-send:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Quick Prompts */
.lr-quick-prompts {
    display: flex;
    gap: 6px;
    padding: 10px 16px 14px;
    overflow-x: auto;
    scrollbar-width: none;
    animation: lr-fadeInUp 0.4s ease-out;
}

.lr-quick-prompts::-webkit-scrollbar { display: none; }

.lr-quick-btn {
    flex: 0 0 auto;
    padding: 8px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    white-space: nowrap;
}

.lr-quick-btn:hover {
    background: rgba(244,114,182,0.15);
    border-color: rgba(244,114,182,0.35);
    color: #fff;
    transform: translateY(-1px);
}

/* ============================================
   PAYMENT CARDS
   ============================================ */
.lr-payment-cards {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    animation: lr-fadeInUp 0.5s ease-out;
}

.lr-upsell-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--lr-text-dim);
    margin-bottom: 16px;
    padding: 14px 16px;
    background: rgba(244,114,182,0.06);
    border: 1px solid rgba(244,114,182,0.15);
    border-radius: 16px;
    white-space: pre-wrap;
}

.lr-tariff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 420px) {
    .lr-tariff-grid { grid-template-columns: 1fr; }
}

.lr-tariff-card {
    padding: 20px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--lr-border);
    border-radius: var(--lr-radius);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.lr-tariff-card:hover {
    border-color: rgba(244,114,182,0.25);
    transform: translateY(-3px);
    box-shadow: var(--lr-glow);
}

.lr-tariff-popular {
    border-color: rgba(244,114,182,0.3) !important;
    background: linear-gradient(180deg, rgba(244,114,182,0.08) 0%, rgba(255,255,255,0.04) 100%) !important;
}

.lr-tariff-popular::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--lr-gradient);
    border-radius: 3px 3px 0 0;
}

.lr-tariff-badge {
    display: inline-block;
    padding: 3px 12px;
    background: var(--lr-gradient);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lr-tariff-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.lr-tariff-price {
    font-size: 28px;
    font-weight: 800;
    background: var(--lr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.lr-tariff-desc {
    font-size: 12px;
    color: var(--lr-text-dim);
    margin-bottom: 14px;
}

.lr-tariff-features {
    list-style: none;
    text-align: left;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lr-tariff-features li {
    font-size: 12px;
    color: var(--lr-text-dim);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.lr-tariff-features li::before {
    content: '✓';
    color: var(--lr-green);
    font-weight: 700;
    flex-shrink: 0;
}

.lr-tariff-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--lr-pink);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    background: transparent;
    color: var(--lr-pink);
}

.lr-tariff-btn:hover {
    background: rgba(244,114,182,0.1);
    transform: translateY(-1px);
}

.lr-tariff-btn-primary {
    background: var(--lr-gradient-warm) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(244,114,182,0.3);
}

.lr-tariff-btn-primary:hover {
    box-shadow: 0 6px 24px rgba(244,114,182,0.4);
}

/* ============================================
   REVIEWS
   ============================================ */
.lr-reviews-section {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 640px;
    margin: 0 auto;
}

.lr-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

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

.lr-review-card:hover {
    border-color: rgba(244,114,182,0.15);
}

.lr-review-stars {
    color: var(--lr-gold);
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.lr-review-card > p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--lr-text-dim);
    margin-bottom: 14px;
}

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

.lr-review-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--lr-gradient-soft);
    border: 1px solid rgba(244,114,182,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--lr-pink);
    flex-shrink: 0;
}

.lr-review-author strong {
    font-size: 13px;
    font-weight: 600;
}

.lr-review-author span {
    font-size: 11px;
    color: var(--lr-text-dim);
}

/* ============================================
   FOOTER
   ============================================ */
.lr-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px 20px 40px;
    border-top: 1px solid var(--lr-border);
    max-width: 640px;
    margin: 0 auto;
}

.lr-footer p {
    font-size: 12px;
    color: var(--lr-text-dim);
    margin-bottom: 10px;
}

.lr-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.lr-footer-links a {
    font-size: 12px;
    color: var(--lr-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.lr-footer-links a:hover {
    color: var(--lr-pink);
}

/* ============================================
   AUTH MODAL
   ============================================ */
.lr-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    animation: lr-fadeIn 0.3s ease-out;
}

.lr-modal {
    position: relative;
    background: linear-gradient(135deg, #1a1028 0%, #161230 100%);
    border-radius: 24px;
    padding: 32px 24px;
    max-width: 400px;
    width: 100%;
    border: 1px solid rgba(244,114,182,0.2);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(244,114,182,0.1);
    animation: lr-scaleIn 0.3s ease-out;
}

@keyframes lr-scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lr-modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lr-modal-close:hover { background: rgba(255,255,255,0.15); }

.lr-modal-icon {
    font-size: 44px;
    text-align: center;
    margin-bottom: 12px;
}

.lr-modal-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.lr-modal-desc {
    font-size: 13px;
    color: var(--lr-text-dim);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.lr-modal-field {
    margin-bottom: 16px;
}

.lr-modal-field label {
    display: block;
    font-size: 12px;
    color: var(--lr-text-dim);
    margin-bottom: 6px;
    font-weight: 500;
}

.lr-modal-field input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.lr-modal-field input:focus {
    border-color: var(--lr-pink);
    box-shadow: 0 0 20px rgba(244,114,182,0.15);
}

.lr-modal-bonus {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: rgba(52,211,153,0.08);
    border: 1px solid rgba(52,211,153,0.15);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
}

.lr-modal-bonus span { font-size: 20px; flex-shrink: 0; }
.lr-modal-bonus strong { color: var(--lr-green); }

.lr-modal-submit {
    width: 100%;
    padding: 16px;
    background: var(--lr-gradient-warm);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(244,114,182,0.3);
}

.lr-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244,114,182,0.4);
}

.lr-modal-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.lr-modal-error {
    color: var(--lr-rose);
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
    min-height: 20px;
}

.lr-modal-secure {
    text-align: center;
    font-size: 12px;
    color: var(--lr-text-dim);
    margin-top: 14px;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.lr-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes lr-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lr-fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes lr-fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* Second CTA under chat */
.lr-chat-cta-wrap {
    text-align: center;
    margin-top: 20px;
}

/* Bottom CTA after reviews */
.lr-bottom-cta {
    text-align: center;
    padding: 20px 20px 40px;
}

@media (max-width: 480px) {
    .lr-hero { padding: 50px 16px 36px; }
    .lr-hero-stats { gap: 24px; }
    .lr-chat-messages { max-height: 380px; }
    .lr-modal { padding: 24px 18px; }
}
