/* Import Archivo Font */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@100;700&display=swap');

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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-gray: #f9fafb;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
}

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

/* Header */
header {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo a {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
}

.logo-bold {
    font-weight: 700;
}

.logo-thin {
    font-weight: 100;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-color);
}

/* Features Grid */
.featured-section {
    padding: 4rem 0;
}

.featured-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Guides Section */
.guides-section {
    padding: 4rem 0;
    background: var(--bg-gray);
}

.guides-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.guide-card h3 {
    margin-bottom: 1rem;
}

.guide-card h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.guide-card h3 a:hover {
    color: var(--primary-color);
}

.guide-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Article Styles */
.guide-article {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem 0;
}

.breadcrumb {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.guide-article h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.intro-section {
    margin: 2rem 0;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Quick Navigation */
.quick-nav {
    background: var(--bg-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.quick-nav h3 {
    margin-bottom: 1rem;
}

.quick-nav ol {
    margin-left: 1.5rem;
}

.quick-nav li {
    margin-bottom: 0.5rem;
}

.quick-nav a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Product Cards */
.products-section {
    margin: 3rem 0;
}

.products-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-rank {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-content {
    flex: 1;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.product-rating {
    color: var(--warning-color);
    font-weight: 600;
}

.product-price {
    color: var(--success-color);
    font-weight: 700;
}

.product-pros {
    margin: 1.5rem 0;
}

.product-pros ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.product-pros li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.product-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Buying Guide Section */
.buying-guide {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.buying-guide h2 {
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-section h2 {
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* CTA Sections */
.cta-section,
.cta-section-home {
    background: var(--bg-gray);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2,
.cta-section-home h2 {
    margin-bottom: 1rem;
}

.disclaimer {
    margin-top: 2rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .product-card {
        flex-direction: column;
    }
    
    .product-rank {
        min-width: auto;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .product-links {
        flex-direction: column;
    }
}