/* ==========================================================================
   Bookmaker100.com - Non GamStop Betting Sites UK
   Comprehensive Design System
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --primary: #0f2b46;
    --primary-light: #1a3d5c;
    --primary-dark: #091e33;
    --accent: #10be7a;
    --accent-hover: #0ea568;
    --accent-light: #e8f8f0;
    --secondary: #f5a623;
    --secondary-hover: #e09510;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    --dark: #0c0c23;
    --dark-alt: #111827;
    --gray-900: #1a1a2e;
    --gray-800: #2d2d44;
    --gray-700: #404060;
    --gray-600: #6b7280;
    --gray-500: #9ca3af;
    --gray-400: #d1d5db;
    --gray-300: #e5e7eb;
    --gray-200: #f3f4f6;
    --gray-100: #f9fafb;
    --white: #ffffff;
    --gold: #ffd700;
    --star: #f5a623;
    --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: 0.2s ease;
    --max-width: 1200px;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--dark-alt);
    line-height: 1.7;
    background: var(--gray-100);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 0.5em;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 2rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-top: 1.5rem; }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: #374151; }
strong { color: var(--dark-alt); }

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

.layout-main {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin-top: 30px;
    align-items: start;
}

.content-area { min-width: 0; }

.sidebar {
    position: sticky;
    top: 20px;
}

/* ---------- Header ---------- */
.site-header {
    background: var(--dark);
    color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.site-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}
.site-logo .logo-accent { color: var(--accent); }

.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav a {
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* ---------- Dropdown Navigation ---------- */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-trigger {
    cursor: pointer;
    user-select: none;
}
.dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 2px;
    display: inline-block;
    transition: transform var(--transition);
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--dark);
    border: 1px solid var(--gray-800);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-xl);
    z-index: 1001;
    padding: 8px 0;
    max-height: 70vh;
    overflow-y: auto;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 8px 18px;
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 0;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

/* ---------- Hero Section ---------- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}
.hero::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='%23ffffff' fill-opacity='0.03'%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");
    opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 15px; }
.hero .subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 20px; max-width: 700px; }
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    padding: 12px 0;
    font-size: 0.85rem;
    color: var(--gray-600);
}
.breadcrumbs a { color: var(--gray-600); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { margin: 0 8px; color: var(--gray-400); }

/* ---------- Updated Badge ---------- */
.updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: #065f46;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ---------- Table of Contents ---------- */
.toc {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
}
.toc h3 { margin-top: 0; font-size: 1.1rem; }
.toc ol {
    list-style: none;
    counter-reset: toc;
    padding: 0;
}
.toc ol li {
    counter-increment: toc;
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-200);
}
.toc ol li:last-child { border-bottom: none; }
.toc ol li::before {
    content: counter(toc) ".";
    font-weight: 700;
    color: var(--accent);
    margin-right: 8px;
}
.toc ol li a {
    color: var(--dark-alt);
    font-size: 0.92rem;
}
.toc ol li a:hover { color: var(--accent); }

/* ---------- Comparison Table ---------- */
.comparison-table {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
}
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    font-size: 0.92rem;
}
.comparison-table th {
    background: var(--primary);
    color: var(--white);
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--gray-100); }
.comparison-table .rank-num {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
}
.comparison-table .brand-name {
    font-weight: 700;
    color: var(--primary);
}

/* ---------- Bookmaker Card ---------- */
.bk-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.bk-card:hover { box-shadow: var(--shadow-md); }

.bk-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: var(--white);
    padding: 16px 24px;
}
.bk-card-header .bk-rank {
    background: var(--accent);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.bk-card-header .bk-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-left: 14px;
    flex: 1;
}
.bk-card-header .bk-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.95rem;
    font-weight: 600;
}
.bk-card-header .stars { color: var(--gold); letter-spacing: 2px; }

.bk-card-body { padding: 24px; }

.bk-card-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.bk-highlight {
    text-align: center;
    padding: 14px;
    background: var(--gray-100);
    border-radius: var(--radius);
}
.bk-highlight .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    margin-bottom: 4px;
}
.bk-highlight .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.bk-card-desc { margin-bottom: 20px; color: #374151; }

.bk-card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 20px;
}

