/* ═══════════════════════════════════════════════════════════════
   BuildMyProSite.com — Main Stylesheet
   Professional web design services — modern, clean
   ═══════════════════════════════════════════════════════════════ */

:root {
    --color-primary: #3B82F6;
    --color-primary-light: #60A5FA;
    --color-primary-dark: #2563EB;
    --color-accent: #10B981;
    --color-accent-dark: #059669;
    --color-dark: #F1F5F9;
    --color-cta: #F59E0B;
    --color-cta-hover: #D97706;
    --bg-page: #0B0F19;
    --bg-card: #151923;
    --bg-card-hover: #1C2333;
    --bg-surface: #111827;
    --border-color: #1E293B;
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --radius: 12px;
    --shadow: 0 2px 20px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 30px rgba(59,130,246,0.08);
    --font-heading: 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ── Navigation ────────────────────────────────────────────── */
.main-nav {
    background: var(--bg-surface);
    box-shadow: 0 1px 0 var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}
.nav-logo:hover { color: var(--color-cta); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-categories {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-categories a, .nav-dropdown-btn {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}
.nav-categories a:hover, .nav-dropdown-btn:hover { color: var(--color-cta); }

.nav-dropdown { position: relative; }

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    padding: 0.5rem 0;
    min-width: 220px;
    z-index: 200;
    border: 1px solid var(--border-color);
}

.nav-dropdown:hover .nav-dropdown-content { display: block; }

.nav-dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.nav-dropdown-content a:hover { background: var(--bg-card-hover); color: var(--color-cta); }

.nav-cta {
    background: var(--color-cta);
    color: #000 !important;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--color-cta-hover); }

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #0B0F19 0%, #1a1040 40%, #0d2137 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1920&q=80') center/cover no-repeat;
    opacity: 0.06;
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 3rem 1.5rem;
    max-width: 700px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: var(--color-cta);
    color: #000 !important;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover { background: var(--color-cta-hover); transform: translateY(-2px); color: #000 !important; }

/* ── Why Section ───────────────────────────────────────────── */
.why-section { padding: 4rem 0; }
.section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    font-weight: 800;
}

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

.why-tile {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-color);
}
.why-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-tile h3 { font-family: var(--font-heading); margin-bottom: 0.5rem; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.why-tile p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ── Featured Post ─────────────────────────────────────────── */
.featured-section { padding: 3rem 0; }
.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}
.featured-image {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}
.featured-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-weight: 700;
}
.featured-body h3 a { color: var(--text-primary); }
.featured-body h3 a:hover { color: var(--color-cta); }
.featured-body p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 0.95rem; }

/* ── Category Grid ─────────────────────────────────────────── */
.categories-section { padding: 3rem 0; background: var(--bg-surface); }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.cat-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--color-primary);
    transition: transform 0.2s, border-color 0.2s;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--color-primary);
}
.cat-card:hover { transform: translateY(-2px); border-left-color: var(--color-cta); }
.cat-name { display: block; font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.cat-count { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── Category Badge ────────────────────────────────────────── */
.category-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* ── Posts Grid ────────────────────────────────────────────── */
.latest-section { padding: 3rem 0; }
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-color);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }

.post-card-image {
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.post-card-body { padding: 1.25rem; }
.post-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 700;
}
.post-card-body h3 a { color: var(--text-primary); }
.post-card-body h3 a:hover { color: var(--color-cta); }
.post-card-body p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; margin-bottom: 0.75rem; }

.post-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
}
.read-more:hover { color: var(--color-primary-dark); }

/* ── Post Page ─────────────────────────────────────────────── */
.post-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--bg-page) 100%);
}

.post-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: #888;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--color-cta); }
.breadcrumb span { margin: 0 0.3rem; }

.post-header { margin-bottom: 2rem; }
.post-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.25;
    margin-bottom: 0.75rem;
    font-weight: 800;
}
.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #888;
}
.reading-time::before { content: '·'; margin-right: 0.5rem; }

/* ── Post Content ──────────────────────────────────────────── */
.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
}

.post-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 2rem 0 0.75rem;
    font-weight: 700;
}

.post-content p { margin-bottom: 1.25rem; }

.post-content img {
    width: 100%;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.post-content ul, .post-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}
.post-content li { margin-bottom: 0.5rem; }

.post-content a { color: var(--color-primary-light); font-weight: 500; text-decoration: underline; }

.post-content strong { color: var(--text-primary); }

