/* Enhanced Styles - Visual Overrides */

/* Smooth Scrolling offset for fixed header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Gradient backgrounds for cards */
.review-card,
.faq-item,
.differential-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(20, 20, 25, 0.9) 100%);
}

.quality-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(20, 20, 25, 0.9) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Review card quote decoration */
.review-card {
    position: relative;
}

.review-card::after {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(212, 165, 32, 0.1);
    line-height: 1;
}

/* FAQ hover/active states */
.faq-item:hover {
    border-color: rgba(212, 165, 32, 0.3);
}

.faq-item.active {
    border-color: var(--color-primary);
}

/* Section label enhancement */
.section-label {
    font-weight: 700;
    border-color: rgba(212, 165, 32, 0.3);
    letter-spacing: 0.5px;
}

/* Featured plan card */
.plan-featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary), 0 8px 40px rgba(212, 165, 32, 0.3);
}

/* Process marker glow */
.process-marker {
    box-shadow: 0 0 0 4px var(--bg-dark), 0 4px 20px rgba(212, 165, 32, 0.4);
}

/* CTA wrapper gradient */
.cta-wrapper {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    box-shadow: 0 20px 60px rgba(212, 165, 32, 0.4);
}

/* Footer gradient */
.site-footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-top-color: rgba(212, 165, 32, 0.1);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
}

/* Skip Navigation Link */
.skip-link:focus {
    top: 0;
}

/* Focus Visible */
:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Print Styles */
@media print {
    .site-header,
    .btn-primary,
    .btn-plan,
    .btn-cta-final,
    .site-footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
