/**
 * Revma Kostos - Frontpage Styles
 * Extends ui-system.css with page-specific animations and hero effects
 * Version: 1.3.0
 */

/* ============================================
   FRONTPAGE-SPECIFIC VARIABLES
   (Inherits from ui-system.css :root)
============================================ */

/* ============================================
   FRONTPAGE BASE (extends .revma-page from ui-system)
============================================ */
.revma-frontpage {
    overflow-x: hidden;
}

/* ============================================
   ANIMATIONS KEYFRAMES
============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* ============================================
   HERO SECTION - Clean & Readable
============================================ */
.revma-hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 24px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Subtle gradient orbs - reduced opacity for better text contrast */
.revma-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.2) 0%, transparent 40%);
    animation: rotate-slow 60s linear infinite;
    pointer-events: none;
}

/* Simplified particles - less distracting */
.revma-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 100px 100px, 80px 80px;
    pointer-events: none;
}

/* Ensure hero doesn't cut off on small heights */
@media (max-height: 700px) {
    .revma-hero {
        min-height: auto;
        padding: 40px 24px 60px;
    }
}

.revma-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

/* Animated badge */
.revma-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #60a5fa;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: slide-up 0.8s ease-out, pulse-glow 3s ease-in-out infinite;
}

.revma-badge svg {
    animation: float 2s ease-in-out infinite;
}

/* Main heading - Clean & High Contrast */
.revma-hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    animation: slide-up 0.8s ease-out 0.2s both;
    letter-spacing: -0.02em;
}

.revma-hero h1 .highlight {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}

/* Subtle underline for highlight */
.revma-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #fbbf24;
    border-radius: 2px;
    opacity: 0.6;
}

.revma-hero .subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: slide-up 0.8s ease-out 0.3s both;
}

.revma-hero .subtitle strong {
    color: #34d399;
    font-weight: 600;
}

/* CTA Buttons */
.revma-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: slide-up 0.8s ease-out 0.4s both;
}

.revma-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--revma-radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Focus state for buttons */
.revma-btn:focus {
    outline: none;
}

.revma-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.revma-btn-primary {
    background: linear-gradient(135deg, var(--revma-primary), var(--revma-primary-dark));
    color: white;
    box-shadow: var(--revma-shadow-cta-glow, 0 8px 24px rgba(37, 99, 235, 0.35));
}

.revma-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--revma-shadow-cta-glow-hover, 0 12px 32px rgba(37, 99, 235, 0.45));
}

.revma-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.revma-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.revma-btn-callback {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fbbf24;
    border: 2px solid #fbbf24;
    font-weight: 600;
    cursor: pointer;
}

.revma-btn-callback:hover {
    background: #fbbf24;
    color: #1a1a2e;
    transform: translateY(-2px);
}

/* Stats with animated counters */
.revma-hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    animation: slide-up 1s ease-out 0.8s both;
}

.revma-stat {
    text-align: center;
    position: relative;
}

.revma-stat::after {
    content: '';
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

.revma-stat:last-child::after {
    display: none;
}

.revma-stat-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.revma-stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll indicator */
.revma-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.revma-scroll-indicator svg {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}

/* ============================================
   CALCULATOR SECTION
============================================ */
.revma-calculator-section {
    padding: var(--revma-section-spacing-lg, 120px) 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.revma-calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, #0f172a, transparent);
    pointer-events: none;
}

.revma-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.revma-section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.revma-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #10b981);
    border-radius: 2px;
}

.revma-section-header p {
    color: #64748b;
    font-size: 1.2rem;
    margin-top: 24px;
}

/* Glassmorphism calculator wrapper */
.revma-calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--revma-glass-bg, rgba(255, 255, 255, 0.7));
    backdrop-filter: var(--revma-glass-blur, blur(12px));
    -webkit-backdrop-filter: var(--revma-glass-blur, blur(12px));
    border-radius: var(--revma-radius-card, 22px);
    padding: 56px;
    border: 1px solid var(--revma-glass-border, rgba(255, 255, 255, 0.5));
    box-shadow: var(--revma-shadow-card-hover, 0 16px 40px rgba(15, 23, 42, 0.1));
    position: relative;
    z-index: 1;
    transition: box-shadow var(--revma-transition, 0.3s ease);
}

.revma-calculator-wrapper:hover {
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

/* ============================================
   FEATURES SECTION - GLASSMORPHISM CARDS
============================================ */
.revma-features-section {
    padding: var(--revma-section-spacing-lg, 120px) 24px;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.revma-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
}

.revma-feature-card {
    background: var(--revma-glass-bg, rgba(255, 255, 255, 0.7));
    backdrop-filter: var(--revma-glass-blur, blur(12px));
    -webkit-backdrop-filter: var(--revma-glass-blur, blur(12px));
    padding: 48px 36px;
    border-radius: var(--revma-radius-card, 22px);
    border: 1px solid var(--revma-glass-border, rgba(255, 255, 255, 0.5));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--revma-shadow-card, 0 8px 24px rgba(15, 23, 42, 0.06));
}

/* Animated gradient border on hover */
.revma-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--revma-radius-card, 22px);
    padding: 2px;
    background: linear-gradient(135deg, var(--revma-primary, #2563eb), var(--revma-secondary, #10b981), #8b5cf6, var(--revma-primary, #2563eb));
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradient-shift 4s ease infinite;
}

.revma-feature-card:hover::before {
    opacity: 1;
}

.revma-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--revma-shadow-card-hover, 0 16px 40px rgba(15, 23, 42, 0.1)), 0 0 40px rgba(37, 99, 235, 0.1);
}

.revma-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe, #d1fae5);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 28px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.revma-feature-card:hover .revma-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.25);
}

.revma-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.revma-feature-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
}

/* Calculator help box */
.revma-calc-help {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #fbbf24;
    padding: 20px 24px;
    border-radius: 16px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.revma-help-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.revma-help-content strong {
    display: block;
    color: #92400e;
    margin-bottom: 4px;
}

.revma-help-content p {
    color: #a16207;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   QUICK INFO - AI SEO Blocks (Compact)
============================================ */
.revma-quick-info-section {
    padding: 32px 24px 24px;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
}

.revma-quick-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.revma-quick-info-item {
    background: white;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 3px solid #3b82f6;
}

.revma-quick-info-item h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.3;
}

.revma-quick-info-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.revma-quick-info-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.revma-quick-info-item a:hover {
    text-decoration: underline;
}

.revma-quick-info-update {
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 16px 0 0;
}

@media (max-width: 768px) {
    .revma-quick-info-section {
        padding: 24px 16px 20px;
    }

    .revma-quick-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .revma-quick-info-item {
        padding: 14px 16px;
    }

    .revma-quick-info-item h3 {
        font-size: 0.85rem;
    }

    .revma-quick-info-item p {
        font-size: 0.8rem;
    }
}

/* ============================================
   HOW IT WORKS - COMPACT HORIZONTAL TIMELINE
============================================ */
.revma-steps-section {
    padding: 60px 24px 50px;
    background: #ffffff;
    position: relative;
}

.revma-steps-section .revma-section-header {
    margin-bottom: 40px;
}

.revma-steps-section .revma-section-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.revma-steps-section .revma-section-header p {
    font-size: 1rem;
    margin-top: 12px;
}

.revma-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Connecting line - horizontal on desktop */
.revma-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, #dbeafe, #2563eb 50%, #dbeafe);
    border-radius: 2px;
    z-index: 0;
}

.revma-step {
    text-align: center;
    padding: 0 8px 16px;
    position: relative;
    z-index: 1;
}

/* Combined number + icon container */
.revma-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35), 0 0 0 4px white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.revma-step:hover .revma-step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.45), 0 0 0 4px white;
}

.revma-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.revma-step p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Icon - compact version */
.revma-step-icon {
    width: 52px;
    height: 52px;
    margin: 8px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.revma-step-icon::before {
    display: none;
}

.revma-step:hover .revma-step-icon {
    transform: translateY(-4px);
    background: #dbeafe;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.revma-step-icon svg {
    width: 26px;
    height: 26px;
    color: #2563eb;
    transition: all 0.3s ease;
}

.revma-step:hover .revma-step-icon svg {
    color: #1d4ed8;
}

/* Mobile: 2x2 grid - fits in one screen */
@media (max-width: 768px) {
    .revma-steps-section {
        padding: 40px 16px 32px;
    }

    .revma-steps-section .revma-section-header {
        margin-bottom: 24px;
    }

    .revma-steps-section .revma-section-header h2 {
        font-size: 1.5rem;
    }

    .revma-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .revma-steps::before {
        display: none;
    }

    .revma-step {
        background: #f8fafc;
        border-radius: 12px;
        padding: 16px 10px;
    }

    .revma-step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-bottom: 8px;
        box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3), 0 0 0 3px white;
    }

    .revma-step-icon {
        width: 40px;
        height: 40px;
        margin: 4px auto 8px;
        border-radius: 10px;
    }

    .revma-step-icon svg {
        width: 22px;
        height: 22px;
    }

    .revma-step h3 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .revma-step p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* ============================================
   PROVIDERS SECTION - ANIMATED LOGOS
============================================ */
.revma-providers-section {
    padding: var(--revma-section-spacing-md, 80px) 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.revma-providers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.revma-provider-logo {
    background: var(--revma-bg-white);
    padding: 20px 32px;
    border-radius: var(--revma-radius-md);
    font-weight: 700;
    color: var(--revma-text-medium);
    font-size: 1rem;
    border: 1px solid var(--revma-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.revma-provider-logo:hover {
    border-color: var(--revma-primary);
    box-shadow: var(--revma-shadow-md);
    transform: translateY(-4px);
}

/* Provider logo images */
.revma-provider-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

/* Fallback text when image fails or doesn't exist */
.revma-provider-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--revma-text-dark);
    text-align: center;
    padding: 8px;
    background: linear-gradient(135deg, var(--revma-bg-light) 0%, var(--revma-bg-white) 100%);
    border-radius: var(--revma-radius-sm);
    min-width: 80px;
}

.revma-providers-note {
    text-align: center;
    margin-top: 40px;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.revma-providers-note svg {
    stroke: #22c55e;
}

/* ============================================
   CTA SECTION - IMPRESSIVE DARK
============================================ */
.revma-cta-section {
    padding: 140px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated orbs */
.revma-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.2) 0%, transparent 40%);
    animation: rotate-slow 40s linear infinite reverse;
    pointer-events: none;
}

/* Grid pattern */
.revma-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

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

.revma-cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 60px rgba(16, 185, 129, 0.4);
}

.revma-cta-section p {
    color: #94a3b8;
    font-size: 1.25rem;
    margin-bottom: 48px;
    line-height: 1.7;
}

.revma-cta-section .revma-btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow:
        0 4px 20px rgba(16, 185, 129, 0.5),
        0 0 60px rgba(16, 185, 129, 0.2);
    font-size: 1.2rem;
    padding: 20px 44px;
}

.revma-cta-section .revma-btn-primary:hover {
    box-shadow:
        0 8px 40px rgba(16, 185, 129, 0.6),
        0 0 100px rgba(16, 185, 129, 0.3);
    transform: translateY(-4px) scale(1.05);
}

.revma-btn-large {
    font-size: 1.25rem;
    padding: 22px 48px;
}

.revma-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.revma-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.revma-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

/* ============================================
   FOOTER - MODERN DARK
============================================ */
.revma-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 24px 40px;
    position: relative;
}

.revma-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.revma-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
}

.revma-footer-brand h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.revma-footer-brand p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 300px;
}

.revma-footer-badges {
    margin-top: 20px;
}

.revma-footer-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.revma-footer h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.revma-footer ul {
    list-style: none;
}

.revma-footer li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    text-align: left;
}

.revma-footer a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.revma-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.revma-footer a:hover {
    color: #60a5fa;
}

.revma-footer a:hover::after {
    width: 100%;
}

/* Footer Contact Section */
.revma-footer-contact .ficon {
    display: inline-block;
    width: 30px;
    text-align: left;
    flex-shrink: 0;
}

.revma-footer-contact li {
    display: flex;
    align-items: center;
}

.revma-footer-contact a {
    flex: 1;
}

.revma-footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.revma-footer-bottom p {
    font-size: 0.9rem;
}

.revma-social-links {
    display: flex;
    gap: 16px;
}

.revma-social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.revma-social-links a::after {
    display: none;
}

