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

:root {
    --bg: #0A0A0A;
    --bg-card: #1A1A1A;
    --bg-dark: #111111;
    --gold: #D4AF37;
    --gold-dim: rgba(212,175,55,0.3);
    --gold-glow: rgba(212,175,55,0.15);
    --white: #FFFFFF;
    --text: #E0E0E0;
    --text-dim: #999999;
    --green: #22C55E;
    --red: #EF4444;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

html {
    scroll-behavior: smooth; font-size: 16px;
    overflow-x: hidden; width: 100%;
    scrollbar-width: none; -ms-overflow-style: none;
}
html::-webkit-scrollbar { width: 0; display: none; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none;
    transition: all 0.25s; text-align: center; line-height: 1.4;
}
.btn-primary { background: var(--gold); color: #000; font-weight: 700; }
.btn-primary:hover { background: #C9A030; color: #000; opacity: 1; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold-glow); color: var(--gold); opacity: 1; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.logo-accent { color: var(--gold); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--text); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--white); opacity: 1; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: linear-gradient(90deg, #1a3a1a 0%, #1a4a1a 50%, #1a3a1a 100%);
    border-bottom: 1px solid rgba(34,197,94,0.2);
    padding: 8px 0; margin-top: 54px;
}
.trust-bar-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; font-size: 0.85rem; color: #A8D8A8;
    overflow: hidden; white-space: nowrap;
}
.trust-sep { color: rgba(168,216,168,0.4); }

/* ===== HERO ===== */
.hero {
    padding: 100px 0 80px; text-align: center; position: relative;
    overflow: hidden; min-height: 70vh;
    display: flex; align-items: center; max-width: 100%;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-title {
    font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
    color: var(--white); line-height: 1.2; margin-bottom: 20px;
}
.hero-subtitle { font-size: 1.1rem; color: var(--text); max-width: 540px; margin: 0 auto 32px; }
.hero-cta { margin-bottom: 48px; }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-online { color: var(--green); }
.stat-label { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-bg-glow {
    position: absolute; top: 20%; left: 50%; width: 500px; height: 500px;
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    z-index: 1; pointer-events: none;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--bg-dark); }
.section-title {
    font-family: var(--font-display); font-size: 2rem; font-weight: 700;
    color: var(--white); text-align: center; margin-bottom: 12px;
}
.section-subtitle { text-align: center; color: var(--text-dim); max-width: 560px; margin: 0 auto 48px; font-size: 1.05rem; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--gold-dim);
    border-radius: var(--radius); padding: 32px 24px; text-align: center;
    transition: border-color 0.3s;
}
.feature-card:hover { border-color: var(--gold); }
.feature-icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-title { color: var(--white); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.feature-text { color: var(--text); font-size: 0.9rem; line-height: 1.5; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { text-align: center; padding: 24px; }
.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--gold); color: #000; font-size: 1.4rem; font-weight: 700; margin-bottom: 20px;
}
.step-title { color: var(--white); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.step-text { color: var(--text); font-size: 0.92rem; }

/* ===== SPECIALISTS ===== */
.specialists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.specialist-card {
    background: var(--bg-card); border: 1px solid var(--gold-dim);
    border-radius: var(--radius); overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.specialist-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.specialist-photo-wrap { position: relative; height: 260px; overflow: hidden; }
.specialist-photo { width: 100%; height: 100%; object-fit: cover; }
.specialist-status {
    position: absolute; top: 12px; right: 12px;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600; color: var(--white);
}
.specialist-status.online { background: rgba(34,197,94,0.9); }
.specialist-status.away { background: rgba(234,179,8,0.85); }
.specialist-info { padding: 20px; }
.specialist-name { color: var(--white); font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; }
.specialist-role { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 12px; }
.specialist-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.tag {
    background: var(--gold-glow); color: var(--gold);
    padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 500;
    border: 1px solid var(--gold-dim);
}
.specialist-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.specialist-rating { color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.specialist-consults { color: var(--text-dim); font-size: 0.85rem; }
.specialist-desc { color: var(--text); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.5; }
.specialist-online {
    position: absolute; top: 12px; right: 12px;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600; color: var(--white);
    background: rgba(34,197,94,0.9);
}
.specialist-tags span {
    background: var(--gold-glow); color: var(--gold);
    padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 500;
    border: 1px solid var(--gold-dim);
}
.specialist-stats { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.85rem; color: var(--text-dim); }
.btn-start-chat {
    display: block; width: 100%; text-align: center;
    padding: 14px 20px; min-height: 44px;
    background: var(--gold); color: #000; font-weight: 700; font-size: 0.95rem;
    border-radius: var(--radius-sm); transition: background 0.2s;
}
.btn-start-chat:hover { background: #C9A030; opacity: 1; }
.btn-profile { display:block; width:100%; text-align:center; padding:10px 20px; margin-top:8px; border:1px solid #4b3fa0; color:#a78bfa; font-size:0.9rem; border-radius:var(--radius-sm); text-decoration:none; transition:background .2s; }
.btn-profile:hover { background:#2d2060; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    background: var(--bg-card); border: 1px solid var(--gold-dim);
    border-radius: var(--radius); padding: 28px 24px;
}
.review-stars { font-size: 1rem; margin-bottom: 12px; }
.review-text { color: var(--text); font-size: 0.95rem; font-style: italic; line-height: 1.6; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; }
.review-name { color: var(--white); font-weight: 600; }
.review-city { color: var(--text-dim); }
.review-date { color: var(--text-dim); margin-left: auto; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; background: none; border: none;
    color: var(--white); font-size: 1rem; font-weight: 500;
    cursor: pointer; text-align: left; font-family: var(--font);
}
.faq-icon { color: var(--gold); font-size: 1.4rem; font-weight: 300; transition: transform 0.3s; min-width: 24px; text-align: center; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--text); font-size: 0.92rem; line-height: 1.6; }
.faq-answer a { color: var(--gold); }

/* ===== CTA SECTION ===== */
.section-cta {
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 50%, #1A1A1A 100%);
    border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim);
}
.cta-content { text-align: center; }

/* ===== FOOTER ===== */
.footer { padding: 48px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-desc { color: var(--text-dim); font-size: 0.88rem; margin-top: 12px; line-height: 1.5; }
.footer-heading { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-dim); font-size: 0.85rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact a { color: var(--text-dim); font-size: 0.85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; text-align: center; }
.footer-bottom p { color: var(--text-dim); font-size: 0.8rem; }

/* ===== CHAT PAGE ===== */
.chat-page { display: flex; flex-direction: column; height: 100vh; height: 100dvh; }
.chat-header {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky; top: 0; z-index: 100;
}
.chat-back { color: var(--white); font-size: 1.4rem; text-decoration: none; padding: 4px 8px; }
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-header-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-dim); }
.chat-header-name { color: var(--white); font-weight: 600; font-size: 0.95rem; display: block; }
.chat-header-status { color: var(--green); font-size: 0.75rem; display: block; }
.chat-header-actions { margin-left: auto; }
.chat-secure-badge { color: var(--green); font-size: 0.75rem; background: rgba(34,197,94,0.1); padding: 4px 10px; border-radius: 20px; }

.chat-messages {
    flex: 1; overflow-y: auto; padding: 16px;
    display: flex; flex-direction: column; gap: 12px;
    -webkit-overflow-scrolling: touch;
}
.chat-msg {
    max-width: 85%; padding: 12px 16px;
    border-radius: 16px; font-size: 0.92rem; line-height: 1.5;
    animation: msgIn 0.3s ease;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg.specialist {
    align-self: flex-start; background: var(--bg-card); color: var(--text);
    border-bottom-left-radius: 4px; border: 1px solid rgba(255,255,255,0.06);
}
.chat-msg.user {
    align-self: flex-end; background: var(--gold); color: #000;
    border-bottom-right-radius: 4px;
}
.chat-msg-time { display: block; font-size: 0.7rem; margin-top: 6px; opacity: 0.6; }

/* TYPING INDICATOR */
.typing-indicator { display: flex; align-items: center; gap: 8px; padding: 8px 16px; }
.typing-dots { display: flex; gap: 4px; }
.typing-dots span {
    width: 7px; height: 7px; border-radius: 50%; background: var(--text-dim);
    animation: typingDot 1.4s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,60%,100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.typing-text { color: var(--text-dim); font-size: 0.8rem; }

/* CHAT INPUT */
.chat-input-wrap { padding: 8px 16px 12px; background: var(--bg-card); border-top: 1px solid rgba(255,255,255,0.08); }
.chat-input-inner {
    display: flex; align-items: flex-end; gap: 8px;
    background: var(--bg); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px; padding: 8px 12px;
}
.chat-input {
    flex: 1; background: none; border: none; color: var(--white);
    font-size: 0.92rem; font-family: var(--font);
    resize: none; outline: none; max-height: 120px; line-height: 1.4; padding: 4px 0;
}
.chat-input::placeholder { color: var(--text-dim); }
.chat-send-btn {
    background: var(--gold); color: #000; border: none;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0; transition: background 0.2s;
}
.chat-send-btn:hover { background: #C9A030; }
.chat-free-counter { text-align: center; padding-top: 6px; font-size: 0.78rem; color: var(--text-dim); }

/* PAYWALL */
.paywall-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
    z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.paywall-card {
    background: var(--bg-card); border: 1px solid var(--gold-dim);
    border-radius: var(--radius); padding: 32px 24px;
    max-width: 560px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto;
}
.paywall-close {
    position: absolute; top: 12px; right: 16px;
    color: var(--text-dim); font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.paywall-close:hover { color: var(--white); }
.paywall-icon { text-align: center; font-size: 2.4rem; margin-bottom: 16px; }
.paywall-title { color: var(--white); font-size: 1.3rem; font-weight: 700; text-align: center; margin-bottom: 8px; }
.paywall-subtitle { color: var(--text); font-size: 0.92rem; text-align: center; margin-bottom: 20px; line-height: 1.5; }
.paywall-timer { text-align: center; margin-bottom: 24px; font-size: 0.9rem; color: var(--text-dim); }
.paywall-countdown { color: var(--red); font-weight: 700; font-size: 1.1rem; }
.paywall-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.plan-card, .plan {
    background: var(--bg); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm); padding: 20px 16px; text-align: center; position: relative;
}
.plan-popular { border-color: var(--gold); }
.btn-plan {
    display: block; width: 100%; padding: 12px 16px; min-height: 44px;
    background: var(--gold); color: #000; font-weight: 700; font-size: 0.9rem;
    border: none; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.2s;
}
.btn-plan:hover { background: #C9A030; }
.plan-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #000;
    font-size: 0.65rem; font-weight: 700; padding: 3px 10px;
    border-radius: 10px; white-space: nowrap;
}
.plan-name { color: var(--white); font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; }
.plan-price { color: var(--gold); font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.plan-desc { color: var(--text-dim); font-size: 0.78rem; margin-bottom: 16px; line-height: 1.4; }

/* ===== PAY PAGE ===== */
.pay-page { min-height: 100vh; display: flex; flex-direction: column; }
.pay-header { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pay-header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.pay-secure { color: var(--green); font-size: 0.85rem; }
.pay-main { flex: 1; padding: 40px 0; }
.pay-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: flex-start; }
.pay-title { color: var(--white); font-size: 1.6rem; font-weight: 700; margin-bottom: 24px; }
.pay-order-card {
    background: var(--bg-card); border: 1px solid var(--gold-dim);
    border-radius: var(--radius); padding: 24px;
}
.pay-order-title { color: var(--white); font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; }
.pay-order-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.9rem; }
.pay-order-row span:first-child { color: var(--text-dim); }
.pay-order-row span:last-child { color: var(--text); }
.pay-order-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 8px 0; }
.pay-order-total span:last-child { color: var(--gold); font-size: 1.2rem; font-weight: 700; }
.pay-guarantees { margin-top: 24px; }
.pay-guarantee-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--text-dim); font-size: 0.85rem; }
.pay-guarantee-icon { font-size: 1.1rem; }
.pay-methods-title { color: var(--white); font-size: 1.2rem; font-weight: 600; margin-bottom: 24px; }
.pay-stripe-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; padding: 16px; background: #635BFF; color: var(--white);
    border: none; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s;
}
.pay-stripe-btn:hover { background: #5851DB; }
.pay-alt-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.pay-alt-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm); color: var(--white); font-size: 0.9rem; font-weight: 500;
    cursor: pointer; transition: border-color 0.2s;
}
.pay-alt-btn:hover { border-color: var(--gold); }
.pay-alt-icon { font-size: 1.2rem; }
.pay-note { margin-top: 20px; font-size: 0.78rem; color: var(--text-dim); line-height: 1.5; }
.pay-badges { display: flex; gap: 16px; margin-top: 20px; justify-content: center; }
.pay-badge-item { color: var(--text-dim); font-size: 0.78rem; }
.pay-footer { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.pay-footer p { color: var(--text-dim); font-size: 0.8rem; }
.pay-footer a { color: var(--gold); }

/* ===== PRIVACY PAGE ===== */
.privacy-page { padding-top: 100px; }
.privacy-content { max-width: 720px; margin: 0 auto; }
.privacy-updated { color: var(--text-dim); font-size: 0.85rem; text-align: center; margin-bottom: 40px; }
.privacy-block { margin-bottom: 32px; }
.privacy-block h2 { color: var(--white); font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.privacy-block p { color: var(--text); font-size: 0.92rem; line-height: 1.6; }
.privacy-block ul { list-style: none; padding-left: 0; }
.privacy-block li { color: var(--text); font-size: 0.92rem; padding: 4px 0 4px 20px; position: relative; }
.privacy-block li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .pay-layout { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .nav-links {
        display: none; position: fixed; top: 54px; left: 0; right: 0;
        background: var(--bg-card); flex-direction: column; padding: 20px;
        border-bottom: 1px solid var(--gold-dim); z-index: 999;
    }
    .nav-links.active { display: flex; flex-direction: column; }
    .nav-toggle { display: block; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    .trust-bar-inner { font-size: 0.72rem; gap: 6px; flex-wrap: wrap; }
    .hero { padding: 80px 0 60px; min-height: auto; }
    .hero-title { font-size: 1.6rem; word-wrap: break-word; overflow-wrap: break-word; }
    .hero-subtitle { font-size: 0.88rem; }
    .hero-bg-glow { width: 200px; height: 200px; }
    .hero { overflow: hidden; max-width: 100%; }
    .trust-bar { overflow: hidden; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 1.4rem; }
    .stat-label { font-size: 0.7rem; }

    .section { padding: 60px 0; }
    .section { overflow: hidden; }
    .section-title { font-size: 1.5rem; word-wrap: break-word; overflow-wrap: break-word; }
    .section-subtitle { font-size: 0.92rem; margin-bottom: 32px; }

    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .feature-card { padding: 24px 16px; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .specialists-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .paywall-plans { grid-template-columns: 1fr; gap: 12px; }
    .paywall-card { padding: 24px 16px; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.4rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .trust-bar-inner { justify-content: center; }
    .chat-send-btn { width: 44px; height: 44px; }
    .chat-input-wrap { padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
    .btn { min-height: 44px; }
    .specialist-meta { flex-direction: column; align-items: flex-start; gap: 4px; font-size: 0.82rem; }
}
/* Social proof toast animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
