@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* ============================================
   CSS Variables — Teal & warm sand palette
   ============================================ */
:root {
    --primary-50: #f0fdfa;
    --primary-100: #ccfbf1;
    --primary-200: #99f6e4;
    --primary-300: #5eead4;
    --primary-400: #2dd4bf;
    --primary-500: #14b8a6;
    --primary-600: #0d9488;
    --primary-700: #0f766e;
    --primary-800: #115e59;
    --primary-900: #134e4a;
    --primary-950: #042f2e;

    --accent-50: #fffbeb;
    --accent-100: #fef3c7;
    --accent-200: #fde68a;
    --accent-400: #fbbf24;
    --accent-500: #f59e0b;
    --accent-600: #d97706;
    --accent-700: #b45309;
    --accent-800: #92400e;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --white: #ffffff;
    --cream: #fefdf8;
    --success: #16a34a;

    --rating-outstanding: #0f766e;
    --rating-excellent: #0d9488;
    --rating-verygood: #14b8a6;
    --rating-good: #2dd4bf;

    --max-width: 1180px;
    --header-height: 64px;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 6px 18px -8px rgba(15, 23, 42, 0.18), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 18px 36px -16px rgba(15, 23, 42, 0.22), 0 6px 14px -8px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 28px 60px -24px rgba(15, 23, 42, 0.28);

    --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: 16px;
    line-height: 1.65;
    color: var(--slate-800);
    background-color: var(--cream);
    -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 22px;
}

/* ============================================
   Top disclosure bar
   ============================================ */
.top-disclosure {
    background: var(--slate-900);
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    text-align: center;
    padding: 10px 18px;
    line-height: 1.55;
    border-bottom: 2px solid var(--primary-500);
    letter-spacing: 0.1px;
}

.top-disclosure a {
    color: var(--primary-300);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.top-disclosure a:hover {
    color: var(--primary-100);
}

/* ============================================
   Header
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    border-bottom: 1px solid var(--slate-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: 18px;
    color: var(--slate-900);
    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: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    display: inline-block;
    color: var(--slate-600);
    font-size: 14.5px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background: var(--primary-600);
    border-radius: 2px;
}

/* 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(--slate-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background:
        radial-gradient(circle at 92% -10%, rgba(20, 184, 166, 0.12) 0%, transparent 55%),
        radial-gradient(circle at -5% 110%, rgba(245, 158, 11, 0.10) 0%, transparent 60%),
        linear-gradient(180deg, #fffdf6 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
    padding: 36px 0 28px;
    border-bottom: 1px solid var(--slate-200);
}

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

.hero-content {
    flex: 1;
}

.hero-updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-800);
    background: var(--primary-100);
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hero-updated::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-600);
}

.hero h1 {
    color: var(--slate-900);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.hero h1 span.accent {
    color: var(--primary-700);
}

.hero-subtitle {
    color: var(--slate-600);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 580px;
}

.hero-subtitle strong {
    color: var(--slate-900);
    font-weight: 700;
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--slate-200);
}

.badge-item span {
    color: var(--slate-700);
    font-size: 13.5px;
    font-weight: 600;
}

.hero-image {
    flex-shrink: 0;
    width: 320px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 70%;
    height: 70%;
    background: var(--primary-100);
    border-radius: var(--radius-lg);
    z-index: -1;
}

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

.provider-top-badges {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 12px 16px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: var(--white);
    margin-bottom: 0;
    border-bottom: none;
}

.provider-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--slate-700);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.provider-top-badge svg {
    color: var(--primary-600);
    flex-shrink: 0;
}

.provider-top-badge span {
    font-size: 12.5px;
    line-height: 1.2;
}

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

.provider-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--primary-500);
    transition: background var(--transition-base);
}

.provider-card[data-rank="1"]::before { background: var(--primary-700); }
.provider-card[data-rank="2"]::before { background: var(--primary-600); }
.provider-card[data-rank="3"]::before { background: var(--primary-500); }
.provider-card[data-rank="4"]::before { background: var(--primary-400); }
.provider-card[data-rank="5"]::before { background: var(--primary-400); }
.provider-card[data-rank="6"]::before { background: var(--primary-300); }
.provider-card[data-rank="7"]::before { background: var(--primary-300); }

.provider-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-300);
    transform: translateY(-1px);
}

.provider-featured {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-md);
}

.provider-featured::before {
    width: 6px;
}

/* Provider Badges */
.provider-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px 4px 14px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 0 0 var(--radius-sm) 0;
    position: absolute;
    top: 0;
    left: 5px;
    z-index: 2;
}

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

