:root {
    --bg-color: #0b0c10;
    --surface-color: #151720;
    --surface-lighter: #1d202d;
    --primary-color: #6EE71D; /* Neon Green */
    --primary-hover: #58c014;
    --text-main: #ffffff;
    --text-muted: #a0aab2;
    --border-color: #2a2d36;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-main);
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

p {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 231, 29, 0.3);
}

.btn-secondary {
    background-color: var(--surface-lighter);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: #2a2d36;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #000;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header {
    background-color: rgba(11, 12, 16, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(110,231,29,0.15) 0%, rgba(11,12,16,0) 70%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(110, 231, 29, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(110, 231, 29, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0aab2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(110, 231, 29, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(110, 231, 29, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.highlighted {
    background-color: var(--surface-lighter);
    border-color: var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 0 30px rgba(110, 231, 29, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 1.5rem;
    vertical-align: super;
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.plan-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.plan-features .bonus {
    color: var(--primary-color);
    font-weight: 600;
}

/* Devices Section */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.device-item {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.device-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: inherit;
}

.device-item span {
    display: block;
    font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--surface-lighter);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* FAQ Accordion - 3 Column Grid Layout */
.faq-accordion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.faq-item {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.faq-item:hover {
    border-color: rgba(110, 231, 29, 0.35);
    box-shadow: 0 8px 28px rgba(110, 231, 29, 0.08);
    transform: translateY(-3px);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px rgba(110, 231, 29, 0.15), 0 12px 30px rgba(110, 231, 29, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: none;
    border: none;
    border-bottom: 1px solid transparent;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.faq-question .faq-q-text {
    flex: 1;
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background-color: rgba(110, 231, 29, 0.08);
    border: 1px solid rgba(110, 231, 29, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--primary-color);
    transition: var(--transition);
    margin-top: 1px;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

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

.faq-item.active .faq-answer {
    padding: 16px 20px 20px;
    max-height: 600px;
}

.faq-item.active .faq-icon {
    background-color: rgba(110, 231, 29, 0.15);
    border-color: var(--primary-color);
    transform: rotate(45deg);
}

/* FAQ Responsive */
@media (max-width: 1100px) {
    .faq-accordion {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .faq-accordion {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-card.highlighted {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .header-actions, .nav {
        display: none; /* Add hamburger menu logic for mobile if needed */
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* ============================================================
   REVIEWS — Featured Carousel
   ============================================================ */
.reviews-carousel-wrap {
    max-width: 780px;
    margin: 0 auto 56px;
    padding: 0 20px;
    position: relative;
}

.reviews-carousel {
    position: relative;
    min-height: 220px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 40px 44px;
    text-align: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.carousel-quote {
    font-size: 5rem;
    line-height: 0.5;
    color: var(--primary-color);
    font-family: Georgia, serif;
    margin-bottom: 18px;
    opacity: 0.7;
}

.carousel-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #cdd6e0;
    margin-bottom: 28px;
    font-style: italic;
}

.carousel-reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.carousel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #00e5ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #000;
    flex-shrink: 0;
}

.carousel-reviewer strong {
    display: block;
    font-size: 1rem;
    color: #fff;
}

.carousel-reviewer span {
    font-size: 0.85rem;
    color: #8899a6;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.4);
}

/* ============================================================
   REVIEWS — 3-Row Infinite Scroll
   ============================================================ */
.reviews-rows-wrap {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

.reviews-row {
    overflow: hidden;
    margin-bottom: 14px;
}

.reviews-track {
    display: flex;
    gap: 14px;
    width: max-content;
}

/* Row 1 & 3 scroll left, Row 2 scrolls right */
.row-left .reviews-track  { animation: scrollLeft  38s linear infinite; }
.row-right .reviews-track { animation: scrollRight 42s linear infinite; }

.reviews-row:hover .reviews-track { animation-play-state: paused; }

@keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.mini-card {
    min-width: 240px;
    max-width: 240px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 20px;
    transition: border-color 0.3s, transform 0.3s;
    cursor: default;
}

.mini-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(110, 231, 29, 0.15);
}

.mini-stars {
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.mini-card p {
    font-size: 0.875rem;
    color: #cdd6e0;
    line-height: 1.5;
    margin-bottom: 10px;
    font-style: italic;
}

.mini-card span {
    font-size: 0.78rem;
    color: #6b7f8e;
}

/* Bottom fade-out mask — creates the "dissolve as you scroll" effect */
.reviews-fade-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-color) 100%);
    pointer-events: none;
    z-index: 2;
}

/* ============================================================
   DEVICE TABS — Pricing Section
   ============================================================ */
.device-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.device-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: #a0aab2;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.device-tab:hover {
    border-color: var(--primary-color);
    color: #fff;
}

.device-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(110, 231, 29, 0.35);
}

.pricing-tab-panel {
    display: none;
}

.pricing-tab-panel.active {
    display: block;
}

.plan-per {
    font-size: 0.8rem;
    color: #8899a6;
    margin-bottom: 20px;
    margin-top: -8px;
    text-align: center;
}

/* ============================================================
   FAQ CATEGORY TABS
   ============================================================ */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.faq-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border-color);
    background: transparent;
    color: #a0aab2;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.faq-tab:hover {
    border-color: var(--primary-color);
    color: #fff;
}

.faq-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 16px rgba(110, 231, 29, 0.3);
}

.faq-panel {
    display: none;
}

.faq-panel.active {
    display: block;
}

/* Override 3-column grid for categorised FAQ panels */
.faq-panel .faq-accordion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: start;
}

@media (max-width: 900px) {
    .faq-panel .faq-accordion { grid-template-columns: repeat(2, 1fr); }
    .device-tabs, .faq-tabs   { gap: 8px; }
}

@media (max-width: 600px) {
    .faq-panel .faq-accordion { grid-template-columns: 1fr; }
    .device-tab, .faq-tab     { padding: 10px 16px; font-size: 0.82rem; }
}
}

/* ============================================================
   DEVICES V2 — Minimalist Keyword Pills
   ============================================================ */
.devices-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.device-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.device-pill:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(110, 231, 29, 0.1);
}

.device-pill i {
    font-size: 2rem;
    color: var(--primary-color);
}

.device-pill-text {
    display: flex;
    flex-direction: column;
}

.device-pill-text strong {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 4px;
}

.device-pill-text span {
    font-size: 0.8rem;
    color: #8899a6;
    line-height: 1.3;
}

/* ============================================================
   3 STEPS SECTION
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.step-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #4a5568;
    transform: translateY(-5px);
}

.step-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(110, 231, 29, 0.1);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(110, 231, 29, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #fff;
}

.step-card p {
    font-size: 0.95rem;
    color: #a0aab2;
    line-height: 1.6;
    margin-bottom: 24px;
}

.step-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.step-link:hover {
    gap: 12px;
}

.step-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

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

/* ============================================================
   CONTENT DEPTH & SEO SECTION
   ============================================================ */
.content-depth {
    background: #0b0c10;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}

.depth-block {
    margin-bottom: 80px;
}

.depth-block:last-child {
    margin-bottom: 0;
}

.depth-block--alt {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--border-color);
}

.depth-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.depth-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1.3;
}

.depth-text p {
    font-size: 1.05rem;
    color: #a0aab2;
    line-height: 1.8;
    margin-bottom: 20px;
}

.depth-text p:last-child {
    margin-bottom: 0;
}

.depth-text strong {
    color: #fff;
}

@media (max-width: 768px) {
    .depth-text h2 { font-size: 1.8rem; }
    .depth-block--alt { padding: 30px 20px; }
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table-wrap {
    overflow-x: auto;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1px; /* border inner styling */
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    min-width: 600px;
}

.compare-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

.compare-table th:first-child {
    text-align: left;
    padding-left: 30px;
}

.compare-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: #a0aab2;
    font-size: 1rem;
}

.compare-table td:first-child {
    text-align: left;
    padding-left: 30px;
    color: #fff;
    font-weight: 500;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.highlight-col {
    background: rgba(110, 231, 29, 0.05);
    color: var(--primary-color) !important;
}

.compare-table th.highlight-col {
    border-top: 3px solid var(--primary-color);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-num sup {
    color: var(--primary-color);
    font-size: 1.5rem;
    top: -1em;
}

.stat-label {
    font-size: 0.9rem;
    color: #8899a6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
