/* ============================================
   CSS Variables — Indigo / violet accent, warm neutrals
   ============================================ */
:root {
    /* Primary — deep indigo & violet */
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --primary-200: #c7d2fe;
    --primary-300: #a5b4fc;
    --primary-400: #818cf8;
    --primary-500: #6366f1;
    --primary-600: #4f46e5;
    --primary-700: #4338ca;
    --primary-800: #3730a3;
    --primary-900: #312e81;
    --primary-950: #1e1b4b;

    /* Neutrals — slightly warm stone */
    --gray-50: #fafaf9;
    --gray-100: #f5f5f4;
    --gray-200: #e7e5e4;
    --gray-300: #d6d3d1;
    --gray-400: #a8a29e;
    --gray-500: #78716c;
    --gray-600: #57534e;
    --gray-700: #44403c;
    --gray-800: #292524;
    --gray-900: #1c1917;

    /* Functional */
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Rating colors */
    --rating-outstanding: #3730a3;
    --rating-excellent: #4f46e5;
    --rating-verygood: #6366f1;
    --rating-good: #818cf8;

    /* Layout */
    --max-width: 1200px;
    --header-height: 60px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--gray-800);
    background-color: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   Container
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Top disclosure bar
   ============================================ */
.top-disclosure {
    background: linear-gradient(90deg, var(--primary-950) 0%, #312e81 50%, var(--primary-900) 100%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    text-align: center;
    padding: 11px 18px;
    line-height: 1.55;
    border-bottom: 3px solid var(--primary-400);
}

.top-disclosure a {
    color: #c4b5fd;
    text-decoration: underline;
    font-weight: 600;
}

.top-disclosure a:hover {
    color: #ddd6fe;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    position: static;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    height: var(--header-height);
    box-shadow: 0 1px 0 rgba(30, 27, 75, 0.06);
    border-bottom: 1px solid var(--gray-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 19px;
    color: var(--gray-800);
    flex-shrink: 0;
}

.logo svg,
.logo img {
    flex-shrink: 0;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    display: inline-block;
    color: var(--gray-500);
    font-size: 15px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-800);
    background: var(--primary-50);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 35%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 68%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-updated {
    color: var(--primary-600);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    color: var(--gray-900);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
    max-width: 560px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 7px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-item span {
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
}

.hero-image {
    flex-shrink: 0;
    width: 340px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px -12px rgba(67, 56, 202, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-image-placeholder {
    width: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.08));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ============================================
   Provider Cards
   ============================================ */
.providers {
    padding: 20px 0 20px;
}

.provider-card {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
}

.provider-card:hover {
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(99, 102, 241, 0.08);
    transform: translateY(-2px);
}

.provider-featured {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary-200);
}

/* Provider Badges */
.provider-badge {
    display: inline-block;
    padding: 5px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 0 8px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.badge-best {
    background: var(--primary-600);
    color: var(--white);
}

.badge-popular {
    background: var(--primary-700);
    color: var(--white);
}

/* Provider Inner Layout */
.provider-inner {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.provider-card[data-rank="1"] .provider-inner,
.provider-card[data-rank="2"] .provider-inner {
    padding-top: 32px;
}

.provider-rank {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-50);
    border: 2px solid var(--primary-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-rank span {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-700);
}

.provider-featured .provider-rank {
    background: var(--primary-600);
    border-color: var(--primary-600);
}

.provider-featured .provider-rank span {
    color: var(--white);
}

/* Provider Logos */
.provider-logo {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -1px;
}

.provider-logo-img {
    max-width: 180px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Provider Details */
.provider-details {
    flex: 1;
    min-width: 0;
}

.provider-pricing {
    font-size: 17px;
    font-weight: 700;
    color: #6d28d9;
    margin-bottom: 8px;
}

.provider-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 10px;
}

.provider-details ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.provider-details li {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
}

.provider-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary-400);
}

/* Rating Section */
.provider-rating-section {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 130px;
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px;
    border-radius: 10px;
    min-width: 100px;
}

.rating-outstanding {
    background: linear-gradient(135deg, #312e81, #4338ca);
    color: var(--white);
}

.rating-excellent {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    color: var(--white);
}

.rating-verygood {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: var(--white);
}

.rating-good {
    background: linear-gradient(135deg, #818cf8, #6366f1);
    color: var(--white);
}

.rating-score {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}

.rating-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-votes {
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
}

.user-votes strong {
    color: var(--gray-700);
}

.star-rating {
    text-align: center;
}

.stars {
    font-size: 26px;
    color: #d97706;
    letter-spacing: 3px;
    line-height: 1;
}

.star-half {
    color: #ddd;
}

.stars-white {
    color: #fbbf24;
}

.top-choice-rating .star-rating .stars-white {
    color: #fbbf24;
}

.visitors-today {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--gray-600);
    text-align: center;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-500);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

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

/* Visit Button */
.btn-visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.btn-visit:hover {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.45);
}

.btn-visit:active {
    transform: translateY(0);
}

/* ============================================
   Top Choice Section
   ============================================ */
.top-choice {
    padding: 0 0 30px;
}

.top-choice-inner {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-950) 55%, #1e1b4b 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(165, 180, 252, 0.2);
}

.top-choice-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(0, 0, 0, 0.15);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-choice-card {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 24px;
}

.top-choice-card .provider-logo {
    width: 200px;
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
}

.top-choice-card .logo-text {
    color: var(--gray-900);
}

.top-choice-details {
    flex: 1;
}

.top-choice-details ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.top-choice-details li {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.top-choice-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-300);
}

.top-choice-rating {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.top-choice-rating .rating-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.top-choice-rating .user-votes {
    color: rgba(255, 255, 255, 0.7);
}

.top-choice-rating .user-votes strong {
    color: var(--white);
}

.btn-visit-white {
    background: var(--white);
    color: var(--primary-700);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-visit-white:hover {
    background: var(--primary-50);
    color: var(--primary-800);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* ============================================
   Article Section
   ============================================ */
.article-section {
    padding: 40px 0 20px;
}

.article-container {
    max-width: 900px;
}

.article-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-800);
    margin: 34px 0 16px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.article-section h2:first-child {
    margin-top: 0;
}

.article-section h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--gray-800);
    margin: 20px 0 10px;
}

.article-section p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-section strong {
    color: var(--gray-800);
    font-weight: 600;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 20px 0 50px;
}

.faq-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-800);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.faq-item.active {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-700);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--gray-400);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-600);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
    padding: 44px 0 28px;
    color: var(--gray-600);
    border-top: 1px solid var(--gray-200);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.footer-brand .logo {
    margin-bottom: 12px;
    color: var(--gray-800);
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    max-width: 360px;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-col h4 {
    color: var(--gray-800);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    font-size: 15px;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary-600);
}

