/* =============================================================
   Safe Ship Pack N Ship — Static Stylesheet
   Standalone CSS (no Tailwind/build step required).
   Drop this file alongside the HTML pages. All pages reference
   <link rel="stylesheet" href="styles.css">.
   ============================================================= */

:root {
  --ss-red: #DC2626;
  --ss-red-700: #B91C1C;
  --ss-blue: #1E3A8A;
  --ss-blue-900: #172554;
  --ss-ink: #0B1220;
  --ss-slate-50: #F8FAFC;
  --ss-slate-100: #F1F5F9;
  --ss-slate-200: #E2E8F0;
  --ss-slate-300: #CBD5E1;
  --ss-slate-500: #64748B;
  --ss-slate-600: #475569;
  --ss-slate-700: #334155;
  --ss-slate-900: #0F172A;
  --ss-emerald-50: #ECFDF5;
  --ss-emerald-500: #10B981;
  --ss-emerald-700: #047857;
  --ss-amber-300: #FCD34D;
  --ss-amber-500: #F59E0B;
  --ss-amber-900: #78350F;
  --ss-shadow-sm: 0 1px 2px rgba(2, 6, 23, 0.06);
  --ss-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  --ss-shadow-lg: 0 20px 50px rgba(2, 6, 23, 0.12);
  --ss-radius: 14px;
  --ss-radius-sm: 10px;
  --ss-max: 1152px;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ss-slate-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: -0.01em;
  margin: 0;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Focus ring */
.focus-ring:focus-visible {
  outline: 3px solid #BFDBFE;
  outline-offset: 2px;
  border-radius: 6px;
}

/* Layout helpers */
.container { max-width: var(--ss-max); margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.section { padding: 56px 0; }
@media (min-width: 640px) { .section { padding: 72px 0; } }

.bg-slate { background: var(--ss-slate-50); }
.bg-white { background: #fff; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: linear-gradient(90deg, #172554, #1E3A8A 55%, #172554);
  color: #fff;
  font-size: 13px;
}
.topbar-inner {
  display: flex; flex-direction: column; gap: 8px;
  align-items: stretch; padding: 8px 0;
}
.topbar-inner a { color: rgba(255,255,255,0.95); }
.topbar-inner a:hover { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 2px 10px; border-radius: 9999px;
  background: rgba(251,191,36,0.15); color: #FCD34D;
  border: 1px solid rgba(252,211,77,0.4);
  font-size: 11px; font-weight: 600;
}
.topbar-pill.open { background: rgba(16,185,129,0.15); color: #6EE7B7; border-color: rgba(110,231,183,0.4); }
.dot { width: 6px; height: 6px; border-radius: 9999px; background: currentColor; }
.dot.open { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@media (min-width: 640px) {
  .topbar-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Sticky nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--ss-slate-200);
  transition: box-shadow 0.2s ease;
}
.nav.scrolled { box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 640px) { .nav-inner { height: 80px; } }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; }
@media (min-width: 640px) { .nav-logo img { height: 56px; } }
.nav-links { display: none; gap: 4px; align-items: center; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  padding: 8px 12px; border-radius: 8px;
  color: var(--ss-slate-700); font-size: 14px; font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav-link:hover { background: var(--ss-slate-100); color: var(--ss-slate-900); }
.nav-link.active { color: var(--ss-blue); background: #EFF6FF; }
.nav-cta-group { display: flex; align-items: center; gap: 8px; }
.nav-mobile-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; width: 44px; border-radius: 8px;
  background: transparent; border: 0; color: var(--ss-slate-700);
}
.nav-mobile-toggle:hover { background: var(--ss-slate-100); }
@media (min-width: 1024px) { .nav-mobile-toggle { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; height: 48px; padding: 0 20px; border-radius: 12px;
  font-weight: 600; font-size: 15px; border: 0;
  transition: transform 0.06s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--ss-red); color: #fff; box-shadow: 0 10px 20px rgba(220,38,38,0.18); }
.btn-red:hover { background: var(--ss-red-700); }
.btn-blue { background: var(--ss-blue); color: #fff; }
.btn-blue:hover { background: var(--ss-blue-900); }
.btn-white { background: #fff; color: var(--ss-blue); }
.btn-white:hover { background: var(--ss-slate-100); }
.btn-lg { height: 56px; padding: 0 24px; font-size: 16px; }
.btn-sm { height: 40px; padding: 0 14px; font-size: 14px; }
.btn-block { width: 100%; }

/* Top-bar small CTAs */
.btn-cta-call { display: none; }
@media (min-width: 640px) { .btn-cta-call { display: inline-flex; height: 40px; padding: 0 16px; font-size: 14px; } }
.btn-cta-dir { display: none; }
@media (min-width: 1024px) { .btn-cta-dir { display: inline-flex; height: 40px; padding: 0 16px; font-size: 14px; } }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, rgba(30,58,138,0.10), rgba(255,255,255,1) 55%, rgba(220,38,38,0.08));
}
.hero-inner { padding: 40px 0 56px; display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 640px) { .hero-inner { padding: 56px 0 80px; } }
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 7fr 5fr; gap: 56px; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px;
  background: #fff; border-radius: 9999px; box-shadow: var(--ss-shadow-sm);
  border: 1px solid var(--ss-slate-200);
  color: var(--ss-blue); font-size: 12px; font-weight: 600;
}
.hero h1 {
  margin-top: 16px;
  font-size: 36px; line-height: 1.05; font-weight: 700; color: var(--ss-slate-900);
}
@media (min-width: 640px) { .hero h1 { font-size: 48px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 56px; } }
.hero h1 .accent-red { color: var(--ss-red); }
.hero h1 .accent-blue { color: var(--ss-blue); }
.hero p.lead {
  margin-top: 20px; max-width: 620px; font-size: 16px; line-height: 1.7; color: var(--ss-slate-700);
}
@media (min-width: 640px) { .hero p.lead { font-size: 18px; } }
.hero-checks {
  margin-top: 24px; display: grid; gap: 8px 24px;
  grid-template-columns: 1fr; font-size: 14px; color: var(--ss-slate-700);
}
@media (min-width: 640px) { .hero-checks { grid-template-columns: 1fr 1fr; } }
.hero-checks li { display: inline-flex; align-items: center; gap: 8px; }
.hero-check-icon { color: var(--ss-emerald-700); flex-shrink: 0; }
.hero-ctas { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.hero-media { position: relative; }
.hero-img-wrap {
  aspect-ratio: 4 / 5; width: 100%; overflow: hidden; border-radius: 18px;
  border: 1px solid var(--ss-slate-200); box-shadow: var(--ss-shadow-lg);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-floating-card {
  position: absolute; bottom: -16px; left: -16px;
  background: #fff; border-radius: 14px;
  box-shadow: var(--ss-shadow-lg); border: 1px solid var(--ss-slate-200);
  padding: 16px; width: 260px;
  display: none;
}
@media (min-width: 640px) { .hero-floating-card { display: block; } }
.hero-floating-card .label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--ss-slate-500);
}
.hero-floating-card .value {
  margin-top: 4px; font-size: 17px; font-weight: 700;
  color: var(--ss-slate-900); font-family: 'Space Grotesk', sans-serif;
}
.hero-floating-card .sub {
  margin-top: 4px; font-size: 12px; color: var(--ss-slate-500);
}

/* ---------- Carrier strip ---------- */
.carrier-strip {
  background: var(--ss-slate-50);
  border-top: 1px solid var(--ss-slate-200);
  border-bottom: 1px solid var(--ss-slate-200);
}
.carrier-inner {
  padding: 24px 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
@media (min-width: 640px) { .carrier-inner { flex-direction: row; gap: 32px; } }
.carrier-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ss-slate-500);
}
.carrier-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.carrier-badge {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6px 16px; border-radius: 10px; min-height: 44px; min-width: 76px;
  box-shadow: var(--ss-shadow-sm); font-family: 'Space Grotesk', sans-serif;
}
.carrier-badge .name { font-size: 18px; font-weight: 800; line-height: 1; letter-spacing: -0.01em; }
.carrier-badge .sub { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; margin-top: 2px; text-transform: uppercase; }
.carrier-ups { background: #351C15; }
.carrier-ups .name, .carrier-ups .sub { color: #FFB500; }
.carrier-fedex { background: #fff; border: 1px solid var(--ss-slate-200); padding: 8px 16px; }
.carrier-fedex .name { font-size: 18px; }
.carrier-fedex .name .fed { color: #4D148C; }
.carrier-fedex .name .ex { color: #FF6600; }
.carrier-usps { background: #fff; border: 1px solid var(--ss-slate-200); padding: 4px 16px; }
.carrier-usps .name { color: #004B87; font-size: 15px; }
.carrier-usps .bar { display: block; height: 2px; width: 32px; background: #E4002B; margin: 2px 0; }
.carrier-usps .sub { color: #004B87; font-size: 9px; }
.carrier-dhl { background: #FFCC00; }
.carrier-dhl .name, .carrier-dhl .sub { color: #D40511; }

/* ---------- Page header / banner ---------- */
.page-header {
  background: var(--ss-slate-50); border-bottom: 1px solid var(--ss-slate-200);
  padding: 48px 0;
}
@media (min-width: 640px) { .page-header { padding: 64px 0; } }
.page-header h1 {
  margin-top: 16px; font-size: 30px; font-weight: 700;
  color: var(--ss-slate-900); line-height: 1.1; max-width: 800px;
}
@media (min-width: 640px) { .page-header h1 { font-size: 38px; } }
@media (min-width: 1024px) { .page-header h1 { font-size: 46px; } }
.page-header p { margin-top: 16px; max-width: 640px; font-size: 17px; line-height: 1.6; color: var(--ss-slate-700); }
.page-header-ctas { margin-top: 24px; display: flex; gap: 12px; flex-direction: column; }
@media (min-width: 640px) { .page-header-ctas { flex-direction: row; } }

/* ---------- Section headings ---------- */
.section-eyebrow { font-size: 15px; font-weight: 500; color: var(--ss-slate-700); }
@media (min-width: 768px) { .section-eyebrow { font-size: 17px; } }
.section-title {
  margin-top: 8px; font-size: 28px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ss-slate-900); line-height: 1.15;
}
@media (min-width: 640px) { .section-title { font-size: 36px; } }
.section-lede {
  margin-top: 16px; font-size: 16px; line-height: 1.65; color: var(--ss-slate-600);
  max-width: 640px;
}

/* ---------- Card grid ---------- */
.cards-grid {
  display: grid; gap: 16px; margin-top: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards-grid { gap: 24px; } }
@media (min-width: 768px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: 1fr 1fr 1fr; } }
.card {
  background: #fff; border: 1px solid var(--ss-slate-200);
  border-radius: 14px; padding: 20px; box-shadow: var(--ss-shadow);
  transition: box-shadow 0.2s ease;
  height: 100%;
}
.card-link { display: block; color: inherit; }
.card-link:hover { box-shadow: 0 14px 40px rgba(2, 6, 23, 0.10); }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--ss-slate-50); border: 1px solid var(--ss-slate-200);
  display: inline-flex; align-items: center; justify-content: center; color: var(--ss-blue);
}
.card h3 { margin-top: 16px; font-size: 18px; font-weight: 600; color: var(--ss-slate-900); }
.card p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--ss-slate-600); }
.card-more {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--ss-blue);
}
.card-link:hover .card-more { color: var(--ss-blue-900); }
.card-more .arrow { transition: transform 0.2s ease; }
.card-link:hover .arrow { transform: translateX(2px); }

/* Subservice card (check icon + title) */
.sub-card { display: flex; align-items: flex-start; gap: 12px; }
.sub-check {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 9999px;
  background: var(--ss-emerald-50); color: var(--ss-emerald-700);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #A7F3D0;
}
.sub-card h3 { margin: 0; font-size: 16px; }
.sub-card p { margin-top: 4px; }

/* ---------- Two-column blocks ---------- */
.two-col {
  display: grid; gap: 40px; align-items: flex-start;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 7fr 5fr; gap: 56px; } }
.two-col.reverse-md > *:first-child { order: 1; }
.tag-list { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-flex; align-items: center; padding: 4px 12px;
  background: #fff; border-radius: 9999px; font-size: 13px;
  color: var(--ss-slate-700); border: 1px solid var(--ss-slate-200);
}

/* ---------- Hours widget ---------- */
.hours-card {
  background: #fff; border: 1px solid var(--ss-slate-200);
  border-radius: 14px; padding: 20px; box-shadow: var(--ss-shadow-sm);
}
.hours-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hours-head .title {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 600; color: var(--ss-slate-900);
  font-family: 'Space Grotesk', sans-serif;
}
.hours-head .icon { color: var(--ss-blue); }
.hours-list {
  margin-top: 16px; font-size: 14px;
}
.hours-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-top: 1px solid var(--ss-slate-100);
}
.hours-list li:first-child { border-top: 0; }
.hours-list .day { color: var(--ss-slate-700); }
.hours-list .hrs { font-weight: 500; color: var(--ss-slate-900); }
.hours-list .closed { color: var(--ss-slate-300); }
.hours-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 9999px;
  font-size: 12px; font-weight: 700;
}
.hours-status.open { background: var(--ss-emerald-50); color: #065F46; border: 1px solid #A7F3D0; }
.hours-status.closed { background: #FFFBEB; color: var(--ss-amber-900); border: 1px solid #FDE68A; }
.hours-status .dot { background: currentColor; }
.hours-sub { margin-top: 4px; font-size: 12px; color: var(--ss-slate-500); }

/* ---------- Map embed ---------- */
.map-wrap {
  width: 100%; overflow: hidden; border-radius: 14px;
  border: 1px solid var(--ss-slate-200); box-shadow: var(--ss-shadow-sm);
}
.map-wrap iframe { display: block; width: 100%; border: 0; }

/* ---------- Testimonials ---------- */
.testimonial { background: #fff; border: 1px solid var(--ss-slate-200); border-radius: 14px; padding: 20px; }
.stars { color: var(--ss-amber-500); font-size: 14px; }
.testimonial p { margin-top: 12px; font-size: 14px; line-height: 1.7; color: var(--ss-slate-700); }
.testimonial .meta { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--ss-slate-500); }
.testimonial .meta .name { font-weight: 600; color: var(--ss-slate-700); }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--ss-blue); color: #fff; }
.cta-inner {
  padding: 48px 0; display: grid; gap: 24px;
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 1024px) { .cta-inner { padding: 56px 0; grid-template-columns: 1fr 1fr; } }
.cta-inner h2 { font-size: 26px; font-weight: 600; line-height: 1.2; }
@media (min-width: 640px) { .cta-inner h2 { font-size: 32px; } }
.cta-inner p { margin-top: 12px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.85); max-width: 540px; }
@media (min-width: 640px) { .cta-inner p { font-size: 16px; } }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }
@media (min-width: 1024px) { .cta-actions { justify-content: flex-end; } }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 24px; }
.faq-item { border-bottom: 1px solid var(--ss-slate-200); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0; cursor: pointer; list-style: none;
  font-weight: 600; font-size: 16px; color: var(--ss-slate-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 20px; color: var(--ss-slate-500);
  width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 0 16px; font-size: 14px; line-height: 1.7; color: var(--ss-slate-700); max-width: 700px; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--ss-slate-200);
  border-radius: 14px; padding: 24px; box-shadow: var(--ss-shadow-sm);
}
@media (min-width: 640px) { .form-card { padding: 32px; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 14px; font-weight: 500; color: var(--ss-slate-700); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--ss-slate-200); font: inherit;
  background: #fff; color: var(--ss-slate-900);
  min-height: 48px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--ss-blue);
  box-shadow: 0 0 0 4px #DBEAFE;
}
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.footer { background: var(--ss-ink); color: #fff; margin-top: 48px; }
.footer-inner { padding: 48px 0; display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(4, 1fr); } }
.footer img { background: #fff; padding: 4px; border-radius: 6px; height: 52px; width: auto; }
.footer h3 {
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.footer ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.85); }
.footer a { color: inherit; }
.footer a:hover { color: #fff; }
.footer-row { display: flex; align-items: center; gap: 8px; }
.footer-row .ico { color: var(--ss-red); flex-shrink: 0; }
.footer-tagline { margin-top: 16px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.8); }
.footer-bar {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.6);
}
@media (min-width: 640px) { .footer-bar { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15,23,42,0.5); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 88%; max-width: 360px; background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.2s ease;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
}
.mobile-drawer.open .mobile-panel { transform: translateX(0); }
.mobile-head { padding: 20px; border-bottom: 1px solid var(--ss-slate-200); display: flex; align-items: center; justify-content: space-between; }
.mobile-head .title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; }
.mobile-head .sub { font-size: 12px; color: var(--ss-slate-500); margin-top: 2px; }
.mobile-close { background: transparent; border: 0; width: 44px; height: 44px; border-radius: 8px; }
.mobile-close:hover { background: var(--ss-slate-100); }
.mobile-links { padding: 12px; overflow-y: auto; flex: 1; }
.mobile-link {
  display: block; padding: 12px; border-radius: 8px;
  font-size: 16px; font-weight: 500; color: var(--ss-slate-900);
}
.mobile-link:hover { background: var(--ss-slate-100); }
.mobile-link.active { background: #EFF6FF; color: var(--ss-blue); }
.mobile-foot { padding: 16px 20px 24px; border-top: 1px solid var(--ss-slate-200); display: flex; flex-direction: column; gap: 10px; }

/* ---------- Utility ---------- */
.muted { color: var(--ss-slate-500); }
.small { font-size: 13px; }
.txt-center { text-align: center; }
.success-card {
  background: var(--ss-emerald-50); border: 1px solid #A7F3D0;
  color: #065F46; border-radius: 12px; padding: 16px; margin-top: 16px;
  display: none;
}
.success-card.show { display: block; }
.error-text { color: #B91C1C; font-size: 12px; margin-top: 4px; display: none; }
.error-text.show { display: inline-flex; align-items: center; gap: 4px; }

/* Print */
@media print {
  .no-print, .topbar, .nav, .footer, .cta-strip { display: none !important; }
}