.revma-social-links a:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .revma-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .revma-hero {
        min-height: 700px; /* Fixed height to prevent CLS on mobile */
        padding: 100px 20px;
    }

    .revma-hero h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .revma-hero-stats {
        gap: 40px;
    }

    .revma-stat-value {
        font-size: 2.5rem;
    }

    .revma-stat::after {
        display: none;
    }

    .revma-calculator-wrapper {
        padding: 32px 24px;
        border-radius: var(--revma-radius-card, 22px);
    }

    .revma-features-grid {
        grid-template-columns: 1fr;
    }

    .revma-feature-card {
        padding: 36px 28px;
    }

    .revma-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .revma-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .revma-cta-section h2 {
        font-size: 2rem;
    }

    .revma-section-header h2 {
        font-size: 2rem;
    }
}

/* ============================================
   SCROLL ANIMATIONS (IntersectionObserver)
============================================ */
.revma-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.revma-animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.revma-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.revma-animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.revma-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.revma-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger delays for children */
.revma-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.revma-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.revma-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.revma-stagger > *:nth-child(4) { transition-delay: 0.4s; }
.revma-stagger > *:nth-child(5) { transition-delay: 0.5s; }
.revma-stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   LIVE ACTIVITY BAR (Like Booking.com)
============================================ */
.revma-live-bar {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.revma-live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
}

.revma-live-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #22c55e;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.revma-trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.revma-rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 0.9rem;
}

.revma-rating-badge .revma-stars {
    display: flex;
    gap: 2px;
}

.revma-rating-badge .revma-stars svg {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
}

.revma-rating-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.revma-live-stat {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.revma-live-stat strong {
    color: #22c55e;
}

.revma-verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #22c55e;
    font-size: 0.9rem;
}

.revma-verified-badge svg {
    stroke: #22c55e;
}

/* ============================================
   SAVINGS PILL (In Hero - Like Uswitch)
============================================ */
.revma-hero .revma-savings-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 16px 28px;
    border-radius: 60px;
    margin-bottom: 32px;
    animation: pulse-glow 3s ease-in-out infinite;
    top: auto;
    right: auto;
    z-index: auto;
}

.revma-savings-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.revma-savings-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.revma-hero .revma-savings-content {
    text-align: left;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.revma-hero .revma-savings-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.revma-hero .revma-savings-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #22c55e;
}

/* Fixed Savings Pill (for scrolling) */
.revma-savings-pill-fixed {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    animation: pillBounce 2s ease-in-out infinite;
}