/* TL;DR Box */
.tldr-box {
    background: rgba(59,130,246,0.08);
    border-left: 4px solid var(--color-primary);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* TOC Box */
.toc-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.toc-box strong { font-size: 1rem; display: block; margin-bottom: 0.75rem; color: var(--text-primary); }
.toc-list {
    padding-left: 1.25rem;
    margin: 0;
}
.toc-list li { margin-bottom: 0.4rem; }
.toc-list a { color: var(--color-primary); font-size: 0.9rem; }

/* FAQ Section */
.faq-section { margin: 0; }
.faq-item { margin-bottom: 1.5rem; }
.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.faq-item p { color: var(--text-secondary); }
.faq-item p strong { color: var(--text-primary); }

/* ── Share Buttons ─────────────────────────────────────────── */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    margin-top: 2rem;
    font-size: 0.9rem;
}
.share-btn {
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    text-decoration: none;
}
.share-btn:hover { background: var(--bg-card-hover); }

.author-credit {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

/* ── Related Posts ─────────────────────────────────────────── */
.related-posts { margin-top: 2.5rem; }
.related-posts h3 { font-family: var(--font-heading); margin-bottom: 1rem; font-weight: 700; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.related-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.related-card:hover { transform: translateY(-2px); }
.related-image { height: 120px; background-size: cover; background-position: center; background-color: #ddd; }
.related-card h4 { padding: 0.75rem; font-size: 0.85rem; line-height: 1.3; color: var(--color-dark); }

/* ── Lead Capture Widget ───────────────────────────────────── */
.lead-capture-widget {
    margin: 2.5rem 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(37,99,235,0.1);
    border: 1px solid rgba(37,99,235,0.15);
}

.lead-widget-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1D4ED8 100%);
    color: #fff;
    padding: 1.5rem 2rem;
}
.lead-widget-header h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.lead-widget-header p { font-size: 0.9rem; opacity: 0.9; line-height: 1.5; }

.lead-widget-inner { overflow: hidden; }

.quiz-step { padding: 1.5rem 2rem; }

.quiz-progress { text-align: center; margin-bottom: 1.5rem; }
.quiz-progress-dots { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.quiz-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--bg-surface);
    color: var(--text-muted);
    transition: all 0.3s;
}
.quiz-dot.active { background: var(--color-primary); color: #fff; }
.quiz-dot.done { background: var(--color-accent); color: #fff; }
.quiz-progress-text { font-size: 0.85rem; color: var(--text-secondary); }

.quiz-question h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.quiz-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quiz-pill {
    cursor: pointer;
    position: relative;
}
.quiz-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.quiz-pill span {
    display: inline-block;
    padding: 0.55rem 1rem;
    border: 2px solid rgba(148,163,184,0.4);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    transition: all 0.2s;
    user-select: none;
}
.quiz-pill input:checked + span {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}
.quiz-pill:hover span { border-color: var(--color-primary-light); }

/* Contact Step */
.contact-step { padding: 0 2rem 2rem; }
.contact-step-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.contact-step-header h4 { color: var(--color-accent); font-size: 1.1rem; }
.build-time-note { color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.5rem; }
.build-time-note strong { color: #fff; }

.lead-form { max-width: 500px; margin: 0 auto; }

.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"] {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.2s;
    background: var(--bg-surface);
    color: var(--text-primary);
}
.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.contact-pref-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.lead-submit-btn {
    width: 100%;
    padding: 0.85rem;
    background: var(--color-cta);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5rem;
}
.lead-submit-btn:hover { background: var(--color-cta-hover); transform: translateY(-1px); }
.lead-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.consent-group {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    cursor: pointer;
}
.consent-label input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
}

.lead-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.4;
}

.lead-success {
    text-align: center;
    padding: 2rem;
}
.success-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.lead-success h4 { font-size: 1.25rem; color: var(--color-accent); margin-bottom: 0.5rem; }
.success-message { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; }

.lead-error {
    background: rgba(220,53,69,0.1);
    color: #f87171;
    padding: 0.65rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    text-align: center;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1E40AF 100%);
    overflow: hidden;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
}
.contact-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 3rem 1.5rem;
    max-width: 600px;
}
.contact-hero-content h1 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 0.75rem; font-weight: 800; }
.contact-hero-content p { font-size: 1.05rem; opacity: 0.9; }

.contact-page { padding: 3rem 0; }
.contact-widget-container { max-width: 700px; margin: 0 auto 2rem; }

