/* === PrinterSupport — Professional Document Design === */
/* Design: Clean corporate with document/paper aesthetic. Asymmetric grid, floating cards, brand-pill navigation. */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Merriweather:wght@400;700&display=swap');

:root {
  --p: #2563eb;      /* primary blue */
  --pd: #1d4ed8;     /* darker blue */
  --a: #d97706;      /* warm amber accent */
  --bg: #fafaf9;     /* off-white background */
  --bg-card: #ffffff;
  --tx: #1e293b;
  --tx2: #64748b;
  --bd: #e7e5e4;
  --su: #059669;
  --r: 10px;
  --r-lg: 20px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; color: var(--tx); background: var(--bg); line-height: 1.65; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ============================================
   HEADER — Clean, left-logo + right-CTA
   ============================================ */
.site-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bd);
  position: sticky; top:0; z-index:100;
}
.site-header .container {
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 28px;
}
.site-logo {
  font-size: 1.25rem; font-weight:800; color: var(--p);
  text-decoration: none; letter-spacing: -0.3px;
  display: flex; align-items: center; gap: 8px;
}
.site-nav { display:flex; align-items:center; gap: 24px; }
.site-nav a {
  color: var(--tx); text-decoration: none; font-size: .9rem;
  font-weight: 500; transition: color .2s; position: relative;
}
.site-nav a:hover { color: var(--p); }
.site-nav a.btn-header {
  background: var(--p); color: #fff; padding: 9px 20px;
  border-radius: 25px; font-weight: 600; font-size: .85rem;
  transition: background .2s;
}
.site-nav a.btn-header:hover { background: var(--pd); color: #fff; }

/* ============================================
   HERO — Asymmetric split with angled edge
   ============================================ */
.hero-section {
  background: linear-gradient(160deg, #1e3a5f 0%, #2563eb 50%, #3b82f6 100%);
  color: #fff; padding: 90px 0 110px;
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.hero-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 380px;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-left h1 {
  font-family: 'Merriweather', serif;
  font-size: 3rem; font-weight: 700; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -1px;
}
.hero-left h1 .hlt {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.1rem; opacity: .88; max-width: 500px; margin-bottom: 32px; line-height: 1.7; }
.hero-stats { display: flex; gap: 40px; }
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; display: block; }
.stat-label { font-size: .82rem; opacity: .75; display: block; margin-top: 2px; }

/* Lead Card — floating, glass-like */
.hero-right { position: relative; z-index: 2; }
.lead-card {
  background: #fff; color: var(--tx); padding: 34px 30px;
  border-radius: var(--r-lg); box-shadow: 0 24px 60px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.2);
}
.lead-badge {
  display: inline-block; background: #fef3c7; color: #92400e;
  padding: 5px 14px; border-radius: 20px; font-size: .78rem;
  font-weight: 700; margin-bottom: 16px; letter-spacing: .3px;
}
.lead-card h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 4px; color: var(--p); }
.lead-sub { color: var(--tx2); font-size: .88rem; margin-bottom: 22px; }
.field-group { margin-bottom: 10px; }
.field-group input, .field-group textarea {
  width: 100%; padding: 11px 15px; border: 1.5px solid #e2e8f0;
  border-radius: 8px; font-size: .92rem; font-family: inherit;
  transition: border .2s, box-shadow .2s;
}
.field-group input:focus, .field-group textarea:focus {
  outline: none; border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.btn-main {
  width: 100%; padding: 13px; background: var(--p); color: #fff;
  border: none; border-radius: 8px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all .2s; letter-spacing: -.2px;
}
.btn-main:hover { background: var(--pd); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.35); }
.btn-lg { width: auto; padding: 16px 44px; font-size: 1.1rem; display: inline-block; text-decoration: none; }
.success-card { text-align:center; padding:20px; background:#ecfdf5; border:1px solid #a7f3d0; border-radius:10px; }
.success-card h3 { color: var(--su); margin-bottom: 6px; font-size: 1.05rem; }

/* Bottom CTA button fix — override width:100% from base .btn-main */
.cta-section .btn-main,
.cta-section .btn-lg,
.cta-section .btn-large {
  width: auto !important; display: inline-block !important;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 90vw;
}

/* ============================================
   TRUST BAR — Horizontal stats ribbon
   ============================================ */
.trust-bar { background: #fff; border-bottom: 1px solid var(--bd); padding: 24px 0; }
.trust-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.trust-item { text-align: center; }
.trust-item .trust-icon { font-size: 1.5rem; margin-bottom: 4px; }
.trust-item .trust-num { font-size: 1.4rem; font-weight: 800; color: var(--p); }
.trust-item .trust-label { font-size: .8rem; color: var(--tx2); }

/* ============================================
   FEATURES — Asymmetric 1+2+3 layout
   ============================================ */
.features-section { padding: 80px 0; background: #fff; }
.features-section .section-header { text-align: left; max-width: 600px; margin-bottom: 48px; }
.section-header h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--tx); margin-bottom: 8px;
}
.section-header p { color: var(--tx2); font-size: 1.05rem; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.fet-card {
  background: var(--bg); padding: 28px 24px;
  border-radius: var(--r-lg); transition: all .25s;
  border: 1px solid transparent; position: relative;
  overflow: hidden;
}
.fet-card:nth-child(1) { grid-column: span 2; grid-row: span 1; }
.fet-card:nth-child(2) { grid-column: span 1; }
.fet-card:hover {
  transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.08);
  border-color: var(--p);
}
.fet-card::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 60px; height: 60px; background: var(--p);
  border-radius: 50%; opacity: .05; transition: all .3s;
}
.fet-card:hover::before { width: 80px; height: 80px; opacity: .1; }
.fet-icon { font-size: 2rem; margin-bottom: 12px; position: relative; z-index: 1; }
.fet-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; position: relative; z-index: 1; }
.fet-card p { color: var(--tx2); font-size: .88rem; position: relative; z-index: 1; }