@keyframes pillBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.revma-savings-content {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.revma-savings-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.revma-savings-value {
    font-size: 1.5rem;
    font-weight: 800;
}

.revma-savings-subtext {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* ============================================
   TARIFF TYPES LEGEND (Greek Standard)
============================================ */
.revma-tariff-legend {
    padding: 60px 20px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.revma-legend-container {
    max-width: 1200px;
    margin: 0 auto;
}

.revma-legend-container h3 {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.revma-tariff-legend .revma-container {
    max-width: 1200px;
    margin: 0 auto;
}

.revma-legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.revma-legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.revma-legend-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.revma-legend-color {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
}

.revma-legend-blue .revma-legend-color {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.revma-legend-green .revma-legend-color {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.revma-legend-yellow .revma-legend-color {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.revma-legend-orange .revma-legend-color {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.revma-legend-item strong {
    display: block;
    font-size: 1rem;
    color: white;
}

.revma-legend-item p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 4px 0 0 0;
}

.revma-legend-item span:last-child {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ============================================
   PROGRESS STEPS INDICATOR
============================================ */
.revma-progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 30px auto;
    max-width: 600px;
    padding: 0 20px;
}

.revma-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.revma-progress-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.revma-progress-step span {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.revma-progress-step.active .revma-progress-number {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transform: scale(1.1);
}

.revma-progress-step.active span {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.5);
}

.revma-progress-step.completed .revma-progress-number {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.revma-progress-line {
    flex: 1;
    height: 4px;
    background: #e2e8f0;
    position: relative;
    top: -20px;
    margin: 0 -10px;
}

.revma-progress-line.active {
    background: linear-gradient(90deg, #22c55e, #3b82f6);
}

/* ============================================
   EXPERT SECTION
============================================ */
.revma-expert-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.revma-expert-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.revma-expert-image {
    position: relative;
    flex-shrink: 0;
}

.revma-expert-status {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #22c55e;
}

.revma-status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

.revma-expert-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.revma-expert-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.revma-expert-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.revma-expert-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.revma-expert-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.revma-expert-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.revma-expert-quote {
    font-size: 1.5rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.revma-expert-name {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 40px;
}

.revma-hotline-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    display: inline-block;
}

.revma-hotline-label {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.revma-hotline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.revma-hotline-number:hover {
    transform: scale(1.05);
    color: #3b82f6;
}

.revma-hotline-number svg {
    animation: phoneRing 1s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.revma-hotline-hours {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* ============================================
   QUIZ SECTION (Gamification)
============================================ */
.revma-quiz-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
}

.revma-quiz-container {
    max-width: 800px;
    margin: 0 auto;
}

.revma-quiz-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.revma-quiz-section h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.revma-quiz-section > .revma-quiz-container > p {
    color: #64748b;
    margin-bottom: 40px;
}

.revma-quiz-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.revma-quiz-header {
    text-align: center;
    margin-bottom: 40px;
}

.revma-quiz-header h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.revma-quiz-header p {
    color: #64748b;
}

.revma-quiz-sub {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}

.revma-quiz-result {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.revma-quiz-result.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.revma-quiz-result-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.revma-quiz-result h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.revma-quiz-savings {
    font-size: 3rem;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 20px;
}

.revma-quiz-result p {
    color: #64748b;
    margin-bottom: 30px;
}

.revma-quiz-progress {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

.revma-quiz-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.revma-quiz-dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

.revma-quiz-dot.completed {
    background: #22c55e;
}

.revma-quiz-question {
    display: none;
}

.revma-quiz-question.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.revma-quiz-question h4 {
    text-align: center;
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 30px;
}

.revma-quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.revma-quiz-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #1e293b;
}

.revma-quiz-option:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
    transform: translateY(-3px);
}

.revma-quiz-option.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.revma-quiz-emoji {
    font-size: 2.5rem;
}

.revma-quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.revma-quiz-btn {
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.revma-quiz-btn-back {
    background: #f1f5f9;
    color: #64748b;
}

.revma-quiz-btn-back:hover {
    background: #e2e8f0;
}

.revma-quiz-btn-next {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.revma-quiz-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.revma-testimonials-section {
    padding: 80px 20px;
    background: #fff;
}

.revma-testimonials-section .revma-container {
    max-width: 1200px;
    margin: 0 auto;
}

.revma-trustpilot-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.revma-trustpilot-badge .revma-stars {
    display: flex;
    gap: 4px;
}

.revma-trustpilot-badge .revma-stars svg {
    width: 20px;
    height: 20px;
    fill: #00b67a;
}

.revma-trustpilot-badge span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.revma-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.revma-testimonial-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.revma-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.revma-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: #e2e8f0;
    font-family: Georgia, serif;
    line-height: 1;
}

.revma-testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.revma-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.revma-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.revma-testimonial-author strong {
    display: block;
    color: #1e293b;
    font-size: 1rem;
}

.revma-testimonial-author span {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
}

.revma-testimonial-info h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.revma-testimonial-info span {
    font-size: 0.9rem;
    color: #64748b;
}

.revma-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.revma-testimonial-stars svg {
    fill: #fbbf24;
}

.revma-testimonial-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.revma-testimonial-savings {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

/* ============================================
   FAQ SECTION (Accordion) - Using native details/summary
============================================ */
.revma-faq-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--revma-bg-light) 0%, var(--revma-bg-white) 100%);
    position: relative;
    z-index: 10;
    scroll-margin-top: 80px; /* Account for sticky header */
}

/* Scroll margin for all major sections */
.revma-calculator-section,
.revma-steps-section,
.revma-features-section,
.revma-providers-section,
.revma-cta-section {
    scroll-margin-top: 80px;
}

.revma-faq-section .revma-container {
    max-width: 900px;
    margin: 0 auto;
}

.revma-faq-list,
.revma-faq-container {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 11;
}

/* FAQ Item - Closed state */
details.revma-faq-item {
    background: var(--revma-bg-white);
    border-radius: var(--revma-radius-lg);
    margin-bottom: 12px;
    box-shadow: var(--revma-shadow-sm);
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    transition: border-color var(--revma-transition), box-shadow var(--revma-transition);
}

/* Hover state for closed items */
details.revma-faq-item:not([open]):hover {
    border-color: var(--revma-border);
    box-shadow: var(--revma-shadow-md);
}

/* Open/Active state - soft brand tint with accent left border */
details.revma-faq-item[open] {
    background: var(--revma-primary-bg);
    border-color: var(--revma-primary-light);
    border-left: 4px solid var(--revma-primary);
    box-shadow: var(--revma-shadow-md);
}

/* Remove default markers - bulletproof cross-browser */
details.revma-faq-item > summary {
    list-style: none;
    list-style-type: none;
}

details.revma-faq-item > summary::-webkit-details-marker {
    display: none !important;
}

details.revma-faq-item > summary::marker {
    display: none !important;
    content: '';
}

/* Firefox specific */
details.revma-faq-item > summary::-moz-list-bullet {
    list-style-type: none;
}

/* Summary/Question styling */
summary.revma-faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: background var(--revma-transition);
    outline: none;
}

/* Hover on summary */
summary.revma-faq-question:hover {
    background: rgba(37, 99, 235, 0.04);
}

/* Focus state for accessibility */
summary.revma-faq-question:focus {
    outline: none;
}

summary.revma-faq-question:focus-visible {
    outline: 2px solid var(--revma-primary);
    outline-offset: -2px;
    border-radius: var(--revma-radius-lg);
}

/* Question text */
.revma-faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--revma-text-dark);
    text-align: left;
    flex: 1;
    transition: color var(--revma-transition);
}

/* Active question text color */
details.revma-faq-item[open] .revma-faq-question span {
    color: var(--revma-primary-dark);
}

/* Chevron icon */
svg.revma-faq-icon,
.revma-faq-question svg {
    width: 22px;
    height: 22px;
    stroke: var(--revma-text-light);
    stroke-width: 2.5;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke var(--revma-transition);
    flex-shrink: 0;
}

/* Icon rotation for open state */
details.revma-faq-item[open] .revma-faq-question svg,
details.revma-faq-item[open] svg.revma-faq-icon {
    transform: rotate(180deg);
    stroke: var(--revma-primary);
}

/* FAQ Answer */
.revma-faq-answer {
    padding: 0 28px 22px 28px;
    color: var(--revma-text-medium);
    line-height: 1.75;
    animation: faqFadeIn 0.3s ease-out;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.revma-faq-answer p {
    padding: 0;
    margin: 0;
    color: var(--revma-text-medium);
    line-height: 1.75;
}

.revma-faq-answer strong {
    color: var(--revma-text-dark);
    font-weight: 600;
}

/* ============================================
   GUARANTEE BOX - Compact
============================================ */
.revma-guarantee-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 14px 20px;
    margin: 24px auto 0;
    max-width: 420px;
}

.revma-guarantee-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.revma-guarantee-icon svg {
    stroke: white;
    width: 22px;
    height: 22px;
}

.revma-guarantee-content {
    flex: 1;
}

.revma-guarantee-content h4 {
    color: #166534;
    font-size: 0.95rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.revma-guarantee-content p {
    color: #15803d;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.revma-guarantee-text h4 {
    color: #166534;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.revma-guarantee-text p {
    color: #15803d;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .revma-guarantee-box {
        padding: 12px 16px;
        gap: 12px;
        max-width: 100%;
        margin-top: 16px;
    }

    .revma-guarantee-icon {
        width: 38px;
        height: 38px;
    }

    .revma-guarantee-icon svg {
        width: 18px;
        height: 18px;
    }

    .revma-guarantee-content h4 {
        font-size: 0.85rem;
    }

    .revma-guarantee-content p {
        font-size: 0.75rem;
    }
}

/* ============================================
   ENHANCED CTA SECTION
============================================ */
.revma-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

.revma-cta-badge svg {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.revma-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.revma-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1e3a5f;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.revma-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.revma-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.revma-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.revma-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

/* ============================================
   MEDIA LOGOS IN HERO
============================================ */
.revma-hero .revma-media-logos {
    margin-top: 60px;
    padding: 0;
    background: transparent;
    animation: slide-up 1s ease-out 1s both;
}

.revma-media-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.revma-media-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.revma-hero .revma-media-logo {
    opacity: 0.4;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.revma-hero .revma-media-logo:hover {
    opacity: 0.8;
}

/* ============================================
   MEDIA LOGOS SECTION (STANDALONE)
============================================ */
.revma-media-logos {
    padding: 50px 20px;
    background: #f8fafc;
    text-align: center;
}

.revma-media-logos p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.revma-media-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.revma-media-logo {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    font-size: 1.5rem;
    font-weight: 700;
    color: #64748b;
}

.revma-media-logo:hover {
    opacity: 1;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
============================================ */
@media (max-width: 768px) {
    .revma-live-bar {
        flex-direction: column;
        gap: 8px;
        padding: 10px 15px;
        text-align: center;
    }

    .revma-live-indicator {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        font-size: 0.85rem;
    }

    .revma-live-stat {
        font-size: 0.82rem;
    }

    .revma-savings-pill {
        position: static;
        margin: 20px auto;
        animation: none;
    }

    .revma-progress-steps {
        flex-wrap: wrap;
        gap: 10px;
    }

    .revma-progress-line {
        display: none;
    }

    .revma-progress-step {
        flex: 0 0 45%;
    }

    .revma-progress-step span {
        font-size: 0.95rem;
        font-weight: 600;
    }

    .revma-progress-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .revma-quiz-options {
        grid-template-columns: 1fr;
    }

    .revma-quiz-card {
        padding: 30px 20px;
    }

    .revma-expert-quote {
        font-size: 1.2rem;
    }

    .revma-hotline-number {
        font-size: 1.5rem;
    }

    .revma-testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .revma-cta-primary,
    .revma-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .revma-guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    /* Provider logos - better mobile grid */
    .revma-providers-grid {
        gap: 12px;
    }

    .revma-provider-logo {
        padding: 12px 16px;
        min-height: 60px;
    }

    .revma-provider-logo img {
        max-height: 35px;
    }

    .revma-provider-fallback {
        font-size: 0.8rem;
        min-width: 60px;
    }

    /* Hero CTAs stack better */
    .revma-hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
    }

    .revma-hero-cta .revma-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        justify-content: center;
    }

    /* Better touch targets */
    .revma-btn {
        min-height: 48px;
        padding: 14px 24px;
    }

    /* FAQ mobile spacing */
    details.revma-faq-item {
        margin-bottom: 8px;
    }

    summary.revma-faq-question {
        padding: 16px 20px;
    }

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

/* ============================================
   STICKY BOTTOM CTA BAR - Premium Dark Glass
============================================ */
.revma-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 32px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4), 0 -2px 0 rgba(251, 191, 36, 0.3);
    z-index: 9999;
    gap: 16px;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.revma-sticky-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    border-radius: 0 0 4px 4px;
}

.revma-sticky-cta.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.revma-sticky-cta .revma-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    min-width: 180px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.revma-sticky-cta .revma-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Secondary Button - Glass Effect */
.revma-sticky-cta .revma-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.revma-sticky-cta .revma-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.revma-sticky-cta .revma-btn-secondary svg {
    stroke: #fbbf24;
}

/* Primary Button - Golden Accent */
.revma-sticky-cta .revma-btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.revma-sticky-cta .revma-btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.revma-sticky-cta .revma-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.revma-sticky-cta .revma-btn-primary:hover::after {
    left: 100%;
}

/* Add padding to footer to prevent overlap */
.revma-frontpage .revma-footer,
.revma-frontpage .revma-footer-premium,
.revma-kostos-page .revma-footer-premium,
.revma-providers-page .revma-footer-premium {
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .revma-sticky-cta {
        padding: 14px 16px;
        gap: 12px;
    }

    .revma-sticky-cta .revma-btn {
        flex: 1;
        max-width: 50%;
        padding: 14px 16px;
        font-size: 0.9rem;
        min-width: auto;
        border-radius: 10px;
    }

    .revma-sticky-cta .revma-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   AI ANSWER BLOCKS - Ultra Premium Dark Design
============================================ */
.revma-frontpage .revma-ai-premium-section {
    padding: 80px 24px 56px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1e3a5f 0%, #0f172a 15%, #1e293b 50%, #0f172a 100%);
    margin-top: -40px;
}

/* Smooth blend from hero section */
.revma-frontpage .revma-ai-premium-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom,
        rgba(30, 58, 95, 0.8) 0%,
        rgba(15, 23, 42, 0) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Animated gradient orbs */
.revma-frontpage .revma-ai-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-frontpage .revma-ai-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 8s ease-in-out infinite;
}

.revma-frontpage .revma-ai-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.revma-frontpage .revma-ai-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    bottom: -150px;
    right: -100px;
    animation-delay: -4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.revma-frontpage .revma-ai-premium-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Premium Header */
.revma-frontpage .revma-ai-premium-header {
    text-align: center;
    margin-bottom: 32px;
}

.revma-frontpage .revma-ai-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.revma-frontpage .revma-ai-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.revma-frontpage .revma-ai-premium-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.revma-frontpage .revma-ai-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.revma-frontpage .revma-ai-subtitle strong {
    color: rgba(255, 255, 255, 0.9);
}

/* Premium Cards Grid */
.revma-frontpage .revma-ai-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Premium Card with Glow */
.revma-frontpage .revma-ai-premium-card {
    position: relative;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.revma-frontpage .revma-ai-premium-card:hover {
    transform: translateY(-6px);
}

/* Animated glow border */
.revma-frontpage .revma-ai-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: conic-gradient(from 0deg, transparent, #3b82f6, transparent, #8b5cf6, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: glowRotate 4s linear infinite;
}

.revma-frontpage .revma-ai-premium-card[data-glow="green"] .revma-ai-card-glow {
    background: conic-gradient(from 0deg, transparent, #22c55e, transparent, #14b8a6, transparent);
}

.revma-frontpage .revma-ai-premium-card:hover .revma-ai-card-glow {
    opacity: 1;
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Card Inner (glassmorphism) */
.revma-frontpage .revma-ai-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Card Badge */
.revma-frontpage .revma-ai-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.revma-frontpage .revma-ai-card-badge svg {
    opacity: 0.6;
}

/* Card Icon */
.revma-frontpage .revma-ai-card-icon-wrap {
    margin-bottom: 20px;
}

.revma-frontpage .revma-ai-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-ai-icon-euro {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.revma-frontpage .revma-ai-icon-euro span {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.revma-frontpage .revma-ai-icon-map {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    color: white;
}

.revma-frontpage .revma-ai-premium-card:hover .revma-ai-card-icon {
    transform: scale(1.1) rotate(-3deg);
}

/* Card Typography */
.revma-frontpage .revma-ai-card-inner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0 0 12px;
    line-height: 1.3;
}

.revma-frontpage .revma-ai-card-inner p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.65;
    margin: 0 0 auto;
    padding-bottom: 20px;
}

.revma-frontpage .revma-ai-card-inner p a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.revma-frontpage .revma-ai-card-inner p a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* Card CTA Button */
.revma-frontpage .revma-ai-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.revma-frontpage .revma-ai-card-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    gap: 14px;
}

.revma-frontpage .revma-ai-card-cta svg {
    transition: transform 0.3s ease;
}

.revma-frontpage .revma-ai-card-cta:hover svg {
    transform: translateX(3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .revma-frontpage .revma-ai-premium-section {
        padding: 40px 16px;
    }

    .revma-frontpage .revma-ai-orb-1 {
        width: 250px;
        height: 250px;
        top: -100px;
        left: -80px;
    }

    .revma-frontpage .revma-ai-orb-2 {
        width: 200px;
        height: 200px;
        bottom: -80px;
        right: -60px;
    }

    .revma-frontpage .revma-ai-premium-header h2 {
        font-size: 1.4rem;
    }

    .revma-frontpage .revma-ai-premium-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .revma-frontpage .revma-ai-card-inner {
        padding: 22px;
    }

    .revma-frontpage .revma-ai-card-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .revma-frontpage .revma-ai-icon-euro span {
        font-size: 1.4rem;
    }

    .revma-frontpage .revma-ai-icon-map svg {
        width: 26px;
        height: 26px;
    }

    .revma-frontpage .revma-ai-card-inner h3 {
        font-size: 1.1rem;
    }

    .revma-frontpage .revma-ai-card-inner p {
        font-size: 0.85rem;
    }

    .revma-frontpage .revma-ai-card-cta {
        padding: 10px 16px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CLS FIX: Complianz Cookie Banner
   Force fixed positioning to prevent layout shift
   ============================================ */
#cmplz-cookiebanner-container,
.cmplz-cookiebanner,
.cmplz-cookiebanner-container {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    z-index: 999999 !important;
    transform: none !important;
}

/* Ensure banner doesn't affect page layout */
body.cmplz-show-banner {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* ============================================
   4 STEPS - Ultra Premium Dark Design
============================================ */
.revma-frontpage .revma-steps-premium-section {
    padding: 80px 24px 70px;
    position: relative;
    overflow: hidden;
    /* Seamless blend from expert section (#0f172a end) */
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
    margin-top: -1px; /* Prevent gap between sections */
}

/* Smooth blend from previous section */
.revma-frontpage .revma-steps-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Animated Background Orbs */
.revma-frontpage .revma-steps-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-frontpage .revma-steps-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: stepsOrbFloat 10s ease-in-out infinite;
}

.revma-frontpage .revma-steps-orb-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.revma-frontpage .revma-steps-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    bottom: -100px;
    left: -50px;
    animation-delay: -3s;
}

.revma-frontpage .revma-steps-orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -6s;
}

@keyframes stepsOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(20px, -25px) scale(1.15); opacity: 0.4; }
}

.revma-frontpage .revma-steps-premium-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Premium Header */
.revma-frontpage .revma-steps-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.revma-frontpage .revma-steps-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.revma-frontpage .revma-steps-badge svg {
    animation: stepsBoltPulse 2s ease-in-out infinite;
}

@keyframes stepsBoltPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.revma-frontpage .revma-steps-premium-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.revma-frontpage .revma-steps-highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: stepsHighlightShift 3s ease infinite;
}

@keyframes stepsHighlightShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.revma-frontpage .revma-steps-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.revma-frontpage .revma-steps-subtitle strong {
    color: rgba(255, 255, 255, 0.9);
}

/* Animated Timeline */
.revma-frontpage .revma-steps-timeline {
    position: absolute;
    left: 50%;
    top: 180px;
    transform: translateX(-50%);
    width: 70%;
    max-width: 700px;
    height: 4px;
    display: none; /* Show only on desktop */
}

.revma-frontpage .revma-steps-timeline-line {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.revma-frontpage .revma-steps-timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #22c55e, #fbbf24);
    border-radius: 2px;
    animation: stepsProgressShimmer 3s ease-in-out infinite;
}

@keyframes stepsProgressShimmer {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Premium Steps Grid */
.revma-frontpage .revma-steps-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Premium Step Card */
.revma-frontpage .revma-step-premium-card {
    position: relative;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.revma-frontpage .revma-step-premium-card:hover {
    transform: translateY(-8px);
}

/* Animated Glow Border */
.revma-frontpage .revma-step-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: glowRotate 4s linear infinite;
}

.revma-frontpage .revma-step-premium-card[data-step="1"] .revma-step-card-glow {
    background: conic-gradient(from 0deg, transparent, #3b82f6, transparent, #60a5fa, transparent);
}

.revma-frontpage .revma-step-premium-card[data-step="2"] .revma-step-card-glow {
    background: conic-gradient(from 0deg, transparent, #8b5cf6, transparent, #a855f7, transparent);
}

.revma-frontpage .revma-step-premium-card[data-step="3"] .revma-step-card-glow {
    background: conic-gradient(from 0deg, transparent, #22c55e, transparent, #14b8a6, transparent);
}

.revma-frontpage .revma-step-premium-card[data-step="4"] .revma-step-card-glow {
    background: conic-gradient(from 0deg, transparent, #fbbf24, transparent, #f59e0b, transparent);
}

.revma-frontpage .revma-step-premium-card:hover .revma-step-card-glow {
    opacity: 1;
}

/* Card Inner (Glassmorphism) */
.revma-frontpage .revma-step-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 28px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    height: 100%;
}

/* Premium Step Number */
.revma-frontpage .revma-step-number-premium {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
}

.revma-frontpage .revma-step-number-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: stepRingRotate 3s linear infinite;
}

.revma-frontpage .revma-step-premium-card[data-step="1"] .revma-step-number-ring {
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.revma-frontpage .revma-step-premium-card[data-step="2"] .revma-step-number-ring {
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.revma-frontpage .revma-step-premium-card[data-step="3"] .revma-step-number-ring {
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.revma-frontpage .revma-step-premium-card[data-step="4"] .revma-step-number-ring {
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

@keyframes stepRingRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.revma-frontpage .revma-step-number-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

/* Premium Step Icon */
.revma-frontpage .revma-step-icon-premium {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-step-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.revma-frontpage .revma-step-icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.revma-frontpage .revma-step-icon-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

.revma-frontpage .revma-step-icon-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.35);
}

.revma-frontpage .revma-step-icon-premium svg {
    width: 26px;
    height: 26px;
    color: white;
}

.revma-frontpage .revma-step-premium-card:hover .revma-step-icon-premium {
    transform: scale(1.1) rotate(-5deg);
}

/* Card Typography */
.revma-frontpage .revma-step-card-inner h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
}

.revma-frontpage .revma-step-card-inner p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* Premium Guarantee Box */
.revma-frontpage .revma-guarantee-premium {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 20px;
}

.revma-frontpage .revma-guarantee-premium-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: conic-gradient(from 0deg, transparent, #22c55e, transparent, #14b8a6, transparent);
    opacity: 0.6;
    animation: glowRotate 6s linear infinite;
}

.revma-frontpage .revma-guarantee-premium-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.15), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px 28px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.revma-frontpage .revma-guarantee-premium-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

.revma-frontpage .revma-guarantee-premium-icon svg {
    color: white;
}

.revma-frontpage .revma-guarantee-premium-content {
    flex: 1;
}

.revma-frontpage .revma-guarantee-premium-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin: 0 0 6px;
}

.revma-frontpage .revma-guarantee-premium-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
}

.revma-frontpage .revma-guarantee-premium-checkmarks {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.revma-frontpage .revma-guarantee-premium-checkmarks span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
}

.revma-frontpage .revma-guarantee-premium-checkmarks svg {
    color: #22c55e;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .revma-frontpage .revma-steps-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .revma-frontpage .revma-steps-premium-section {
        padding: 50px 16px 40px;
    }

    .revma-frontpage .revma-steps-orb-1 {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -30px;
    }

    .revma-frontpage .revma-steps-orb-2 {
        width: 180px;
        height: 180px;
        bottom: -50px;
        left: -30px;
    }

    .revma-frontpage .revma-steps-orb-3 {
        display: none;
    }

    .revma-frontpage .revma-steps-premium-header {
        margin-bottom: 32px;
    }

    .revma-frontpage .revma-steps-premium-header h2 {
        font-size: 1.5rem;
    }

    .revma-frontpage .revma-steps-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 24px;
    }

    .revma-frontpage .revma-step-card-inner {
        padding: 20px 14px;
    }

    .revma-frontpage .revma-step-number-premium {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .revma-frontpage .revma-step-number-text {
        font-size: 1rem;
    }

    .revma-frontpage .revma-step-icon-premium {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .revma-frontpage .revma-step-icon-premium svg {
        width: 22px;
        height: 22px;
    }

    .revma-frontpage .revma-step-card-inner h3 {
        font-size: 0.9rem;
    }

    .revma-frontpage .revma-step-card-inner p {
        font-size: 0.75rem;
    }

    /* Guarantee Box Mobile */
    .revma-frontpage .revma-guarantee-premium-inner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }

    .revma-frontpage .revma-guarantee-premium-icon {
        width: 52px;
        height: 52px;
    }

    .revma-frontpage .revma-guarantee-premium-icon svg {
        width: 26px;
        height: 26px;
    }

    .revma-frontpage .revma-guarantee-premium-content h4 {
        font-size: 1rem;
    }

    .revma-frontpage .revma-guarantee-premium-content p {
        font-size: 0.8rem;
    }

    .revma-frontpage .revma-guarantee-premium-checkmarks {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .revma-frontpage .revma-guarantee-premium-checkmarks span {
        font-size: 0.75rem;
    }
}

/* ============================================
   QUIZ SECTION - Ultra Premium Dark Design
============================================ */
.revma-frontpage .revma-quiz-premium-section {
    padding: 80px 24px 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Animated Background Orbs */
.revma-frontpage .revma-quiz-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-frontpage .revma-quiz-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: quizOrbFloat 12s ease-in-out infinite;
}

.revma-frontpage .revma-quiz-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.revma-frontpage .revma-quiz-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    bottom: -100px;
    right: -100px;
    animation-delay: -6s;
}

@keyframes quizOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
    50% { transform: translate(25px, -20px) scale(1.1); opacity: 0.45; }
}

.revma-frontpage .revma-quiz-premium-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Premium Header */
.revma-frontpage .revma-quiz-premium-header {
    text-align: center;
    margin-bottom: 32px;
}

.revma-frontpage .revma-quiz-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.revma-frontpage .revma-quiz-premium-badge svg {
    animation: quizClockPulse 2s ease-in-out infinite;
}

@keyframes quizClockPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.revma-frontpage .revma-quiz-badge-time {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.revma-frontpage .revma-quiz-premium-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.revma-frontpage .revma-quiz-highlight {
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #a855f7 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: quizHighlightShift 3s ease infinite;
}

@keyframes quizHighlightShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.revma-frontpage .revma-quiz-premium-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.revma-frontpage .revma-quiz-premium-subtitle strong {
    color: rgba(255, 255, 255, 0.9);
}

/* Progress Bar */
.revma-frontpage .revma-quiz-progress-bar {
    margin-bottom: 24px;
}

.revma-frontpage .revma-quiz-progress-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 16px;
    overflow: hidden;
}

.revma-frontpage .revma-quiz-progress-fill {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.revma-frontpage .revma-quiz-progress-steps {
    display: flex;
    justify-content: space-between;
}

.revma-frontpage .revma-quiz-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.revma-frontpage .revma-quiz-step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.revma-frontpage .revma-quiz-progress-step.active .revma-quiz-step-dot {
    background: #8b5cf6;
    border-color: #a855f7;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}

.revma-frontpage .revma-quiz-progress-step.completed .revma-quiz-step-dot {
    background: #22c55e;
    border-color: #16a34a;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

.revma-frontpage .revma-quiz-step-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.revma-frontpage .revma-quiz-progress-step.active .revma-quiz-step-label,
.revma-frontpage .revma-quiz-progress-step.completed .revma-quiz-step-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Premium Quiz Card */
.revma-frontpage .revma-quiz-premium-card {
    position: relative;
    border-radius: 24px;
}

.revma-frontpage .revma-quiz-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: conic-gradient(from 0deg, transparent, #8b5cf6, transparent, #3b82f6, transparent);
    opacity: 0.5;
    animation: glowRotate 6s linear infinite;
}

.revma-frontpage .revma-quiz-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.98));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Quiz Questions */
.revma-frontpage .revma-quiz-premium-section .revma-quiz-question {
    display: none;
}

.revma-frontpage .revma-quiz-premium-section .revma-quiz-question.active {
    display: block;
    animation: quizFadeInUp 0.5s ease;
}

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

.revma-frontpage .revma-quiz-premium-section .revma-quiz-question h4 {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin: 0 0 28px;
}

/* Premium Quiz Options */
.revma-frontpage .revma-quiz-premium-section .revma-quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.revma-frontpage .revma-quiz-option-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.revma-frontpage .revma-quiz-option-premium:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(4px);
}

.revma-frontpage .revma-quiz-option-premium.selected {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.15));
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.revma-frontpage .revma-quiz-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-quiz-icon-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.revma-frontpage .revma-quiz-icon-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.revma-frontpage .revma-quiz-icon-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.revma-frontpage .revma-quiz-option-premium:hover .revma-quiz-option-icon,
.revma-frontpage .revma-quiz-option-premium.selected .revma-quiz-option-icon {
    transform: scale(1.05);
}

.revma-frontpage .revma-quiz-emoji {
    font-size: 1.5rem;
}

.revma-frontpage .revma-quiz-option-content {
    flex: 1;
}

.revma-frontpage .revma-quiz-option-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.revma-frontpage .revma-quiz-option-sub {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.revma-frontpage .revma-quiz-option-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.revma-frontpage .revma-quiz-option-check svg {
    opacity: 0;
    color: white;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.revma-frontpage .revma-quiz-option-premium.selected .revma-quiz-option-check {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.revma-frontpage .revma-quiz-option-premium.selected .revma-quiz-option-check svg {
    opacity: 1;
    transform: scale(1);
}

/* Quiz Result */
.revma-frontpage .revma-quiz-premium-section .revma-quiz-result {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.revma-frontpage .revma-quiz-premium-section .revma-quiz-result.active {
    display: block;
    animation: quizFadeInUp 0.6s ease;
}

.revma-frontpage .revma-quiz-result-celebration {
    margin-bottom: 20px;
}

.revma-frontpage .revma-quiz-result-icon-wrap {
    position: relative;
    display: inline-block;
}

.revma-frontpage .revma-quiz-premium-section .revma-quiz-result-icon {
    font-size: 4rem;
    animation: quizCelebrate 1s ease;
}

@keyframes quizCelebrate {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.revma-frontpage .revma-quiz-premium-section .revma-quiz-result h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 20px;
}

.revma-frontpage .revma-quiz-savings-premium {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.revma-frontpage .revma-quiz-savings-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.revma-frontpage .revma-quiz-savings-amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: savingsPulse 2s ease-in-out infinite;
}

@keyframes savingsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.revma-frontpage .revma-quiz-savings-period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.revma-frontpage .revma-quiz-premium-section .revma-quiz-result p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 28px;
    line-height: 1.6;
}

.revma-frontpage .revma-quiz-cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

.revma-frontpage .revma-quiz-cta-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.45);
}

.revma-frontpage .revma-quiz-cta-premium svg {
    transition: transform 0.3s ease;
}

.revma-frontpage .revma-quiz-cta-premium:hover svg {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .revma-frontpage .revma-quiz-premium-section {
        padding: 50px 16px 40px;
    }

    .revma-frontpage .revma-quiz-orb-1 {
        width: 250px;
        height: 250px;
        top: -80px;
        left: -60px;
    }

    .revma-frontpage .revma-quiz-orb-2 {
        width: 200px;
        height: 200px;
        bottom: -60px;
        right: -60px;
    }

    .revma-frontpage .revma-quiz-premium-header h2 {
        font-size: 1.5rem;
    }

    .revma-frontpage .revma-quiz-premium-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px 14px;
    }

    .revma-frontpage .revma-quiz-progress-bar {
        margin-bottom: 20px;
    }

    .revma-frontpage .revma-quiz-step-label {
        font-size: 0.6rem;
    }

    .revma-frontpage .revma-quiz-card-inner {
        padding: 28px 20px;
    }

    .revma-frontpage .revma-quiz-premium-section .revma-quiz-question h4 {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }

    .revma-frontpage .revma-quiz-option-premium {
        padding: 14px 16px;
        gap: 12px;
    }

    .revma-frontpage .revma-quiz-option-icon {
        width: 42px;
        height: 42px;
    }

    .revma-frontpage .revma-quiz-emoji {
        font-size: 1.3rem;
    }

    .revma-frontpage .revma-quiz-option-title {
        font-size: 0.9rem;
    }

    .revma-frontpage .revma-quiz-option-sub {
        font-size: 0.75rem;
    }

    .revma-frontpage .revma-quiz-option-check {
        width: 24px;
        height: 24px;
    }

    .revma-frontpage .revma-quiz-option-check svg {
        width: 14px;
        height: 14px;
    }

    .revma-frontpage .revma-quiz-savings-amount {
        font-size: 2.5rem;
    }

    .revma-frontpage .revma-quiz-cta-premium {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* ============================================
   FEATURES SECTION - Ultra Premium Dark Design
============================================ */
.revma-frontpage .revma-features-premium-section {
    padding: 80px 24px 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Animated Background Orbs */
.revma-frontpage .revma-features-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-frontpage .revma-features-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: featuresOrbFloat 12s ease-in-out infinite;
}

.revma-frontpage .revma-features-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.revma-frontpage .revma-features-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    bottom: -100px;
    left: -100px;
    animation-delay: -6s;
}

@keyframes featuresOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(20px, -25px) scale(1.1); opacity: 0.4; }
}

.revma-frontpage .revma-features-premium-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Premium Header */
.revma-frontpage .revma-features-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.revma-frontpage .revma-features-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #22d3ee;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.revma-frontpage .revma-features-badge svg {
    animation: featuresStarSpin 4s ease-in-out infinite;
}

@keyframes featuresStarSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.revma-frontpage .revma-features-premium-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.revma-frontpage .revma-features-highlight {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 50%, #22d3ee 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: featuresHighlightShift 3s ease infinite;
}

@keyframes featuresHighlightShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.revma-frontpage .revma-features-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Premium Features Grid */
.revma-frontpage .revma-features-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Premium Feature Card */
.revma-frontpage .revma-feature-premium-card {
    position: relative;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.revma-frontpage .revma-feature-premium-card:hover {
    transform: translateY(-8px);
}

/* Animated Glow Border */
.revma-frontpage .revma-feature-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: glowRotate 4s linear infinite;
}

.revma-frontpage .revma-feature-premium-card[data-feature="1"] .revma-feature-card-glow {
    background: conic-gradient(from 0deg, transparent, #3b82f6, transparent, #60a5fa, transparent);
}

.revma-frontpage .revma-feature-premium-card[data-feature="2"] .revma-feature-card-glow {
    background: conic-gradient(from 0deg, transparent, #22c55e, transparent, #4ade80, transparent);
}

.revma-frontpage .revma-feature-premium-card[data-feature="3"] .revma-feature-card-glow {
    background: conic-gradient(from 0deg, transparent, #8b5cf6, transparent, #a855f7, transparent);
}

.revma-frontpage .revma-feature-premium-card[data-feature="4"] .revma-feature-card-glow {
    background: conic-gradient(from 0deg, transparent, #06b6d4, transparent, #22d3ee, transparent);
}

.revma-frontpage .revma-feature-premium-card[data-feature="5"] .revma-feature-card-glow {
    background: conic-gradient(from 0deg, transparent, #fbbf24, transparent, #fcd34d, transparent);
}

.revma-frontpage .revma-feature-premium-card[data-feature="6"] .revma-feature-card-glow {
    background: conic-gradient(from 0deg, transparent, #ec4899, transparent, #f472b6, transparent);
}

.revma-frontpage .revma-feature-premium-card:hover .revma-feature-card-glow {
    opacity: 1;
}

/* Card Inner (Glassmorphism) */
.revma-frontpage .revma-feature-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    height: 100%;
}

/* Premium Feature Icon */
.revma-frontpage .revma-feature-icon-premium {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-feature-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
    color: white;
}

.revma-frontpage .revma-feature-icon-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
    color: white;
}

.revma-frontpage .revma-feature-icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
    color: white;
}

.revma-frontpage .revma-feature-icon-cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
    color: white;
}

.revma-frontpage .revma-feature-icon-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.35);
    color: white;
}

.revma-frontpage .revma-feature-icon-pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
    color: white;
}

.revma-frontpage .revma-feature-premium-card:hover .revma-feature-icon-premium {
    transform: scale(1.1) rotate(-5deg);
}

/* Card Typography */
.revma-frontpage .revma-feature-card-inner h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 12px;
}

.revma-frontpage .revma-feature-card-inner p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.revma-frontpage .revma-feature-card-inner p strong {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .revma-frontpage .revma-features-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .revma-frontpage .revma-features-premium-section {
        padding: 50px 16px 40px;
    }

    .revma-frontpage .revma-features-orb-1 {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -60px;
    }

    .revma-frontpage .revma-features-orb-2 {
        width: 200px;
        height: 200px;
        bottom: -60px;
        left: -60px;
    }

    .revma-frontpage .revma-features-premium-header {
        margin-bottom: 32px;
    }

    .revma-frontpage .revma-features-premium-header h2 {
        font-size: 1.5rem;
    }

    .revma-frontpage .revma-features-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .revma-frontpage .revma-feature-card-inner {
        padding: 22px 16px;
    }

    .revma-frontpage .revma-feature-icon-premium {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .revma-frontpage .revma-feature-icon-premium svg {
        width: 24px;
        height: 24px;
    }

    .revma-frontpage .revma-feature-card-inner h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .revma-frontpage .revma-feature-card-inner p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .revma-frontpage .revma-features-premium-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .revma-frontpage .revma-feature-card-inner {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 18px 16px;
    }

    .revma-frontpage .revma-feature-icon-premium {
        margin: 0;
        flex-shrink: 0;
    }

    .revma-frontpage .revma-feature-card-inner h3 {
        margin-bottom: 4px;
    }
}

/* ============================================
   HOW IT WORKS SECTION - Ultra Premium Dark Design
============================================ */
.revma-frontpage .revma-howto-premium-section {
    padding: 80px 24px 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Animated Background Orbs */
.revma-frontpage .revma-howto-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-frontpage .revma-howto-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: howtoOrbFloat 14s ease-in-out infinite;
}

.revma-frontpage .revma-howto-orb-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.revma-frontpage .revma-howto-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    top: 50%;
    right: -80px;
    animation-delay: -5s;
}

.revma-frontpage .revma-howto-orb-3 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    bottom: -80px;
    left: 30%;
    animation-delay: -10s;
}

@keyframes howtoOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
    50% { transform: translate(30px, -30px) scale(1.15); opacity: 0.35; }
}