.bk-pros, .bk-cons { padding: 16px; }
.bk-pros { background: #f0fdf4; border-radius: var(--radius) 0 0 var(--radius); }
.bk-cons { background: #fef2f2; border-radius: 0 var(--radius) var(--radius) 0; }
.bk-pros h4, .bk-cons h4 { font-size: 0.9rem; margin-bottom: 8px; margin-top: 0; }
.bk-pros h4 { color: #166534; }
.bk-cons h4 { color: #991b1b; }
.bk-pros ul, .bk-cons ul { list-style: none; padding: 0; font-size: 0.88rem; }
.bk-pros li, .bk-cons li { padding: 3px 0; padding-left: 20px; position: relative; }
.bk-pros li::before { content: "\2713"; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.bk-cons li::before { content: "\2717"; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

.bk-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-300);
}
.bk-card-cta .bonus-text {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}
.bk-card-cta .bonus-sub {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ---------- Quick Pick Card (compact) ---------- */
.quick-pick {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: all var(--transition);
}
.quick-pick:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.quick-pick .qp-rank {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    min-width: 24px;
}
.quick-pick .qp-info { flex: 1; }
.quick-pick .qp-name { font-weight: 700; color: var(--primary); }
.quick-pick .qp-bonus { font-size: 0.85rem; color: var(--gray-600); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.4;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: var(--secondary-hover); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Info Boxes ---------- */
.info-box {
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin: 20px 0;
    font-size: 0.92rem;
}
.info-box h4 { margin-top: 0; margin-bottom: 8px; }
.info-box-tip { background: #eff6ff; border-left: 4px solid var(--info); }
.info-box-tip h4 { color: #1e40af; }
.info-box-warning { background: #fffbeb; border-left: 4px solid var(--warning); }
.info-box-warning h4 { color: #92400e; }
.info-box-danger { background: #fef2f2; border-left: 4px solid var(--danger); }
.info-box-danger h4 { color: #991b1b; }
.info-box-success { background: #f0fdf4; border-left: 4px solid var(--accent); }
.info-box-success h4 { color: #166534; }

/* ---------- Content Sections ---------- */
.content-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}
.content-section h2 { margin-top: 0; }
.content-section h2:not(:first-child) { margin-top: 2rem; }
.content-section ul, .content-section ol { padding-left: 20px; margin-bottom: 1rem; }
.content-section li { margin-bottom: 6px; color: #374151; }

/* ---------- FAQ Accordion ---------- */
.faq-section { margin: 30px 0; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-question::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform var(--transition);
}
.faq-item.active .faq-question::after { content: "\2212"; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
    padding: 0 24px 20px;
    color: #374151;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ---------- Sidebar Widgets ---------- */
.widget {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.widget h3 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}
.widget ul { list-style: none; padding: 0; }
.widget li { padding: 8px 0; border-bottom: 1px solid var(--gray-200); }
.widget li:last-child { border-bottom: none; }
.widget li a { color: var(--dark-alt); font-size: 0.9rem; }
.widget li a:hover { color: var(--accent); }

.widget-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    border: none;
}
.widget-cta h3 { color: var(--white); border-bottom-color: var(--accent); }
.widget-cta p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

/* ---------- Author Box ---------- */
.author-box {
    display: flex;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 30px 0;
}
.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.author-info h4 { margin: 0 0 2px; font-size: 1rem; }
.author-title { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.author-bio { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 0; }

/* ---------- Trust Badges ---------- */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ---------- Star Rating ---------- */
.star-rating { color: var(--star); letter-spacing: 2px; }
.star-rating .empty { color: var(--gray-400); }

/* ---------- Tags ---------- */
.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tag-new { background: #dbeafe; color: #1e40af; }
.tag-hot { background: #fef2f2; color: #991b1b; }
.tag-top { background: #f0fdf4; color: #166534; }
.tag-crypto { background: #faf5ff; color: #6b21a8; }

/* ---------- Payment Icons ---------- */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}
.payment-icon {
    padding: 6px 12px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ---------- Step List ---------- */
.step-list { list-style: none; padding: 0; counter-reset: step; }
.step-list li {
    counter-increment: step;
    position: relative;
    padding: 16px 16px 16px 60px;
    margin-bottom: 12px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
}
.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ---------- Disclaimer / Affiliate ---------- */
.affiliate-disclosure {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: 0.82rem;
    color: #92400e;
    margin-bottom: 20px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--danger);
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 60px 0 30px;
    margin-top: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.footer-col p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 10px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: var(--gray-500); font-size: 0.85rem; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.rg-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.rg-logos span {
    font-weight: 600;
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .layout-main {
        grid-template-columns: 1fr;
    }
    .sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 10px;
        box-shadow: var(--shadow-lg);
        max-height: 80vh;
        overflow-y: auto;
    }
    .mobile-toggle { display: block; }
    .nav-dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
        padding-left: 12px;
        min-width: auto;
        max-height: none;
    }
    .nav-dropdown:hover .nav-dropdown-menu { display: none; }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }

    .hero { padding: 30px 0 25px; }
    .hero h1 { font-size: 1.6rem; }

    .bk-card-header { flex-wrap: wrap; gap: 10px; }
    .bk-card-highlights { grid-template-columns: 1fr; }
    .bk-card-features { grid-template-columns: 1fr; }
    .bk-pros { border-radius: var(--radius) var(--radius) 0 0; }
    .bk-cons { border-radius: 0 0 var(--radius) var(--radius); }
    .bk-card-cta { flex-direction: column; gap: 12px; text-align: center; }

    .comparison-table { font-size: 0.82rem; }
    .comparison-table th, .comparison-table td { padding: 10px 8px; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .content-section { padding: 20px; }
    .author-box { flex-direction: column; text-align: center; align-items: center; }
    .quick-pick { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .hero h1 { font-size: 1.35rem; }
    .btn { padding: 10px 20px; font-size: 0.88rem; }
    .trust-row { justify-content: center; }
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--gray-600); }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.78rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none; }

/* ---------- Review Page Specific ---------- */
.review-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}
.review-header-bar .review-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}
.review-header-bar .review-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.review-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 20px 0;
}
.review-summary-item {
    text-align: center;
    padding: 16px 12px;
    background: var(--gray-100);
    border-radius: var(--radius);
    border: 1px solid var(--gray-300);
}
.review-summary-item .item-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    margin-bottom: 4px;
}
.review-summary-item .item-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}
.guide-card {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.guide-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.guide-card h4 { margin-top: 0; font-size: 1rem; }
.guide-card p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 0; }

.contact-form { max-width: 600px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--primary);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    color: var(--dark-alt);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16,190,122,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}
.team-card .team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 12px;
}

@media (max-width: 768px) {
    .review-summary-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-grid { grid-template-columns: 1fr; }
}

/* ---------- JS: FAQ Toggle & Mobile Dropdown ---------- */
/* Handled via inline JS */
