:root {
  --ink: #0d1216;
  --ink-2: #151b20;
  --paper: #ffffff;
  --muted: #64707d;
  --line: #dfe4e9;
  --soft: #f6f7f8;
  --orange: #ef6a3b;
  --orange-dark: #de5e31;
  --shadow: 0 18px 50px rgba(13, 18, 22, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 25px rgba(13, 18, 22, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 186px;
  height: 34px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #101419;
  font-size: 14px;
  font-weight: 400;
}

.main-nav a {
  padding: 27px 0;
}

.main-nav a:hover {
  color: var(--orange);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.header-cta,
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(239, 106, 59, 0.14);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn svg,
.header-cta svg {
  width: 17px;
  height: 17px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 78px 0 120px;
  color: #fff;
  background:
    radial-gradient(circle at 42% 52%, rgba(255, 90, 20, 0.16), transparent 22%),
    linear-gradient(115deg, #0c1115 0%, #11181e 46%, #222a2f 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 38% 54%, black, transparent 65%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: #d7dde2;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow,
.hero h1,
.hero-lead {
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.99;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 32px;
  color: #e3e7ea;
  font-size: 20px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  grid-template-rows: 230px 270px;
  gap: 10px;
  min-height: 520px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}

.hero-img-tall {
  grid-row: 1 / 2;
}

.hero-img-wide {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.quick-form {
  position: absolute;
  top: 116px;
  right: 0;
  width: min(340px, 58%);
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-form h2,
.lead-form h2 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.2;
}

.quick-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quick-form input,
.quick-form select,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd6dd;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.quick-form label + label,
.quick-form button {
  margin-top: 14px;
}

.quick-form button {
  width: 100%;
}

.priority-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.55fr repeat(6, 1fr);
  align-items: stretch;
  min-height: 150px;
  margin-top: -66px;
  padding: 24px 22px;
  color: #fff;
  background: linear-gradient(115deg, #10161b, #151b1f);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 22px 38px rgba(13, 18, 22, 0.22);
}

.priority-title {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-right: 24px;
}

.priority-title > svg {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  color: var(--orange);
  stroke-width: 1.6;
}

.priority-title h2,
.priority-title p,
.priority-title span {
  margin: 0;
}

.priority-title h2 {
  font-size: 23px;
}

.priority-title p {
  color: var(--orange);
  font-size: 22px;
  font-weight: 900;
}

.priority-title span {
  display: block;
  margin-top: 8px;
  color: #d9dee3;
  font-size: 14px;
  line-height: 1.45;
}

.priority-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  min-width: 0;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  text-align: center;
}

.priority-item svg {
  align-self: center;
  width: 34px;
  height: 34px;
  color: var(--orange);
  stroke-width: 1.8;
}

.priority-item span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
}

.section {
  padding: 62px 0;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
  transform: translateX(-50%);
}

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

.service-card {
  display: grid;
  grid-template-columns: 0.93fr 1fr;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(13, 18, 22, 0.05);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
}

.service-card svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 30px 0 12px;
  font-size: 22px;
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  color: #3f4b56;
  font-size: 15px;
  line-height: 1.52;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.service-card a svg {
  width: 14px;
  height: 14px;
}

.training-section {
  background: linear-gradient(#fcfcfc, #f5f7f8);
}

.training-intro {
  max-width: 760px;
  margin: -6px auto 30px;
  color: #4c5964;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

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

.training-card {
  min-height: 220px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 18, 22, 0.04);
}

.training-card svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
  stroke-width: 1.8;
}

.training-card h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.training-card p {
  margin: 0;
  color: #4c5964;
  font-size: 14px;
  line-height: 1.55;
}

.solutions {
  background: linear-gradient(#fff, #f8fafb);
}

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

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(13, 18, 22, 0.06);
}

.solution-card > svg {
  width: 38px;
  height: 38px;
  color: var(--orange);
  stroke-width: 1.8;
}

.solution-card h3 {
  margin: 24px 0 18px;
  font-size: 22px;
  line-height: 1.18;
}

.solution-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 18px;
  color: #3f4b56;
  font-size: 14px;
  line-height: 1.42;
}

.solution-card li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

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

.challenge-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  min-height: 145px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.challenge-grid svg {
  grid-row: span 2;
  width: 43px;
  height: 43px;
  color: var(--orange);
  stroke-width: 1.7;
}

.challenge-grid h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.25;
}

.challenge-grid p {
  margin: 0;
  color: #4c5964;
  font-size: 14px;
  line-height: 1.45;
}

.process {
  background: linear-gradient(#fff, #f9fafb);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: var(--orange);
}

.process-line article {
  position: relative;
  padding-top: 60px;
}

.process-line span {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #05080a;
  color: #fff;
  font-weight: 900;
  transform: translateX(-50%);
}

.process-line svg {
  width: 30px;
  height: 30px;
  color: #59636d;
}

.process-line h3 {
  margin: 18px 0 8px;
  font-size: 15px;
  line-height: 1.26;
}

.process-line p {
  margin: 0;
  color: #4c5964;
  font-size: 13px;
  line-height: 1.45;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.88fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.trust h2 {
  margin: 0 0 28px;
  font-size: 28px;
}

.trust-intro {
  margin: -12px 0 28px;
  color: #3f4b56;
  font-size: 15px;
  line-height: 1.55;
}

.trust ul {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.trust li svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.trust li strong,
.client-proof strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.trust li span,
.client-proof span {
  display: block;
  color: #4c5964;
  font-size: 14px;
  line-height: 1.45;
}

.client-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.client-proof div {
  display: grid;
  min-height: 84px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.client-proof img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.client-proof p {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 24px 0 0;
}

.client-proof p svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--orange);
}

.trust-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trust-gallery img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 8px;
}

.trust-gallery img:first-child {
  grid-column: 1 / -1;
  height: 170px;
}

.lead-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #1f272e;
  font-size: 13px;
  font-weight: 800;
}

.lead-form textarea {
  min-height: 68px;
  padding-top: 14px;
  resize: vertical;
}

.message-field {
  grid-column: span 3;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
}

.form-footer p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #7c8791;
  font-size: 13px;
}

.form-footer svg {
  width: 16px;
  height: 16px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 48px 0 26px;
  color: #fff;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 90, 20, 0.25), transparent 22%),
    linear-gradient(115deg, #0c1115, #11191f);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 90, 20, 0.45);
  border-radius: 50%;
  box-shadow:
    0 0 0 15px rgba(255, 90, 20, 0.06),
    0 0 0 34px rgba(255, 90, 20, 0.04);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-grid > *,
.hero-media > *,
.service-grid > *,
.training-grid > *,
.solutions-grid > *,
.challenge-grid > *,
.process-line > *,
.trust > *,
.client-proof > *,
.trust-gallery > *,
.form-grid > *,
.footer-grid > * {
  min-width: 0;
}

.footer-brand {
  width: 210px;
  color: #fff;
  filter: invert(1);
}

.site-footer p {
  max-width: 330px;
  color: #cfd6dc;
  line-height: 1.5;
}

.site-footer h2 {
  margin: 0 0 20px;
  font-size: 18px;
}

.site-footer a,
.site-footer span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #e7ebef;
  overflow-wrap: anywhere;
}

.site-footer svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 70px;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #cfd6dc;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    padding: 0 24px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .header-cta {
    justify-self: end;
  }

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

  .priority-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .priority-title {
    grid-column: 1 / -1;
  }

  .priority-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding: 22px 12px 4px;
  }

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

  .training-grid,
  .challenge-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line::before {
    display: none;
  }

  .process-line article {
    display: grid;
    grid-template-columns: 54px 36px 1fr;
    gap: 0 18px;
    padding-top: 0;
  }

  .process-line span {
    position: static;
    transform: none;
  }

  .process-line svg {
    margin-top: 8px;
  }

  .process-line h3 {
    margin-top: 4px;
  }

  .process-line p {
    grid-column: 3;
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 66px;
    gap: 12px;
    padding: 0 14px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    width: 154px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    top: 66px;
    padding: 10px 14px 16px;
    box-shadow: 0 16px 28px rgba(13, 18, 22, 0.08);
  }

  .hero {
    min-height: auto;
    padding: 44px 0 88px;
  }

  .hero-grid {
    gap: 28px;
  }

  .eyebrow {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.02;
  }

  .hero-lead {
    margin: 20px 0 28px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions,
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    padding: 14px 18px;
  }

  .hero-media {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 200px auto;
    gap: 12px;
    min-height: auto;
  }

  .hero-img-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .quick-form {
    position: static;
    width: 100%;
    margin-top: 8px;
    padding: 20px 18px;
  }

  .priority-band {
    grid-template-columns: 1fr;
    margin-top: -48px;
    padding: 18px;
  }

  .priority-title {
    align-items: flex-start;
  }

  .priority-title p {
    font-size: 18px;
  }

  .section {
    padding: 48px 0;
  }

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

  .service-card img {
    height: 220px;
  }

  .service-card div {
    padding: 22px 18px 20px;
  }

  .service-card h3 {
    margin: 22px 0 10px;
    font-size: 20px;
  }

  .service-card a {
    margin-top: 18px;
  }

  .training-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .training-card,
  .solution-card {
    padding: 18px 16px;
  }

  .training-card {
    min-height: 186px;
  }

  .training-card h3,
  .solution-card h3 {
    margin-top: 18px;
    font-size: 18px;
  }

  .training-card p,
  .solution-card li {
    font-size: 13px;
    line-height: 1.5;
  }

  .challenge-grid article {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding: 22px 18px;
  }

  .challenge-grid svg {
    grid-row: auto;
  }

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

  .solution-card {
    min-height: auto;
  }

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

  .lead-form {
    padding: 22px;
  }

  .form-grid {
    gap: 14px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    width: 142px;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-media {
    grid-template-rows: 176px 176px auto;
  }

  .quick-form h2,
  .lead-form h2 {
    font-size: 20px;
  }

  .priority-title {
    gap: 14px;
  }

  .priority-title > svg {
    width: 46px;
    height: 46px;
  }

  .training-grid,
  .solutions-grid,
  .client-proof {
    grid-template-columns: 1fr;
  }

  .training-card {
    min-height: auto;
  }

  .trust-gallery {
    grid-template-columns: 1fr;
  }

  .trust-gallery img,
  .trust-gallery img:first-child {
    height: 180px;
  }

  .lead-form {
    padding: 20px 16px;
  }
}