.revma-frontpage .revma-howto-premium-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Premium Header */
.revma-frontpage .revma-howto-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.revma-frontpage .revma-howto-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.revma-frontpage .revma-howto-badge svg {
    animation: howtoToolSpin 3s ease-in-out infinite;
}

@keyframes howtoToolSpin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.revma-frontpage .revma-howto-premium-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.revma-frontpage .revma-howto-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Connection Line (Desktop) */
.revma-frontpage .revma-howto-connection-line {
    display: none;
}

@media (min-width: 769px) {
    .revma-frontpage .revma-howto-connection-line {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;
        height: 3px;
        background: linear-gradient(90deg,
            transparent 0%,
            rgba(59, 130, 246, 0.5) 15%,
            rgba(34, 197, 94, 0.5) 50%,
            rgba(139, 92, 246, 0.5) 85%,
            transparent 100%
        );
        z-index: 0;
        margin-top: 80px;
    }
}

/* Premium Steps Grid */
.revma-frontpage .revma-howto-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Premium Step Card */
.revma-frontpage .revma-howto-premium-card {
    position: relative;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.revma-frontpage .revma-howto-premium-card:hover {
    transform: translateY(-10px);
}

/* Animated Glow Border */
.revma-frontpage .revma-howto-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: howtoGlowRotate 5s linear infinite;
}

