:root {
    --fq-bg: #0a110a;
    --fq-surface: #142214;
    --fq-surface-hover: #1c331c;
    --fq-primary: #4caf50;
    --fq-primary-glow: #66ff66;
    --fq-text: #e0eee0;
    --fq-text-muted: #8ca58c;
    --fq-border: #294029;
    --fq-font: 'Segoe UI', system-ui, sans-serif;
    --fq-radius: 12px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--fq-bg);
    color: var(--fq-text);
    font-family: var(--fq-font);
    line-height: 1.6;
    background-image: radial-gradient(circle at top right, #112a11 0%, transparent 40%),
                      radial-gradient(circle at bottom left, #112a11 0%, transparent 40%);
    background-attachment: fixed;
}
a {
    color: var(--fq-primary);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: var(--fq-primary-glow);
    text-shadow: 0 0 8px var(--fq-primary-glow);
}
.fq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Navbar */
.fq-nav {
    background: rgba(10, 17, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--fq-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.fq-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.fq-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--fq-primary-glow);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.fq-nav-links {
    display: flex;
    gap: 30px;
}
.fq-nav-links a {
    color: var(--fq-text);
    font-weight: 500;
}
.fq-nav-links a:hover {
    color: var(--fq-primary-glow);
}

/* Hero */
.fq-hero-section {
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid var(--fq-border);
    position: relative;
}
.fq-hero-badge {
    display: inline-block;
    background: var(--fq-surface);
    border: 1px solid var(--fq-primary);
    color: var(--fq-primary-glow);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.2);
}
.fq-hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
}
.fq-hero-subtitle {
    font-size: 18px;
    color: var(--fq-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}
.fq-btn-main {
    display: inline-block;
    background: var(--fq-primary);
    color: #000 !important;
    font-weight: bold;
    padding: 16px 32px;
    border-radius: var(--fq-radius);
    font-size: 18px;
    transition: 0.3s transform, 0.3s box-shadow;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.fq-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
    text-shadow: none;
}

/* Grid */
.fq-grid-wrap {
    padding: 80px 0;
}
.fq-section-head {
    text-align: center;
    margin-bottom: 50px;
}
.fq-section-head h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
}
.fq-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.fq-item-box {
    background: var(--fq-surface);
    border: 1px solid var(--fq-border);
    border-radius: var(--fq-radius);
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.fq-item-box:hover {
    border-color: var(--fq-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.fq-item-img {
    position: relative;
    height: 200px;
    background: #000;
}
.fq-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
}
.fq-item-box:hover .fq-item-img img {
    opacity: 1;
}
.fq-item-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--fq-primary);
    color: #000;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
}
.fq-item-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.fq-item-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
}
.fq-stars {
    color: #ffca28;
    margin-bottom: 16px;
    font-size: 18px;
}
.fq-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}
.fq-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--fq-text-muted);
    font-size: 14px;
}
.fq-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--fq-primary);
    font-weight: bold;
}
.fq-item-action {
    display: block;
    text-align: center;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--fq-primary);
    color: var(--fq-primary-glow) !important;
    padding: 12px;
    border-radius: var(--fq-radius);
    font-weight: bold;
    transition: 0.3s;
}
.fq-item-box:hover .fq-item-action {
    background: var(--fq-primary);
    color: #000 !important;
    text-shadow: none;
}

/* Criteria List */
.fq-criteria-bg {
    background: var(--fq-surface);
    padding: 80px 0;
    border-top: 1px solid var(--fq-border);
    border-bottom: 1px solid var(--fq-border);
}
.fq-criteria-list {
    max-width: 800px;
    margin: 0 auto;
}
.fq-crit-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 24px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--fq-radius);
    border-left: 4px solid var(--fq-primary);
}
.fq-crit-icon {
    font-size: 32px;
    color: var(--fq-primary-glow);
    line-height: 1;
}
.fq-crit-text h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 20px;
}
.fq-crit-text p {
    color: var(--fq-text-muted);
}

