/* ===================================================================
 * RENEGADE ASSISTANT — chat widget (bottom-right, persistent)
 * ------------------------------------------------------------------
 * Matches the site palette:
 *   --black:        #0A0A0A (page background)
 *   --black-light:  #111111
 *   --black-card:   #141414
 *   --black-hover:  #1A1A1A
 *   --orange:       #FF6A00
 *   --orange-dark:  #E55D00
 *   --orange-light: #FF8C33
 *   --red:          #CC1100
 *   --red-light:    #E63322
 *   --white:        #F5F0EB (warm cream)
 *   --white-dim:    #B8B2AA
 *   --white-muted:  #7A756F
 *   --gray:         #2A2A2A
 *   --gray-light:   #3A3A3A
 * =================================================================== */

:root {
    --ra-bg:            #0c0c0f;
    --ra-bg-card:       #141418;
    --ra-bg-elev:       #1a1a20;
    --ra-bg-muted:      #1f1f26;
    --ra-border:        rgba(245, 240, 235, .08);
    --ra-border-strong: rgba(245, 240, 235, .14);
    --ra-text:          #F5F0EB;
    --ra-text-dim:      #B8B2AA;
    --ra-text-muted:    #7A756F;
    --ra-accent:        #FF6A00;
    --ra-accent-dark:   #E55D00;
    --ra-accent-light:  #FF8C33;
    --ra-red:           #CC1100;
    --ra-gradient:      linear-gradient(135deg, #FF6A00 0%, #CC1100 100%);
    --ra-gradient-soft: linear-gradient(135deg, rgba(255,106,0,.18) 0%, rgba(204,17,0,.12) 100%);
    --ra-glow:          0 10px 28px rgba(255, 106, 0, .35), 0 2px 8px rgba(0, 0, 0, .4);
    --ra-glow-strong:   0 14px 36px rgba(255, 106, 0, .45), 0 4px 12px rgba(0, 0, 0, .5);
    --ra-shadow-panel:  0 24px 70px rgba(0, 0, 0, .55), 0 6px 20px rgba(0, 0, 0, .35);
}

/* --------------------------------------------------------------
 * Launcher (floating button, bottom-right)
 * -------------------------------------------------------------- */

.ra-launcher {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 9998;
    background: var(--ra-gradient);
    color: var(--ra-text);
    box-shadow: var(--ra-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, box-shadow .25s ease;
    -webkit-tap-highlight-color: transparent;
}

.ra-launcher:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: var(--ra-glow-strong);
}

.ra-launcher:focus-visible {
    outline: 3px solid rgba(255, 140, 51, .7);
    outline-offset: 3px;
}

.ra-launcher-icon {
    display: block;
    transition: transform .3s ease, opacity .2s ease;
}

.ra-launcher-icon.is-hidden {
    transform: scale(.5) rotate(-30deg);
    opacity: 0;
    position: absolute;
}

.ra-launcher-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--ra-text);
    color: var(--ra-red);
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .4);
    opacity: 0;
    transform: scale(.5);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.ra-launcher-badge.is-visible {
    opacity: 1;
    transform: scale(1);
}

.ra-launcher-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 106, 0, .55);
    animation: raPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes raPulse {
    0%   { transform: scale(1);   opacity: .8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.ra-launcher.is-open .ra-launcher-pulse { display: none; }

/* --------------------------------------------------------------
 * Greeting teaser (pops up before user clicks the launcher)
 * -------------------------------------------------------------- */

.ra-teaser {
    position: fixed;
    right: 96px;
    bottom: 32px;
    max-width: 270px;
    padding: 14px 36px 14px 16px;
    background: var(--ra-bg-card);
    color: var(--ra-text);
    border: 1px solid var(--ra-border);
    border-radius: 14px 14px 4px 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .45), 0 2px 8px rgba(0, 0, 0, .3);
    font-size: 13.5px;
    line-height: 1.45;
    z-index: 9997;
    opacity: 0;
    transform: translateY(8px) scale(.95);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
}

.ra-teaser.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ra-teaser-close {
    position: absolute;
    top: 4px;
    right: 6px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--ra-text-muted);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background .15s ease, color .15s ease;
}

.ra-teaser-close:hover { background: var(--ra-bg-elev); color: var(--ra-text); }