.revma-frontpage .revma-howto-premium-card[data-step="1"] .revma-howto-card-glow {
    background: conic-gradient(from 0deg, transparent, #3b82f6, transparent, #60a5fa, transparent);
}

.revma-frontpage .revma-howto-premium-card[data-step="2"] .revma-howto-card-glow {
    background: conic-gradient(from 120deg, transparent, #22c55e, transparent, #4ade80, transparent);
}

.revma-frontpage .revma-howto-premium-card[data-step="3"] .revma-howto-card-glow {
    background: conic-gradient(from 240deg, transparent, #8b5cf6, transparent, #a855f7, transparent);
}

.revma-frontpage .revma-howto-premium-card:hover .revma-howto-card-glow {
    opacity: 1;
}

@keyframes howtoGlowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Card Inner (Glassmorphism) */
.revma-frontpage .revma-howto-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 36px 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    height: 100%;
}

/* Step Number with Ring */
.revma-frontpage .revma-howto-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    z-index: 2;
}

.revma-frontpage .revma-howto-step-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: howtoRingPulse 3s ease-in-out infinite;
}

.revma-frontpage .revma-howto-premium-card[data-step="1"] .revma-howto-step-ring {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.revma-frontpage .revma-howto-premium-card[data-step="2"] .revma-howto-step-ring {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.revma-frontpage .revma-howto-premium-card[data-step="3"] .revma-howto-step-ring {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.revma-frontpage .revma-howto-step-number span {
    position: relative;
    z-index: 1;
}

@keyframes howtoRingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Icon Wrapper */
.revma-frontpage .revma-howto-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 20px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.revma-frontpage .revma-howto-icon-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.revma-frontpage .revma-howto-icon-blue svg {
    stroke: #60a5fa;
}

.revma-frontpage .revma-howto-icon-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.revma-frontpage .revma-howto-icon-green svg {
    stroke: #4ade80;
}

.revma-frontpage .revma-howto-icon-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.revma-frontpage .revma-howto-icon-purple svg {
    stroke: #a78bfa;
}

.revma-frontpage .revma-howto-premium-card:hover .revma-howto-icon-wrapper {
    transform: scale(1.1);
}

/* Card Text */
.revma-frontpage .revma-howto-card-inner h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin: 0 0 12px;
}

.revma-frontpage .revma-howto-card-inner p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

/* CTA Wrapper */
.revma-frontpage .revma-howto-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.revma-frontpage .revma-howto-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.revma-frontpage .revma-howto-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.45);
}

.revma-frontpage .revma-howto-cta-btn svg {
    transition: transform 0.3s ease;
}

.revma-frontpage .revma-howto-cta-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 900px) {
    .revma-frontpage .revma-howto-premium-section {
        padding: 60px 20px 50px;
    }

    .revma-frontpage .revma-howto-premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
        margin: 0 auto;
    }

    .revma-frontpage .revma-howto-orb-1,
    .revma-frontpage .revma-howto-orb-2,
    .revma-frontpage .revma-howto-orb-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .revma-frontpage .revma-howto-premium-header h2 {
        font-size: 1.7rem;
    }

    .revma-frontpage .revma-howto-card-inner {
        padding: 30px 22px 26px;
    }

    .revma-frontpage .revma-howto-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .revma-frontpage .revma-howto-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }

    .revma-frontpage .revma-howto-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PROVIDERS SECTION - Ultra Premium Dark Design
============================================ */
.revma-frontpage .revma-providers-premium-section {
    padding: 80px 24px 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Animated Background Orbs */
.revma-frontpage .revma-providers-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-frontpage .revma-providers-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: providersOrbFloat 16s ease-in-out infinite;
}

.revma-frontpage .revma-providers-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.revma-frontpage .revma-providers-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    bottom: -100px;
    left: -100px;
    animation-delay: -8s;
}

@keyframes providersOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
    50% { transform: translate(25px, -30px) scale(1.1); opacity: 0.35; }
}

.revma-frontpage .revma-providers-premium-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Premium Header */
.revma-frontpage .revma-providers-premium-header {
    text-align: center;
    margin-bottom: 45px;
}

.revma-frontpage .revma-providers-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.revma-frontpage .revma-providers-badge svg {
    animation: providersShieldPulse 2s ease-in-out infinite;
}

@keyframes providersShieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.revma-frontpage .revma-providers-premium-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.revma-frontpage .revma-providers-highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: providersHighlightShift 3s ease infinite;
}

@keyframes providersHighlightShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.revma-frontpage .revma-providers-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Premium Providers Grid */
.revma-frontpage .revma-providers-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

/* Premium Provider Card */
.revma-frontpage .revma-provider-premium-card {
    position: relative;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.revma-frontpage .revma-provider-premium-card:hover {
    transform: translateY(-6px);
}

/* Animated Glow Border */
.revma-frontpage .revma-provider-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: conic-gradient(from 0deg, transparent, #f59e0b, transparent, #fbbf24, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: providerGlowRotate 5s linear infinite;
}

.revma-frontpage .revma-provider-premium-card:hover .revma-provider-card-glow {
    opacity: 1;
}

@keyframes providerGlowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Card Inner (Glassmorphism) */
.revma-frontpage .revma-provider-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-provider-premium-card:hover .revma-provider-card-inner {
    background: linear-gradient(145deg, rgba(40, 51, 69, 0.9), rgba(20, 28, 47, 0.98));
    border-color: rgba(255, 255, 255, 0.15);
}

.revma-frontpage .revma-provider-card-inner img {
    max-width: 110px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: white;
    padding: 12px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-provider-premium-card:hover .revma-provider-card-inner img {
    transform: scale(1.05);
}

.revma-frontpage .revma-provider-name-fallback {
    display: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
}

.revma-frontpage .revma-provider-name-text {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

/* Trust Note */
.revma-frontpage .revma-providers-trust-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 12px;
    padding: 14px 24px;
    max-width: 600px;
    margin: 0 auto;
}

.revma-frontpage .revma-trust-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
}

.revma-frontpage .revma-trust-icon svg {
    stroke: #4ade80;
}

.revma-frontpage .revma-providers-trust-note span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
    .revma-frontpage .revma-providers-premium-section {
        padding: 60px 20px 50px;
    }

    .revma-frontpage .revma-providers-premium-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .revma-frontpage .revma-providers-orb-1 {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -60px;
    }

    .revma-frontpage .revma-providers-orb-2 {
        width: 200px;
        height: 200px;
        bottom: -60px;
        left: -60px;
    }
}

