:root {
  --ink: #11191f;
  --charcoal: #172129;
  --navy: #17314a;
  --muted: #607078;
  --line: #dce3e5;
  --paper: #f7f9f7;
  --white: #fff;
  --dynamic-blue: #1e6ea7;
  --dynamic-orange: #f29d35;
  --cfs-green: #0b7b5d;
  --cfs-blue: #315f86;
  --steel: #7f929b;
  --shadow: 0 22px 70px rgba(17, 25, 31, 0.16);
  --shadow-soft: 0 12px 34px rgba(17, 25, 31, 0.08);
  --shadow-button: 0 12px 24px rgba(17, 25, 31, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  --radius: 8px;
  --surface: rgba(255, 255, 255, 0.82);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(30, 110, 167, 0.08), transparent 34rem),
    radial-gradient(circle at 88% 14%, rgba(11, 123, 93, 0.08), transparent 30rem),
    linear-gradient(180deg, #fbfcfb 0%, var(--paper) 28%, #eef4f3 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: clamp(2.55rem, 6vw, 5.8rem); line-height: 0.98; letter-spacing: 0; }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.05; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 1.18rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px clamp(16px, 4vw, 54px);
  background: rgba(248, 251, 250, 0.82);
  border-bottom: 1px solid rgba(220, 227, 229, 0.9);
  box-shadow: 0 14px 40px rgba(17, 25, 31, 0.06);
  backdrop-filter: blur(18px) saturate(1.15);
}
.brand { display: flex; gap: 8px; align-items: center; font-weight: 900; }
.brand span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, #2385bd, var(--dynamic-blue));
  box-shadow: 0 9px 20px rgba(30, 110, 167, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.brand span + span {
  background: linear-gradient(145deg, #12a277, var(--cfs-green));
  box-shadow: 0 9px 20px rgba(11, 123, 93, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.nav { justify-self: center; display: flex; gap: clamp(12px, 2.5vw, 28px); color: #53636b; font-weight: 800; font-size: 0.93rem; }
.nav a {
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--dynamic-blue), var(--cfs-green));
  border-radius: 99px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}
.nav a:hover::after { opacity: 1; transform: scaleX(1); }
.nav a:hover, .footer a:hover { color: var(--dynamic-blue); }
.header-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.nav, .header-actions { scrollbar-width: none; }
.nav::-webkit-scrollbar, .header-actions::-webkit-scrollbar { display: none; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 19px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%);
  opacity: 0.8;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button.primary, .button.dark {
  color: var(--white);
  background: linear-gradient(145deg, #23313b, var(--charcoal));
  box-shadow: var(--shadow-button);
}
.button.primary:hover, .button.dark:hover { box-shadow: 0 16px 34px rgba(17, 25, 31, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16); }
.button.secondary { color: var(--ink); background: rgba(255, 255, 255, 0.94); border: 1px solid rgba(203, 214, 216, 0.95); box-shadow: 0 8px 18px rgba(17, 25, 31, 0.07); }
.button.secondary:hover { border-color: rgba(30, 110, 167, 0.34); box-shadow: 0 14px 30px rgba(17, 25, 31, 0.12); }
.button.ghost { color: var(--white); background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25); }
.button.ghost-dark { color: var(--ink); background: rgba(255, 255, 255, 0.36); border: 1px solid #b9c6ca; box-shadow: 0 8px 18px rgba(17, 25, 31, 0.06); }
.button.alt { color: var(--white); background: linear-gradient(145deg, #11a77a, var(--cfs-green)); box-shadow: 0 12px 24px rgba(11, 123, 93, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16); }
.button.small { min-height: 38px; padding: 0 12px; font-size: 0.82rem; }

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: clamp(76px, 10vw, 120px) clamp(20px, 6vw, 88px);
  overflow: hidden;
}
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 19, 24, 0.92), rgba(20, 37, 49, 0.68) 45%, rgba(20, 37, 49, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
}
.hero-content { position: relative; max-width: 880px; color: var(--white); }
.hero h1 {
  max-width: 860px;
  font-size: clamp(2.55rem, 5.25vw, 5rem);
}
.hero-copy, .page-hero p { max-width: 720px; color: rgba(255, 255, 255, 0.85); font-size: 1.13rem; }
.slogan { margin-bottom: 16px; color: var(--dynamic-orange); font-size: 1.28rem; font-weight: 900; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.eyebrow, .panel-label { margin: 0 0 12px; color: var(--dynamic-orange); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }

.split-brands { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: linear-gradient(90deg, rgba(30, 110, 167, 0.18), var(--line), rgba(11, 123, 93, 0.18));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar span {
  padding: 18px clamp(16px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.86);
  color: var(--charcoal);
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(10px);
}
.brand-panel { min-height: 380px; padding: clamp(34px, 6vw, 76px); color: var(--white); position: relative; overflow: hidden; }
.brand-panel::after {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.dynamic-panel { background: linear-gradient(135deg, #0f3653, var(--dynamic-blue) 58%, #d77f20); }
.cfs-panel { background: linear-gradient(135deg, #123e36, var(--cfs-green) 58%, var(--cfs-blue)); }
.brand-panel p, .brand-panel li { color: rgba(255, 255, 255, 0.84); }
.brand-panel a { display: inline-flex; margin-top: 18px; font-weight: 900; border-bottom: 2px solid rgba(255, 255, 255, 0.72); }
.feature-list { display: grid; gap: 10px; padding-left: 20px; }

.section { padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 88px); }
.two-column, .form-shell { display: grid; grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr); gap: clamp(28px, 6vw, 78px); align-items: start; }
.section-heading { max-width: 800px; margin-bottom: 28px; }
.help-grid, .service-list, .card-grid, .service-columns, .tools-grid { display: grid; gap: 18px; }
.help-grid, .service-list, .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-columns { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tools-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
.help-grid a, .service-list article, .card-grid article, .service-columns > div, .request-form, .tool-card, .success-card {
  background: var(--surface);
  border: 1px solid rgba(220, 227, 229, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  position: relative;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}
.help-grid a::after, .service-list article::after, .card-grid article::after, .service-columns > div::after, .request-form::after, .tool-card::after, .success-card::after, .service-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}
.help-grid a, .service-list article, .card-grid article, .service-columns > div, .request-form, .tool-card { padding: 24px; }
.help-grid a:hover,
.service-card:hover,
.tool-card:hover,
.service-list article:hover,
.service-columns > div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(30, 110, 167, 0.24);
  background: rgba(255, 255, 255, 0.94);
}
.help-grid span { display: block; margin-top: 8px; color: var(--muted); }
.service-list span { color: var(--dynamic-orange); font-weight: 900; }
.dark-band { color: var(--white); background: linear-gradient(135deg, #101820, var(--charcoal) 62%, #163c35); }
.dark-band .service-list article { color: var(--ink); }
.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(237, 243, 242, 0.92), rgba(255, 255, 255, 0.84));
  border-top: 1px solid rgba(220, 227, 229, 0.9);
  border-bottom: 1px solid rgba(220, 227, 229, 0.9);
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-content: center;
  padding: clamp(70px, 10vw, 118px) clamp(20px, 6vw, 88px);
  color: var(--white);
}
.dynamic-hero { background: linear-gradient(135deg, #102131, var(--dynamic-blue), #d4832e); }
.cfs-hero { background: linear-gradient(135deg, #112722, var(--cfs-green), var(--cfs-blue)); }
.tools-hero { background: linear-gradient(135deg, #141f27, #24445d 58%, #397162); }

.form-page { background: linear-gradient(135deg, #eef4f5, #f8faf8); }
.large-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.large-form h3, .large-form .form-status, .large-form button, .large-form label:has(textarea), .large-form label:has(input[type="file"]), .dynamic-fields { grid-column: 1 / -1; }
.dynamic-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label { display: grid; gap: 7px; color: #304047; font-size: 0.9rem; font-weight: 900; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cbd6d8;
  border-radius: var(--radius);
  font: inherit;
  box-shadow: inset 0 1px 2px rgba(17, 25, 31, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
textarea { resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #aebdc2; background: var(--white); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(30, 110, 167, 0.16); border-color: var(--dynamic-blue); box-shadow: 0 0 0 1px rgba(30, 110, 167, 0.12), inset 0 1px 2px rgba(17, 25, 31, 0.04); background: var(--white); }
.form-status, .tool-output { min-height: 24px; margin: 0; color: var(--muted); font-weight: 800; }
.tool-card { display: grid; gap: 14px; }
.tool-group + .tool-group { margin-top: 58px; }
.tool-meta, .company-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--charcoal);
  background: linear-gradient(180deg, #f6fbfa, #e8f1ef);
  border: 1px solid rgba(203, 214, 216, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
}
.wide-tool { grid-column: span 2; }
.priority-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.priority-options label { grid-template-columns: auto 1fr; align-items: center; font-weight: 800; }
.priority-options input { width: 18px; min-height: 18px; }
.checkbox-field { grid-template-columns: auto 1fr; align-items: center; }
.checkbox-field input { width: 18px; min-height: 18px; }
.tool-output ul { padding-left: 20px; margin: 8px 0 0; }
.qr-output img { width: min(220px, 100%); height: auto; display: block; margin-top: 12px; border: 1px solid var(--line); border-radius: 8px; }

.success-page { min-height: 72vh; display: grid; place-items: center; padding: 32px; }
.success-card { max-width: 760px; padding: clamp(30px, 6vw, 58px); }
.success-card h1 { font-size: clamp(2.4rem, 5vw, 4.3rem); }
.ticket-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.ticket-summary div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}
.ticket-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}
.form-note {
  grid-column: 1 / -1;
  padding: 16px;
  color: var(--charcoal);
  background: #edf3f2;
  border: 1px solid #d6e5e1;
  border-radius: 8px;
}
.form-note p { margin: 6px 0 0; color: var(--muted); }
.directory-shell { padding-top: 36px; }
.directory-controls {
  position: sticky;
  top: 68px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px;
  background: rgba(247, 249, 247, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.directory-group + .directory-group { margin-top: 44px; }
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 260px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(220, 227, 229, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, box-shadow 160ms ease;
  position: relative;
}
.service-card p { color: var(--muted); }
.empty-state {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.not-sure-band, .emergency-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #edf3f2, #fbfdfc);
}
.emergency-band { background: linear-gradient(135deg, #fff4e5, #fffaf1); }
.dark-text { color: var(--ink); }
.footer { display: flex; justify-content: space-between; gap: 16px; padding: 28px clamp(20px, 6vw, 88px); color: var(--muted); border-top: 1px solid var(--line); }
.footer p { margin: 0; }
.mobile-cta-bar { display: none; }
.site-contact-block {
  padding: 24px clamp(20px, 6vw, 88px);
  background: linear-gradient(135deg, #101820, var(--charcoal));
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.urgent-note {
  padding: 14px;
  background: linear-gradient(180deg, #fff8ea, #fff1d5);
  border: 1px solid #f2c16e;
  border-radius: var(--radius);
  font-weight: 900;
}
.tool-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.inventory-room {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 252, 252, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.inventory-room + .inventory-room { margin-top: 12px; }
.inventory-room h4 { margin: 0; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr; }
  .nav { justify-self: start; }
  .header-actions { justify-content: flex-start; }
  .service-columns, .tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px 10px;
    overflow: visible;
    padding-bottom: 2px;
  }
  .nav a {
    min-height: 28px;
    display: grid;
    place-items: center;
    padding: 3px 0;
    text-align: center;
  }
  .nav a::after { display: none; }
  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }
  .button.small {
    min-width: 0;
    min-height: 48px;
    padding: 7px 8px;
    font-size: 0.76rem;
    line-height: 1.12;
    text-align: center;
    white-space: normal;
  }
  .hero {
    min-height: 760px;
    align-items: end;
    padding-bottom: 172px;
  }
  .hero-overlay { background: linear-gradient(180deg, rgba(12, 19, 24, 0.2), rgba(12, 19, 24, 0.92)); }
  .split-brands, .trust-bar, .two-column, .form-shell, .help-grid, .service-list, .card-grid, .service-columns, .tools-grid, .contact-band, .large-form, .dynamic-fields, .priority-options, .directory-controls, .service-card-grid, .not-sure-band, .emergency-band, .ticket-summary {
    grid-template-columns: 1fr;
  }
  .directory-controls { position: static; }
  .wide-tool { grid-column: auto; }
  .contact-actions { width: 100%; }
  .contact-actions .button { width: 100%; }
  .hero .hero-actions { display: none; }
  .footer { flex-direction: column; }
  body { padding-bottom: 72px; }
  .mobile-cta-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 8px;
    background: rgba(247, 249, 247, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }
  .mobile-cta-bar a {
    min-height: 46px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--charcoal);
    font-weight: 900;
    font-size: 0.85rem;
  }
  .mobile-cta-bar a:nth-child(2) { background: var(--cfs-green); }
  .mobile-cta-bar a:nth-child(3) { background: var(--dynamic-blue); }
}

/* Premium polish pass */
:root {
  --focus: 0 0 0 4px rgba(30, 110, 167, 0.2);
  --card-border: rgba(201, 214, 219, 0.78);
  --card-topline: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  --deep-shadow: 0 28px 80px rgba(13, 23, 31, 0.18);
}

body {
  min-width: 320px;
  text-rendering: optimizeLegibility;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus), inset 0 1px 2px rgba(17, 25, 31, 0.04);
}

.site-header {
  min-height: 70px;
  border-bottom-color: rgba(190, 207, 214, 0.78);
}

.brand span {
  letter-spacing: 0;
}

.nav a {
  border-radius: 6px;
}

.nav a:focus-visible {
  box-shadow: var(--focus);
}

.header-actions .button:first-child {
  color: var(--white);
  background: linear-gradient(145deg, var(--dynamic-blue), #0d5b91 58%, #11415f);
  box-shadow: 0 12px 26px rgba(30, 110, 167, 0.22), var(--card-topline);
}

.button {
  gap: 8px;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(145deg, #14212b, #0f1720 58%, #263742);
}

.button.secondary {
  color: #172129;
  background: linear-gradient(180deg, #fff, #f3f7f7);
}

.button.ghost:hover,
.button.ghost-dark:hover {
  box-shadow: 0 16px 34px rgba(17, 25, 31, 0.14);
}

.hero {
  min-height: min(640px, 72vh);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(54px, 7vw, 82px) clamp(20px, 6vw, 88px);
}

.hero-content {
  display: grid;
  gap: 4px;
}

.hero .eyebrow {
  width: fit-content;
  padding: 7px 10px;
  color: #ffe0a9;
  background: rgba(12, 19, 24, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero h1,
.page-hero h1 {
  text-wrap: balance;
}

.hero-copy,
.page-hero p,
.section > div > p,
.section-heading + p {
  text-wrap: pretty;
}

.hero-actions .button,
.contact-actions .button {
  min-width: 172px;
}

.hero-actions .button.primary {
  background: linear-gradient(145deg, #f4a845, #d8771c);
  box-shadow: 0 16px 34px rgba(216, 119, 28, 0.32), var(--card-topline);
}

.hero-actions .button.secondary {
  color: var(--white);
  background: linear-gradient(145deg, #12a277, #07664e);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(11, 123, 93, 0.3), var(--card-topline);
}

.hero-actions .button.ghost {
  color: #f7fbfb;
  background: rgba(12, 19, 24, 0.42);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18), var(--card-topline);
}

.trust-bar {
  box-shadow: 0 16px 44px rgba(17, 25, 31, 0.07);
}

.trust-bar span {
  display: grid;
  align-content: center;
  min-height: 76px;
}

.brand-panel {
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.brand-panel h2 {
  max-width: 720px;
}

.brand-panel a {
  width: fit-content;
  padding-bottom: 4px;
}

.section {
  position: relative;
}

.section:nth-of-type(even):not(.dark-band):not(.contact-band):not(.not-sure-band):not(.emergency-band) {
  background: rgba(255, 255, 255, 0.26);
}

.help-grid a,
.service-list article,
.card-grid article,
.service-columns > div,
.request-form,
.tool-card,
.success-card,
.service-card,
.directory-controls,
.ticket-summary div,
.empty-state,
.inventory-room {
  border-color: var(--card-border);
  box-shadow: 0 14px 42px rgba(17, 25, 31, 0.08), var(--card-topline);
}

.help-grid a,
.service-list article,
.card-grid article,
.service-columns > div,
.service-card {
  overflow: hidden;
}

.help-grid a::before,
.service-card::before,
.tool-card::before,
.service-list article::before,
.service-columns > div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--dynamic-blue), var(--dynamic-orange));
  opacity: 0.82;
}

.service-card[data-company="CFS"]::before,
.cfs-panel + .brand-panel::before {
  background: linear-gradient(180deg, var(--cfs-green), var(--cfs-blue));
}

.service-card[data-company="Both"]::before {
  background: linear-gradient(180deg, var(--dynamic-blue), var(--cfs-green));
}

.help-grid a strong {
  display: block;
  font-size: 1.04rem;
}

.service-list article h3,
.tool-card h3,
.service-card h3,
.service-columns h3 {
  color: #13212b;
}

.service-card h3 a {
  display: inline;
  background-image: linear-gradient(90deg, currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: background-size 160ms ease;
}

.service-card:hover h3 a {
  background-size: 100% 2px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 25, 31, 0.08);
}

.page-hero::after {
  position: absolute;
  inset: auto -10% -45% 40%;
  height: 360px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 62%);
  pointer-events: none;
}

.form-page .section:first-child {
  align-items: center;
}

.form-shell > div:first-child {
  position: sticky;
  top: 104px;
}

.request-form {
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.92);
}

.large-form h3 {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

label {
  color: #22333b;
}

label:has(input[required])::after,
label:has(select[required])::after,
label:has(textarea[required])::after {
  content: "Required";
  justify-self: start;
  margin-top: -3px;
  padding: 2px 7px;
  color: #6a3f00;
  background: #fff4de;
  border: 1px solid #f1d39d;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

input,
select,
textarea {
  min-height: 50px;
  border-color: #bdcbd0;
}

textarea {
  min-height: 132px;
}

input[type="file"] {
  min-height: 56px;
  padding: 14px;
  border-style: dashed;
  background: linear-gradient(180deg, #fbfdfd, #eef5f4);
}

.form-note {
  padding: 18px 18px 18px 20px;
  border-left: 4px solid var(--cfs-green);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 46px;
  display: grid;
  align-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.form-status.is-loading {
  color: #183548;
  background: #edf6fb;
  border-color: #c7deed;
}

.form-status.is-error {
  color: #5d2b00;
  background: #fff3df;
  border-color: #f0c277;
}

.request-form button[type="submit"] {
  min-height: 54px;
  margin-top: 6px;
}

.tool-card {
  align-content: start;
}

.tool-card .button.primary {
  margin-top: auto;
}

.tool-actions {
  align-items: stretch;
}

.tool-actions .button,
.tool-actions a.button {
  min-height: 42px;
}

.tool-output {
  display: none;
  padding: 16px;
  color: #24343d;
  background: linear-gradient(180deg, #fbfdfd, #eef5f3);
  border: 1px solid #d5e3e1;
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.tool-output.has-output {
  display: block;
}

.tool-output h4 {
  margin: 0 0 10px;
  color: #12222c;
  font-size: 1rem;
}

.tool-output p:last-child,
.tool-output ul:last-child {
  margin-bottom: 0;
}

.directory-controls {
  top: 86px;
  gap: 16px;
  background: rgba(255, 255, 255, 0.88);
}

.directory-group h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.directory-group h2::after {
  flex: 1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(30, 110, 167, 0.28), transparent);
}

.company-badge {
  margin-bottom: 2px;
}

.service-card .button {
  align-self: end;
}

.empty-state {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.not-sure-band,
.emergency-band,
.contact-band {
  border-top: 1px solid rgba(201, 214, 219, 0.8);
  border-bottom: 1px solid rgba(201, 214, 219, 0.8);
}

.emergency-band {
  color: #2f260f;
}

.emergency-band .eyebrow,
.urgent-note {
  color: #7a4300;
}

.success-card {
  background: rgba(255, 255, 255, 0.94);
}

.success-card .hero-actions {
  display: flex;
}

.ticket-summary div {
  background: #fbfdfd;
}

.mobile-cta-bar {
  box-shadow: 0 -12px 32px rgba(17, 25, 31, 0.14);
}

.route-strip {
  display: grid;
  gap: 12px;
}

.route-strip a {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--dynamic-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.route-strip a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.route-strip span {
  color: var(--muted);
  font-weight: 700;
}

.cfs-route-strip a {
  border-left-color: var(--cfs-green);
}

.page-kicker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-kicker-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.page-kicker-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--dynamic-orange);
  font-weight: 900;
}

.contact-menu {
  display: grid;
  gap: 12px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.service-detail-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-detail-nav span {
  color: var(--dynamic-orange);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-detail-nav a {
  padding: 9px 10px;
  color: #273942;
  background: #f5f9f8;
  border-radius: 6px;
  font-weight: 900;
}

.service-detail-main {
  display: grid;
  gap: 18px;
}

.service-detail-main > section,
.service-next-step {
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-next-step {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-guide {
  background:
    radial-gradient(circle at 8% 10%, rgba(30, 110, 167, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(11, 123, 93, 0.08), transparent 28rem),
    rgba(255, 255, 255, 0.42);
}

.home-welcome {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: center;
  padding: clamp(44px, 7vw, 76px) clamp(20px, 6vw, 88px);
  overflow: hidden;
}

.home-welcome .hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 19, 24, 0.9), rgba(20, 37, 49, 0.62) 50%, rgba(20, 37, 49, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.32));
}

.home-welcome-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  color: var(--white);
}

.home-welcome h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.home-welcome .hero-copy {
  max-width: 620px;
}

.home-welcome .home-tab-rail {
  margin-top: 30px;
  margin-bottom: 16px;
  background: rgba(8, 16, 22, 0.56);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.home-welcome .home-tab:not(.dynamic-tab):not(.cfs-tab) {
  color: #f7fbfb;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-welcome .home-paths {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-welcome .home-path-card {
  min-height: 170px;
  color: #f7fbfb;
  background: rgba(10, 18, 24, 0.62);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.home-welcome .home-path-card span {
  color: #f7fbfb;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-welcome .home-path-card em {
  color: rgba(255, 255, 255, 0.76);
}

.home-guide .section-heading {
  max-width: 880px;
}

.home-tab-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  max-width: 980px;
  margin: 0 0 22px;
  padding: 8px;
  background: rgba(231, 240, 240, 0.86);
  border: 1px solid rgba(201, 214, 219, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), var(--card-topline);
}

.home-tab {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  color: #22333b;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 7px;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.home-tab:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 12px 24px rgba(17, 25, 31, 0.1);
}

.home-tab.dynamic-tab {
  color: #fff;
  background: linear-gradient(145deg, var(--dynamic-blue), #12577f);
  box-shadow: 0 12px 24px rgba(30, 110, 167, 0.18), var(--card-topline);
}

.home-tab.cfs-tab {
  color: #fff;
  background: linear-gradient(145deg, #12a277, var(--cfs-green));
  box-shadow: 0 12px 24px rgba(11, 123, 93, 0.18), var(--card-topline);
}

.home-paths {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.home-path-card {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
  color: #172129;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(17, 25, 31, 0.08), var(--card-topline);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.home-path-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--dynamic-blue), var(--cfs-green));
}

.home-path-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 110, 167, 0.26);
  box-shadow: var(--deep-shadow), var(--card-topline);
}

.home-path-card span {
  width: fit-content;
  padding: 5px 9px;
  color: #31424b;
  background: #edf4f4;
  border: 1px solid #d8e5e3;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-path-card strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.18;
}

.home-path-card em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.dynamic-path::before {
  background: linear-gradient(90deg, var(--dynamic-blue), var(--dynamic-orange));
}

.cfs-path::before {
  background: linear-gradient(90deg, var(--cfs-green), var(--cfs-blue));
}

.mini-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(201, 214, 219, 0.82);
  border: 1px solid rgba(201, 214, 219, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.mini-process div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.mini-process span {
  display: block;
  margin-bottom: 8px;
  color: var(--dynamic-orange);
  font-weight: 900;
}

.mini-process strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.06rem;
}

.mini-process p {
  margin: 0;
  color: var(--muted);
}

.home-process {
  padding-top: 0;
}

.home-contact-band {
  margin-top: 0;
}

@media (min-width: 1121px) {
  .tool-card.wide-tool,
  .tools-grid .tool-card:has(#office-output) {
    grid-column: span 2;
  }
}

@media (max-width: 1120px) {
  .form-shell > div:first-child {
    position: static;
  }

  .site-header {
    gap: 12px;
  }

  .home-tab-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-paths,
  .home-welcome .home-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-kicker-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-detail-nav {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 86px;
  }

  h1 {
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .site-header {
    position: sticky;
    gap: 10px;
    padding: 10px 14px 12px;
  }

  .brand {
    justify-content: center;
  }

  .brand span {
    height: 32px;
    min-width: 0;
    font-size: 0.9rem;
  }

  .nav {
    gap: 4px;
    padding: 6px;
    background: rgba(232, 240, 240, 0.74);
    border: 1px solid rgba(201, 214, 219, 0.74);
    border-radius: var(--radius);
  }

  .nav a {
    min-height: 34px;
    color: #23343d;
    background: rgba(255, 255, 255, 0.64);
    border-radius: 6px;
    font-size: 0.82rem;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .button.small {
    min-height: 44px;
    padding: 7px 5px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 360px;
    padding: 42px 22px 58px;
  }

  .hero-content {
    gap: 0;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: clamp(1.95rem, 9.3vw, 2.65rem);
  }

  .hero-copy,
  .page-hero p {
    font-size: 0.98rem;
  }

  .slogan {
    margin-bottom: 10px;
    font-size: 1.08rem;
  }

  .page-hero {
    min-height: 390px;
    padding: 62px 20px;
  }

  .section {
    padding: 48px 18px;
  }

  .trust-bar span {
    min-height: 58px;
    padding: 14px 16px;
    text-align: left;
  }

  .brand-panel {
    min-height: auto;
    padding: 34px 22px;
  }

  .brand-panel h2 {
    font-size: 1.72rem;
  }

  .help-grid,
  .service-list,
  .card-grid,
  .service-columns,
  .tools-grid,
  .service-card-grid,
  .home-paths,
  .mini-process {
    gap: 14px;
  }

  .help-grid a,
  .service-list article,
  .card-grid article,
  .service-columns > div,
  .tool-card,
  .service-card,
  .home-path-card,
  .mini-process div {
    padding: 20px;
  }

  .home-tab-rail {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 16px;
  }

  .home-tab {
    min-height: 46px;
  }

  .home-paths,
  .home-welcome .home-paths,
  .mini-process {
    grid-template-columns: 1fr;
  }

  .home-path-card {
    min-height: 178px;
  }

  .service-detail-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-nav span {
    grid-column: 1 / -1;
  }

  .service-next-step .button {
    width: 100%;
  }

  .home-welcome {
    min-height: auto;
    padding: 34px 18px 42px;
  }

  .home-welcome h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .home-welcome .home-tab-rail {
    margin-top: 22px;
  }

  .home-welcome .home-path-card {
    min-height: auto;
  }

  .form-shell {
    gap: 24px;
  }

  .form-shell > div:first-child h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .request-form {
    padding: 18px;
    gap: 16px;
  }

  input,
  select,
  textarea,
  .button,
  .mobile-cta-bar a {
    font-size: 16px;
  }

  .priority-options label,
  .checkbox-field {
    min-height: 48px;
    padding: 10px 12px;
    background: #f7fbfa;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .directory-controls {
    padding: 14px;
  }

  .directory-group + .directory-group {
    margin-top: 34px;
  }

  .directory-group h2 {
    display: block;
  }

  .directory-group h2::after {
    display: none;
  }

  .tool-actions .button,
  .tool-actions a.button,
  .tool-card > .button,
  .service-card .button,
  .contact-actions .button,
  .success-card .hero-actions .button {
    width: 100%;
  }

  .tool-output {
    overflow-wrap: anywhere;
  }

  .success-page {
    align-items: start;
    padding: 22px 16px 96px;
  }

  .success-card {
    width: 100%;
    padding: 24px 18px;
  }

  .success-card .hero-actions {
    display: grid;
    gap: 10px;
  }

  .contact-band,
  .not-sure-band,
  .emergency-band {
    gap: 18px;
  }

  .mobile-cta-bar {
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .header-actions .button.small {
    font-size: 0.68rem;
  }

  .nav a {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 350px;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 10px;
  }

  .header-actions .button.small {
    min-height: 42px;
    font-size: 0.64rem;
  }

  .nav {
    gap: 3px;
  }

  .nav a {
    font-size: 0.74rem;
  }
}

@media print {
  .site-header, .hero, .page-hero, .button, .mobile-cta-bar, .footer, .site-contact-block { display: none !important; }
  body { padding: 0; background: #fff; color: #000; }
  .section, .tool-card, .success-card { padding: 0; box-shadow: none; border: 0; }
  .print-area, .tool-output { display: block; color: #000; }
}