.ra-teaser-title {
    font-weight: 700;
    font-size: 11px;
    color: var(--ra-accent-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
    font-family: 'Oswald', 'Barlow Condensed', -apple-system, sans-serif;
}

.ra-teaser-body { margin: 0; color: var(--ra-text-dim); }

/* --------------------------------------------------------------
 * Panel (the chat window)
 * -------------------------------------------------------------- */

.ra-panel {
    position: fixed;
    right: 22px;
    bottom: 96px;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 580px;
    max-height: calc(100vh - 120px);
    background: var(--ra-bg);
    border: 1px solid var(--ra-border);
    border-radius: 18px;
    box-shadow: var(--ra-shadow-panel);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ra-text);
    opacity: 0;
    transform: translateY(16px) scale(.97);
    transform-origin: bottom right;
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
}

.ra-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* --------------------------------------------------------------
 * Panel header (dark with orange-red gradient accent line)
 * -------------------------------------------------------------- */

.ra-header {
    padding: 18px 20px 16px;
    background:
        linear-gradient(180deg, rgba(255, 106, 0, .09) 0%, transparent 100%),
        var(--ra-bg-card);
    color: var(--ra-text);
    position: relative;
    flex-shrink: 0;
    border-bottom: 1px solid var(--ra-border);
}

.ra-header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--ra-gradient);
    opacity: .9;
}

.ra-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ra-header-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ra-text);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(255, 106, 0, .25);
}

.ra-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.ra-header-titles { flex: 1; min-width: 0; }

.ra-header-name {
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: .3px;
    margin: 0;
    line-height: 1.2;
    color: var(--ra-text);
    font-family: 'Oswald', 'Barlow Condensed', -apple-system, sans-serif;
    text-transform: uppercase;
}

.ra-header-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--ra-text-dim);
    margin-top: 3px;
}

.ra-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .22);
    animation: raPulse2 2s ease-in-out infinite;
}

@keyframes raPulse2 {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, .22); }
    50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, .06); }
}

.ra-header-actions {
    display: flex;
    gap: 4px;
}

.ra-header-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(245, 240, 235, .06);
    border: 1px solid var(--ra-border);
    color: var(--ra-text-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.ra-header-btn:hover {
    background: rgba(255, 106, 0, .15);
    color: var(--ra-text);
    border-color: rgba(255, 106, 0, .4);
}

/* --------------------------------------------------------------
 * Messages area (dark)
 * -------------------------------------------------------------- */

.ra-messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px 16px 12px;
    background: var(--ra-bg);
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
}

.ra-messages::-webkit-scrollbar { width: 6px; }
.ra-messages::-webkit-scrollbar-track { background: transparent; }
.ra-messages::-webkit-scrollbar-thumb {
    background: rgba(245, 240, 235, .15);
    border-radius: 3px;
}

.ra-msg {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.48;
    word-wrap: break-word;
    animation: raMsgIn .25s ease-out;
}

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

.ra-msg-bot {
    align-self: flex-start;
    background: var(--ra-bg-card);
    color: var(--ra-text);
    border: 1px solid var(--ra-border);
    border-bottom-left-radius: 4px;
}

.ra-msg-bot strong {
    color: var(--ra-accent-light);
    font-weight: 600;
}

.ra-msg-bot a {
    color: var(--ra-accent-light);
    text-decoration: underline;
    text-decoration-color: rgba(255, 140, 51, .4);
    text-underline-offset: 2px;
    transition: color .15s ease, text-decoration-color .15s ease;
}

.ra-msg-bot a:hover {
    color: var(--ra-text);
    text-decoration-color: var(--ra-text);
}

.ra-msg-user {
    align-self: flex-end;
    background: var(--ra-gradient);
    color: var(--ra-text);
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(255, 106, 0, .2);
}

.ra-msg-system {
    align-self: center;
    font-size: 11.5px;
    color: var(--ra-text-muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 4px 10px;
    background: transparent;
}

/* Quick-reply buttons */
.ra-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 2px 4px 6px;
    animation: raMsgIn .25s ease-out;
}

.ra-choice {
    padding: 9px 14px;
    background: var(--ra-bg-card);
    border: 1.5px solid var(--ra-border-strong);
    border-radius: 20px;
    color: var(--ra-text);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .18s ease;
    font-family: inherit;
    text-align: left;
}

.ra-choice:hover {
    background: var(--ra-gradient);
    color: var(--ra-text);
    border-color: var(--ra-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 106, 0, .3);
}

.ra-choice:focus-visible {
    outline: 2px solid var(--ra-accent);
    outline-offset: 2px;
}

.ra-choice:disabled {
    opacity: .5;
    cursor: not-allowed;
}

/* Typing indicator */
.ra-typing {
    align-self: flex-start;
    background: var(--ra-bg-card);
    border: 1px solid var(--ra-border);
    padding: 12px 16px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    display: inline-flex;
    gap: 4px;
}

.ra-typing span {
    width: 7px;
    height: 7px;
    background: var(--ra-accent);
    border-radius: 50%;
    opacity: .4;
    animation: raTyping 1.2s ease-in-out infinite;
}

