/*
 * Room33 Dashboard — R33Q Landing Page
 * Funnel: Hero → Proof → How → Objections → CTA → Escort → Support
 */

/* ── Base ── */
.r33q-page {
    color: #111;
    font-family: var(--r33-font-ui, Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif);
}

.r33q-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px 64px;
}

.r33q-page section {
    margin: 0 0 24px;
}

/* ── Buttons ── */
.r33q-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 16px;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.r33q-btn:hover {
    transform: translateY(-1px);
}

.r33q-btn--primary {
    background: linear-gradient(135deg, #d9b24a, #b4871e);
    color: #111 !important;
    box-shadow: 0 8px 20px rgba(180, 135, 30, 0.25);
}

.r33q-btn--primary:hover {
    box-shadow: 0 12px 28px rgba(180, 135, 30, 0.35);
    color: #111 !important;
}

.r33q-btn--secondary {
    background: #111;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.r33q-btn--secondary:hover {
    background: #222;
    color: #fff !important;
}

.r33q-btn--dark {
    background: #1a1a1a;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.r33q-btn--dark:hover {
    background: #333;
    color: #fff !important;
}

/* ── Shared type ── */
.r33q-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9f7c1f;
}

.r33q-microcopy {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

.r33q-microcopy span {
    margin: 0 6px;
    color: #c7a64a;
}

.r33q-microcopy--light {
    color: #aaa;
}

.r33q-list {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.r33q-list li {
    position: relative;
    margin: 0 0 10px;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    font-weight: 600;
}

.r33q-list li::before {
    content: "\2022";
    position: absolute;
    top: 0;
    left: 6px;
    color: #c49a2d;
    font-size: 18px;
    line-height: 1;
}

/* ════════════════════════════════════════════════════
   1. HERO
   ════════════════════════════════════════════════════ */
.r33q-hero {
    text-align: center;
    padding: 40px 20px 36px;
    background: #fff;
    border: 1px solid #ece7db;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.r33q-title {
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 800;
    color: #111;
}

.r33q-subtitle {
    margin: 0 0 22px;
    font-size: 18px;
    color: #555;
}

.r33q-cta-wrap {
    margin: 0 0 14px;
}

/* ════════════════════════════════════════════════════
   2. PROOF — Telegram chat demo
   ════════════════════════════════════════════════════ */
.r33q-proof {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.r33q-chat-card {
    max-width: 100%;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.20);
    border-radius: 20px;
}

.r33q-chat-card__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.r33q-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2aa65a;
    box-shadow: 0 0 0 4px rgba(42, 166, 90, 0.15);
}

.r33q-chat-bubble {
    max-width: 85%;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.r33q-chat-bubble--user {
    margin-left: auto;
    background: #d4af37;
    color: #111;
    font-weight: 600;
    border-bottom-right-radius: 4px;
}

.r33q-chat-bubble--reply {
    margin-right: auto;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom-left-radius: 4px;
}

/* ════════════════════════════════════════════════════
   3. HOW — 3 steps
   ════════════════════════════════════════════════════ */
.r33q-steps {
    padding: 28px 20px;
    background: #fff;
    border: 1px solid #ece7db;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.r33q-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.r33q-step {
    padding: 20px;
    background: #faf8f4;
    border: 1px solid #ece7db;
    border-radius: 16px;
}

.r33q-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #d4af37;
    font-size: 15px;
    font-weight: 800;
}

.r33q-step h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 800;
    color: #111;
}

.r33q-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* ════════════════════════════════════════════════════
   4. OBJECTIONS — Short punchy blocks
   ════════════════════════════════════════════════════ */
.r33q-objections {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.r33q-objections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.r33q-objection {
    padding: 22px 18px;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFEEF2 100%);
    border: 1px solid rgba(255, 180, 195, 0.25);
    border-radius: 16px;
}

.r33q-objection h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 800;
    color: #7A3A44;
}

.r33q-objection p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* ════════════════════════════════════════════════════
   5. CTA — Reinforcement
   ════════════════════════════════════════════════════ */
.r33q-cta-block {
    text-align: center;
    padding: 36px 20px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.20);
}

.r33q-highlight {
    margin: 0 0 20px;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
}

.r33q-cta-block .r33q-microcopy {
    margin-top: 14px;
}