.contact-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.trust-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.trust-icon { font-size: 1.5rem; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 0.95rem; }
.trust-item p { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.15rem; }
.trust-item strong { color: #fff; }

/* ── Category Page ─────────────────────────────────────────── */
.category-page { padding: 2rem 0 4rem; }
.category-header { margin-bottom: 2rem; }
.category-header h1 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 0.25rem; font-weight: 800; color: var(--text-primary); }
.category-header p { color: var(--text-muted); font-size: 0.95rem; }

/* ── Checkout Page ─────────────────────────────────────────── */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2rem 0 4rem;
    align-items: start;
}
@media (max-width: 768px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-summary h1 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 1.5rem; font-weight: 800; color: var(--text-primary); }
.summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}
.summary-card h2 { margin: 0 0 0.25rem; font-size: 1.3rem; color: var(--text-primary); }
.summary-for { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.summary-line strong { color: var(--text-primary); }
.summary-divider { border-top: 2px solid var(--border-color); margin: 0.5rem 0; }
.summary-total { font-size: 1.15rem; }
.summary-total strong { color: var(--color-primary-light); font-size: 1.3rem; }
.summary-recurring { color: var(--text-muted); font-size: 0.9rem; }
.summary-includes {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}
.summary-includes li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.summary-includes li::before { content: "✓ "; color: #10B981; font-weight: 700; }

.checkout-form h2 { font-size: 1.15rem; margin: 0 0 1rem; color: var(--text-primary); }
.checkout-fields { margin-bottom: 2rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.3rem; }
.form-group input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
    background: var(--bg-surface);
    color: var(--text-primary);
}
.form-group input:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.payment-note { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.checkout-error {
    background: rgba(220,53,69,0.1);
    border: 1px solid rgba(220,53,69,0.3);
    color: #f87171;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
}
.checkout-loading { text-align: center; padding: 2rem; color: var(--color-primary-light); font-weight: 600; }
.checkout-continue-btn {
    width: 100%;
    padding: 0.85rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    margin-top: 0.5rem;
    transition: background 0.2s;
}
.checkout-continue-btn:hover { background: var(--color-primary-dark); }
.checkout-continue-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.checkout-trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

/* ── Pricing Page ──────────────────────────────────────────── */
.pricing-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    overflow: hidden;
    text-align: center;
    color: #fff;
    padding: 3rem 1.5rem;
}
.pricing-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    font-weight: 800;
}
.pricing-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