.badge-popular {
    background: var(--accent-500);
    color: var(--slate-900);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.badge-popular::before {
    content: '★';
    font-size: 12px;
    color: var(--slate-900);
}

@media (min-width: 901px) {
    .provider-top-badges {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 18px;
        padding: 12px 22px;
    }

    .provider-top-badge {
        gap: 7px;
        font-size: 13.5px;
        font-weight: 600;
    }

    .provider-top-badge span {
        font-size: 13.5px;
    }

    .provider-card.provider-featured {
        border-top: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

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

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

.provider-rank {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.provider-rank::before {
    content: 'No';
    font-size: 8.5px;
    font-weight: 600;
    color: var(--primary-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
}

.provider-rank span {
    font-size: 19px;
    font-weight: 800;
    color: var(--primary-800);
    line-height: 1;
}

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

.provider-featured .provider-rank::before {
    color: rgba(255, 255, 255, 0.85);
}

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

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

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

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

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

.provider-pricing {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-700);
    margin-bottom: 10px;
    line-height: 1.45;
}

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

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

.provider-details li {
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.55;
    padding-left: 24px;
    position: relative;
}

.provider-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background-color: var(--primary-600);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' fill='black'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' fill='black'/></svg>") no-repeat center / contain;
}

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

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    min-width: 110px;
    position: relative;
}

.rating-outstanding {
    background: linear-gradient(135deg, var(--primary-800), var(--primary-700));
    color: var(--white);
}

.rating-excellent {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
    color: var(--white);
}

.rating-verygood {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: var(--white);
}

.rating-good {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
    color: var(--white);
}

.rating-score {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.rating-label {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.95;
}

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

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

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

.stars {
    font-size: 18px;
    color: var(--accent-500);
    letter-spacing: 2px;
    line-height: 1;
}

.star-half {
    color: var(--slate-300);
}

.stars-white {
    color: var(--accent-400);
}

.top-choice-rating .star-rating .stars-white {
    color: var(--accent-400);
}

.visitors-today {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--slate-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;
    gap: 8px;
    padding: 13px 30px;
    background: linear-gradient(180deg, var(--accent-500) 0%, var(--accent-600) 100%);
    color: var(--slate-900);
    font-size: 15px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.28);
    border-bottom: 3px solid var(--accent-700);
    width: 100%;
    max-width: 200px;
}

.btn-visit::after {
    content: '→';
    font-size: 16px;
    font-weight: 800;
    transition: transform var(--transition-fast);
}

.btn-visit:hover {
    background: linear-gradient(180deg, var(--accent-400) 0%, var(--accent-500) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.36);
}

.btn-visit:hover::after {
    transform: translateX(3px);
}

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

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

.top-choice-inner {
    background: var(--slate-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    border: 1px solid var(--slate-800);
}

.top-choice-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500), var(--primary-500));
}

.top-choice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-choice-header svg {
    color: var(--accent-400);
}

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

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

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

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

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

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

.top-choice-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    background-color: var(--primary-400);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' fill='black'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' fill='black'/></svg>") no-repeat center / contain;
}

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

.top-choice-rating .rating-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

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

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

.btn-visit-white {
    background: linear-gradient(180deg, var(--accent-400) 0%, var(--accent-500) 100%);
    color: var(--slate-900);
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.4);
    border-bottom: 3px solid var(--accent-700);
}

