/* ═══════════════════════════════════════════════════════════
   Everyday Printing Needs — Bing-Safe Edition
   Design: Clean editorial / warm professional
   Fonts: Plus Jakarta Sans + Lora
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --ink:        #1a1d23;
  --ink-2:      #3d424f;
  --ink-3:      #6b7280;
  --border:     #e5e7eb;
  --border-2:   #d1d5db;
  --paper:      #f9f8f6;
  --paper-2:    #f3f2ef;
  --white:      #ffffff;

  --blue:       #1d4ed8;
  --blue-dark:  #1e3a8a;
  --blue-light: #eff6ff;
  --blue-mid:   #dbeafe;

  --teal:       #0d9488;
  --teal-light: #f0fdfa;
  --amber:      #d97706;
  --amber-light:#fffbeb;
  --red:        #dc2626;
  --red-light:  #fef2f2;
  --green:      #16a34a;
  --green-light:#f0fdf4;

  --nav-bg:     #0f172a;
  --footer-bg:  #0f172a;
  --footer-text:#94a3b8;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);

  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'Lora', Georgia, serif;

  --max-w: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.65; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: inherit; }
ul, ol { padding-left: 1.4em; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; font-weight: 700; color: var(--ink); }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section    { padding: clamp(56px, 8vw, 96px) 0; }
.bg-paper   { background: var(--paper); }

/* ── DISCLAIMER BAR ──────────────────────────────────────── */
.disclaimer-bar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.92);
  font-size: .8rem;
  padding: 8px var(--gutter);
  line-height: 1.5;
}
.disclaimer-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.disclaimer-bar svg { flex-shrink: 0; margin-top: 2px; opacity: .8; }
.disclaimer-bar strong { color: #fff; }
.disclaimer-link {
  color: #93c5fd;
  white-space: nowrap;
  text-decoration: underline;
  margin-left: auto;
  padding-left: 16px;
}
.disclaimer-link:hover { color: #bfdbfe; }

/* ── SITE HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.logo-icon svg { width: 20px; height: 20px; stroke: white; }
.logo-name { font-size: 1.05rem; font-weight: 800; color: var(--ink); line-height: 1.2; }
.logo-name span { color: var(--blue); }
.logo-sub { font-size: .7rem; color: var(--ink-3); font-weight: 500; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.site-nav a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--blue);
  background: var(--blue-light);
}

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: .88rem; font-weight: 700;
  color: var(--blue); text-decoration: none;
  padding: 7px 14px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  transition: all .15s;
}
.header-phone svg { width: 15px; height: 15px; }
.header-phone:hover { background: var(--blue); color: white; text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: none; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all .2s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: clamp(48px, 8vw, 96px) 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #fafafa 60%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,78,216,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
  font-family: var(--font-serif);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px 24px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--ink-2);
}
.hero-trust-item svg { width: 16px; height: 16px; stroke: var(--teal); flex-shrink: 0; }

/* Hero Card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 28px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-card-title {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.brand-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: all .15s;
}
.brand-item:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
}
.brand-abbr {
  width: 36px; height: 36px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.brand-info { flex: 1; }
.brand-info strong { display: block; font-size: .88rem; font-weight: 700; }
.brand-info span { font-size: .75rem; color: var(--ink-3); }
.brand-arrow { margin-left: auto; opacity: .4; }
.brand-item:hover .brand-arrow { opacity: 1; }
.hero-card-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue);
  color: white;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.hero-card-cta:hover { background: var(--blue-dark); text-decoration: none; color: white; }
.hero-card-cta svg { opacity: .8; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: var(--nav-bg);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.75);
}
.trust-item svg { width: 16px; height: 16px; stroke: #60a5fa; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .9rem; font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-lg    { padding: 13px 24px; font-size: .95rem; }
.btn-sm    { padding: 7px 14px; font-size: .82rem; }
.btn-primary { background: var(--blue); color: white; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: white; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: white; }
.btn-outline-light { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: white; color: var(--blue); border-color: white; }
.btn-ghost  { background: transparent; color: var(--ink-2); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--paper); border-color: var(--ink-3); color: var(--ink); }

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin: 10px 0 14px; }
.section-header p  { font-size: 1rem; color: var(--ink-2); line-height: 1.7; }
.tag {
  display: inline-block;
  font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  padding: 4px 12px; border-radius: 100px;
}

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .2s;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--blue); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: .9rem; color: var(--ink-2); line-height: 1.65; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .85rem; font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: gap .15s;
}
.service-link:hover { gap: 8px; text-decoration: none; }

/* ── STEPS ────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: none;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.step-number {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--blue);
  color: white;
  font-size: 1.1rem; font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.step-card h4 { font-size: 1rem; margin-bottom: 8px; }
.step-card p  { font-size: .88rem; color: var(--ink-2); line-height: 1.6; }

/* ── BRAND CARDS ─────────────────────────────────────────── */
.brand-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.brand-card-header {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.brand-card-abbr {
  width: 48px; height: 48px;
  background: var(--nav-bg);
  color: white;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.brand-card h3 { font-size: 1rem; margin: 0 0 4px; }
.brand-models { font-size: .78rem; color: var(--ink-3); }
.brand-card-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.brand-card-official {
  font-size: .75rem;
  color: var(--ink-3);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 12px;
  max-width: 1040px;
  margin: 0 auto;
}
details.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
details.faq-item[open] { border-color: var(--blue); }
details.faq-item summary {
  font-size: .95rem;
  font-weight: 700;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.3rem; font-weight: 400; line-height: 1;
  color: var(--ink-3);
  flex-shrink: 0;
}
details.faq-item[open] summary::after { content: '−'; }
details.faq-item p {
  padding: 0 20px 18px;
  font-size: .9rem; color: var(--ink-2); line-height: 1.7;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1d4ed8 100%);
  padding: clamp(48px, 6vw, 80px) 0;
}
.cta-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 28px;
}
.cta-inner h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: white; margin-bottom: 8px; }
.cta-inner p  { color: rgba(255,255,255,.75); font-size: .95rem; }
.cta-actions  { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── DISCLAIMER SECTION (footer) ─────────────────────────── */
.disclaimer-section {
  background: var(--amber-light);
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
  padding: 24px 0;
}
.disclaimer-box {
  background: white;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.disclaimer-box h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; text-transform: uppercase;
  letter-spacing: .04em; margin-bottom: 10px;
  color: var(--amber);
}
.disclaimer-box p {
  font-size: .85rem;
  color: var(--ink-2);
  line-height: 1.75;
}
.disclaimer-box strong { color: var(--ink); }
.disclaimer-box a { color: var(--blue); }

/* ── SITE FOOTER ─────────────────────────────────────────── */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 64px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { text-decoration: none; display: inline-block; margin-bottom: 12px; }
.footer-logo .logo-name { color: white; }
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 16px; }
.footer-hours p { font-size: .8rem; line-height: 1.8; }
.footer-col h5 {
  font-size: .78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; color: white; margin-bottom: 12px;
}
.footer-col a {
  display: block; font-size: .83rem;
  color: var(--footer-text); margin-bottom: 6px;
  text-decoration: none; transition: color .15s;
}
.footer-col a:hover { color: white; }
.footer-addr { font-size: .8rem; line-height: 1.7; margin-top: 8px; }
.footer-mfr-phones { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-mfr-phones h6 { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.footer-mfr-phones p { font-size: .78rem; line-height: 1.8; color: rgba(255,255,255,.45); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 12px;
  font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: clamp(36px, 5vw, 64px) 0;
}
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 8px 0 12px; }
.page-hero .lead { font-size: 1rem; color: var(--ink-2); max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--ink-3);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { width: 12px; height: 12px; stroke: var(--ink-3); }

/* ── LEGAL / LEGAL-NAV ────────────────────────────────────── */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.legal-nav {
  position: sticky; top: 80px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.legal-nav h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); margin-bottom: 12px; }
.legal-nav a {
  display: block; font-size: .82rem; color: var(--ink-2);
  padding: 5px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: color .15s;
}
.legal-nav a:last-child { border-bottom: none; }
.legal-nav a:hover { color: var(--blue); }
.legal-body section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.legal-body section:last-child { border-bottom: none; }
.legal-body h2 { font-size: 1.15rem; margin-bottom: 12px; }
.legal-body h3 { font-size: 1rem; margin: 20px 0 8px; }
.legal-body p  { font-size: .92rem; color: var(--ink-2); line-height: 1.75; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { font-size: .92rem; color: var(--ink-2); line-height: 1.75; margin-bottom: 12px; }
.legal-body li { margin-bottom: 4px; }
.legal-body a  { color: var(--blue); }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: .92rem; font-family: inherit;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-info-card h3 { margin-bottom: 20px; }
.contact-item { display: flex; gap: 12px; margin-bottom: 18px; }
.contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: var(--blue); }
.ci-icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--blue-light, #eff6ff); border-radius: 10px; }
.ci-icon svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item .ci-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-3); margin-bottom: 2px; font-weight: 700; }
.contact-item .ci-value { font-size: .9rem; color: var(--ink); font-weight: 600; }
.contact-item .ci-value a { color: var(--blue); }