.pricing-section { padding: 3rem 0 4rem; }

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

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card.popular {
    border-color: var(--color-primary);
}
.pricing-card.popular::before {
    content: '⭐ Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.pricing-card .price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}
.pricing-card .tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}
.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.pricing-features li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    margin-right: 0.5rem;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.2s;
}
.pricing-btn-primary {
    background: var(--color-primary);
    color: #fff;
}
.pricing-btn-primary:hover { background: var(--color-primary-dark); color: #fff; }
.pricing-btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}
.pricing-btn-outline:hover { background: var(--color-primary); color: #fff; }

.pricing-faq { max-width: 700px; margin: 3rem auto 0; }
.pricing-faq h2 { text-align: center; margin-bottom: 1.5rem; font-weight: 700; }

/* Pricing Table */
.pricing-page {
    padding: 2.5rem 1.5rem 4rem;
}
.pricing-page h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.pricing-table-wrapper { margin: 2rem 0; overflow-x: auto; }
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
    table-layout: fixed;
}
.pricing-table thead th {
    text-align: left;
    padding: 0.75rem 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--color-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-table colgroup .col-package { width: 14%; }
.pricing-table colgroup .col-build { width: 12%; }
.pricing-table colgroup .col-monthly { width: 12%; }
.pricing-table colgroup .col-for { width: 18%; }
.pricing-table colgroup .col-includes { width: 32%; }
.pricing-table colgroup .col-action { width: 12%; }
.pricing-table tbody tr {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pricing-table tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-color: var(--color-primary);
}
.pricing-table tbody td {
    padding: 1.25rem 0.75rem;
    vertical-align: middle;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: var(--text-primary);
    font-size: 0.95rem;
}
.pricing-table tbody td:first-child { border-radius: 10px 0 0 10px; }
.pricing-table tbody td:last-child { border-radius: 0 10px 10px 0; }
.pricing-table tbody td:first-child strong { color: #fff; font-size: 1.1rem; }
.pricing-table tbody td:nth-child(2),
.pricing-table tbody td:nth-child(3) { color: var(--color-primary-light); font-weight: 600; }
.popular-row {
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(59,130,246,0.06)) !important;
    border: 1px solid rgba(59,130,246,0.35) !important;
}
.pop-badge {
    display: inline-block;
    background: var(--color-primary, #2563eb);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 0.35rem;
    vertical-align: middle;
}
.btn-sm-primary {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--color-primary, #2563eb);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-sm-primary:hover { background: var(--color-primary-dark, #1d4ed8); color: #fff; }

.pricing-intro { font-size: 1.15rem; color: var(--text-secondary); max-width: 700px; margin-bottom: 2rem; }
.pricing-intro strong { color: var(--text-primary); }
.pricing-details { margin-top: 3rem; }
.pricing-details h2 { margin-top: 2.5rem; margin-bottom: 1rem; color: var(--text-primary); }
.pricing-details p { color: var(--text-secondary); }
.pricing-details p strong { color: var(--text-primary); }
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.included-item {
    background: var(--bg-card);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s;
}
.included-item:hover { border-color: var(--color-primary); }
.included-item strong { color: var(--text-primary); }
.included-item p { margin: 0.5rem 0 0; color: var(--text-secondary); font-size: 0.95rem; }

@media (max-width: 768px) {
    .pricing-table thead { display: none; }
    .pricing-table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    .pricing-table tbody td {
        display: block;
        padding: 0.5rem 0;
        text-align: left;
    }
    .pricing-table tbody td:first-child { border-radius: 8px 8px 0 0; }
    .pricing-table tbody td:last-child { border-radius: 0 0 8px 8px; }
    .pricing-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        display: block;
        margin-bottom: 0.25rem;
        color: var(--text-muted);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
}

/* ── Domain Checker Page ───────────────────────────────────── */
.dc-hero {
    position: relative;
    padding: 4rem 1.5rem 3.5rem;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(59,130,246,0.15) 0%, transparent 60%),
                var(--bg-page);
}
.dc-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}
.dc-badge {
    display: inline-block;
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.3);
    color: var(--color-primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}
.dc-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.dc-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.dc-hero p strong { color: var(--text-primary); }

.dc-search {
    display: flex;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    padding: 0.35rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.dc-search:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.12), 0 4px 20px rgba(0,0,0,0.2);
}
.dc-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.75rem;
}
.dc-search-icon {
    font-size: 1.1rem;
    opacity: 0.5;
}
.dc-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.05rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    padding: 0.75rem 0;
    outline: none;
}
.dc-search input::placeholder { color: var(--text-muted); }
.dc-search button {
    padding: 0.75rem 1.75rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    font-family: var(--font-body);
}
.dc-search button:hover { background: var(--color-primary-dark); transform: translateY(-1px); }
.dc-search button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.dc-result {
    max-width: 560px;
    margin: 1.25rem auto 0;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: none;
    text-align: left;
}
.dc-result span { display: block; margin-bottom: 0.25rem; }
.dc-result-available {
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.3);
    color: #34d399;
    display: block;
}
.dc-result-taken {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.25);
    color: #f87171;
    display: block;
}
.dc-result-error {
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.25);
    color: #fbbf24;
    display: block;
}
.dc-result-alt {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0;
}
.dc-result-alt strong { color: var(--text-primary); }
.dc-result-cta {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: var(--color-accent);
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
.dc-result-cta:hover { background: var(--color-accent-dark); color: #fff; }

.dc-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Tips */
.dc-tips-section {
    padding: 3.5rem 0 2rem;
    text-align: center;
}
.dc-section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.dc-section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}
.dc-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    text-align: left;
}
.dc-tip {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.dc-tip:hover {
    border-color: rgba(59,130,246,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.dc-tip-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59,130,246,0.1);
    border-radius: 10px;
}
.dc-tip h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}
.dc-tip p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* Bottom CTA */
.dc-bottom-cta {
    padding: 3.5rem 1.5rem 4rem;
    text-align: center;
}
.dc-bottom-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1D4ED8 100%);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
}
.dc-bottom-cta h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}
.dc-bottom-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.dc-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.dc-cta-btn-primary {
    display: inline-block;
    background: #fff;
    color: var(--color-primary);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}
.dc-cta-btn-primary:hover { background: #EFF6FF; transform: translateY(-1px); }
.dc-cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}
.dc-cta-btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

@media (max-width: 768px) {
    .dc-tips-grid { grid-template-columns: 1fr; }
    .dc-search { flex-direction: column; padding: 0.5rem; }
    .dc-search button { width: 100%; border-radius: 10px; }
    .dc-hero h1 { font-size: 1.75rem; }
    .dc-hero h1 br { display: none; }
}