.ra-typing span:nth-child(2) { animation-delay: .15s; }
.ra-typing span:nth-child(3) { animation-delay: .3s; }

@keyframes raTyping {
    0%, 60%, 100% { opacity: .4; transform: translateY(0); }
    30%           { opacity: 1;  transform: translateY(-3px); }
}

/* --------------------------------------------------------------
 * Input bar (dark)
 * -------------------------------------------------------------- */

.ra-input {
    padding: 12px 12px 12px;
    background: var(--ra-bg-card);
    border-top: 1px solid var(--ra-border);
    flex-shrink: 0;
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.ra-input-field {
    flex: 1;
    resize: none;
    border: 1.5px solid var(--ra-border-strong);
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.4;
    font-family: inherit;
    color: var(--ra-text);
    background: var(--ra-bg-muted);
    transition: border-color .15s ease, background .15s ease;
    max-height: 96px;
    min-height: 40px;
    outline: none;
}

.ra-input-field::placeholder { color: var(--ra-text-muted); }

.ra-input-field:focus {
    border-color: var(--ra-accent);
    background: var(--ra-bg-elev);
}

.ra-input-field:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.ra-input-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--ra-gradient);
    color: var(--ra-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
    box-shadow: 0 4px 12px rgba(255, 106, 0, .25);
}

.ra-input-send:hover:not(:disabled) {
    transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(255, 106, 0, .4);
}

.ra-input-send:disabled {
    opacity: .3;
    cursor: not-allowed;
    box-shadow: none;
}

/* Footer disclaimer */
.ra-footer {
    font-size: 10.5px;
    color: var(--ra-text-muted);
    text-align: center;
    padding: 8px 12px 12px;
    background: var(--ra-bg-card);
    letter-spacing: .3px;
}

.ra-footer a {
    color: var(--ra-accent-light);
    text-decoration: none;
    transition: color .15s ease;
}
.ra-footer a:hover { color: var(--ra-text); text-decoration: underline; }

/* --------------------------------------------------------------
 * Booking calendar (dark)
 * -------------------------------------------------------------- */

.ra-booking {
    background: var(--ra-bg-card);
    border: 1px solid var(--ra-border);
    border-radius: 12px;
    padding: 12px;
    align-self: flex-start;
    max-width: 100%;
    width: 100%;
    animation: raMsgIn .3s ease-out;
}

.ra-booking-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--ra-accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
}

.ra-booking-dates {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
    gap: 6px;
    margin-bottom: 12px;
}

.ra-date-btn {
    background: var(--ra-bg-elev);
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 8px 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: all .15s ease;
    font-family: inherit;
    color: var(--ra-text);
}

.ra-date-btn:hover:not(:disabled) {
    background: var(--ra-bg-muted);
    border-color: rgba(255, 106, 0, .4);
}

.ra-date-btn.is-selected {
    background: var(--ra-gradient);
    color: var(--ra-text);
    border-color: var(--ra-accent);
    box-shadow: 0 4px 12px rgba(255, 106, 0, .3);
}

.ra-date-btn:disabled {
    opacity: .3;
    cursor: not-allowed;
}

.ra-date-weekday {
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    opacity: .7;
}

.ra-date-day {
    font-size: 17px;
    font-weight: 700;
}

.ra-date-month {
    font-size: 10px;
    opacity: .75;
    text-transform: uppercase;
}

.ra-booking-times {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 4px;
}

.ra-time-btn {
    background: var(--ra-bg-elev);
    border: 1.5px solid transparent;
    border-radius: 8px;
    padding: 7px 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--ra-text);
    transition: all .15s ease;
    font-family: inherit;
}

.ra-time-btn:hover:not(:disabled) {
    background: var(--ra-bg-muted);
    border-color: rgba(255, 106, 0, .4);
}

.ra-time-btn.is-selected {
    background: var(--ra-gradient);
    color: var(--ra-text);
    border-color: var(--ra-accent);
    box-shadow: 0 4px 12px rgba(255, 106, 0, .3);
}

.ra-booking-tz {
    font-size: 11px;
    color: var(--ra-text-muted);
    margin-top: 8px;
    text-align: center;
}

/* --------------------------------------------------------------
 * Summary card (dark)
 * -------------------------------------------------------------- */

.ra-summary {
    background: var(--ra-bg-card);
    border: 1px solid var(--ra-border);
    border-radius: 12px;
    padding: 12px 14px;
    align-self: flex-start;
    width: 100%;
    animation: raMsgIn .3s ease-out;
    font-size: 13px;
    color: var(--ra-text);
}