/* ── ALERT / NOTICE ───────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: .9rem; margin-bottom: 20px; }
.alert-success { background: var(--green-light); border: 1px solid #86efac; color: #14532d; }
.alert-error   { background: var(--red-light); border: 1px solid #fca5a5; color: #7f1d1d; }


/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════ */

/* Section sizing */
.section-sm { padding: clamp(32px, 5vw, 56px) 0; }
.bg-paper   { background: var(--paper); }

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }

/* Typography */
.text-white { color: #ffffff !important; }

/* Tags */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  background: var(--blue-light); color: var(--blue);
  padding: 5px 12px; border-radius: 20px; margin-bottom: 12px;
}

/* Section header */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin: 10px 0 14px; }
.section-header p  { font-size: 1rem; color: var(--ink-2); line-height: 1.7; }

/* Page hero */
.page-hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 56px);
  background: linear-gradient(135deg, #f0f4ff 0%, #fafafa 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1   { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 12px 0; }
.page-hero .lead { font-size: 1rem; color: var(--ink-2); margin-top: 8px; max-width: 600px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--ink-3); margin-bottom: 12px; }
.breadcrumb a { color: var(--blue); }
.breadcrumb svg { opacity: .4; }

/* Legal layout */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.legal-nav {
  position: sticky; top: 88px;
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.legal-nav h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 12px; }
.legal-nav a {
  display: block; font-size: .84rem; color: var(--ink-2);
  padding: 6px 8px; border-radius: var(--radius-sm);
  text-decoration: none; margin-bottom: 2px;
  transition: background .15s, color .15s;
}
.legal-nav a:hover { background: var(--blue-light); color: var(--blue); }
.legal-body h2 { font-size: 1.2rem; margin-bottom: 14px; }
.legal-body section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.legal-body section:last-child { border-bottom: none; }
.legal-body ul, .legal-body ol { margin: 12px 0 12px 20px; line-height: 1.9; color: var(--ink-2); }
.legal-body p { margin-bottom: 14px; color: var(--ink-2); line-height: 1.75; }
.legal-body h3 { font-size: 1rem; margin: 20px 0 8px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; background: var(--paper);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.ci-icon {
  width: 40px; height: 40px; background: var(--blue-light);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--blue);
}
.ci-label { font-size: .75rem; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.ci-value { font-size: .95rem; font-weight: 600; color: var(--ink); }
.ci-value a { color: var(--blue); }

/* Warn / disclaimer box */
.warn-box {
  background: var(--amber-light); border-left: 4px solid var(--amber);
  border-radius: var(--radius-sm); padding: 16px 20px;
  font-size: .88rem; color: var(--ink-2); line-height: 1.6;
}
.disclaimer-box {
  background: var(--amber-light); border: 1px solid #fde68a;
  border-radius: var(--radius-lg); padding: 20px 24px;
}
.disclaimer-box h3 {
  font-size: .9rem; font-weight: 700; color: #92400e;
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.disclaimer-box p { font-size: .87rem; color: #78350f; line-height: 1.6; margin: 0; }

/* Alert boxes */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: .9rem; line-height: 1.5; }
.alert-success { background: var(--green-light); border: 1px solid #86efac; color: #166534; }
.alert-error   { background: var(--red-light);   border: 1px solid #fca5a5; color: #991b1b; }

/* Forms */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .84rem; font-weight: 600; color: var(--ink-2); }
.form-control {
  padding: 10px 14px; border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm); font-family: inherit;
  font-size: .92rem; color: var(--ink); background: white;
  transition: border-color .15s; width: 100%;
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,.1); }
textarea.form-control { min-height: 130px; resize: vertical; }
.req { color: var(--red); }
.form-submit { width: 100%; justify-content: center; }

/* Team cards */
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px; text-align: center;
}
.team-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white; font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: .78rem; color: var(--blue); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.team-bio  { font-size: .84rem; color: var(--ink-3); line-height: 1.55; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Single source of truth, mobile-first ordering
   ═══════════════════════════════════════════════════════════ */

/* ── ≤ 1100px  (large tablet / small laptop) ── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── ≤ 900px  (tablet — hamburger kicks in) ── */
@media (max-width: 900px) {

  /* HEADER: switch to hamburger layout */
  .site-header { position: relative; } /* anchor for absolute dropdown */

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 64px;
    gap: 12px;
  }

  /* Logo stays left */
  .site-logo { flex-shrink: 0; }

  /* Desktop nav — hidden until toggled */
  .site-nav {
    display: none !important;          /* always hidden at this width */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 200;                      /* above everything except disclaimer bar */
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-top: 2px solid var(--blue);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .site-nav.open {
    display: flex !important;          /* JS adds .open */
  }
  .site-nav a {
    padding: 14px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
  }
  .site-nav a:last-child { border-bottom: none; }

  /* Phone link — show short version */
  .header-phone {
    display: none;                     /* hide phone text on tablet/mobile */
  }

  /* Hamburger button — always visible */
  .nav-toggle {
    display: flex !important;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 2px solid var(--blue);
    border-radius: var(--radius-sm);
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
  }
  /* X animation when open */
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Layout fixes */
  .hero-grid    { grid-template-columns: 1fr; }
  .hero-card    { display: none; }
  .faq-grid     { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav    { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
}

/* ── ≤ 700px  (large phone) ── */
@media (max-width: 700px) {
  .footer-top       { grid-template-columns: 1fr 1fr; }
  .cta-inner        { flex-direction: column; text-align: center; }
  .cta-actions      { justify-content: center; flex-wrap: wrap; }
  .hero-actions     { flex-direction: column; }
  .brand-cards,
  .services-grid,
  .steps-grid       { grid-template-columns: 1fr; }

  /* Show phone number as icon-only on small phones */
  .header-phone {
    display: flex;
    padding: 7px;
    border-radius: 50%;
    width: 38px; height: 38px;
    justify-content: center;
    align-items: center;
  }
  .header-phone svg  { width: 17px; height: 17px; flex-shrink: 0; }
  /* Hide phone number text, keep icon */
  .header-phone-text { display: none; }
}

/* ── ≤ 480px  (small phone) ── */
@media (max-width: 480px) {
  .footer-top    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* Tighten disclaimer bar */
  .disclaimer-bar-inner { flex-direction: column; gap: 6px; }
  .disclaimer-link { margin-left: 0; padding-left: 0; }

  /* Tighten page hero */
  .page-hero { padding: 28px 0 24px; }

  /* Ensure container doesn't overflow */
  .container { padding: 0 16px; }

  /* Table overflow fix */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── PRINT ── */
@media print {
  .disclaimer-bar, .site-header, .trust-bar, .cta-section, .site-footer { display: none; }
  .disclaimer-section { background: none; border: 1px solid #ccc; }
}
