/* CSS Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-color);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

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

.logo-icon {
    color: var(--primary-color);
    font-size: 1.75rem;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    color: var(--text-color);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

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

.nav-link.highlight {
    background: var(--accent-color);
    color: white;
}

.nav-link.highlight:hover {
    background: #d97706;
    color: white;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-menu li:first-child a {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-search {
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-form {
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.search-form input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-form button {
    padding: 18px 32px;
    background: var(--primary-dark);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--bg-dark);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.badge-small {
    background: var(--secondary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 8px;
    vertical-align: middle;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Quick Compare Section */
.quick-compare {
    background: var(--bg-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 15px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-dark);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.comparison-table tr:hover {
    background: var(--bg-light);
}

.comparison-table tr.featured {
    background: #eff6ff;
}

.comparison-table tr.featured:hover {
    background: #dbeafe;
}

.provider-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.table-note {
    text-align: center;
    color: var(--text-lighter);
    font-size: 0.85rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

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

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

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

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

/* Hosting Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    display: block;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.category-price {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Popular Comparisons */
.popular-comparisons {
    background: var(--bg-light);
    text-align: center;
}

.comparisons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.comparison-card {
    display: block;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.vs-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.comparison-providers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comparison-providers span {
    font-weight: 600;
    color: var(--text-color);
}

.comparison-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Hosting Directory */
.hosting-directory {
    text-align: center;
}

.directory-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.directory-card {
    display: block;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: left;
    transition: var(--transition);
}

.directory-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.directory-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.directory-rating {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.directory-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.directory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.directory-tags span {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* Latest Guides */
.latest-guides {
    background: var(--bg-light);
    text-align: center;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.guide-card {
    display: block;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: left;
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.guide-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.guide-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.4;
}

.guide-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.read-time {
    color: var(--text-lighter);
    font-size: 0.8rem;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.newsletter h2 {
    color: white;
    margin-bottom: 10px;
}

.newsletter p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.newsletter-form .btn {
    white-space: nowrap;
}

.newsletter-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 15px;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-light);
}

/* Footer */
.main-footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 15px;
}

.footer-logo:hover {
    color: var(--primary-light);
}

.footer-about p {
    color: var(--text-lighter);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

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

.footer-links ul li a {
    color: var(--text-lighter);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-lighter);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-bottom .disclosure {
    font-size: 0.8rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Review Page Styles */
.review-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1f2937 100%);
    color: white;
    padding: 60px 0;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.review-logo {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.review-title h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.review-title .rating-large {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.review-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.review-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 60px 0;
}

.review-main h2 {
    font-size: 1.75rem;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 40px;
}

.review-main h2:first-child {
    margin-top: 0;
}

.review-main p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.review-main ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.review-main ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--text-light);
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.pros, .cons {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.pros {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
}

.cons {
    background: #fef2f2;
    border: 1px solid #fca5a5;
}

.pros h3 {
    color: #059669;
    margin-bottom: 15px;
}

.cons h3 {
    color: #dc2626;
    margin-bottom: 15px;
}

.pros ul li, .cons ul li {
    list-style: none;
    padding-left: 0;
}

.review-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.sidebar-cta {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-cta h3 {
    margin-bottom: 15px;
}

.sidebar-cta .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.sidebar-cta .price-note {
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-bottom: 20px;
}

.sidebar-cta .btn {
    width: 100%;
    margin-bottom: 10px;
}

.pricing-table {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pricing-table h4 {
    background: var(--bg-light);
    padding: 15px;
    font-size: 0.9rem;
}

.pricing-table ul li {
    list-style: none;
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.pricing-table ul li:last-child {
    border-bottom: none;
}

/* Comparison Page Styles */
.comparison-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.comparison-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.comparison-hero p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-section {
    padding: 60px 0;
}

.comparison-section h2 {
    text-align: left;
    margin-bottom: 30px;
}

.feature-comparison {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.feature-comparison th,
.feature-comparison td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.feature-comparison th {
    background: var(--bg-dark);
    color: white;
}

.feature-comparison th:first-child,
.feature-comparison td:first-child {
    text-align: left;
}

.feature-comparison tr:last-child td {
    border-bottom: none;
}

.feature-comparison tr:hover {
    background: var(--bg-light);
}

.check {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.cross {
    color: #ef4444;
    font-size: 1.2rem;
}

/* Category Pages */
.category-hero {
    background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.provider-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.provider-card-large {
    display: grid;
    grid-template-columns: 200px 1fr 150px;
    align-items: center;
    gap: 30px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.provider-card-large:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.provider-card-large.featured {
    border: 2px solid var(--primary-color);
    background: #eff6ff;
}

.provider-logo-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.provider-details h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.provider-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.provider-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.provider-features span {
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.provider-cta {
    text-align: center;
}

.provider-cta .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb li::after {
    content: '/';
    color: var(--text-lighter);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--text-light);
}

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

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

    .comparisons-grid,
    .directory-grid,
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-content {
        grid-template-columns: 1fr;
    }

    .review-sidebar {
        position: static;
    }

    .guide-content {
        grid-template-columns: 1fr;
    }

    .guide-sidebar {
        position: static;
        order: -1;
    }

    .guide-cards-grid {
        grid-template-columns: 1fr;
    }

    .provider-card-large {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .categories-grid,
    .comparisons-grid,
    .directory-grid,
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
    }

    .review-title h1 {
        font-size: 1.75rem;
    }

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

    .guide-hero h1,
    .guide-hub-hero h1 {
        font-size: 1.75rem;
    }

    .guide-meta {
        flex-direction: column;
        gap: 8px;
    }

    .guide-cta .btn {
        display: block;
        margin: 8px auto;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 50px 0;
    }

    .category-card,
    .comparison-card,
    .directory-card,
    .guide-card {
        padding: 20px;
    }
}

/* Guide Page Styles */
.guide-hero {
    background: linear-gradient(135deg, #059669 0%, #34d399 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.guide-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.guide-hero p {
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.guide-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-full, 50px);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.guide-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.guide-hub-hero {
    background: linear-gradient(135deg, #059669 0%, #34d399 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.guide-hub-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.guide-hub-hero p {
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.guides-list {
    padding: 60px 0;
}

.guides-list h2 {
    text-align: left;
    margin-bottom: 10px;
}

.guides-list > .container > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.guide-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.guide-card-large {
    display: block;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.guide-card-large:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.guide-card-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    padding: 4px 12px;
    border-radius: var(--radius-full, 50px);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.guide-card-large h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.guide-card-large p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.guide-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-card-meta .read-time {
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.guide-card-arrow {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
}

.guide-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.guide-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.toc-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.toc-card h4 {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.toc-card ul {
    list-style: none;
    padding: 0;
}

.toc-card ul li {
    margin-bottom: 8px;
}

.toc-card ul li a {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 4px 0;
    border-left: 2px solid transparent;
    padding-left: 12px;
    transition: var(--transition);
}

.toc-card ul li a:hover {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.guide-main h2 {
    font-size: 1.75rem;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 40px;
}

.guide-main h2:first-of-type {
    margin-top: 0;
}

.guide-main h3 {
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.guide-main p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.guide-main ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.guide-main ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

.guide-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
}

.info-box {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 30px 0;
}

.info-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-box p {
    color: var(--text-light);
    margin-bottom: 0;
}

.checklist ul {
    list-style: none;
    padding: 0;
}

.checklist ul li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.checklist ul li:last-child {
    border-bottom: none;
}

.guide-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #60a5fa 100%);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 0;
}

.guide-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.guide-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.guide-cta .btn {
    margin: 0 8px;
}

.guide-cta .btn-outline {
    border-color: white;
    color: white;
}

.guide-cta .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.related-guides {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.related-guides h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.related-guides ul {
    list-style: none;
    padding: 0;
}

.related-guides ul li {
    list-style: none;
    padding: 8px 0;
}

.related-guides ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.related-guides ul li a:hover {
    text-decoration: underline;
}

.guide-main .comparison-table,
.guide-main .feature-comparison {
    margin: 20px 0 30px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