/* Table */
.fq-table-section {
    padding: 80px 0;
}
.fq-table-wrap {
    overflow-x: auto;
}
.fq-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--fq-surface);
    border-radius: var(--fq-radius);
    overflow: hidden;
}
.fq-compare-table th, .fq-compare-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--fq-border);
}
.fq-compare-table th {
    background: rgba(76, 175, 80, 0.1);
    color: var(--fq-primary-glow);
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}
.fq-compare-table tr:last-child td {
    border-bottom: none;
}
.fq-compare-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

/* Quote/Notes */
.fq-notes-box {
    padding: 80px 0;
    background: var(--fq-surface);
    border-top: 1px solid var(--fq-border);
    text-align: center;
}
.fq-quote-icon {
    font-size: 60px;
    color: rgba(76, 175, 80, 0.2);
    line-height: 1;
    margin-bottom: 20px;
}
.fq-notes-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 20px;
    font-style: italic;
    color: #fff;
}
.fq-notes-content p {
    margin-bottom: 16px;
}
.fq-notes-author {
    color: var(--fq-primary);
    font-weight: bold;
    font-style: normal;
    font-size: 16px;
    margin-top: 20px;
}

/* FAQ */
.fq-faq-area {
    padding: 80px 0;
}
.fq-faq-group {
    max-width: 800px;
    margin: 0 auto;
}
.fq-faq-item {
    background: var(--fq-surface);
    border: 1px solid var(--fq-border);
    margin-bottom: 16px;
    border-radius: var(--fq-radius);
    overflow: hidden;
}
.fq-faq-item summary {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    position: relative;
}
.fq-faq-item summary::-webkit-details-marker {
    display: none;
}
.fq-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--fq-primary);
    font-size: 24px;
    line-height: 1;
    transition: 0.3s;
}
.fq-faq-item[open] summary::after {
    content: "-";
    transform: rotate(180deg);
}
.fq-faq-body {
    padding: 0 20px 20px;
    color: var(--fq-text-muted);
}

/* Footer */
.fq-footer {
    background: #050a05;
    border-top: 1px solid var(--fq-border);
    padding: 60px 0 20px;
}
.fq-foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.fq-foot-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.fq-foot-text {
    color: var(--fq-text-muted);
    margin-bottom: 16px;
    max-width: 300px;
}
.fq-foot-nav {
    list-style: none;
}
.fq-foot-nav li {
    margin-bottom: 12px;
}
.fq-foot-nav a {
    color: var(--fq-text-muted);
}
.fq-foot-nav a:hover {
    color: var(--fq-primary-glow);
}
.fq-foot-bottom {
    border-top: 1px solid var(--fq-border);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}
.fq-affiliate-disc {
    max-width: 800px;
    margin: 10px auto 0;
    font-size: 12px;
}
.fq-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--fq-surface);
    border: 1px solid var(--fq-primary);
    padding: 20px;
    border-radius: var(--fq-radius);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.fq-cookie-text {
    font-size: 14px;
    color: var(--fq-text);
}
.fq-cookie-btn {
    background: var(--fq-primary);
    color: #000;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 20px;
}
.fq-cookie-btn:hover {
    background: var(--fq-primary-glow);
}

/* Content Pages */
.fq-page-wrap {
    padding: 60px 0;
    min-height: 60vh;
}
.fq-page-title {
    font-size: 40px;
    color: #fff;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--fq-border);
    padding-bottom: 20px;
}
.fq-page-content h2 {
    color: var(--fq-primary-glow);
    margin: 30px 0 16px;
}
.fq-page-content p {
    margin-bottom: 16px;
    color: var(--fq-text-muted);
}
.fq-page-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
    color: var(--fq-text-muted);
}
.fq-page-content li {
    margin-bottom: 8px;
}