.ra-summary-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--ra-accent-light);
    margin: 0 0 8px;
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
}

.ra-summary-row {
    display: flex;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid var(--ra-border);
}

.ra-summary-row:last-child { border-bottom: none; }

.ra-summary-key {
    font-weight: 600;
    color: var(--ra-text-dim);
    min-width: 80px;
    flex-shrink: 0;
    font-size: 12px;
}

.ra-summary-val {
    color: var(--ra-text);
    word-break: break-word;
}

/* --------------------------------------------------------------
 * Error / fallback card (on send failure)
 * -------------------------------------------------------------- */

.ra-error-card {
    background: var(--ra-bg-card);
    border: 1px solid rgba(204, 17, 0, .35);
    border-radius: 12px;
    padding: 14px;
    align-self: flex-start;
    max-width: 100%;
    animation: raMsgIn .3s ease-out;
}

.ra-error-title {
    font-size: 12px;
    font-weight: 700;
    color: #ff6a6a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px;
    font-family: 'Oswald', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ra-error-body {
    font-size: 13px;
    color: var(--ra-text);
    margin: 0 0 10px;
    line-height: 1.5;
}

.ra-error-body strong { color: var(--ra-accent-light); }

.ra-mailto-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--ra-gradient);
    color: var(--ra-text);
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 4px 12px rgba(255, 106, 0, .25);
    font-family: inherit;
}

.ra-mailto-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 106, 0, .4);
    color: var(--ra-text);
}

.ra-error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.ra-retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--ra-bg-elev);
    color: var(--ra-text);
    border: 1px solid var(--ra-border);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
    font-family: inherit;
}

.ra-retry-btn:hover {
    background: var(--ra-bg-muted);
    border-color: rgba(255, 106, 0, .35);
}

/* --------------------------------------------------------------
 * Responsive
 * -------------------------------------------------------------- */

@media (max-width: 480px) {
    .ra-launcher { right: 16px; bottom: 16px; width: 56px; height: 56px; }
    .ra-panel {
        right: 8px;
        left: 8px;
        bottom: 82px;
        width: auto;
        height: calc(100vh - 110px);
        max-height: calc(100vh - 110px);
        border-radius: 16px;
    }
    .ra-teaser { right: 82px; bottom: 26px; max-width: calc(100vw - 112px); }
}

/* Hide the teaser when the panel is open */
.ra-panel.is-open ~ .ra-teaser,
body.ra-panel-open .ra-teaser {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(.95);
}

@media (prefers-reduced-motion: reduce) {
    .ra-launcher, .ra-panel, .ra-teaser, .ra-msg, .ra-choices,
    .ra-booking, .ra-summary, .ra-status-dot, .ra-launcher-pulse {
        animation: none !important;
        transition: none !important;
    }
}

/* --------------------------------------------------------------
 * Contact-section CTAs (inline promo inside #contact)
 * -------------------------------------------------------------- */

.contact-assistant-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ra-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    font-family: inherit;
}

.ra-cta-primary {
    background: var(--ra-gradient);
    color: var(--ra-text);
    box-shadow: 0 8px 24px rgba(255, 106, 0, .32);
}

.ra-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 106, 0, .45);
}

.ra-cta-secondary {
    flex: 1;
    background: rgba(245, 240, 235, .04);
    border: 1.5px solid var(--ra-border-strong);
    color: var(--ra-text);
}

.ra-cta-secondary:hover {
    background: rgba(255, 106, 0, .12);
    border-color: rgba(255, 106, 0, .5);
    color: var(--ra-text);
    transform: translateY(-1px);
}

.ra-cta-row {
    display: flex;
    gap: 10px;
}

.ra-cta-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(245, 240, 235, .16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ra-cta-secondary .ra-cta-icon {
    background: rgba(255, 106, 0, .12);
    color: var(--ra-accent-light);
}

.ra-cta-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.ra-cta-title {
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: .2px;
}

.ra-cta-primary .ra-cta-title { font-size: 16px; }

.ra-cta-sub {
    font-size: 12.5px;
    opacity: .82;
    line-height: 1.35;
}

.ra-cta-primary .ra-cta-sub { opacity: .92; }

.ra-cta-secondary .ra-cta-sub { color: var(--ra-text-dim); opacity: 1; }

.ra-cta-sub strong {
    font-weight: 600;
    opacity: 1;
    color: var(--ra-text);
}

.ra-cta-or {
    margin: 8px 0 0;
    font-size: 12.5px;
    color: var(--ra-text-muted);
    text-align: center;
    letter-spacing: .2px;
}

@media (max-width: 640px) {
    .ra-cta-row { flex-direction: column; }
    .ra-cta { padding: 14px; }
}
