:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-muted: #eef4f7;
  --text: #14202b;
  --muted: #5d6b78;
  --line: #dce5ec;
  --blue: #1267a8;
  --teal: #1b8a84;
  --green: #2f7d5b;
  --shadow: 0 18px 45px rgba(16, 31, 48, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--blue);
  border-radius: 7px;
  font-size: 18px;
}

.nav {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 17px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
}

.header-cta {
  color: #fff;
  background: var(--text);
}

.section-pad {
  padding: 78px clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 67px);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.13;
  letter-spacing: 0;
}

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

.hero-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

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

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(18, 103, 168, 0.2);
}

.button-secondary {
  color: var(--text);
  background: #fff;
  border-color: var(--line);
}

.desk-visual {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.desk-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.status-dot {
  position: relative;
  color: var(--green);
  font-size: 13px;
}

.status-dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: var(--green);
  border-radius: 50%;
}

.desk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.metric,
.shortlist,
.note-panel {
  padding: 16px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric strong {
  display: block;
  font-size: 16px;
}

.shortlist,
.note-panel {
  grid-column: 1 / -1;
}

.supplier-row {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.supplier-row span {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
}

.supplier-row b {
  font-size: 14px;
}

.supplier-row em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.note-panel {
  background: #f0f7f6;
}

.note-panel span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.note-panel p,
.service-grid p,
.industry-card p,
.work-grid p,
.faq-grid p,
.contact-copy p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 0;
  margin-bottom: 34px;
}

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

.service-grid article,
.industry-card,
.work-grid article {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.industry-section,
.process {
  background: #fff;
}

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

.industry-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.industry-card li {
  position: relative;
  padding-left: 17px;
  color: #243443;
}

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

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-list span {
  padding: 9px 13px;
  color: #243443;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 168px;
  padding: 20px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 850;
}

.process-list p {
  margin-bottom: 0;
  font-weight: 760;
}

.positioning {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
  background: #0f1d28;
  color: #fff;
}

.positioning p:last-child {
  margin: 0;
  color: #d9e7ef;
  font-size: 18px;
}

.how-we-work {
  background: var(--bg);
}

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

.work-grid article {
  min-height: 190px;
}

.work-grid p {
  margin-bottom: 0;
}

.faq {
  background: #fff;
}

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

.faq-grid article {
  padding: 24px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #fff;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy a {
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #2a3947;
  font-size: 14px;
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 43px;
  padding: 11px 12px;
  color: var(--text);
  background: #fff;
  border: 1px solid #ccd8e2;
  border-radius: 6px;
  font: inherit;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(18, 103, 168, 0.16);
  border-color: var(--blue);
}

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

.hidden-field {
  display: none;
}

.disclaimer {
  padding: 28px clamp(20px, 5vw, 72px);
  background: #f2f6f8;
  border-top: 1px solid var(--line);
}

.disclaimer p {
  max-width: 1120px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #d7e4ee;
  background: #0f1d28;
}

.site-footer div {
  gap: 10px 16px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #d7e4ee;
}

.thank-you {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}

.thank-you-card {
  width: min(620px, 100%);
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thank-you-card p {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

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

  .hero {
    min-height: auto;
  }

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

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

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

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: stretch;
    gap: 14px;
    padding: 14px 18px;
  }

  .brand {
    justify-content: center;
  }

  .header-cta {
    width: 100%;
  }

  .nav {
    gap: 14px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .section-pad {
    padding: 54px 18px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .desk-grid,
  .service-grid,
  .work-grid,
  .faq-grid,
  .industry-grid,
  .industry-card ul,
  .process-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .supplier-row {
    grid-template-columns: 10px 1fr;
  }

  .supplier-row em {
    grid-column: 2;
  }

  .process-list li {
    min-height: 132px;
  }

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