/* ==========================================================================
   Clarity Public Pages & Footer Stylesheet
   Theme: Clean Modern Light Aesthetic (Sleek High-Contrast Minimalist)
   Typography: 1.67x Modular Scale, Plus Jakarta Sans
   ========================================================================== */

:root {
    --bg-page: #FFFFFF;
    --bg-surface: #FFFFFF;
    --bg-surface-elevated: #F8FAFC;
    --bg-surface-subtle: #F1F5F9;
    --border-subtle: #E2E8F0;
    --border-highlight: #CBD5E1;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    
    --brand-emerald: #059669;
    --brand-emerald-light: #ECFDF5;
    --brand-emerald-border: #A7F3D0;
    --brand-emerald-glow: rgba(5, 150, 105, 0.15);
    --brand-emerald-dark: #064E3B;
    
    --radius-pill: 9999px;
    --radius-card: 20px;
    --radius-inner: 12px;
}

/* Base public page reset */
body.compare-body {
    background-color: #FFFFFF;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.compare-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   1. Comparison Navigation Bar
   ========================================================================== */
.compare-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
}

.compare-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compare-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.compare-nav-logo {
    height: 32px;
    width: auto;
}

.compare-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.compare-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.compare-nav-link:hover, .compare-nav-link.active {
    color: var(--text-primary);
    font-weight: 600;
}

.compare-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ==========================================================================
   Global Unified Header & Hover Dropdown Dialogue System
   ========================================================================== */
.public-top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #E2E8F0;
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link-item {
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.nav-link-item:hover {
    color: #0F172A;
}

/* Dropdown Wrapper & Chevron Animation */
.nav-dropdown-wrapper {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: -8px;
}

.dropdown-chevron {
    transition: transform 0.25s ease;
    stroke: #64748B;
}

.nav-dropdown-wrapper:hover .dropdown-chevron {
    transform: rotate(180deg);
    stroke: #0F172A;
}

.nav-dropdown-wrapper:hover .nav-link-item {
    color: #0F172A;
}

/* Mega Dropdown Dialogue Box */
.nav-mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 580px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(0,0,0,0.02);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
}

.nav-mega-dropdown.dropdown-wide {
    width: 640px;
}

.nav-mega-dropdown.dropdown-simple-box {
    width: 250px;
    padding: 8px;
}

.dropdown-grid-simple {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-simple-item {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    color: #0F172A;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-simple-item:hover {
    background: #F1F5F9;
    color: #059669;
}

.nav-dropdown-wrapper:hover .nav-mega-dropdown,
.nav-dropdown-wrapper.is-open .nav-mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
}

.dropdown-col-highlight {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 16px;
    margin: -8px -8px -8px 0;
}

.dropdown-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94A3B8;
    margin-bottom: 12px;
    padding-left: 8px;
}

.dropdown-item {
    display: block;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s ease;
    margin-bottom: 4px;
}

.dropdown-item:hover {
    background: #F1F5F9;
}

.dropdown-col-highlight .dropdown-item:hover {
    background: #FFFFFF;
}

.dropdown-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item-desc {
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
    line-height: 1.35;
}

.badge-free {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 999px;
}

.badge-popular {
    background: #EFF6FF;
    color: #2563EB;
    border: 1px solid #BFDBFE;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 999px;
}

.dropdown-footer-link {
    display: block;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #E2E8F0;
    font-size: 12px;
    font-weight: 700;
    color: #059669;
    text-decoration: none;
    padding-left: 8px;
}

.dropdown-footer-link:hover {
    text-decoration: underline;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link-login {
    color: #0F172A;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.btn-nav-primary {
    background: #0F172A;
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-nav-primary:hover {
    background: #1E293B;
}

.btn-nav-ghost {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-inner);
    transition: all 0.2s ease;
}

.btn-nav-ghost:hover {
    color: var(--text-primary);
    background: var(--bg-surface-subtle);
}

.btn-nav-accent {
    background: #0F172A;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.btn-nav-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
    background: #1E293B;
}

/* ==========================================================================
   2. Hero Section
   ========================================================================== */
.compare-hero {
    padding: 72px 0 54px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-glow-sphere {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 380px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(240, 253, 244, 0.5) 45%, rgba(255, 255, 255, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.compare-hero-content {
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 0 auto;
}

.compare-vs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-emerald-light);
    border: 1px solid var(--brand-emerald-border);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: #047857;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-vs-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-emerald);
    box-shadow: 0 0 6px var(--brand-emerald);
}

.compare-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #0F172A;
    margin-bottom: 20px;
}

.compare-hero-title span.text-highlight {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.compare-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 36px;
}

.compare-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-hero-primary {
    background: #0F172A;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
    background: #1E293B;
}

.btn-hero-secondary {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.btn-hero-secondary:hover {
    background: var(--bg-surface-elevated);
    border-color: var(--border-highlight);
}

.hero-trust-notes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--brand-emerald);
}

/* ==========================================================================
   3. Quick Competitor Switch Pills Bar
   ========================================================================== */
.competitor-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin: 10px 0 50px;
}

.competitor-tabs {
    display: inline-flex;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    padding: 6px;
    border-radius: var(--radius-pill);
    gap: 4px;
}

.competitor-tab-pill {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
}

.competitor-tab-pill:hover {
    color: var(--text-primary);
}

.competitor-tab-pill.active {
    background: #FFFFFF;
    color: #0F172A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   4. At A Glance Difference Cards (3-Col Grid)
   ========================================================================== */
.section-heading {
    text-align: center;
    margin-bottom: 44px;
}

.section-label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--brand-emerald);
    margin-bottom: 10px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F172A;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.glance-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.glance-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-highlight);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.glance-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.glance-item {
    margin-bottom: 18px;
}

