:root {
  --ink: #14181f;
  --muted: #5d6672;
  --line: #dfe5eb;
  --paper: #f6f7f9;
  --white: #ffffff;
  --black: #07090b;
  --orange: #ff8a00;
  --orange-dark: #c96400;
  --slate: #2b3138;
  --charcoal: #1e242b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: clamp(92px, 10vw, 132px);
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.05;
  color: var(--ink);
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink);
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(26px, 5vw, 62px);
  min-height: calc(100vh - 78px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.88), rgba(26, 32, 39, 0.68)),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1900&q=82") center/cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
}

.button.primary {
  background: var(--orange);
  color: #121212;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--white);
}

.assurance-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.assurance-panel div {
  min-height: 154px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.assurance-panel strong,
.assurance-panel span {
  display: block;
}

.assurance-panel strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 20px;
}

.assurance-panel span {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.muted {
  background: var(--paper);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.trust-strip div {
  min-height: 118px;
  padding: 24px;
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--orange-dark);
  font-size: 24px;
  line-height: 1.15;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.about-grid,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: start;
}

.copy-block {
  color: var(--muted);
  font-size: 18px;
}

.copy-block strong {
  color: var(--ink);
}

.founder-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(20, 24, 31, 0.08);
}

.founder-photo {
  width: 100%;
  height: 390px;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.founder-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.visual-band {
  display: grid;
  align-items: end;
  min-height: 390px;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 24, 31, 0.84), rgba(20, 24, 31, 0.34)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.visual-band div {
  max-width: 760px;
}

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

.service-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 24, 31, 0.06);
}

.service-grid img {
  width: 100%;
  height: 156px;
  object-fit: cover;
}

.service-grid h3,
.service-grid p {
  padding: 0 20px;
}

.service-grid h3 {
  padding-top: 20px;
}

.service-grid p {
  padding-bottom: 22px;
  color: var(--muted);
}

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

.why-grid div {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.why-grid strong,
.why-grid span {
  display: block;
}

.why-grid strong {
  color: var(--orange-dark);
  font-size: 20px;
  line-height: 1.22;
}

.why-grid span {
  margin-top: 10px;
  color: var(--muted);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.industry-list span {
  padding: 12px 16px;
  border: 1px solid #f0c17f;
  border-radius: 6px;
  background: #fff7ec;
  color: #7a4100;
  font-weight: 800;
}

.partner-note {
  max-width: 900px;
  padding: 24px;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
}

.partner-note p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}

.client-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.client-logo {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 112px;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
}

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

.client-grid h3 {
  margin-bottom: 0;
}

.client-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.career-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

label span {
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c8d0d8;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.career-form .button {
  justify-self: start;
}

.form-note {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(rgba(12, 14, 18, 0.92), rgba(12, 14, 18, 0.92)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.contact p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

address {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-style: normal;
  background: rgba(255, 255, 255, 0.08);
}

address img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
}

address span,
address a {
  color: rgba(255, 255, 255, 0.88);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .hero,
  .about-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
  }

  .brand img {
    width: 78px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 20px;
    border-top: 1px solid var(--line);
  }

  .assurance-panel,
  .service-grid,
  .trust-strip,
  .why-grid,
  .client-grid,
  .career-form {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}
