/**
 * Revma Kostos - Providers Page Premium Styles
 * /paroxoi/ page premium upgrade
 * Version: 1.5.0
 */

/* ============================================
   PROVIDERS PAGE VARIABLES
============================================ */
.revma-providers-page {
    /* Premium card radius */
    --rp-radius-card: 22px;
    --rp-radius-input: 14px;

    /* Glassmorphism */
    --rp-glass-bg: rgba(255, 255, 255, 0.75);
    --rp-glass-bg-strong: rgba(255, 255, 255, 0.9);
    --rp-glass-border: rgba(255, 255, 255, 0.6);
    --rp-glass-blur: blur(12px);

    /* Shadows */
    --rp-shadow-card: 0 8px 24px rgba(15, 23, 42, 0.06);
    --rp-shadow-card-hover: 0 20px 50px rgba(15, 23, 42, 0.12);
    --rp-shadow-glow-blue: 0 8px 24px rgba(37, 99, 235, 0.35);
    --rp-shadow-glow-blue-hover: 0 12px 32px rgba(37, 99, 235, 0.45);
    --rp-shadow-glow-green: 0 8px 24px rgba(16, 185, 129, 0.35);

    /* Gradients */
    --rp-gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    --rp-gradient-primary: linear-gradient(135deg, #3b82f6, #1d4ed8);
    --rp-gradient-secondary: linear-gradient(135deg, #10b981, #059669);
    --rp-gradient-border: linear-gradient(135deg, #3b82f6, #10b981);

    /* Spacing */
    --rp-section-spacing: 100px;
}

/* ============================================
   HERO SECTION - PREMIUM DARK
============================================ */
.revma-providers-page .revma-providers-hero {
    background: var(--rp-gradient-hero);
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

/* Hero animated background particles */
.revma-providers-page .revma-providers-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    animation: rp-hero-particles 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes rp-hero-particles {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Hero noise texture */
.revma-providers-page .revma-providers-hero::after {
    content: '';
    position: absolute;
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.revma-providers-page .revma-providers-hero .revma-hero-content {
    position: relative;
    z-index: 1;
}

/* Glass badge in hero */
.revma-providers-page .revma-providers-hero .revma-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.revma-providers-page .revma-providers-hero .revma-badge svg {
    stroke: #10b981;
    width: 16px;
    height: 16px;
}

/* Hero title - white on dark */
.revma-providers-page .revma-providers-hero h1 {
    color: white;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.revma-providers-page .revma-providers-hero h1 .highlight {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.revma-providers-page .revma-providers-hero .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

/* Hero CTA buttons with glow */
.revma-providers-page .revma-providers-hero .revma-hero-cta .revma-btn-primary {
    background: var(--rp-gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--rp-shadow-glow-blue);
    transition: all 0.3s ease;
}

.revma-providers-page .revma-providers-hero .revma-hero-cta .revma-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--rp-shadow-glow-blue-hover);
}

/* Pulse animation for primary CTA */
.revma-providers-page .revma-providers-hero .revma-btn-pulse {
    animation: rp-pulse-glow 2s ease-in-out infinite;
}

@keyframes rp-pulse-glow {
    0%, 100% { box-shadow: var(--rp-shadow-glow-blue); }
    50% { box-shadow: 0 12px 40px rgba(37, 99, 235, 0.55); }
}

/* Secondary CTA - glass style */
.revma-providers-page .revma-providers-hero .revma-hero-cta .revma-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.revma-providers-page .revma-providers-hero .revma-hero-cta .revma-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   PROVIDERS GRID - PREMIUM CARDS
============================================ */
.revma-providers-page .revma-providers-grid-section {
    padding: var(--rp-section-spacing) 24px;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

/* Premium glassmorphism cards */
.revma-providers-page .revma-provider-card {
    background: var(--rp-glass-bg);
    backdrop-filter: var(--rp-glass-blur);
    -webkit-backdrop-filter: var(--rp-glass-blur);
    border: 1px solid var(--rp-glass-border);
    border-radius: var(--rp-radius-card);
    box-shadow: var(--rp-shadow-card);
    padding: 32px 24px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay on cards */
.revma-providers-page .revma-provider-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(59, 130, 246, 0.03) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.revma-providers-page .revma-provider-card-link:hover .revma-provider-card::before {
    opacity: 1;
}

/* Card hover - lift + glow */
.revma-providers-page .revma-provider-card-link:hover .revma-provider-card,
.revma-providers-page .revma-provider-card-link:focus .revma-provider-card {
    transform: translateY(-8px);
    box-shadow: var(--rp-shadow-card-hover), 0 0 40px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Card CTA button - gradient with glow */
.revma-providers-page .revma-provider-card-actions .revma-btn {
    background: var(--rp-gradient-primary);
    border-radius: var(--rp-radius-input);
    padding: 14px 24px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.revma-providers-page .revma-provider-card-link:hover .revma-provider-card-actions .revma-btn {
    box-shadow: var(--rp-shadow-glow-blue);
    transform: scale(1.03);
}

/* ============================================
   MID-CTA SECTION (Before How It Works)
============================================ */
.revma-mid-cta {
    padding: 48px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
}

.revma-mid-cta-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
}

.revma-mid-cta-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.revma-mid-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}

.revma-mid-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0 0 24px;
    line-height: 1.6;
}

.revma-mid-cta .revma-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white !important;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.revma-mid-cta .revma-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* ============================================
   HOW IT WORKS - PREMIUM GLASS CARDS
============================================ */
.revma-providers-page .revma-how-section {
    padding: var(--rp-section-spacing) 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.revma-providers-page .revma-how-step {
    background: var(--rp-glass-bg-strong);
    backdrop-filter: var(--rp-glass-blur);
    -webkit-backdrop-filter: var(--rp-glass-blur);
    border: 1px solid var(--rp-glass-border);
    border-radius: var(--rp-radius-card);
    padding: 40px 24px 32px;
    box-shadow: var(--rp-shadow-card);
    transition: all 0.35s ease;
}

.revma-providers-page .revma-how-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--rp-shadow-card-hover);
}

/* Step number - premium style */
.revma-providers-page .revma-how-step-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    background: var(--rp-gradient-primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Step icon larger */
.revma-providers-page .revma-how-step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    margin-top: 24px;
}

.revma-providers-page .revma-how-step h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
}

/* ============================================
   FAQ SECTION - PREMIUM STYLING
============================================ */
.revma-providers-page .revma-faq-section {
    padding: var(--rp-section-spacing) 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.revma-providers-page .revma-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ item - premium card */
.revma-providers-page details.revma-faq-item {
    background: var(--rp-glass-bg-strong);
    backdrop-filter: var(--rp-glass-blur);
    -webkit-backdrop-filter: var(--rp-glass-blur);
    border: 1px solid var(--rp-glass-border);
    border-radius: var(--rp-radius-card);
    margin-bottom: 16px;
    box-shadow: var(--rp-shadow-card);
    transition: all 0.35s ease;
    overflow: hidden;
}

.revma-providers-page details.revma-faq-item:hover {
    box-shadow: var(--rp-shadow-card-hover);
}

/* FAQ open state - gradient border */
.revma-providers-page details.revma-faq-item[open] {
    background: linear-gradient(white, white) padding-box,
                var(--rp-gradient-border) border-box;
    border: 2px solid transparent;
    border-left-width: 4px;
}

/* FAQ question with emoji */
.revma-providers-page .revma-faq-question {
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    color: var(--revma-text-dark, #1e293b);
    font-size: 1.05rem;
}

.revma-providers-page .revma-faq-question::-webkit-details-marker {
    display: none;
}

.revma-providers-page .revma-faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* FAQ emoji icon */
.revma-providers-page .revma-faq-emoji {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* FAQ chevron */
.revma-providers-page .revma-faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--revma-primary, #3b82f6);
    stroke-width: 2.5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.revma-providers-page details.revma-faq-item[open] .revma-faq-icon {
    transform: rotate(180deg);
}

/* FAQ answer */
.revma-providers-page .revma-faq-answer {
    padding: 0 28px 24px;
    color: var(--revma-text-medium, #64748b);
    font-size: 1rem;
    line-height: 1.7;
}

.revma-providers-page .revma-faq-answer p {
    margin: 0;
}

/* ============================================
   BOTTOM CTA SECTION - STRONGER CONTRAST
============================================ */
.revma-providers-page .revma-cta-section {
    padding: var(--rp-section-spacing) 24px;
    background: var(--rp-gradient-hero);
    position: relative;
    overflow: hidden;
}

/* Background particles */
.revma-providers-page .revma-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.revma-providers-page .revma-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* CTA badge */
.revma-providers-page .revma-cta-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.revma-providers-page .revma-cta-section h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    margin: 0 0 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.revma-providers-page .revma-cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin: 0 0 32px;
}

.revma-providers-page .revma-cta-section p strong {
    color: white;
}

/* CTA buttons */
.revma-providers-page .revma-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.revma-providers-page .revma-cta-buttons .revma-btn-primary,
.revma-providers-page .revma-cta-buttons .revma-btn-large {
    background: var(--rp-gradient-secondary);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    box-shadow: var(--rp-shadow-glow-green);
    transition: all 0.3s ease;
}

.revma-providers-page .revma-cta-buttons .revma-btn-primary:hover,
.revma-providers-page .revma-cta-buttons .revma-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(16, 185, 129, 0.5);
}

/* Secondary call button */
.revma-providers-page .revma-cta-buttons .revma-btn-call {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 18px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.revma-providers-page .revma-cta-buttons .revma-btn-call:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* Trust line under CTAs */
.revma-providers-page .revma-cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.revma-providers-page .revma-cta-trust span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
============================================ */
.revma-providers-page .rp-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.revma-providers-page .rp-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.revma-providers-page .rp-animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.revma-providers-page .rp-animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation for grid items */
.revma-providers-page .rp-stagger .rp-animate:nth-child(1) { transition-delay: 0s; }
.revma-providers-page .rp-stagger .rp-animate:nth-child(2) { transition-delay: 0.1s; }
.revma-providers-page .rp-stagger .rp-animate:nth-child(3) { transition-delay: 0.2s; }
.revma-providers-page .rp-stagger .rp-animate:nth-child(4) { transition-delay: 0.3s; }
.revma-providers-page .rp-stagger .rp-animate:nth-child(5) { transition-delay: 0.4s; }
.revma-providers-page .rp-stagger .rp-animate:nth-child(6) { transition-delay: 0.5s; }
.revma-providers-page .rp-stagger .rp-animate:nth-child(7) { transition-delay: 0.6s; }
.revma-providers-page .rp-stagger .rp-animate:nth-child(8) { transition-delay: 0.7s; }
.revma-providers-page .rp-stagger .rp-animate:nth-child(9) { transition-delay: 0.8s; }
.revma-providers-page .rp-stagger .rp-animate:nth-child(10) { transition-delay: 0.9s; }
.revma-providers-page .rp-stagger .rp-animate:nth-child(11) { transition-delay: 1.0s; }
.revma-providers-page .rp-stagger .rp-animate:nth-child(12) { transition-delay: 1.1s; }

/* Calculator highlight when scrolled into view */
.revma-providers-page .rp-calculator-highlight {
    animation: rp-calculator-glow 1.5s ease-out;
}

@keyframes rp-calculator-glow {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 40px 10px rgba(59, 130, 246, 0.3); }
    100% { box-shadow: var(--rp-shadow-card); }
}

/* ============================================
   REDUCED MOTION
============================================ */
@media (prefers-reduced-motion: reduce) {
    .revma-providers-page .revma-providers-hero::before {
        animation: none;
    }

    .revma-providers-page .revma-btn-pulse {
        animation: none;
    }

    .revma-providers-page .rp-animate,
    .revma-providers-page .rp-animate-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .revma-providers-page .rp-calculator-highlight {
        animation: none;
    }
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 768px) {
    .revma-providers-page {
        --rp-section-spacing: 70px;
    }

    .revma-providers-page .revma-providers-hero {
        padding: 50px 20px 70px;
    }

    .revma-providers-page .revma-providers-hero .revma-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .revma-providers-page .revma-providers-hero .revma-hero-cta .revma-btn-primary,
    .revma-providers-page .revma-providers-hero .revma-hero-cta .revma-btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 14px 28px;
    }

    .revma-mid-cta {
        padding: 50px 20px;
    }

    .revma-mid-cta h3 {
        font-size: 1.3rem;
    }

    .revma-providers-page .revma-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .revma-providers-page .revma-cta-buttons .revma-btn-primary,
    .revma-providers-page .revma-cta-buttons .revma-btn-large,
    .revma-providers-page .revma-cta-buttons .revma-btn-call {
        width: 100%;
        max-width: 320px;
    }

    .revma-providers-page .revma-cta-trust {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 480px) {
    .revma-providers-page {
        --rp-section-spacing: 50px;
        --rp-radius-card: 18px;
    }

    .revma-providers-page .revma-providers-hero .revma-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .revma-providers-page .revma-faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .revma-providers-page .revma-faq-answer {
        padding: 0 20px 20px;
    }

    .revma-providers-page .revma-how-step {
        padding: 32px 20px 24px;
    }
}

/* ============================================
   MICRO TRUST INDICATORS (v1.5.1)
============================================ */
.revma-providers-page .revma-provider-card-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.revma-providers-page .revma-provider-card-trust span {
    font-size: 0.7rem;
    color: var(--revma-text-medium, #64748b);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* ============================================
   MOBILE STICKY CTA BAR (v1.5.1)
============================================ */
.revma-mobile-sticky-cta {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .revma-mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9990;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;

        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);

        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));

        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .revma-mobile-sticky-cta.is-visible {
        transform: translateY(0);
    }

    .revma-mobile-sticky-cta.is-hidden {
        transform: translateY(100%);
    }

    .revma-mobile-sticky-text {
        flex: 1;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--revma-text-dark, #1e293b);
    }

    .revma-mobile-sticky-cta .revma-btn {
        flex-shrink: 0;
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 50px;
        background: var(--rp-gradient-primary);
        box-shadow: var(--rp-shadow-glow-blue);
    }

    /* Add bottom padding to footer to prevent overlap */
    .revma-providers-page .revma-footer {
        padding-bottom: 80px;
    }
}

/* Hide sticky bar when bottom CTA is visible */
@media (max-width: 768px) {
    .revma-mobile-sticky-cta.at-bottom-cta {
        transform: translateY(100%);
    }
}

/* ============================================
   CALCULATOR HIGHLIGHT (from /paroxoi referrer)
============================================ */
.rsk-highlight-from-paroxoi {
    animation: rsk-paroxoi-highlight 2s ease-out;
}

@keyframes rsk-paroxoi-highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
    }
    25% {
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 60px 10px rgba(59, 130, 246, 0.2);
    }
    100% {
        box-shadow: var(--revma-shadow-card-hover, 0 16px 40px rgba(15, 23, 42, 0.1));
    }
}