.glance-item:last-child {
    margin-bottom: 0;
}

.glance-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.glance-tag.clarity {
    color: #047857;
}

.glance-tag.competitor {
    color: #DC2626;
}

.glance-desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* ==========================================================================
   5. Deep Dive Feature Comparison Matrix
   ========================================================================== */
.matrix-wrapper {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.matrix-table th {
    padding: 22px 28px;
    background: var(--bg-surface-elevated);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
}

.matrix-table th.col-feature {
    width: 44%;
}

.matrix-table th.col-clarity {
    width: 28%;
    background: #ECFDF5;
    border-left: 1px solid var(--brand-emerald-border);
    border-right: 1px solid var(--brand-emerald-border);
    color: #047857;
    font-size: 15px;
}

.matrix-table th.col-competitor {
    width: 28%;
    color: var(--text-secondary);
}

.matrix-category-row td {
    padding: 14px 28px;
    background: var(--bg-surface-subtle);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--brand-emerald);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.matrix-table td {
    padding: 16px 28px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14px;
    color: var(--text-secondary);
    vertical-align: middle;
}

.matrix-table tr:hover td {
    background: #F8FAFC;
}

.matrix-table td.col-clarity {
    background: #F0FDF4;
    border-left: 1px solid var(--brand-emerald-border);
    border-right: 1px solid var(--brand-emerald-border);
    font-weight: 600;
    color: #0F172A;
}

.win-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ECFDF5;
    color: #047857;
    border: 1px solid var(--brand-emerald-border);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
}

/* ==========================================================================
   6. Why Switch Deep Dive Cards (3-Col Grid)
   ========================================================================== */
.switch-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.switch-reason-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.switch-reason-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.switch-reason-title {
    font-size: 19px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.switch-reason-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ==========================================================================
   7. Interactive Cost Savings & ROI Calculator
   ========================================================================== */
.roi-calculator-section {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 44px;
    margin-bottom: 80px;
}

.roi-calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.roi-slider-group {
    margin-bottom: 30px;
}

.roi-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 14px;
}

.roi-team-counter {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid var(--brand-emerald-border);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
}

.roi-range-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: #E2E8F0;
    outline: none;
    cursor: pointer;
}

.roi-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #059669;
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.roi-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.roi-results-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-inner);
    padding: 28px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.roi-savings-hero {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.roi-savings-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.roi-savings-amount {
    font-size: 44px;
    font-weight: 800;
    color: #059669;
    line-height: 1;
    letter-spacing: -0.03em;
}

.roi-cost-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.roi-cost-box {
    background: var(--bg-surface-elevated);
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
}

.roi-cost-box.highlight {
    border-color: var(--brand-emerald-border);
    background: #ECFDF5;
}

.roi-cost-box-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.roi-cost-box-value {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
}

/* ==========================================================================
   8. FAQ Accordion / Section
   ========================================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

.faq-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ==========================================================================
   9. Bottom Conversion CTA Banner
   ========================================================================== */
.compare-bottom-cta {
    background: linear-gradient(135deg, #064E3B 0%, #0F172A 100%);
    border-radius: 28px;
    padding: 60px 32px;
    text-align: center;
    margin-bottom: 90px;
    color: #FFFFFF;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.15);
}

.compare-cta-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.compare-cta-subtitle {
    font-size: 17px;
    color: #CBD5E1;
    max-width: 600px;
    margin: 0 auto 30px;
}

.compare-bottom-cta .btn-hero-primary {
    background: #FFFFFF;
    color: #0F172A;
}

.compare-bottom-cta .btn-hero-primary:hover {
    background: #F1F5F9;
    transform: translateY(-2px);
}

/* ==========================================================================
   10. Public 4-Column Footer (Clean Light Background)
   ========================================================================== */
.site-footer {
    background: transparent;
    border-top: none;
    padding: 0;
    color: #475569;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid #E2E8F0;
    font-size: 13px;
    color: #64748B;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-legal-links a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #0F172A;
}

/* ==========================================================================
   10B. Sleek Dark Bottom Section with Giant White Wordmark
   ========================================================================== */
.footer-giant-wordmark-section {
    background: #090D16;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 0 16px;
    margin-top: 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-giant-brand {
    font-size: clamp(80px, 18vw, 250px);
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.05em;
    line-height: 0.85;
    text-align: center;
    text-transform: lowercase;
    user-select: none;
    pointer-events: none;
    opacity: 0.95;
    transform: translateY(4px);
}

/* ==========================================================================
   11. Compare & Directory Hub Index Specifics
   ========================================================================== */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 36px 0 80px;
}

.hub-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.hub-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-highlight);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.hub-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.hub-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
}

.hub-card-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 22px;
}

.hub-card-points {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hub-card-points li {
    font-size: 13px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hub-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    font-size: 14px;
    font-weight: 600;
    color: #059669;
}

/* ==========================================================================
   12. Responsive Breakpoints
   ========================================================================== */
@media (max-width: 960px) {
    .compare-hero-title { font-size: 36px; }
    .glance-grid, .switch-reasons-grid, .hub-grid { grid-template-columns: 1fr; }
    .roi-calc-grid { grid-template-columns: 1fr; gap: 32px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .matrix-table th, .matrix-table td { padding: 12px 16px; font-size: 13px; }
}

@media (max-width: 640px) {
    .compare-hero-title { font-size: 30px; }
    .compare-nav-links { display: none; }
    .footer-top-grid { grid-template-columns: 1fr; }
    .footer-bottom-bar { flex-direction: column; text-align: center; }
    .competitor-tabs { flex-wrap: wrap; border-radius: var(--radius-inner); }
}