/* ════════════════════════════════════════════════════
   VIDEO in live strip
   ════════════════════════════════════════════════════ */
.r33-live-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ════════════════════════════════════════════════════
   6+7. FOOTER GRID — Escort CTA + Support side by side
   ════════════════════════════════════════════════════ */
.r33q-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.r33q-footer-card {
    padding: 28px 24px;
    border-radius: 20px;
    text-align: center;
}

.r33q-footer-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.r33q-footer-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    color: #111;
}

.r33q-footer-card p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.r33q-footer-card--escort {
    background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
    border: 1px solid #eee0b6;
    box-shadow: 0 10px 28px rgba(180, 135, 30, 0.06);
}

.r33q-footer-card--support {
    background: #fff;
    border: 1px solid #ece7db;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ════════════════════════════════════════════════════
   LIVE STRIP — Available Now
   ════════════════════════════════════════════════════ */
.r33-live-strip {
    margin: 0 0 24px;
}

.r33-live-box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 22px 22px 24px;
    background:
        radial-gradient(circle at 85% 15%, rgba(212,175,55,0.10), transparent 35%),
        linear-gradient(145deg, rgba(14,14,16,0.98), rgba(28,18,10,0.96));
    border: 1px solid rgba(212,175,55,0.26);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.03);
}

.r33-live-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.r33-live-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #d4af37;
}

.r33-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #35c759;
    box-shadow: 0 0 10px rgba(53,199,89,0.45);
    flex: 0 0 auto;
}

.r33-live-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
}

.r33-live-main-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4af37, #b8901e);
    color: #111 !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 800;
    box-shadow:
        0 12px 26px rgba(0,0,0,0.28),
        0 0 16px rgba(212,175,55,0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.r33-live-main-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    color: #111 !important;
}

.r33-live-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.r33-live-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.18);
    text-decoration: none !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.16);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.r33-live-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212,175,55,0.34);
    box-shadow: 0 18px 30px rgba(0,0,0,0.24);
}

.r33-live-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #111;
}

.r33-live-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.r33-live-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8,8,8,0.86) 0%, rgba(8,8,8,0.15) 42%, rgba(8,8,8,0.02) 100%);
}

.r33-live-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    z-index: 2;
}

.r33-live-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(10,10,10,0.84);
    border: 1px solid rgba(212,175,55,0.42);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.r33-live-badge.is-live {
    background: rgba(14,26,17,0.86);
    border-color: rgba(53,199,89,0.45);
    color: #dff7e5;
}

.r33-live-info {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
}

.r33-live-name {
    margin: 0 0 5px;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f0c94f;
}

.r33-live-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.r33-live-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
    font-size: 12px;
    font-weight: 700;
}

.r33-live-actions {
    display: flex;
    gap: 10px;
}

.r33-live-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.r33-live-btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8901e);
    color: #111 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.22);
}

.r33-live-btn-secondary {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff !important;
}

.r33-live-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.r33-live-foot {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.r33-live-foot-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.18);
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    font-weight: 600;
}

.r33-live-foot-note strong {
    color: #d4af37;
    font-weight: 800;
}

/* ════════════════════════════════════════════════════
   TABLET
   ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .r33-live-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .r33-live-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .r33q-steps-grid,
    .r33q-objections-grid {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════════════
   MOBILE
   ════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .r33q-container {
        padding: 0 12px 40px;
    }

    .r33q-page section {
        margin-bottom: 16px;
    }

    .r33q-hero {
        padding: 28px 16px;
    }

    .r33q-title {
        font-size: 28px;
    }

    .r33q-subtitle {
        font-size: 16px;
    }

    .r33q-chat-bubble {
        max-width: 92%;
        font-size: 14px;
    }

    .r33q-highlight {
        font-size: 22px;
    }

    .r33q-btn {
        width: 100%;
    }

    .r33q-steps,
    .r33q-escort__card,
    .r33q-support__card,
    .r33q-cta-block {
        padding: 22px 16px;
    }

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

    .r33-live-box {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .r33-live-title {
        font-size: 28px;
    }

    .r33-live-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .r33-live-main-cta {
        width: 100%;
    }

    .r33-live-name {
        font-size: 22px;
    }
}