.btn-visit-white:hover {
    background: linear-gradient(180deg, var(--accent-200) 0%, var(--accent-400) 100%);
    color: var(--slate-900);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.5);
}

/* ============================================
   Article Section
   ============================================ */
.article-section {
    padding: 48px 0 24px;
    background:
        linear-gradient(180deg, transparent 0%, rgba(204, 251, 241, 0.18) 100%);
}

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

.article-section h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--slate-900);
    margin: 36px 0 16px;
    line-height: 1.3;
    letter-spacing: -0.4px;
    padding-left: 18px;
    border-left: 4px solid var(--primary-600);
}

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

.article-section h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-800);
    margin: 22px 0 10px;
}

.article-section p {
    color: var(--slate-700);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.article-section strong {
    color: var(--slate-900);
    font-weight: 700;
}

.article-section ul {
    margin: 4px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-section ul li {
    position: relative;
    padding-left: 24px;
    font-size: 15.5px;
    color: var(--slate-700);
    line-height: 1.7;
}

.article-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 2px;
    background: var(--primary-600);
    border-radius: 2px;
}

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

.faq-section h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 22px;
    letter-spacing: -0.4px;
    padding-left: 18px;
    border-left: 4px solid var(--accent-500);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    counter-reset: faq-counter;
}

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

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

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--slate-900);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question::before {
    content: counter(faq-counter, decimal-leading-zero);
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-600);
    background: var(--primary-50);
    padding: 4px 9px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.faq-question span {
    flex: 1;
}

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

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

.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: 360px;
}

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

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--slate-900);
    padding: 56px 0 30px;
    color: rgba(255, 255, 255, 0.78);
    overflow-x: hidden;
    border-top: 3px solid var(--primary-600);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 42px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 22px;
    min-width: 0;
}

.footer-brand .logo {
    margin-bottom: 14px;
    color: var(--white);
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-desc {
    font-size: 14.5px;
    line-height: 1.65;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.62);
}

.footer-links {
    display: grid;
    grid-template-columns: auto auto minmax(0, 300px);
    gap: 32px 48px;
    min-width: 0;
    flex: 1;
    justify-content: end;
    justify-items: start;
    align-items: start;
}

.footer-col {
    min-width: 0;
}

.footer-col-company {
    min-width: 0;
    max-width: 300px;
}

@media (max-width: 1100px) and (min-width: 901px) {
    .footer-links {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        max-width: 100%;
        justify-content: stretch;
        justify-items: start;
        gap: 28px 36px;
    }

    .footer-col-company {
        grid-column: 1 / -1;
        max-width: 100%;
        padding-top: 22px;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
        max-width: 100%;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-desc {
        margin: 0 auto;
        max-width: 100%;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 28px;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }

    .footer-col {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer-col-company {
        grid-column: unset;
        max-width: 100%;
        padding-top: 0;
        margin-top: 0;
        border-top: none;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .footer-col-company .footer-email a {
        display: inline-block;
        max-width: 100%;
    }
}

.footer-col h4 {
    color: var(--white);
    font-size: 13.5px;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary-500);
    border-radius: 2px;
}

@media (max-width: 900px) {
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

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

.footer-col a {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

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

.footer-col-company .footer-company-name,
.footer-col-company .footer-address,
.footer-col-company .footer-email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    margin: 0 0 7px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.footer-col-company .footer-company-name {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

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

.footer-col-company .footer-email a:hover {
    color: var(--primary-200);
    text-decoration: underline;
}

.footer-brand .logo img {
    max-width: min(200px, 100%);
    height: auto;
}

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

.footer-bottom p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.footer-disclosure {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
    max-width: 600px;
    margin: 0 auto;
}

.footer-disclaimer-links {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    margin-top: 26px;
    text-align: center;
    font-size: 13.5px;
}

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

.footer-disclaimer-links a:hover {
    color: var(--primary-200);
    text-decoration: underline;
}

.footer-sep {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 8px;
}

@media (max-width: 640px) {
    .footer-disclaimer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        font-size: 13px;
        line-height: 1.45;
        padding-left: 12px;
        padding-right: 12px;
    }

    .footer-disclaimer-links .footer-sep {
        display: none;
    }

    .footer-disclaimer-links a {
        display: block;
        max-width: 100%;
        overflow-wrap: anywhere;
        text-align: center;
        padding: 4px 0;
    }
}

.footer-disclaimers {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 26px;
    margin-top: 22px;
    margin-bottom: 22px;
}

.footer-disclaimers p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 12px;
}

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

.footer-disclaimers strong {
    color: rgba(255, 255, 255, 0.85);
}

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

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

.exit-popup {
    background: var(--cream);
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: exitSlideIn 0.3s ease;
    overflow: hidden;
    border-top: 5px solid var(--primary-600);
}

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

.exit-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 30px;
    color: var(--slate-500);
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transition: color var(--transition-fast);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.exit-close:hover {
    color: var(--slate-900);
    background: var(--slate-100);
}

.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;
    background: var(--primary-50);
}

.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: 38px;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.exit-tagline {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-700);
    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: flex-start;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--slate-800);
}