.footer-col-company .footer-company-name,
.footer-col-company .footer-address,
.footer-col-company .footer-email {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0 0 6px;
}

.footer-col-company .footer-company-name {
    font-weight: 700;
    color: var(--gray-700);
}

.footer-col-company .footer-email a {
    color: var(--primary-600);
    text-decoration: none;
}

.footer-col-company .footer-email a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-disclosure {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.footer-disclaimer-links {
    border-top: 1px solid var(--gray-200);
    padding-top: 20px;
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
}

.footer-disclaimer-links a {
    color: var(--primary-600);
    text-decoration: none;
}

.footer-disclaimer-links a:hover {
    text-decoration: underline;
}

.footer-sep {
    color: var(--gray-400);
    margin: 0 8px;
}

@media (max-width: 640px) {
    .footer-disclaimer-links {
        font-size: 12px;
        line-height: 1.8;
    }
}

.footer-disclaimers {
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-disclaimers p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-disclaimers p:last-child {
    margin-bottom: 0;
}

.footer-disclaimers strong {
    color: var(--gray-700);
}

/* Provider card base transition for hover */

/* ============================================
   Exit Intent Popup
   ============================================ */
.exit-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-overlay.active {
    display: flex;
}

.exit-popup {
    background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 45%, #e0e7ff 100%);
    border-radius: 20px;
    max-width: 720px;
    width: 100%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: exitSlideIn 0.3s ease;
    overflow: hidden;
}

@keyframes exitSlideIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.exit-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 32px;
    color: var(--gray-500);
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transition: color var(--transition-fast);
}

.exit-close:hover {
    color: var(--gray-800);
}

.exit-body {
    display: flex;
    align-items: stretch;
}

.exit-left {
    flex: 1;
    padding: 32px 28px;
}

.exit-right {
    flex-shrink: 0;
    width: 320px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-product-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.exit-site-badge {
    margin-bottom: 12px;
}

.exit-site-badge img {
    height: auto;
    object-fit: contain;
}

.exit-brand {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-950);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.exit-tagline {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 16px;
}

.exit-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.exit-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
}

.exit-features li svg {
    flex-shrink: 0;
}

.exit-offer {
    margin-bottom: 18px;
}

.exit-discount {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-950);
    line-height: 1.1;
    letter-spacing: -1px;
    font-style: italic;
}

