:root {
  --ink: #101315;
  --ink-2: #181d20;
  --steel: #29343a;
  --steel-2: #46555d;
  --concrete: #f2f0ea;
  --paper: #fffaf1;
  --muted: #5d625f;
  --line: #ded8cf;
  --safety: #f26b2a;
  --safety-dark: #bb4c14;
  --green: #446457;
  --white: #ffffff;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--concrete);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 99;
  background: var(--safety);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 19, 21, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0c0d;
  color: #c8d0cc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.topline-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topline-inner span:first-child {
  color: var(--safety);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 0;
}

.brand strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand span {
  color: var(--safety);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  color: #e7e1d8;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--safety);
}

.nav-links a.is-current {
  color: var(--safety);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--safety);
  background: var(--safety);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: #ff7b35;
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.btn.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn.secondary:hover,
.btn.secondary:focus {
  border-color: var(--safety);
  color: var(--safety);
}

.hero {
  min-height: 690px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 11, 12, 0.95), rgba(9, 11, 12, 0.78) 48%, rgba(9, 11, 12, 0.34)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: var(--safety);
}

.hero-inner {
  max-width: var(--max);
  min-height: 690px;
  margin: 0 auto;
  padding: 104px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 710px) minmax(320px, 1fr);
  align-items: center;
  gap: 56px;
  position: relative;
}

.eyebrow {
  display: block;
  color: var(--safety);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 6.8vw, 84px);
  max-width: 760px;
}

h2 {
  font-size: clamp(32px, 4.4vw, 52px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.hero-copy {
  margin-top: 24px;
  max-width: 690px;
  color: #e7e2d9;
  font-size: 21px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta div {
  padding: 18px;
  background: rgba(16, 19, 21, 0.74);
}

.hero-meta strong {
  display: block;
  color: var(--safety);
  font-size: 13px;
  font-weight: 900;
}

.hero-meta span {
  display: block;
  margin-top: 8px;
  color: #f4eee5;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(17, 20, 22, 0.72);
  color: #f2ece2;
  font-size: 12px;
  font-weight: 800;
}

.chip::before,
.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--safety);
  border-radius: 50%;
}

.hero-card {
  align-self: center;
  justify-self: end;
  width: min(420px, 100%);
  padding: 30px;
  background: rgba(246, 242, 235, 0.96);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hero-card h2 {
  margin-top: 12px;
  font-size: 30px;
  line-height: 1.06;
}

.hero-card p {
  color: var(--muted);
  margin-top: 12px;
}

.compact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 22px;
  color: #3a3e3b;
  font-size: 15px;
  line-height: 1.48;
}

.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  background: var(--safety);
}

.trust-bar {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  border-left: 3px solid var(--safety);
}

.trust-item strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-item span {
  color: #bfc7c3;
  font-size: 13px;
  line-height: 1.42;
}

.section {
  padding: 96px 24px;
}

.section[id],
#faq {
  scroll-margin-top: 152px;
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.walkthrough-cta {
  background: #dfe5e1;
  border-bottom: 1px solid var(--line);
}

.walkthrough-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
}

.walkthrough-panel {
  display: grid;
  gap: 22px;
  justify-items: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--safety);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(18, 22, 24, 0.06);
}

.credential-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
}

.credential-badges span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px 10px 34px;
  position: relative;
  background: #f8f6f0;
  border: 1px solid #e8dfd2;
  border-radius: 4px;
  color: #2c332f;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.credential-badges span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--safety);
  transform: translateY(-50%);
}

