:root {
    --primary: #D4AF37;
    /* Gold */
    --primary-hover: #B5952F;
    --primary-gradient: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    --bg-main: #ffffff;
    --bg-secondary: #f8f9fa;
    --card-bg: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --success: #2e7d32;
    --danger: #d32f2f;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --glow: 0 0 20px rgba(212, 175, 55, 0.2);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Fix for fixed header covering anchor targets */
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #000;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #000, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

/* Hero */
.hero {
    height: 100vh;
    /* Use a lighter overlay for the hero image */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #000;
    text-shadow: none;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #444;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Comparison Table */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.table-container {
    overflow-x: auto;
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 30px;
    border: 1px solid var(--glass-border);
}

.table-container img {
    width: 100px;
    height: 70px;
    object-fit: contain;
    /* Ensures whole image is visible */
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    background-color: #fff;
    display: block;
    margin: 0 auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    min-width: 900px;
}

th {
    padding: 20px;
    text-align: left;
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--glass-border);
}

td {
    padding: 20px;
    vertical-align: middle;
    background: #fff;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

tr td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-left: 1px solid var(--glass-border);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.highlight-row td:first-child {
    border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.highlight-row td:last-child {
    border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.rating {
    color: var(--primary);
    font-weight: bold;
}

.badge-best {
    background: var(--primary-gradient);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 5px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Reviews */
.reviews-section {
    padding: 100px 0;
    background: var(--bg-main);
}

.review-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 60px;
    border: 1px solid var(--glass-border);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.15);
}

/* Featured Review (Adroit World) */
.featured-review {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    background: linear-gradient(to bottom right, #fff, #fffcf5);
    position: relative;
    overflow: hidden;
}

.featured-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
}

.review-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.review-header>div {
    flex: 1;
    min-width: 200px;
}

.review-header .btn {
    flex-shrink: 0;
}

.review-header h3 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    margin-top: 10px;
    color: #000;
}

.pros-cons {
    grid-column: 1 / -1;
    /* Span full width */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 0;
    /* Remove margin, rely on grid gap */
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.pros h4,
.cons h4 {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros li,
.cons li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: baseline;
    color: var(--text-main);
}

.pros li::before {
    content: "✓";
    color: var(--success);
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.1rem;
}

.cons li::before {
    content: "✕";
    color: var(--danger);
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Buying Guide & FAQ */
.guide-section,
.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.guide-content h3 {
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: background 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary);
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 60px 0;
    text-align: center;
    color: #888;
    border-top: 1px solid var(--glass-border);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 3rem;
    }

    .review-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-links {
        display: none;
    }

    .table-container {
        padding: 15px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .logo {
        font-size: 1.4rem;
    }

    header {
        padding: 15px 0;
    }

    .review-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .review-header .btn {
        width: 100%;
        max-width: 200px;
    }
}