:root {
  --ink: #0a111a;
  --ink-soft: #15202c;
  --paper: #f6f8fb;
  --white: #ffffff;
  --muted: #5a6876;
  --line: #d7dee6;
  --blue: #3ba8ff;
  --purple: #7d75f6;
  --pink: #ff477e;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 68px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

nav { display: flex; justify-content: center; gap: 32px; }
nav a, .header-call {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
nav a:hover, .header-call:hover { color: #176da9; }

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-business-smart-tech.png");
  background-position: center;
  background-size: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 10, 17, .96) 0%, rgba(5, 10, 17, .83) 35%, rgba(5, 10, 17, .18) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 48px));
  margin: 0 max(24px, calc((100vw - var(--max)) / 2));
  padding: 88px 0;
}

.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: #1b78b8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.hero .eyebrow { color: #80c8ff; }

h1, h2, h3, p { overflow-wrap: break-word; }
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; font-size: 21px; }

.hero-copy {
  max-width: 570px;
  margin: 26px 0 0;
  color: #d8e1eb;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button.primary { background: var(--pink); color: var(--white); }
.button.primary:hover { background: #d92e66; }
.button.secondary { border-color: rgba(255,255,255,.5); color: var(--white); }
.button.secondary:hover { background: rgba(255,255,255,.1); }

.section, .band {
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
}
.band { background: var(--white); }

.intro {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.intro > div { max-width: 780px; }
.intro > div p {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.section-heading { max-width: 760px; margin-bottom: 52px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-grid article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.service-grid span {
  display: block;
  margin-bottom: 58px;
  color: #1a73ad;
  font-size: 13px;
  font-weight: 800;
}
.service-grid p, .steps p, .texas > p, .contact-copy > p {
  margin: 0;
  color: var(--muted);
}

.approach {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.steps { margin: 0; padding: 0; list-style: none; }
.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps span {
  color: #1a73ad;
  font-weight: 800;
}

.texas {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 80px;
}
.texas > p { font-size: 18px; }

.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  background: var(--ink);
  color: var(--white);
}
.contact-copy > p { margin: 22px 0 34px; color: #bcc8d3; font-size: 18px; }
.contact .section-kicker { color: #80c8ff; }
.contact-link {
  display: block;
  width: fit-content;
  margin-top: 14px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  text-decoration-color: var(--pink);
  text-underline-offset: 5px;
}

form { display: grid; gap: 18px; }
label { display: grid; gap: 8px; font-size: 14px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid #485565;
  border-radius: 5px;
  background: var(--ink-soft);
  color: var(--white);
  padding: 13px 14px;
  font: inherit;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
form .button { width: fit-content; margin-top: 4px; }
.form-note { margin: -4px 0 0; color: #9fadb9; font-size: 13px; }

footer {
  min-height: 180px;
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 30px max(24px, calc((100vw - var(--max)) / 2));
  background: #05090f;
  color: #9eabb8;
  font-size: 13px;
}
footer img { width: 74px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 76px 1fr; }
  .site-header nav { justify-content: flex-end; gap: 20px; }
  .header-call { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .approach, .texas, .contact { grid-template-columns: 1fr; gap: 52px; }
  footer { grid-template-columns: 76px 1fr; }
}

@media (max-width: 620px) {
  .site-header { min-height: 68px; padding-block: 6px; }
  .brand img { width: 58px; height: 52px; }
  nav a:nth-child(2) { display: none; }
  nav { gap: 16px; }
  .hero { min-height: 720px; align-items: end; }
  .hero-media { background-position: 62% center; }
  .hero-media::after {
    background: linear-gradient(0deg, rgba(5,10,17,.98) 0%, rgba(5,10,17,.82) 50%, rgba(5,10,17,.2) 100%);
  }
  .hero-content { padding: 160px 0 58px; }
  h1 { font-size: 46px; }
  .hero-copy { font-size: 17px; }
  .hero-actions { display: grid; }
  .intro, .service-grid { grid-template-columns: 1fr; }
  .section, .band { padding-top: 72px; padding-bottom: 72px; }
  .service-grid article { min-height: 220px; }
  footer { grid-template-columns: 64px 1fr; gap: 16px; }
  footer p:nth-last-child(-n+2) { grid-column: 2; margin: 0; }
}
