/*
Theme Name: Reportify Hub
Theme URI: https://getreportify.com
Author: Reportify
Author URI: https://getreportify.com
Description: Hub-style theme for Reportify - Routes visitors to the right product (MSP, Agile, Content). Features dark/light mode toggle and full blog support.
Version: 1.3.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reportify
Tags: one-column, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   CSS Variables - Light Mode (Default)
   ============================================ */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --blue-primary: #3b82f6;
    --blue-light: #60a5fa;
    --blue-dark: #1d4ed8;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --gradient-hero: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    --gradient-bottom: radial-gradient(ellipse at bottom, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-primary: #0a0f1a;
    --bg-secondary: #0d1323;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: #1f2937;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    --nav-bg: rgba(10, 15, 26, 0.95);
    --gradient-hero: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    --gradient-bottom: radial-gradient(ellipse at bottom, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

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

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

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

/* ============================================
   Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 2rem;
    transition: background-color 0.3s, border-color 0.3s;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo:hover {
    opacity: 0.9;
}

img.custom-logo {
    max-height: 45px !important;
    width: auto !important;
    height: auto !important;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

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

.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
    color: var(--text-primary);
    font-weight: 600;
}

.nav-extras {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-login {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s;
}

/* ============================================
   Theme Toggle
   ============================================ */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
    background: none;
    border: none;
}

.theme-toggle:hover {
    background-color: var(--bg-card-hover);
}

.toggle-track {
    width: 44px;
    height: 24px;
    background: var(--border-color);
    border-radius: 12px;
    position: relative;
    transition: background-color 0.3s;
}

[data-theme="dark"] .toggle-track {
    background: var(--blue-primary);
}

.toggle-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

[data-theme="dark"] .toggle-thumb {
    transform: translateX(20px);
}

.toggle-thumb .sun { display: block; }
.toggle-thumb .moon { display: none; }
[data-theme="dark"] .toggle-thumb .sun { display: none; }
[data-theme="dark"] .toggle-thumb .moon { display: block; }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    color: #ffffff;
}

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

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-hero), var(--bg-primary);
    transition: background-color 0.3s;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-minimal {
    min-height: 50vh;
    padding: 10rem 2rem 4rem;
}

.hero-minimal h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-minimal p {
    font-size: 1.1rem;
    max-width: 500px;
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: 6rem 2rem;
    transition: background-color 0.3s;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ============================================
   Cards Grid (Features)
   ============================================ */
.features {
    background: var(--bg-secondary);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--blue-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   Product Routes Section
   ============================================ */
.product-routes {
    padding: 2rem 2rem 6rem;
    background: var(--bg-secondary);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.route-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

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

.route-icon {
    margin-bottom: 1rem;
    color: var(--blue-primary);
}

.route-icon svg {
    width: 48px;
    height: 48px;
}

.route-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}

.route-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.route-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.route-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.route-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.route-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: 600;
}

.route-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ============================================
   About Brief Section
   ============================================ */
.about-brief {
    padding: 5rem 2rem;
    background: var(--bg-primary);
    text-align: center;
}

.about-content {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ============================================
   Trust Section
   ============================================ */
.trust {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.trust-item svg {
    color: var(--blue-primary);
    flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-main {
    padding: 4rem 2rem 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}

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

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--blue-primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--blue-primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-muted);
    transition: color 0.2s;
}

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

/* ============================================
   Legal Pages (Privacy, Terms, Accessibility)
   ============================================ */
.legal-page {
    padding: 8rem 2rem 4rem;
    background: var(--bg-primary);
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.legal-page h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-page h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.legal-page p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-page a {
    color: var(--blue-primary);
}

.legal-page a:hover {
    text-decoration: underline;
}

/* ============================================
   Blog Styles
   ============================================ */
.blog-header {
    padding: 8rem 2rem 4rem;
    background: var(--gradient-hero), var(--bg-primary);
    text-align: center;
}

.blog-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.blog-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.post-list {
    display: grid;
    gap: 2rem;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

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

.post-card-image {
    height: 200px;
    background: var(--bg-secondary);
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-content {
    padding: 1.5rem;
}

.post-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.post-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.post-card-title a {
    color: inherit;
    text-decoration: none;
}

.post-card-title a:hover {
    color: var(--blue-primary);
}

.post-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--blue-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Single Post */
.single-post {
    padding-top: 6rem;
}

.post-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.post-featured-image {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.post-featured-image img {
    width: 100%;
    border-radius: 16px;
}

.post-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--text-primary);
}

.post-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content blockquote {
    border-left: 4px solid var(--blue-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.post-content img {
    border-radius: 8px;
    margin: 2rem 0;
}

.post-content code {
    background: var(--bg-secondary);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.post-content pre {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.post-content pre code {
    background: none;
    padding: 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a, .pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.pagination .current {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: #fff;
}

/* Comments */
.comments-area {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    border-top: 1px solid var(--border-color);
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* ============================================
   MSP Page Specific Styles
   ============================================ */
.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

/* How It Works Steps */
.how-it-works-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.text-syncro {
    color: #3b82f6;
    font-weight: 600;
}

.text-repairshopr {
    color: #dc2626;
    font-weight: 600;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-tier {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-tier:last-of-type {
    border-bottom: none;
}

.tier-name {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 110px;
    font-size: 0.95rem;
}

.tier-price {
    font-weight: 700;
    color: var(--text-primary);
    min-width: 80px;
    font-size: 1rem;
}

.btn-buy {
    display: inline-block;
    background: var(--blue-primary);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-left: auto;
}

.btn-buy:hover {
    background: var(--blue-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.pricing-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 1rem;
    padding-top: 1rem;
}

.pricing-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
}

/* Questions Section */
.questions-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
    text-align: center;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-left: 1px solid var(--border-color);
    }

    .nav-menu-wrapper.is-open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-extras {
        width: 100%;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

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

    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .blog-header {
        padding: 6rem 1.5rem 3rem;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .post-header h1 {
        font-size: 1.75rem;
    }

    .post-content p,
    .post-content li {
        font-size: 1rem;
    }

    .hero-minimal {
        min-height: auto;
        padding: 8rem 1.5rem 3rem;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .route-card h2 {
        font-size: 1.2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-image {
        order: -1;
    }

    .pricing-tier {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .btn-buy {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-bottom-grid {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4 {
        margin-top: 1rem;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
}