/* ── Page Content (static pages) ───────────────────────────── */
.page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}
.page-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}
.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}
.page-content p { margin-bottom: 1rem; line-height: 1.7; color: var(--text-secondary); }
.page-content p strong { color: var(--text-primary); }
.page-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.page-content li { margin-bottom: 0.4rem; color: var(--text-secondary); }

.about-disclaimer {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--color-primary);
    color: #fff !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary:hover { background: var(--color-primary-dark); }

/* ── Error Pages ───────────────────────────────────────────── */
.error-page {
    text-align: center;
    padding: 6rem 1.5rem;
}
.error-content h1 { font-size: 5rem; color: var(--color-primary); font-weight: 700; }
.error-content h2 { font-size: 1.5rem; margin: 1rem 0; color: var(--text-primary); }
.error-content p { color: var(--text-secondary); margin-bottom: 2rem; }

/* ── Empty State ───────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 4rem 1.5rem;
    color: var(--text-muted);
}
.empty-state p { margin-bottom: 1.5rem; font-size: 1rem; }

/* ── Flash Messages ────────────────────────────────────────── */
.flash-messages { max-width: 1200px; margin: 0.5rem auto; padding: 0 1.5rem; }
.flash {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.flash-success { background: #d4edda; color: #155724; }
.flash-error { background: #f8d7da; color: #721c24; }
.flash-info { background: #cce5ff; color: #004085; }

/* ── Home Lead Section ─────────────────────────────────────── */
.home-lead-section { padding: 3rem 0 4rem; }

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-btn-primary {
    display: inline-block;
    background: #fff;
    color: var(--color-primary);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.2s;
}
.cta-btn-primary:hover { background: #EFF6FF; color: var(--color-primary); transform: translateY(-1px); }
.cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.2s;
}
.cta-btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: var(--color-dark);
    color: #ccc;
    padding: 3rem 0 1.5rem;
}

.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

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

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 0.75rem; }
.footer-col p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.5rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.35rem; }
.footer-col a { color: #aaa; font-size: 0.85rem; }
.footer-col a:hover { color: #fff; }

.footer-disclaimer {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    padding-top: 1rem;
}

/* ═══ Post CTA Banners ═══ */
.post-cta-banner {
    margin: 1.5rem 0 2rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(16,185,129,0.08) 100%);
    border: 2px solid rgba(59,130,246,0.3);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}
.post-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.post-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.post-cta-text strong {
    font-size: 1.05rem;
    color: var(--color-dark);
}
.post-cta-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.post-cta-btn {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}
.post-cta-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    color: #fff;
}

.post-cta-box {
    margin: 2.5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1D4ED8 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    text-align: center;
}
.post-cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #fff;
}
.post-cta-box p {
    font-size: 1rem;
    opacity: 0.92;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.post-cta-box-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.post-cta-btn-primary {
    background: #fff;
    color: var(--color-primary);
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
}
.post-cta-btn-primary:hover {
    background: #EFF6FF;
    color: var(--color-primary);
    transform: translateY(-2px);
}
.post-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
}
.post-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Package Preview Cards (Home) ──────────────────────────── */
.packages-section { padding: 3rem 0; }
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.package-preview {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s;
}
.package-preview:hover { transform: translateY(-3px); }
.package-preview h3 { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 700; }
.package-preview .price { font-size: 1.5rem; font-weight: 800; color: var(--color-primary); margin-bottom: 0.25rem; }
.package-preview .price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.package-preview h3 { color: var(--text-primary); }
.package-preview p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   Responsive Design
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-surface);
        flex-direction: column;
        padding: 1rem 1.5rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links.open { display: flex; }

    .nav-categories { flex-direction: column; align-items: flex-start; gap: 0.75rem; width: 100%; }
    .nav-cta { width: 100%; text-align: center; margin-top: 0.5rem; }

    .nav-dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
    .nav-dropdown:hover .nav-dropdown-content { display: block; }

    .featured-card { grid-template-columns: 1fr; }
    .featured-image { min-height: 200px; }

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

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

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

    .hero-section { min-height: 360px; }

    .quiz-options { flex-direction: column; }
    .quiz-pill span { display: block; text-align: center; }

    .contact-pref-options { flex-direction: column; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .domain-search-box { flex-direction: column; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .post-hero { height: 250px; }
}

@media (max-width: 600px) {
    .post-cta-inner { flex-direction: column; text-align: center; }
    .post-cta-box { padding: 1.5rem 1.25rem; }
    .post-cta-box-buttons { flex-direction: column; align-items: center; }
}