.section.white {
  background: var(--white);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.lede {
  color: var(--muted);
  font-size: 20px;
  margin-top: 22px;
  line-height: 1.55;
}

.dark .lede {
  color: #c9c2b8;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.service-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.service-filter button,
.industry-tabs button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-filter button:hover,
.service-filter button:focus,
.service-filter button.is-active,
.industry-tabs button:hover,
.industry-tabs button:focus,
.industry-tabs button.is-active {
  border-color: var(--safety);
  background: var(--safety);
  color: var(--ink);
  transform: translateY(-1px);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 248px;
  box-shadow: 0 18px 44px rgba(18, 22, 24, 0.06);
}

a.card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a.card:hover,
a.card:focus {
  border-color: var(--safety);
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(18, 22, 24, 0.1);
}

.card.is-hidden {
  display: none;
}

.card .num,
.service-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  background: #f7eee7;
  border: 1px solid #efd5c5;
  color: var(--safety);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.card h3 {
  margin-top: 24px;
}

.card p {
  color: var(--muted);
  margin-top: 14px;
}

.card-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--safety-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.standards {
  background: #e9ece9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standards-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.standard-list {
  display: grid;
  gap: 16px;
}

.standard-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.standard-list article span {
  color: var(--safety-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.standard-list article h3 {
  font-size: 22px;
}

.standard-list article p {
  grid-column: 2;
  color: var(--muted);
  margin-top: -12px;
}

.floor-planner {
  margin-top: 64px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(242, 107, 42, 0.12), rgba(242, 107, 42, 0) 36%),
    var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  border: 1px solid #2f363a;
  box-shadow: 0 26px 70px rgba(16, 19, 21, 0.16);
}

.planner-copy {
  max-width: 760px;
}

.floor-planner .lede {
  color: #d4cdc2;
}

.planner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  gap: 28px;
  margin-top: 34px;
  align-items: start;
}

.planner-controls {
  display: grid;
  gap: 20px;
}

fieldset {
  border: 1px solid #343c40;
  border-radius: 6px;
  padding: 18px;
  margin: 0;
  background: rgba(255, 255, 255, 0.02);
}

legend {
  padding: 0 8px;
  color: var(--safety);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.segment-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.segment-group button {
  min-height: 46px;
  border: 1px solid #3c4448;
  border-radius: 4px;
  background: #0d1012;
  color: #f2ece2;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.segment-group button:hover,
.segment-group button:focus,
.segment-group button.is-active {
  border-color: var(--safety);
  background: var(--safety);
  color: var(--ink);
}

.segment-group button:hover,
.segment-group button:focus {
  transform: translateY(-1px);
}

.planner-result {
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  padding: 28px;
  border: 1px solid #ebe4d9;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.result-label {
  color: var(--safety-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.planner-result h3 {
  margin-top: 12px;
  font-size: 34px;
}

.planner-result p {
  color: #373a38;
  margin-top: 16px;
  font-size: 18px;
}

.result-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.result-list li {
  color: #3a3d3b;
}

.planner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.planner-result .btn.secondary {
  color: var(--ink);
  border-color: var(--ink);
}

.planner-result .btn.secondary:hover,
.planner-result .btn.secondary:focus {
  color: var(--safety-dark);
  border-color: var(--safety);
}

.planner-quote {
  margin-top: 14px;
  width: 100%;
}

.planner-quote.is-sent {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.applications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.application {
  padding: 20px 22px;
  background: var(--ink-2);
  border: 1px solid #343b3f;
  border-radius: 6px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

a.application:hover,
a.application:focus {
  border-color: var(--safety);
  color: var(--safety);
  transform: translateY(-1px);
}

.white .application,
.local-seo .application {
  background: #f7f5f0;
  color: var(--ink);
  border-color: var(--line);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.process .card {
  min-height: 260px;
  background: #fbfaf6;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.process .card:hover,
.process .card:focus,
.process .card.is-active {
  border-color: var(--safety);
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(18, 22, 24, 0.1);
}

.process .card.is-active {
  background:
    linear-gradient(135deg, rgba(242, 107, 42, 0.12), rgba(242, 107, 42, 0) 50%),
    #fbfaf6;
}

.process-detail {
  margin-top: 22px;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid #2f363a;
  border-left: 4px solid var(--safety);
  border-radius: var(--radius);
}

.process-detail h3 {
  margin-top: 10px;
  font-size: 32px;
}

.process-detail p {
  margin-top: 12px;
  color: #d8d1c8;
  font-size: 18px;
}

.process-detail-grid,
.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.process-detail-grid div,
.risk-grid div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.process-detail-grid span,
.risk-grid span {
  display: block;
  color: var(--safety);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-detail-grid strong,
.risk-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.visual-panel {
  min-height: 480px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.18), rgba(17, 20, 22, 0)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1200&q=80") center / cover;
  position: relative;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(16, 19, 21, 0.16);
}

.visual-panel::after {
  content: "SURFACE PREP MATTERS";
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  max-width: 300px;
}

.check-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #2d302f;
  font-size: 18px;
  font-weight: 750;
}

.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.industry {
  background: var(--ink-2);
  color: var(--white);
  border: 1px solid #333a3e;
  border-radius: 6px;
  padding: 22px;
  font-weight: 900;
}

.industry-tool {
  display: grid;
  gap: 18px;
}

.industry-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.industry-tabs button {
  background: var(--ink-2);
  border-color: #343b3f;
  color: var(--white);
}

.industry-panel {
  padding: 28px;
  background: #f8f6f0;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--safety);
  border-radius: var(--radius);
}

.industry-panel h3 {
  margin-top: 10px;
  font-size: 32px;
}

.industry-panel p {
  margin-top: 14px;
  color: #3a3e3b;
  font-size: 17px;
}

.industry-panel .risk-grid div {
  background: var(--ink);
  border-color: #2f363a;
}

.industry-panel .result-list {
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 16px 38px rgba(18, 22, 24, 0.05);
}

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
}

.faq[open] summary::after {
  content: "-";
  background: var(--safety);
  color: var(--ink);
}

.faq p {
  color: var(--muted);
  margin-top: 12px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.blog-card {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 38px rgba(18, 22, 24, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover,
.blog-card:focus {
  border-color: var(--safety);
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(18, 22, 24, 0.1);
}

.blog-card span {
  color: var(--safety-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card strong {
  display: block;
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.15;
}

.blog-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.quote {
  background:
    linear-gradient(135deg, rgba(70, 85, 93, 0.32), rgba(70, 85, 93, 0) 42%),
    var(--ink);
  color: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
  background: var(--ink-2);
  border: 1px solid #333a3e;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.contact-card {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--safety);
  border-radius: var(--radius);
}

.contact-card span {
  display: block;
  color: var(--safety);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.05;
}

.contact-card p {
  margin-top: 12px;
  color: #d8d1c8;
}

.quote-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.quote-points span {
  display: block;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--safety);
  border-radius: 4px;
  color: #e4ddd3;
  font-weight: 800;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.honey-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  color: #ccc5ba;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #3c4448;
  border-radius: 4px;
  background: #0d1012;
  color: var(--white);
  padding: 14px;
  font: inherit;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  color: #d8d1c8;
  font-size: 14px;
  font-weight: 700;
}

.form-disclaimer {
  grid-column: 1 / -1;
  color: #bfc7c3;
  font-size: 12px;
  line-height: 1.55;
}

.form-disclaimer a {
  color: var(--safety);
  font-weight: 900;
}

.form-status.is-error {
  color: #ffd1bd;
}

.form-status.is-success {
  color: #cfead6;
}

.thank-you {
  min-height: 640px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 11, 12, 0.94), rgba(9, 11, 12, 0.7)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--white);
  padding: 96px 24px;
}

.thank-you-card {
  max-width: 820px;
  padding: 42px;
  background: rgba(16, 19, 21, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--safety);
  border-radius: var(--radius);
}

.thank-you-card .lede {
  color: #e7e2d9;
}

.next-steps {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.next-steps li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--safety);
  color: #e4ddd3;
  font-weight: 800;
}

.site-footer {
  background: #090b0c;
  color: var(--white);
  padding: 46px 24px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.25fr;
  gap: 30px;
}

.footer-grid a {
  color: #d8d1c8;
}

.footer-area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.footer-area-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: #d8d1c8;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-area-links a:hover,
.footer-area-links a:focus {
  border-color: var(--safety);
  color: var(--safety);
}

.legal-footer {
  background: #090b0c;
  color: #d8d1c8;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px 24px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.legal-footer a {
  color: var(--white);
}

.privacy-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: min(620px, calc(100vw - 36px));
  color: var(--white);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.privacy-notice.is-closing {
  opacity: 0;
  transform: translateY(12px);
}

.privacy-notice-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(9, 11, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--safety);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.privacy-notice p {
  display: grid;
  gap: 4px;
  color: #d8d1c8;
  font-size: 13px;
  line-height: 1.45;
}

.privacy-notice strong {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.privacy-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.privacy-notice-actions a {
  color: #d8d1c8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-choice {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-choice:hover,
.privacy-choice:focus {
  border-color: var(--safety);
  color: var(--safety);
}

.privacy-choice.btn {
  min-width: 150px;
  background: var(--safety);
  border-color: var(--safety);
  color: var(--ink);
}

.privacy-choice.btn:hover,
.privacy-choice.btn:focus {
  background: #ff7b35;
  border-color: #ff7b35;
  color: var(--ink);
}

.privacy-controls {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 22px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid #2f363a;
  border-left: 4px solid var(--safety);
  border-radius: var(--radius);
}

.privacy-controls p {
  margin: 0;
  color: #d8d1c8;
  font-size: 15px;
  font-weight: 800;
}

.article .privacy-controls p {
  margin: 0;
  color: #d8d1c8;
}

.privacy-controls > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-hero {
  background: var(--ink);
  color: var(--white);
  padding: 86px 24px 70px;
}

.article-hero .wrap {
  max-width: 900px;
}

.article {
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 24px;
  background: var(--paper);
}

.article h2 {
  font-size: 34px;
  margin-top: 46px;
}

.article h3 {
  margin-top: 32px;
}

.article p,
.article li {
  color: #393b39;
  font-size: 18px;
}

.article p {
  margin-top: 18px;
}

.privacy-article h2 {
  font-size: 30px;
}

.article ul,
.article ol {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.related-links {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.related-links a {
  display: block;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--safety);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.related-links a:hover,
.related-links a:focus {
  border-color: var(--safety);
}

.answer-box {
  background: var(--white);
  border-left: 6px solid var(--safety);
  padding: 24px;
  margin: 28px 0;
  border-radius: 4px;
}

.commercial-panel {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  margin: 34px 0;
}

.commercial-panel h2,
.commercial-panel h3,
.commercial-panel p,
.commercial-panel li {
  color: var(--white);
}

.commercial-panel .eyebrow {
  color: var(--safety);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.spec-item {
  background: #171d20;
  border: 1px solid #343b3f;
  border-radius: 6px;
  padding: 18px;
}

.spec-item strong {
  display: block;
  color: var(--safety);
  font-size: 13px;
  text-transform: uppercase;
}

.spec-item span {
  display: block;
  margin-top: 8px;
  color: #e8e2d8;
}

.commercial-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.commercial-table th,
.commercial-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.commercial-table th {
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.commercial-table td {
  color: #393b39;
  font-size: 16px;
}

@media (max-width: 980px) {
  .topline-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .split,
  .quote-grid,
  .standards-grid,
  .walkthrough-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: start;
  }

  .hero-meta,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .cards,
  .process,
  .industries,
  .faq-list,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-footer-inner {
    grid-template-columns: 1fr;
  }

  .service-filter,
  .industry-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-filter {
    display: grid;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .planner-grid {
    grid-template-columns: 1fr;
  }

  .segment-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .standard-list article {
    grid-template-columns: 1fr;
  }

  .standard-list article p {
    grid-column: 1;
    margin-top: 0;
  }

  .process-detail-grid,
  .risk-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topline-inner {
    padding: 9px 16px;
    font-size: 10px;
  }

  .topline-inner span:last-child {
    display: none;
  }

  .nav {
    padding: 14px 16px;
    gap: 12px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand span {
    max-width: 132px;
    font-size: 9px;
  }

  .nav > .btn {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    min-height: 780px;
    padding-top: 90px;
    padding-bottom: 46px;
  }

  .section {
    padding: 68px 20px;
  }

  h1 {
    font-size: 45px;
  }

  .hero-copy,
  .lede {
    font-size: 18px;
  }

  .hero-meta div {
    padding: 14px;
  }

  .trust-grid {
    padding: 24px 20px;
  }

  .floor-planner {
    padding: 24px 18px;
  }

  .walkthrough-panel {
    padding: 22px;
  }

  .planner-result {
    padding: 22px;
  }

  .planner-result h3 {
    font-size: 28px;
  }

  .segment-group {
    grid-template-columns: 1fr;
  }

  .service-filter,
  .industry-tabs {
    grid-template-columns: 1fr;
  }

  .thank-you {
    min-height: 620px;
    padding: 72px 20px;
  }

  .thank-you-card {
    padding: 28px 22px;
  }

  .privacy-notice {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }

  .privacy-notice-inner {
    grid-template-columns: 1fr;
  }

  .privacy-notice-actions {
    justify-content: flex-start;
  }
}
