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

:root {
  --ink: #10151a;
  --muted: #60707c;
  --paper: #f7f4ee;
  --white: #ffffff;
  --line: #dde5e8;
  --green: #18a56f;
  --blue: #155dfc;
  --navy: #0a1725;
  --lime: #d8ff66;
  --orange: #ff8a3d;
  --shadow: 0 22px 70px rgba(10, 23, 37, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.8rem, 7vw, 6.7rem); max-width: 960px; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: 1.18rem; letter-spacing: -0.02em; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.announce {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 0;
}
.announce .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247,244,238,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  font-weight: 900;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.86rem;
  font-weight: 900;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 11px 14px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}
.btn.dark { background: var(--ink); }
.btn.light { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn.green { background: var(--green); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 48px;
  background:
    linear-gradient(90deg, rgba(247,244,238,0.97), rgba(247,244,238,0.82) 46%, rgba(247,244,238,0.18)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=85") center right / cover;
}
.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.45fr);
  align-items: center;
  gap: 52px;
}
.hero-grid > * { min-width: 0; }
.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero p.lede {
  max-width: 670px;
  margin-top: 22px;
  color: #394a54;
  font-size: 1.12rem;
  font-weight: 650;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.motion-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 760px;
}
.metric {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(221,229,232,0.9);
  border-radius: 8px;
  padding: 15px;
}
.metric strong { display: block; font-size: 1.25rem; color: var(--ink); }
.metric span { color: var(--muted); font-size: 0.84rem; font-weight: 700; }

.lead-panel {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow);
  min-width: 0;
}
.lead-panel h2 { font-size: 1.6rem; letter-spacing: -0.03em; margin-bottom: 10px; }
.lead-panel p { overflow-wrap: anywhere; }

.form { display: grid; gap: 12px; margin-top: 18px; }
.form label { display: grid; gap: 6px; min-width: 0; font-size: 0.84rem; font-weight: 900; color: var(--ink); }
.form input, .form select, .form textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfd;
}
.form textarea { min-height: 104px; resize: vertical; }
.fine-print { font-size: 0.78rem; color: var(--muted); }
.fine-print a { font-weight: 900; color: var(--ink); }

section { padding: 78px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}
.section-head p { max-width: 600px; font-weight: 650; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  min-height: 100%;
  min-width: 0;
  overflow: hidden;
}
.card p, .content p, .cta p { overflow-wrap: anywhere; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #ecf4ff;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.link { display: inline-flex; margin-top: 16px; color: var(--blue); font-weight: 900; }

.dark-band {
  background: var(--navy);
  color: var(--white);
}
.dark-band h2, .dark-band h3 { color: var(--white); }
.dark-band p { color: rgba(255,255,255,0.72); }
.dark-band .eyebrow { color: var(--lime); }
.dark-band .card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.13); }

.steps { counter-reset: step; }
.step {
  position: relative;
  padding-top: 54px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.industry-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(16,21,26,0.08);
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--image) center / cover;
  transform: scale(1.03);
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5,11,18,0.06), rgba(5,11,18,0.86));
}
.industry-card span { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.03em; }
.industry-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 700; }
.industry-card.restaurants { --image: url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=900&q=82"); }
.industry-card.construction { --image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=900&q=82"); }
.industry-card.trucking { --image: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=900&q=82"); }
.industry-card.medical { --image: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=900&q=82"); }
.industry-card.retail { --image: url("https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?auto=format&fit=crop&w=900&q=82"); }
.industry-card.auto { --image: url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=900&q=82"); }
.industry-card.manufacturing { --image: url("https://images.unsplash.com/photo-1581091226825-c6a89e7e4801?auto=format&fit=crop&w=900&q=82"); }
.industry-card.real-estate { --image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=900&q=82"); }

.construction-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}
.construction-focus h3 { font-size: 1.8rem; max-width: 520px; overflow-wrap: anywhere; }
.trade-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.trade-grid span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f8f7;
  color: var(--ink);
  font-weight: 900;
}

.cta {
  padding: 52px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(16,21,26,0.94), rgba(16,21,26,0.66)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=85") center / cover;
  color: var(--white);
}
.cta h2 { color: var(--white); }
.cta p { max-width: 650px; margin-top: 12px; color: rgba(255,255,255,0.76); font-weight: 650; }

.page-hero {
  padding: 62px 0 44px;
  background: linear-gradient(135deg, #fff, var(--paper));
  border-bottom: 1px solid var(--line);
}
.page-hero p { max-width: 720px; margin-top: 16px; font-weight: 650; }

.content {
  max-width: 860px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
}
.content h2 { margin: 26px 0 10px; font-size: 2rem; }
.content ul { color: var(--muted); }

footer {
  background: #050b12;
  color: rgba(255,255,255,0.72);
  padding: 54px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; }
footer h3, footer h4 { color: var(--white); margin: 0 0 12px; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
footer a { color: rgba(255,255,255,0.72); }
.announce a, .page-hero a, .contact-note a { font-weight: 900; }
.contact-note {
  font-size: 0.86rem;
  font-weight: 800;
  color: #30424e;
}
.footer-contact { margin-top: 16px; font-weight: 800; }
.footer-disclosure {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding-top: 18px;
}
.footer-disclosure p {
  max-width: 900px;
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  font-weight: 650;
}
.footer-disclosure a { font-weight: 900; color: rgba(255,255,255,0.84); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; }

@media (max-width: 980px) {
  .menu-btn { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 112px 0 auto 0;
    min-height: calc(100vh - 112px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 16px 40px;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav > .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .grid-3, .grid-4, .footer-grid, .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .construction-focus { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .motion-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .announce { font-size: 0.72rem; }
  .brand small { display: none; }
  .nav { height: 70px; }
  .hero { padding: 44px 0 34px; }
  h1 { font-size: 2.42rem; max-width: 100%; overflow-wrap: break-word; }
  h2 { font-size: 2.25rem; }
  .hero p.lede { max-width: 320px; font-size: 1rem; }
  .hero-grid { gap: 28px; }
  .lead-panel {
    width: min(100%, 330px);
    max-width: 330px;
    padding: 24px 16px;
    overflow: hidden;
  }
  .actions .btn, .lead-panel .btn { width: 100%; }
  .grid-3, .grid-4, .footer-grid, .motion-strip, .industry-grid, .trade-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 230px; }
  .construction-focus h3 { font-size: 1.45rem; }
  .cta h2 { font-size: 1.8rem; }
  .cta { padding: 28px; }
  section { padding: 58px 0; }
}