@media (max-width: 600px) {
    .revma-frontpage .revma-providers-premium-header h2 {
        font-size: 1.6rem;
    }

    .revma-frontpage .revma-providers-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .revma-frontpage .revma-provider-card-inner {
        padding: 16px 12px;
        min-height: 75px;
    }

    .revma-frontpage .revma-provider-card-inner img {
        max-width: 90px;
        max-height: 40px;
        padding: 10px 14px;
    }

    .revma-frontpage .revma-providers-trust-note {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }
}

/* Premium Filter Chips */
.revma-frontpage .revma-providers-premium-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
}

.revma-frontpage .revma-filter-premium-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.revma-frontpage .revma-filter-premium-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-filter-premium-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.revma-frontpage .revma-filter-premium-chip.active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: transparent;
    color: #0f172a;
    font-weight: 600;
}

.revma-frontpage .revma-filter-premium-chip .revma-filter-count {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.revma-frontpage .revma-filter-premium-chip.active .revma-filter-count {
    background: rgba(255, 255, 255, 0.3);
}

.revma-frontpage .revma-sort-premium {
    position: relative;
}

.revma-frontpage .revma-sort-premium-select {
    appearance: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 40px 10px 16px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.revma-frontpage .revma-sort-premium-select:hover,
.revma-frontpage .revma-sort-premium-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    outline: none;
}

/* Premium Provider Link */
.revma-frontpage .revma-provider-premium-link {
    text-decoration: none;
    display: block;
}

.revma-frontpage .revma-provider-premium-link.filtered-out {
    display: none !important;
}

/* Premium Provider Card - Full Version */
.revma-frontpage .revma-provider-premium-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.revma-frontpage .revma-provider-premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.revma-frontpage .revma-provider-premium-card .revma-provider-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: conic-gradient(from 0deg, transparent, #f59e0b, transparent, #fbbf24, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: providerGlowRotate 5s linear infinite;
    z-index: -1;
}

.revma-frontpage .revma-provider-premium-card:hover .revma-provider-card-glow {
    opacity: 1;
}

/* Provider Badges */
.revma-frontpage .revma-provider-premium-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
}

.revma-frontpage .revma-premium-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.revma-frontpage .revma-premium-badge--popular {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.revma-frontpage .revma-premium-badge--fixed_price {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.revma-frontpage .revma-premium-badge--no_clause {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
}

.revma-frontpage .revma-premium-badge--best_value {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
}

.revma-frontpage .revma-premium-badge--new_offer {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
}

.revma-frontpage .revma-premium-badge--green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

/* Provider Logo */
.revma-frontpage .revma-provider-premium-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    min-height: 70px;
    margin-top: 20px;
}

.revma-frontpage .revma-provider-premium-logo img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.revma-frontpage .revma-provider-premium-card:hover .revma-provider-premium-logo img {
    transform: scale(1.05);
}

.revma-frontpage .revma-provider-premium-fallback {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

/* Provider Content */
.revma-frontpage .revma-provider-premium-content {
    text-align: center;
}

.revma-frontpage .revma-provider-premium-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin: 0 0 6px;
}

.revma-frontpage .revma-provider-premium-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

/* Provider Trust Indicators */
.revma-frontpage .revma-provider-premium-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.revma-frontpage .revma-provider-premium-trust span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.revma-frontpage .revma-provider-premium-trust svg {
    stroke: #4ade80;
    width: 12px;
    height: 12px;
}

/* Provider Actions */
.revma-frontpage .revma-provider-premium-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.revma-frontpage .revma-provider-premium-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-provider-premium-card:hover .revma-provider-premium-cta {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: scale(1.02);
}

.revma-frontpage .revma-provider-premium-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.revma-frontpage .revma-ask-ai-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: #a78bfa;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-ask-ai-premium-btn:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
}

.revma-frontpage .revma-provider-premium-rae {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Disclaimer */
.revma-frontpage .revma-providers-premium-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 20px;
    margin-top: 10px;
}

.revma-frontpage .revma-providers-premium-disclaimer svg {
    stroke: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.revma-frontpage .revma-providers-premium-disclaimer span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive for Full Provider Cards */
@media (max-width: 1100px) {
    .revma-frontpage .revma-providers-premium-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .revma-frontpage .revma-providers-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .revma-frontpage .revma-providers-premium-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .revma-frontpage .revma-filter-premium-chips {
        justify-content: center;
    }

    .revma-frontpage .revma-sort-premium {
        width: 100%;
    }

    .revma-frontpage .revma-sort-premium-select {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .revma-frontpage .revma-providers-premium-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .revma-frontpage .revma-filter-premium-chip {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .revma-frontpage .revma-provider-premium-trust {
        gap: 8px;
    }

    .revma-frontpage .revma-provider-premium-trust span {
        font-size: 0.65rem;
    }
}

/* ============================================
   FAQ SECTION - Ultra Premium Dark Design
============================================ */
.revma-frontpage .revma-faq-premium-section {
    padding: 80px 24px 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Animated Background Orbs */
.revma-frontpage .revma-faq-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-frontpage .revma-faq-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: faqOrbFloat 15s ease-in-out infinite;
}

.revma-frontpage .revma-faq-orb-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.revma-frontpage .revma-faq-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    bottom: -80px;
    right: -80px;
    animation-delay: -7s;
}

@keyframes faqOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
    50% { transform: translate(20px, -25px) scale(1.1); opacity: 0.35; }
}

.revma-frontpage .revma-faq-premium-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Premium Header */
.revma-frontpage .revma-faq-premium-header {
    text-align: center;
    margin-bottom: 45px;
}

.revma-frontpage .revma-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #f472b6;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.revma-frontpage .revma-faq-badge svg {
    animation: faqQuestionPulse 2s ease-in-out infinite;
}

@keyframes faqQuestionPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.revma-frontpage .revma-faq-premium-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.revma-frontpage .revma-faq-highlight {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 50%, #f472b6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: faqHighlightShift 3s ease infinite;
}

@keyframes faqHighlightShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.revma-frontpage .revma-faq-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Premium FAQ List */
.revma-frontpage .revma-faq-premium-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Premium FAQ Item */
.revma-frontpage .revma-faq-premium-item {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-faq-premium-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.revma-frontpage .revma-faq-premium-item[open] {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.1);
}

/* Premium Question */
.revma-frontpage .revma-faq-premium-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-faq-premium-question::-webkit-details-marker {
    display: none;
}

.revma-frontpage .revma-faq-premium-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.revma-frontpage .revma-faq-q-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-faq-q-icon svg {
    stroke: #f472b6;
}

.revma-frontpage .revma-faq-premium-item[open] .revma-faq-q-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(219, 39, 119, 0.2));
    transform: scale(1.05);
}

.revma-frontpage .revma-faq-premium-question span {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

.revma-frontpage .revma-faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-faq-toggle svg {
    stroke: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.revma-frontpage .revma-faq-premium-item[open] .revma-faq-toggle {
    background: rgba(236, 72, 153, 0.2);
}

.revma-frontpage .revma-faq-premium-item[open] .revma-faq-toggle svg {
    stroke: #f472b6;
    transform: rotate(180deg);
}

/* Premium Answer */
.revma-frontpage .revma-faq-premium-answer {
    padding: 0 22px 22px 76px;
    animation: faqAnswerSlide 0.3s ease;
}

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

.revma-frontpage .revma-faq-premium-answer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin: 0;
}

.revma-frontpage .revma-faq-premium-answer a {
    color: #f472b6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.revma-frontpage .revma-faq-premium-answer a:hover {
    color: #fb7185;
    text-decoration: underline;
}

.revma-frontpage .revma-faq-premium-answer strong {
    color: white;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .revma-frontpage .revma-faq-premium-section {
        padding: 60px 20px 50px;
    }

    .revma-frontpage .revma-faq-premium-header h2 {
        font-size: 1.6rem;
    }

    .revma-frontpage .revma-faq-orb-1 {
        width: 200px;
        height: 200px;
        top: -60px;
        left: -60px;
    }

    .revma-frontpage .revma-faq-orb-2 {
        width: 180px;
        height: 180px;
        bottom: -50px;
        right: -50px;
    }

    .revma-frontpage .revma-faq-premium-question {
        padding: 16px 18px;
        gap: 12px;
    }

    .revma-frontpage .revma-faq-q-icon {
        width: 36px;
        height: 36px;
    }

    .revma-frontpage .revma-faq-q-icon svg {
        width: 16px;
        height: 16px;
    }

    .revma-frontpage .revma-faq-premium-question span {
        font-size: 0.95rem;
    }

    .revma-frontpage .revma-faq-premium-answer {
        padding: 0 18px 18px 66px;
    }

    .revma-frontpage .revma-faq-premium-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .revma-frontpage .revma-faq-premium-answer {
        padding: 0 16px 16px 16px;
    }
}

/* ============================================
   FAQ SECTION - Premium Dark for Kostos Page
   (Yellow accent color to match educational sections)
============================================ */
.revma-kostos-page .revma-faq-premium-section {
    padding: 80px 24px 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Animated Background Orbs */
.revma-kostos-page .revma-faq-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-kostos-page .revma-faq-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: faqOrbFloat 15s ease-in-out infinite;
}

.revma-kostos-page .revma-faq-orb-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.revma-kostos-page .revma-faq-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    bottom: -80px;
    right: -80px;
    animation-delay: -7s;
}

.revma-kostos-page .revma-faq-premium-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Premium Header */
.revma-kostos-page .revma-faq-premium-header {
    text-align: center;
    margin-bottom: 45px;
}

.revma-kostos-page .revma-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.revma-kostos-page .revma-faq-badge svg {
    animation: faqQuestionPulse 2s ease-in-out infinite;
}

.revma-kostos-page .revma-faq-premium-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.revma-kostos-page .revma-faq-highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: faqHighlightShift 3s ease infinite;
}

.revma-kostos-page .revma-faq-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Premium FAQ List */
.revma-kostos-page .revma-faq-premium-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Premium FAQ Item */
.revma-kostos-page .revma-faq-premium-item {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.revma-kostos-page .revma-faq-premium-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.revma-kostos-page .revma-faq-premium-item[open] {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.1);
}

/* Premium Question */
.revma-kostos-page .revma-faq-premium-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    transition: all 0.3s ease;
}

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

.revma-kostos-page .revma-faq-premium-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.revma-kostos-page .revma-faq-q-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.revma-kostos-page .revma-faq-q-icon svg {
    stroke: #fbbf24;
    width: 20px;
    height: 20px;
}