.exit-shipping {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-700);
    margin-top: 2px;
}

.exit-cta {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--primary-950);
    font-size: 22px;
    font-weight: 800;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-fast);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
}

.exit-cta:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.45);
}

@media (max-width: 640px) {
    .exit-popup {
        max-width: 96%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .exit-body {
        flex-direction: column;
    }

    .exit-right {
        width: 100%;
        min-height: 180px;
        padding: 16px 20px 0;
        order: -1;
    }

    .exit-product-img {
        max-height: 200px;
    }

    .exit-left {
        padding: 20px 20px 24px;
    }

    .exit-brand {
        font-size: 28px;
    }

    .exit-discount {
        font-size: 36px;
    }

    .exit-shipping {
        font-size: 16px;
    }

    .exit-cta {
        font-size: 18px;
        padding: 14px 32px;
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .site-header {
        position: relative;
    }

    .hero {
        padding: 28px 0 32px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .hero-updated {
        margin-bottom: 8px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 12px 20px;
        gap: 2px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border-top: 1px solid var(--gray-200);
        z-index: 200;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 16px;
        color: var(--gray-600);
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: var(--gray-100);
        color: var(--gray-900);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .provider-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 20px 16px;
        position: relative;
    }

    .provider-card[data-rank="1"] .provider-inner,
    .provider-card[data-rank="2"] .provider-inner {
        padding-top: 34px;
    }

    .provider-rank {
        position: absolute;
        top: 10px;
        right: 12px;
        width: 30px;
        height: 30px;
    }

    .provider-card[data-rank="1"] .provider-rank,
    .provider-card[data-rank="2"] .provider-rank {
        top: 32px;
    }

    .provider-rank span {
        font-size: 13px;
    }

    .provider-logo {
        width: auto;
        justify-content: flex-start;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-directmeds { font-size: 22px; }
    .logo-medvi { font-size: 24px; }

    .provider-details {
        width: 100%;
    }

    .provider-pricing {
        font-size: 16px;
    }

    .provider-rating-section {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        min-width: 0;
    }

    .rating-badge {
        min-width: auto;
    }

    .btn-visit {
        flex: 1;
        text-align: center;
    }

    .top-choice-card {
        flex-direction: column;
        text-align: center;
    }

    .top-choice-details li {
        padding-left: 0;
        text-align: center;
    }

    .top-choice-details li::before {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 16px 0 20px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .hero-updated {
        margin-bottom: 6px;
        font-size: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .hero-badges {
        gap: 8px;
    }

    .badge-item {
        padding: 4px 8px;
    }

    .badge-item span {
        font-size: 12px;
    }

    .provider-inner {
        padding: 16px 14px;
        gap: 10px;
    }

    .provider-card[data-rank="1"] .provider-inner,
    .provider-card[data-rank="2"] .provider-inner {
        padding-top: 32px;
    }

    .provider-details li {
        font-size: 14px;
    }

    .provider-pricing {
        font-size: 15px;
    }

    .provider-rating-section {
        gap: 8px;
    }

    .btn-visit {
        padding: 12px 24px;
        font-size: 15px;
    }

    .article-section h2 {
        font-size: 22px;
    }

    .article-section p {
        font-size: 15px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 14px;
    }
}