.exit-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.exit-offer {
    margin-bottom: 18px;
    padding: 12px 16px;
    background: var(--accent-50);
    border-left: 4px solid var(--accent-500);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.exit-discount {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.exit-shipping {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-700);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exit-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(180deg, var(--accent-500) 0%, var(--accent-600) 100%);
    color: var(--slate-900);
    font-size: 18px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all var(--transition-fast);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.32);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid var(--accent-700);
}

.exit-cta::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.exit-cta:hover {
    background: linear-gradient(180deg, var(--accent-400) 0%, var(--accent-500) 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.42);
}

.exit-cta:hover::after {
    transform: translateX(3px);
}

@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: 22px;
    }

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

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

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

/* Tablet */
@media (max-width: 900px) {
    .hero {
        padding: 28px 0 32px;
    }

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

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

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

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

    .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(15, 23, 42, 0.12);
        border-top: 1px solid var(--slate-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: var(--radius-sm);
        font-size: 15px;
        color: var(--slate-700);
    }

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

    .nav-links a.active::after {
        display: none;
    }

    .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: 14px;
        padding: 22px 18px 22px 22px;
        position: relative;
    }

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

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

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

    .provider-rank::before {
        font-size: 7px;
        margin-bottom: 1px;
    }

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

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

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

    .provider-details {
        width: 100%;
    }

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

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

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

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

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

    .top-choice-details li {
        padding-left: 22px;
        text-align: left;
    }
}

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

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

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

    .hero-updated {
        margin-bottom: 10px;
        font-size: 11px;
    }

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

    .provider-top-badges {
        gap: 8px 10px;
        padding: 10px 12px;
    }

    .provider-top-badge {
        font-size: 12px;
    }

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

    .provider-inner {
        padding: 18px 14px 18px 18px;
        gap: 12px;
    }

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

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

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

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

    .btn-visit {
        padding: 12px 20px;
        font-size: 14px;
    }

    .article-section {
        padding: 36px 0 18px;
    }

    .article-section h2 {
        font-size: 21px;
        padding-left: 14px;
    }

    .article-section h3 {
        font-size: 17px;
    }

    .article-section p,
    .article-section ul li {
        font-size: 14.5px;
    }

    .faq-section h2 {
        font-size: 21px;
        padding-left: 14px;
    }

    .faq-question {
        font-size: 14.5px;
        padding: 16px 18px;
        gap: 10px;
    }

    .faq-question::before {
        font-size: 11px;
        padding: 3px 7px;
    }

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

    .site-footer {
        padding: 36px 0 24px;
    }

    .footer-disclaimers p {
        font-size: 11.5px;
        line-height: 1.6;
        overflow-wrap: anywhere;
        text-align: left;
    }

    .footer-bottom p {
        font-size: 13px;
        padding: 0 8px;
        overflow-wrap: anywhere;
    }
}