.revma-kostos-page .revma-faq-premium-item[open] .revma-faq-q-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.2));
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.revma-kostos-page .revma-faq-premium-question span {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

.revma-kostos-page .revma-faq-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.revma-kostos-page .revma-faq-toggle svg {
    stroke: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.revma-kostos-page .revma-faq-premium-item[open] .revma-faq-toggle {
    background: rgba(251, 191, 36, 0.2);
}

.revma-kostos-page .revma-faq-premium-item[open] .revma-faq-toggle svg {
    stroke: #fbbf24;
    transform: rotate(180deg);
}

/* Premium Answer */
.revma-kostos-page .revma-faq-premium-answer {
    padding: 0 22px 24px 80px;
    animation: faqAnswerSlide 0.3s ease;
}

.revma-kostos-page .revma-faq-premium-answer p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin: 0 0 12px;
}

.revma-kostos-page .revma-faq-premium-answer p:last-child {
    margin-bottom: 0;
}

.revma-kostos-page .revma-faq-premium-answer ul {
    margin: 12px 0;
    padding-left: 20px;
}

.revma-kostos-page .revma-faq-premium-answer li {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
    position: relative;
}

.revma-kostos-page .revma-faq-premium-answer li::marker {
    color: #fbbf24;
}

.revma-kostos-page .revma-faq-premium-answer strong {
    color: #fbbf24;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .revma-kostos-page .revma-faq-premium-section {
        padding: 60px 20px 50px;
    }

    .revma-kostos-page .revma-faq-premium-header h2 {
        font-size: 1.7rem;
    }

    .revma-kostos-page .revma-faq-orb-1 {
        width: 200px;
        height: 200px;
        top: -60px;
        left: -60px;
    }

    .revma-kostos-page .revma-faq-orb-2 {
        width: 180px;
        height: 180px;
        bottom: -50px;
        right: -50px;
    }

    .revma-kostos-page .revma-faq-premium-question {
        padding: 16px 18px;
        gap: 12px;
    }

    .revma-kostos-page .revma-faq-q-icon {
        width: 38px;
        height: 38px;
    }

    .revma-kostos-page .revma-faq-q-icon svg {
        width: 18px;
        height: 18px;
    }

    .revma-kostos-page .revma-faq-premium-question span {
        font-size: 0.95rem;
    }

    .revma-kostos-page .revma-faq-premium-answer {
        padding: 0 18px 18px 68px;
    }

    .revma-kostos-page .revma-faq-premium-answer p {
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .revma-kostos-page .revma-faq-premium-answer {
        padding: 0 16px 16px 16px;
    }
}

/* ============================================
   INTERNAL LINKS - Premium Dark for Kostos Page
============================================ */
.revma-kostos-page .revma-links-premium-section {
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.revma-kostos-page .revma-links-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-kostos-page .revma-links-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.revma-kostos-page .revma-links-orb-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    top: -50px;
    right: 10%;
}

.revma-kostos-page .revma-links-premium-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.revma-kostos-page .revma-links-premium-header {
    text-align: center;
    margin-bottom: 30px;
}

.revma-kostos-page .revma-links-premium-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.revma-kostos-page .revma-links-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.revma-kostos-page .revma-link-premium-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.revma-kostos-page .revma-link-premium-card:hover {
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.1);
}

.revma-kostos-page .revma-link-premium-card strong {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.revma-kostos-page .revma-link-premium-card strong svg {
    stroke: #fbbf24;
    flex-shrink: 0;
}

.revma-kostos-page .revma-link-premium-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   E-E-A-T TRUST SECTION - Premium Dark for Kostos Page
============================================ */
.revma-kostos-page .revma-trust-premium-section {
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.revma-kostos-page .revma-trust-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-kostos-page .revma-trust-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: trustOrbFloat 18s ease-in-out infinite;
}

.revma-kostos-page .revma-trust-orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    bottom: -100px;
    left: -100px;
}

.revma-kostos-page .revma-trust-orb-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    top: -80px;
    right: -80px;
    animation-delay: -9s;
}

@keyframes trustOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    50% { transform: translate(15px, -20px) scale(1.08); opacity: 0.28; }
}

.revma-kostos-page .revma-trust-premium-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.revma-kostos-page .revma-trust-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.revma-kostos-page .revma-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.revma-kostos-page .revma-trust-premium-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
}

.revma-kostos-page .revma-trust-highlight {
    color: #22c55e;
}

.revma-kostos-page .revma-trust-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.revma-kostos-page .revma-trust-premium-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.revma-kostos-page .revma-trust-premium-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-4px);
}

.revma-kostos-page .revma-trust-premium-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 18px;
}

.revma-kostos-page .revma-trust-premium-icon svg {
    stroke: #22c55e;
}

.revma-kostos-page .revma-trust-premium-icon.icon-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
    border-color: rgba(59, 130, 246, 0.3);
}

.revma-kostos-page .revma-trust-premium-icon.icon-blue svg {
    stroke: #3b82f6;
}

.revma-kostos-page .revma-trust-premium-icon.icon-yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.1));
    border-color: rgba(251, 191, 36, 0.3);
}

.revma-kostos-page .revma-trust-premium-icon.icon-yellow svg {
    stroke: #fbbf24;
}

.revma-kostos-page .revma-trust-premium-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin: 0 0 12px;
}

.revma-kostos-page .revma-trust-premium-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.revma-kostos-page .revma-trust-premium-contact {
    text-align: center;
    padding: 24px 32px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.revma-kostos-page .revma-trust-premium-contact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.revma-kostos-page .revma-trust-premium-contact a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.revma-kostos-page .revma-trust-premium-contact a:hover {
    color: #4ade80;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .revma-kostos-page .revma-links-premium-section {
        padding: 50px 20px;
    }

    .revma-kostos-page .revma-trust-premium-section {
        padding: 60px 20px;
    }

    .revma-kostos-page .revma-trust-premium-header h3 {
        font-size: 1.6rem;
    }

    .revma-kostos-page .revma-trust-premium-card {
        padding: 24px;
    }

    .revma-kostos-page .revma-trust-premium-icon {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   CTA SECTION - Ultra Premium Dark Design
============================================ */
.revma-frontpage .revma-cta-premium-section {
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Animated Background Orbs */
.revma-frontpage .revma-cta-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-frontpage .revma-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: ctaOrbFloat 12s ease-in-out infinite;
}

.revma-frontpage .revma-cta-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.revma-frontpage .revma-cta-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    bottom: -100px;
    left: -80px;
    animation-delay: -4s;
}

.revma-frontpage .revma-cta-orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    bottom: -80px;
    right: -80px;
    animation-delay: -8s;
}

@keyframes ctaOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(20px, -25px) scale(1.15); opacity: 0.4; }
}

.revma-frontpage .revma-cta-premium-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Premium CTA Card */
.revma-frontpage .revma-cta-premium-card {
    position: relative;
    border-radius: 28px;
}

/* Animated Glow Border */
.revma-frontpage .revma-cta-card-glow {
    position: absolute;
    inset: -3px;
    border-radius: 31px;
    background: conic-gradient(from 0deg, #3b82f6, #22c55e, #f59e0b, #ec4899, #8b5cf6, #3b82f6);
    opacity: 0.8;
    animation: ctaGlowRotate 6s linear infinite;
}

@keyframes ctaGlowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Card Inner (Glassmorphism) */
.revma-frontpage .revma-cta-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    backdrop-filter: blur(30px);
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
}

/* Premium Badge */
.revma-frontpage .revma-cta-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 197, 94, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.revma-frontpage .revma-cta-premium-badge svg {
    stroke: #fbbf24;
    animation: ctaBoltPulse 1.5s ease-in-out infinite;
}

@keyframes ctaBoltPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Title */
.revma-frontpage .revma-cta-premium-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.revma-frontpage .revma-cta-highlight {
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #22c55e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ctaHighlightShift 3s ease infinite;
}

@keyframes ctaHighlightShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Subtitle */
.revma-frontpage .revma-cta-premium-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 32px;
    line-height: 1.5;
}

.revma-frontpage .revma-cta-premium-subtitle strong {
    color: white;
    font-weight: 700;
}

/* CTA Buttons */
.revma-frontpage .revma-cta-premium-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

/* Primary CTA Button */
.revma-frontpage .revma-cta-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.4);
    overflow: hidden;
}

.revma-frontpage .revma-cta-btn-primary .revma-cta-btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.revma-frontpage .revma-cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.5);
}

.revma-frontpage .revma-cta-btn-primary:hover .revma-cta-btn-glow {
    opacity: 1;
}

.revma-frontpage .revma-cta-btn-primary svg,
.revma-frontpage .revma-cta-btn-primary span {
    position: relative;
    z-index: 1;
}

/* Secondary Buttons */
.revma-frontpage .revma-cta-secondary-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.revma-frontpage .revma-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.revma-frontpage .revma-cta-btn-secondary svg {
    stroke: #60a5fa;
}

/* Trust Badges */
.revma-frontpage .revma-cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.revma-frontpage .revma-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.revma-frontpage .revma-trust-badge-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.revma-frontpage .revma-trust-icon-blue {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.revma-frontpage .revma-trust-icon-blue svg {
    stroke: #60a5fa;
}

.revma-frontpage .revma-trust-icon-yellow {
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.revma-frontpage .revma-trust-icon-yellow svg {
    stroke: #fbbf24;
}

.revma-frontpage .revma-trust-icon-green {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.revma-frontpage .revma-trust-icon-green svg {
    stroke: #4ade80;
}

.revma-frontpage .revma-cta-trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .revma-frontpage .revma-cta-premium-section {
        padding: 60px 20px;
    }

    .revma-frontpage .revma-cta-card-inner {
        padding: 40px 24px;
    }

    .revma-frontpage .revma-cta-premium-title {
        font-size: 1.7rem;
    }

    .revma-frontpage .revma-cta-premium-subtitle {
        font-size: 1rem;
    }

    .revma-frontpage .revma-cta-btn-primary {
        width: 100%;
        padding: 16px 28px;
        font-size: 1rem;
    }

    .revma-frontpage .revma-cta-secondary-btns {
        flex-direction: column;
        width: 100%;
    }

    .revma-frontpage .revma-cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .revma-frontpage .revma-cta-trust-badges {
        gap: 16px;
    }

    .revma-frontpage .revma-cta-orb-1 {
        width: 250px;
        height: 250px;
        top: -100px;
    }

    .revma-frontpage .revma-cta-orb-2,
    .revma-frontpage .revma-cta-orb-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .revma-frontpage .revma-cta-card-inner {
        padding: 32px 20px;
    }

    .revma-frontpage .revma-cta-premium-badge {
        font-size: 0.7rem;
        padding: 10px 16px;
    }

    .revma-frontpage .revma-cta-premium-title {
        font-size: 1.5rem;
    }

    .revma-frontpage .revma-cta-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ============================================
   CALCULATOR SECTION - Ultra Premium Dark Design
============================================ */
.revma-frontpage .revma-calculator-premium-section {
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Animated Background Orbs */
.revma-frontpage .revma-calc-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-frontpage .revma-calc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: calcOrbFloat 14s ease-in-out infinite;
}

.revma-frontpage .revma-calc-orb-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.revma-frontpage .revma-calc-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.revma-frontpage .revma-calc-orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    bottom: -80px;
    right: -80px;
    animation-delay: -10s;
}

@keyframes calcOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(20px, -25px) scale(1.1); opacity: 0.4; }
}

.revma-frontpage .revma-calc-premium-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Premium Progress Steps */
.revma-frontpage .revma-progress-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 50px;
    padding: 0 20px;
}

