/* ===== PrinterSupport PSEO Theme ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --accent: #f59e0b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius: 8px;
}

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

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

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

/* ===== Header ===== */
.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}
.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.nav { display: flex; gap: 24px; }
.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}
.nav a:hover { color: var(--primary); }

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1.2;
}
.highlight { color: var(--accent); }
.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* ===== Lead Form ===== */
.lead-form {
    background: white;
    color: var(--text);
    max-width: 520px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: left;
}
.lead-form h2 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}
.lead-form > p {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-large { width: auto; padding: 16px 40px; font-size: 1.2rem; }
.success-msg {
    text-align: center;
    padding: 20px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius);
}
.success-msg h3 { color: var(--success); margin-bottom: 8px; }

/* ===== Sections ===== */
.common-issues { padding: 80px 0; background: var(--bg-alt); }
.common-issues h2, .brands h2, .cta h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}
.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.issue-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.issue-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.issue-icon { font-size: 2rem; margin-bottom: 12px; }
.issue-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.issue-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }
.issue-card a { color: var(--primary); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.issue-card a:hover { text-decoration: underline; }

/* ===== Brands ===== */
.brands { padding: 80px 0; }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}
.brand-card {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}
.brand-card:hover { border-color: var(--primary); }
.brand-card span { font-weight: 700; font-size: 1rem; margin-bottom: 4px; display: block; }
.brand-card p { font-size: 0.75rem; color: var(--text-light); }

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    color: white;
}
.cta h2 { font-size: 2rem; margin-bottom: 16px; }
.cta p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; opacity: 0.9; }
.cta .btn-primary {
    background: white;
    color: var(--primary);
    display: inline-block;
    text-decoration: none;
}
.cta .btn-primary:hover { background: var(--bg-alt); }

/* ===== Footer ===== */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1rem;
}
.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.footer-col a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* ===== Inner Content Pages ===== */
.content-page {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}
.content-page h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.content-page .breadcrumb {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 30px;
}
.content-page .breadcrumb a { color: var(--primary); text-decoration: none; }
.content-page h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--text);
}
.content-page h3 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
    color: var(--text);
}
.content-page p {
    margin-bottom: 16px;
    line-height: 1.7;
}
.content-page ul, .content-page ol {
    margin: 16px 0 16px 24px;
}
.content-page li { margin-bottom: 8px; }
.content-page .step {
    background: var(--bg-alt);
    padding: 16px 20px;
    border-left: 4px solid var(--primary);
    margin: 16px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.content-page .warning {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin: 20px 0;
}
.content-page .inline-cta {
    background: var(--primary-light);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    margin: 32px 0;
}
.content-page .inline-cta h3 { margin-top: 0; color: var(--primary); }
.content-page .inline-cta .btn-primary {
    display: inline-block;
    width: auto;
    text-decoration: none;
}

/* ===== Static Pages ===== */
.static-page {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}
.static-page h1 { font-size: 2rem; color: var(--primary); margin-bottom: 24px; }
.static-page h2 { font-size: 1.4rem; margin: 32px 0 16px; }
.static-page p { margin-bottom: 16px; line-height: 1.7; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .issues-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav { gap: 12px; }
    .nav a { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .hero { padding: 50px 0; }
    .hero h1 { font-size: 1.6rem; }
    .lead-form { padding: 20px; }
}