/* ============================================
   BRANDS — Horizontal pill scroll
   ============================================ */
.browse-section { padding: 70px 0; background: var(--bg); }
.browse-section .section-header { margin-bottom: 36px; }
.browse-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.browse-card {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; background: #fff;
  border: 1.5px solid var(--bd); border-radius: 50px;
  text-decoration: none; color: var(--tx); font-weight: 600;
  font-size: .92rem; transition: all .2s;
}
.browse-card:hover {
  border-color: var(--p); color: var(--p);
  background: #eff6ff; transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37,99,235,.1);
}

/* ============================================
   ISSUES — 2-column tag layout
   ============================================ */
.browse-section.alt { background: #fff; }
.browse-section.alt .browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.browse-section.alt .browse-card {
  border-radius: 10px; font-size: .84rem; padding: 13px 18px;
  justify-content: flex-start; font-weight: 500;
}

/* ============================================
   TESTIMONIALS — Large centered cards
   ============================================ */
.testimonials-section { padding: 80px 0; background: #f0f4ff; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px; max-width: 900px; margin: 0 auto;
}
.test-card {
  background: #fff; padding: 32px; border-radius: var(--r-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,.04); position: relative;
}
.test-card::before {
  content: '"'; position: absolute; top: 16px; left: 20px;
  font-size: 4rem; color: var(--p); opacity: .1; font-family: serif; line-height: 1;
}
.test-quote { font-size: 1rem; line-height: 1.7; color: var(--tx); margin-bottom: 14px; font-style: italic; position: relative; }
.test-author { color: var(--p); font-weight: 700; font-size: .88rem; }
.test-role { color: var(--tx2); font-size: .8rem; display: block; }

/* ============================================
   CTA — Gradient with pattern
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
  color: #fff; padding: 90px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 30 L30 55 L5 30z' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-family: 'Merriweather', serif; font-size: 2.4rem; font-weight: 700; margin-bottom: 14px; }
.cta-section p { font-size: 1.1rem; opacity: .85; max-width: 540px; margin: 0 auto 30px; }
.cta-section .btn-main { background: #fff; color: var(--p); width: auto; display: inline-block; }
.cta-section .btn-main:hover { background: #f0f4ff; box-shadow: 0 8px 30px rgba(0,0,0,.15); }

/* ============================================
   FOOTER — Multi-column with accent top bar
   ============================================ */
.site-footer {
  background: #0f172a; color: #94a3b8;
  padding: 60px 0 30px; border-top: 4px solid var(--p);
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 36px; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: .9rem; text-transform: uppercase; letter-spacing: .6px; }
.footer-col a { display: block; color: #64748b; text-decoration: none; font-size: .85rem; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--p); }
.footer-brands { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.footer-brands a { background: #1e293b; color: #94a3b8; padding: 4px 12px; border-radius: 6px; font-size: .78rem; text-decoration: none; border: 1px solid #334155; }
.footer-brands a:hover { color: #fff; border-color: var(--p); }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 24px; text-align: center; font-size: .8rem; color: #475569; }

/* ============================================
   CONTENT PAGES — Guide template
   ============================================ */
.content-page { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.content-page h1 { font-family: 'Merriweather', serif; font-size: 2rem; color: var(--p); margin-bottom: 8px; font-weight: 700; }
.content-page .breadcrumb { color: var(--tx2); font-size: .84rem; margin-bottom: 24px; padding: 10px 0; }
.content-page .breadcrumb a { color: var(--p); text-decoration: none; font-weight: 500; }
.content-page h2 { font-size: 1.4rem; margin: 36px 0 14px; font-weight: 700; color: var(--tx); }
.content-page h3 { font-size: 1.1rem; margin: 24px 0 8px; font-weight: 700; }
.content-page p { margin-bottom: 16px; line-height: 1.8; color: #334155; }
.content-page ul, .content-page ol { margin: 16px 0 16px 24px; color: #334155; }
.content-page li { margin-bottom: 8px; }
.content-page a { color: var(--p); text-decoration: underline; text-underline-offset: 3px; }

/* Steps — numbered with blue accent */
.content-page .step {
  background: #f0f7ff; padding: 20px 24px;
  border-left: 5px solid var(--p); margin: 16px 0;
  border-radius: 0 var(--r) var(--r) 0; display: flex; gap: 18px; align-items: flex-start;
}
.content-page .step-number {
  background: var(--p); color: #fff; min-width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; flex-shrink: 0;
}
.content-page .step-content { flex: 1; }
.content-page .step-content strong { display: block; margin-bottom: 6px; color: var(--tx); }
.content-page .warning {
  background: #fffbeb; border: 1px solid #fcd34d; padding: 18px 22px;
  border-radius: var(--r); margin: 20px 0; border-left: 5px solid #f59e0b;
}
.content-page .warning strong { display: block; margin-bottom: 4px; color: #92400e; }
.content-page .inline-cta {
  background: linear-gradient(135deg, #eff6ff, #fef3c7);
  padding: 30px; border-radius: var(--r-lg); text-align: center;
  margin: 36px 0; border: 2px solid var(--p);
}
.content-page .inline-cta h3 { margin-top: 0; color: var(--p); font-size: 1.2rem; }
.content-page .inline-cta .btn-main { display: inline-block; width: auto; white-space: nowrap; text-decoration: none; font-size: .95rem; padding: 12px 30px; }
/* Universal inline-cta button fix — covers static, hub, about, contact pages */
.inline-cta .btn-main {
  display: inline-block !important; width: auto !important;
  white-space: nowrap; text-decoration: none;
}
.content-page .faq-section { margin: 40px 0; padding: 28px; background: var(--bg); border-radius: var(--r-lg); border: 1px solid var(--bd); }
.content-page .faq-section h2 { margin-top: 0; padding-bottom: 14px; border-bottom: 2px solid rgba(37,99,235,.15); }
.content-page .faq-item { padding: 16px 0; border-bottom: 1px solid var(--bd); }
.content-page .faq-item:last-child { border-bottom: none; }
.content-page .faq-item h3 { font-size: .98rem; margin: 0 0 6px; color: var(--p); }
.content-page .faq-item p { margin: 0; color: var(--tx2); font-size: .9rem; }
.content-page .related-issues {
  margin: 40px 0; padding: 28px; background: #fff;
  border: 1px solid var(--bd); border-radius: var(--r-lg);
}
.content-page .related-issues h2 { margin-top: 0; font-size: 1.15rem; }
.content-page .related-issues ul { list-style: none; margin: 14px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.content-page .related-issues a { color: var(--p); text-decoration: none; font-weight: 600; font-size: .88rem; }
.content-page .related-issues a:hover { text-decoration: underline; }

/* ============================================
   STATIC PAGES
   ============================================ */
.static-page { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.static-page h1 { font-family: 'Merriweather', serif; font-size: 2rem; color: var(--p); margin-bottom: 20px; font-weight: 700; }
.static-page h2 { font-size: 1.4rem; margin: 30px 0 14px; font-weight: 700; }

/* ============================================
   HUB PAGES (brand/issue)
   ============================================ */
.hub-page { padding: 60px 0; max-width: 1000px; margin: 0 auto; }
.hub-page h1 { font-family: 'Merriweather', serif; font-size: 2rem; color: var(--p); margin-bottom: 8px; font-weight: 700; }
.hub-page .hub-desc { color: var(--tx2); margin-bottom: 32px; font-size: 1.05rem; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.hub-link { display: block; padding: 14px 18px; background: #fff; border-radius: 10px; color: var(--tx); text-decoration: none; font-size: .9rem; border: 1px solid var(--bd); transition: all .2s; }
.hub-link:hover { border-color: var(--p); background: #eff6ff; transform: translateX(4px); box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.hub-link strong { color: var(--p); }


/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-intro { color: var(--tx2); font-size: 1rem; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--bd); }
.sitemap-section { margin-bottom: 40px; }
.sitemap-section h2 { font-size: 1.3rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--bd); }
.sitemap-list { list-style: none; margin: 0; padding: 0; }
.sitemap-list li { margin-bottom: 4px; }
.sitemap-list a { color: var(--p); text-decoration: none; font-size: .9rem; display: block; padding: 6px 10px; border-radius: 6px; transition: all .15s; }
.sitemap-list a:hover { background: var(--bg2); text-decoration: underline; }
.sitemap-main .sitemap-main-link { display: inline-block; margin-right: 16px; margin-bottom: 8px; }
.sitemap-main .sitemap-main-link a { font-weight: 700; font-size: .95rem; padding: 8px 16px; background: var(--bg2); border-radius: 8px; }
.sitemap-main .sitemap-main-link a:hover { background: var(--p); color: #fff; text-decoration: none; }
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; }
@media (max-width: 768px) { .sitemap-grid { grid-template-columns: 1fr; } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 420px; margin: 0 auto; }
  .hero-left h1 { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .fet-card:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 768px) {
  .hero-section { clip-path: none; padding: 60px 0 70px; }
  .hero-left h1 { font-size: 1.7rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .features-grid { grid-template-columns: 1fr; }
  .fet-card:nth-child(1) { grid-column: span 1; }
  .site-nav { gap: 12px; }
  .site-nav a { font-size: .8rem; }
  .content-page .related-issues ul { grid-template-columns: 1fr; }
  .browse-grid { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-section { padding: 40px 0 50px; }
  .lead-card { padding: 22px 18px; }
  .container { padding: 0 16px; }
  .section-header h2 { font-size: 1.6rem; }
  .cta-section h2 { font-size: 1.7rem; }
}

/* Legacy/alias classes for AI-generated content */
.breadcrumb-item, .breadcrumb-list, .breadcrumb-wrapper, .breadcrumb-trail, .breadcrumbs,
.step-container, .support-content, .lsi, .lsi-keyword,
.current, .active, .sep, .number, .breadcrumb-nav,
.-content, .-step-content, .-step-number { /* inherit from parent */ }
.btn-primary, .btn-large { display: inline-block; width: auto; padding: 14px 32px; background: var(--p); color: #fff; border: none; border-radius: 10px; font-size: 1.05rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all .2s; }
.btn-primary:hover { background: var(--pd); }

/* ============================================
   Hero grid fix
   ============================================ */
.hero-right { min-width: 0; }
.hero-right .lead-card { height: 100%; }
.features-section, .testimonials-section, .cta-section { scroll-margin-top: 80px; }