.revma-frontpage .revma-progress-premium-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.revma-frontpage .revma-progress-premium-ring {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.revma-frontpage .revma-progress-premium-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.revma-frontpage .revma-progress-premium-number {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.revma-frontpage .revma-progress-premium-step span {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-weight: 500;
    transition: all 0.4s ease;
}

/* Active Step */
.revma-frontpage .revma-progress-premium-step.active .revma-progress-premium-ring::before {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.revma-frontpage .revma-progress-premium-step.active .revma-progress-premium-number {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
}

.revma-frontpage .revma-progress-premium-step.active span {
    color: white;
    font-weight: 600;
}

/* Connector Lines */
.revma-frontpage .revma-progress-premium-connector {
    flex: 1;
    height: 3px;
    max-width: 80px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    margin: 0 8px;
    margin-bottom: 35px;
    border-radius: 2px;
}

/* Premium Header */
.revma-frontpage .revma-calc-premium-header {
    text-align: center;
    margin-bottom: 40px;
}

.revma-frontpage .revma-calc-premium-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.revma-frontpage .revma-calc-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #3b82f6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: calcHighlightShift 3s ease infinite;
}

@keyframes calcHighlightShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.revma-frontpage .revma-calc-premium-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.revma-frontpage .revma-calc-premium-header p strong {
    color: #fbbf24;
    font-weight: 700;
}

/* Calculator Card with Glow */
.revma-frontpage .revma-calculator-premium-card {
    position: relative;
    border-radius: 24px;
    margin-bottom: 30px;
}

.revma-frontpage .revma-calculator-card-glow {
    position: absolute;
    inset: -3px;
    border-radius: 27px;
    background: conic-gradient(from 0deg, #3b82f6, #22c55e, #f59e0b, #3b82f6);
    opacity: 0.6;
    animation: calcGlowRotate 8s linear infinite;
}

@keyframes calcGlowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.revma-frontpage .revma-calculator-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Quick Help Premium */
.revma-frontpage .revma-calc-help-premium {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 600px;
    margin: 0 auto;
}

.revma-frontpage .revma-help-premium-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.revma-frontpage .revma-help-premium-icon svg {
    stroke: #fbbf24;
}

.revma-frontpage .revma-help-premium-content strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.revma-frontpage .revma-help-premium-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .revma-frontpage .revma-calculator-premium-section {
        padding: 60px 16px 80px;
    }

    .revma-frontpage .revma-progress-premium {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 40px;
    }

    .revma-frontpage .revma-progress-premium-connector {
        display: none;
    }

    .revma-frontpage .revma-progress-premium-step {
        flex: 0 0 45%;
        margin-bottom: 16px;
    }

    .revma-frontpage .revma-progress-premium-ring {
        width: 50px;
        height: 50px;
    }

    .revma-frontpage .revma-progress-premium-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .revma-frontpage .revma-progress-premium-step span {
        font-size: 0.8rem;
    }

    .revma-frontpage .revma-calc-premium-header h2 {
        font-size: 1.7rem;
    }

    .revma-frontpage .revma-calc-premium-header p {
        font-size: 1rem;
    }

    .revma-frontpage .revma-calculator-card-inner {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .revma-frontpage .revma-calc-orb-1 {
        width: 280px;
        height: 280px;
        top: -100px;
    }

    .revma-frontpage .revma-calc-orb-2,
    .revma-frontpage .revma-calc-orb-3 {
        width: 180px;
        height: 180px;
    }

    .revma-frontpage .revma-calc-help-premium {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .revma-frontpage .revma-calculator-card-inner {
        padding: 20px 14px;
    }

    .revma-frontpage .revma-calc-premium-header h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   HEADER - Ultra Premium Dark Design
============================================ */
.revma-frontpage .revma-site-header {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 16px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.revma-frontpage .revma-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.revma-frontpage .revma-main-nav {
    display: flex;
    gap: 32px;
}

.revma-frontpage .revma-main-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.revma-frontpage .revma-main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.3s ease;
}

.revma-frontpage .revma-main-nav a:hover {
    color: white;
}

.revma-frontpage .revma-main-nav a:hover::after {
    width: 100%;
}

/* Live Bar - Enhanced Dark Theme */
.revma-frontpage .revma-live-bar {
    background: linear-gradient(90deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.revma-frontpage .revma-live-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.95rem;
}

.revma-frontpage .revma-live-indicator svg {
    stroke: #60a5fa;
}

.revma-frontpage .revma-live-indicator strong {
    color: #60a5fa;
    font-weight: 700;
}

.revma-frontpage .revma-live-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.revma-frontpage .revma-live-stat svg {
    stroke: #60a5fa;
}

.revma-frontpage .revma-live-stat a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.revma-frontpage .revma-live-stat a:hover {
    color: #60a5fa;
}

/* Responsive Header */
@media (max-width: 768px) {
    .revma-frontpage .revma-site-header {
        padding: 14px 20px;
    }

    .revma-frontpage .revma-header-container {
        flex-direction: column;
        gap: 14px;
    }

    .revma-frontpage .revma-main-nav {
        gap: 20px;
    }

    .revma-frontpage .revma-main-nav a {
        font-size: 0.9rem;
    }

    .revma-frontpage .revma-live-bar {
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
        text-align: center;
    }

    .revma-frontpage .revma-live-indicator {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        font-size: 0.88rem;
    }

    .revma-frontpage .revma-live-stat {
        font-size: 0.85rem;
    }
}

/* ============================================
   FOOTER - Ultra Premium Dark Theme
============================================ */
.revma-frontpage .revma-footer-premium {
    position: relative;
    background: linear-gradient(180deg, #0a0f1a 0%, #0f172a 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Animated Background Orbs */
.revma-frontpage .revma-footer-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-frontpage .revma-footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: footerOrbFloat 12s ease-in-out infinite;
}

.revma-frontpage .revma-footer-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    top: -150px;
    left: 10%;
    animation-delay: 0s;
}

.revma-frontpage .revma-footer-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    bottom: -100px;
    right: 15%;
    animation-delay: -4s;
}

.revma-frontpage .revma-footer-orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
}

@keyframes footerOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
    50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.35; }
}

/* Top Gradient Line */
.revma-frontpage .revma-footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.3) 20%,
        rgba(139, 92, 246, 0.5) 50%,
        rgba(59, 130, 246, 0.3) 80%,
        transparent 100%
    );
}

/* Container */
.revma-frontpage .revma-footer-premium-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 60px;
    position: relative;
    z-index: 1;
}

/* Main Grid */
.revma-frontpage .revma-footer-premium-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 60px;
}

/* Brand Column */
.revma-frontpage .revma-footer-premium-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.revma-frontpage .revma-footer-logo-link {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.revma-frontpage .revma-footer-logo-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
}

.revma-frontpage .revma-footer-premium-logo {
    width: 160px;
    height: auto;
}

.revma-frontpage .revma-footer-premium-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 280px;
}

/* Trust Badge */
.revma-frontpage .revma-footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 100px;
    padding: 10px 18px;
    margin-top: 8px;
    width: fit-content;
}

.revma-frontpage .revma-footer-trust-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.revma-frontpage .revma-footer-trust-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Column Titles */
.revma-frontpage .revma-footer-premium-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.revma-frontpage .revma-footer-title-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

/* List Styles */
.revma-frontpage .revma-footer-premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.revma-frontpage .revma-footer-premium-list li {
    margin-bottom: 14px;
}

.revma-frontpage .revma-footer-premium-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.revma-frontpage .revma-footer-premium-list a::before {
    content: '';
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

.revma-frontpage .revma-footer-premium-list a:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

.revma-frontpage .revma-footer-premium-list a:hover::before {
    width: 100%;
}

/* Contact List */
.revma-frontpage .revma-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.revma-frontpage .revma-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.revma-frontpage .revma-footer-contact-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-footer-contact-list li:hover .revma-footer-contact-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: transparent;
    color: white;
    transform: scale(1.05);
}

.revma-frontpage .revma-footer-contact-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.revma-frontpage .revma-footer-contact-list a:hover {
    color: #60a5fa;
}

/* Bottom Bar */
.revma-frontpage .revma-footer-premium-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

.revma-frontpage .revma-footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.revma-frontpage .revma-footer-copyright {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
}

.revma-frontpage .revma-footer-premium-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.revma-frontpage .revma-footer-premium-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.revma-frontpage .revma-footer-premium-links a:hover {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
    .revma-frontpage .revma-footer-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .revma-frontpage .revma-footer-premium-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .revma-frontpage .revma-footer-premium {
        padding-top: 60px;
    }

    .revma-frontpage .revma-footer-premium-container {
        padding: 0 20px 40px;
    }

    .revma-frontpage .revma-footer-premium-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .revma-frontpage .revma-footer-premium-brand {
        grid-column: span 1;
        text-align: center;
        align-items: center;
    }

    .revma-frontpage .revma-footer-premium-tagline {
        max-width: 100%;
    }

    .revma-frontpage .revma-footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .revma-frontpage .revma-footer-premium-links {
        justify-content: center;
    }

    /* Add padding for sticky bar */
    .revma-frontpage .revma-footer-premium {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .revma-frontpage .revma-footer-premium-links a {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* ============================================
   EDUCATIONAL SECTIONS - Premium Dark Theme
============================================ */

/* Base Section */
.revma-frontpage .revma-edu-premium-section {
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

/* Animated Background Orbs */
.revma-frontpage .revma-edu-premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.revma-frontpage .revma-edu-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
}

.revma-frontpage .revma-edu-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.revma-frontpage .revma-edu-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    animation-delay: -10s;
}

/* Premium Container */
.revma-frontpage .revma-edu-premium-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* Premium Header */
.revma-frontpage .revma-edu-premium-header {
    text-align: center;
    margin-bottom: 48px;
}

.revma-frontpage .revma-edu-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #60a5fa;
    margin-bottom: 20px;
}

.revma-frontpage .revma-edu-premium-badge svg {
    stroke: #60a5fa;
}

.revma-frontpage .revma-edu-premium-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.revma-frontpage .revma-edu-premium-header h2 .highlight {
    color: #fbbf24;
}

.revma-frontpage .revma-edu-premium-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Icon Box */
.revma-frontpage .revma-edu-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.revma-frontpage .revma-edu-icon-box svg {
    stroke: white;
}

.revma-frontpage .revma-edu-icon-box.icon-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.4);
}

.revma-frontpage .revma-edu-icon-box.icon-yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4);
}

/* Premium Cards Grid */
.revma-frontpage .revma-edu-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

/* Premium Example Card */
.revma-frontpage .revma-edu-premium-card {
    position: relative;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.revma-frontpage .revma-edu-premium-card:hover {
    transform: translateY(-4px);
}

.revma-frontpage .revma-edu-card-inner {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    height: 100%;
}

.revma-frontpage .revma-edu-card-emoji {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.revma-frontpage .revma-edu-card-inner strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.revma-frontpage .revma-edu-card-inner span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Premium Cost Breakdown */
.revma-frontpage .revma-cost-premium-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.revma-frontpage .revma-cost-premium-item {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.revma-frontpage .revma-cost-premium-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.revma-frontpage .revma-cost-premium-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.revma-frontpage .revma-cost-premium-number.num-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.revma-frontpage .revma-cost-premium-number.num-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.revma-frontpage .revma-cost-premium-number.num-yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.revma-frontpage .revma-cost-premium-number.num-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.revma-frontpage .revma-cost-premium-content h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.revma-frontpage .revma-cost-premium-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Premium Info Box */
.revma-frontpage .revma-info-premium-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.revma-frontpage .revma-info-premium-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.revma-frontpage .revma-info-premium-icon svg {
    stroke: white;
}

.revma-frontpage .revma-info-premium-content strong {
    display: block;
    color: #60a5fa;
    font-size: 1rem;
    margin-bottom: 8px;
}

.revma-frontpage .revma-info-premium-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.revma-frontpage .revma-info-premium-content strong.highlight-stat {
    color: #fbbf24;
    font-size: 1.25rem;
}

/* Premium Tip Box */
.revma-frontpage .revma-tip-premium-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.15));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 24px;
}

.revma-frontpage .revma-tip-premium-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.revma-frontpage .revma-tip-premium-content strong {
    display: block;
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 8px;
}

.revma-frontpage .revma-tip-premium-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Premium Disclaimer */
.revma-frontpage .revma-edu-disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 24px;
}

/* Premium Comparison Table */
.revma-frontpage .revma-comparison-premium-wrapper {
    margin-bottom: 32px;
}

.revma-frontpage .revma-comparison-premium-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 16px;
}

.revma-frontpage .revma-comparison-premium-table {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.revma-frontpage .revma-comparison-premium-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(59, 130, 246, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.revma-frontpage .revma-comparison-premium-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.revma-frontpage .revma-comparison-premium-row:last-child {
    border-bottom: none;
}

.revma-frontpage .revma-comparison-premium-cell {
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.revma-frontpage .revma-comparison-premium-header .revma-comparison-premium-cell {
    font-weight: 700;
    color: white;
}

.revma-frontpage .revma-comparison-premium-row.highlight-row {
    background: rgba(34, 197, 94, 0.15);
}

.revma-frontpage .revma-comparison-premium-row.highlight-row .revma-comparison-premium-cell {
    font-weight: 700;
    color: #22c55e;
}

.revma-frontpage .revma-comparison-premium-row.result-row {
    background: rgba(251, 191, 36, 0.1);
}

.revma-frontpage .revma-comparison-premium-row.result-row .revma-comparison-premium-cell.span-2 {
    grid-column: span 2;
    text-align: center;
    color: #fbbf24;
    font-weight: 600;
}

.revma-frontpage .revma-comparison-premium-footnote {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 12px;
}

/* Premium Conclusion */
.revma-frontpage .revma-edu-premium-conclusion {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.revma-frontpage .revma-edu-premium-conclusion strong {
    color: #fbbf24;
}

/* Responsive */
@media (max-width: 768px) {
    .revma-frontpage .revma-edu-premium-section {
        padding: 60px 20px;
    }

    .revma-frontpage .revma-edu-premium-header h2 {
        font-size: 1.5rem;
    }

    .revma-frontpage .revma-edu-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .revma-frontpage .revma-edu-card-inner {
        padding: 16px;
    }

    .revma-frontpage .revma-edu-card-emoji {
        font-size: 2rem;
    }

    .revma-frontpage .revma-cost-premium-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .revma-frontpage .revma-comparison-premium-header,
    .revma-frontpage .revma-comparison-premium-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .revma-frontpage .revma-comparison-premium-cell {
        padding: 12px;
        font-size: 0.85rem;
    }

    .revma-frontpage .revma-info-premium-box,
    .revma-frontpage .revma-tip-premium-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .revma-frontpage .revma-edu-premium-grid {
        grid-template-columns: 1fr 1fr;
    }
}
