:root {
  --ink: #0f172a;
  --ink-2: #152238;
  --slate: #475569;
  --muted: #64748b;
  --line: #d8e2ea;
  --paper: #f8fafc;
  --wash: #eef6f7;
  --white: #ffffff;
  --teal: #0f766e;
  --cyan: #164e63;
  --blue: #1d4ed8;
  --green: #15803d;
  --gold: #b7791f;
  --purple: #7c3aed;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--white);
}

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

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  font-size: 11px;
  color: currentColor;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-action {
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.15);
  color: currentColor;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 7vw, 92px) 52px;
  overflow: hidden;
  color: var(--white);
  background: #0f172a;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.92;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.76) 42%, rgba(15, 23, 42, 0.24) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker,
.leader-role {
  margin: 0 0 14px;
  color: #8fd8d0;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(31px, 4.4vw, 54px);
  line-height: 1.02;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #d8e2ea;
  font-size: 18px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 6vw, 82px);
  bottom: 52px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  width: min(520px, 48vw);
  border: 1px solid rgba(216, 226, 234, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
}

.hero-panel div {
  padding: 18px;
}

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

.hero-panel strong {
  font-size: 20px;
}

.hero-panel span {
  margin-top: 7px;
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: 86px clamp(20px, 7vw, 92px);
}

.split,
.section-heading,
.method-layout,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
}

.intro-section {
  background: var(--white);
}

.prose p,
.section-heading p,
.contact-copy p {
  margin: 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.65;
}

.prose p + p {
  margin-top: 18px;
}

.services-section,
.industries-section {
  background: var(--paper);
}

.section-heading {
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 580px;
}

.service-grid,
.industry-grid,
.leader-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.industry-grid article,
.leader-card,
.dashboard,
.process-list article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  position: relative;
  padding: 28px 24px 24px;
  min-height: 292px;
  overflow: hidden;
}

.card-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.teal { background: var(--teal); }
.blue { background: var(--blue); }
.green { background: var(--green); }
.gold { background: var(--gold); }
.cyan { background: var(--cyan); }
.purple { background: var(--purple); }

.service-card ul {
  margin: 18px 0 0;
  padding: 0 0 0 18px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.75;
}

.intelligence-section {
  background: var(--white);
}

.dashboard {
  padding: 24px;
  box-shadow: var(--shadow);
}

.dashboard-top,
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-top span {
  color: var(--muted);
  font-size: 12px;
}

.metric-row {
  margin-top: 22px;
}

.metric-row div {
  flex: 1;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--teal);
  font-size: 24px;
}

.metric-row div:nth-child(2) strong {
  color: var(--blue);
}

.metric-row div:nth-child(3) strong {
  color: var(--green);
}

.metric-row span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.chart {
  width: 100%;
  height: auto;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdff;
}

.grid line {
  stroke: #e5edf3;
  stroke-width: 1;
}

.trend {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.teal-line { stroke: var(--teal); }
.blue-line { stroke: var(--blue); }

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px;
}

.process-list span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.process-list p,
.industry-grid p,
.leader-card p {
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}

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

.industry-grid article {
  position: relative;
  min-height: 168px;
  padding: 25px 24px 24px;
}

.dot {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  margin-bottom: 16px;
}

.leadership-section {
  background: var(--white);
}

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

.leader-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 20px;
}

.leader-card img {
  width: 190px;
  height: 248px;
  object-fit: cover;
  border-radius: 8px;
}

.leader-card:first-child img {
  object-fit: contain;
  object-position: center bottom;
  background: #eef3f6;
}

.leader-card:nth-child(2) img {
  object-position: 52% 34%;
}

.leader-role {
  margin-bottom: 10px;
  color: var(--teal);
}

.contact-section {
  background: var(--ink);
  color: var(--white);
}

.contact-copy p {
  color: #cbd5e1;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  padding: 9px 12px;
  border: 1px solid rgba(216, 226, 234, 0.22);
  border-radius: 999px;
  color: #d8e2ea;
  font-size: 13px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.quote-flow-card {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(216, 226, 234, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.quote-flow-card h3 {
  color: var(--white);
}

.quote-flow-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #cbd5e1;
  line-height: 1.6;
}

.quote-flow-card a {
  display: inline-flex;
  margin-top: 14px;
  color: #8fd8d0;
  font-weight: 800;
}

.contact-details a {
  width: fit-content;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.contact-details a:hover {
  color: #8fd8d0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

.order-section {
  background: var(--paper);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  gap: 22px;
  align-items: start;
}

.order-form,
.order-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.policy-box,
.payment-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.policy-box h3,
.payment-box h3,
.order-aside h3 {
  margin: 0 0 10px;
}

.policy-box p,
.payment-box p,
.order-aside li {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

.checkbox-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.order-aside {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.order-aside ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.portal-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 800;
}

.contact-form textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 7vw, 92px);
  background: #0b1220;
  color: #cbd5e1;
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-mark {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: var(--white);
}

.site-footer p {
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
  }

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

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

  .leader-card img {
    width: 100%;
    height: 320px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 10px;
  }

  .nav-action {
    border-color: var(--line);
  }

  .hero {
    min-height: 82vh;
    padding-top: 96px;
    padding-bottom: 34px;
  }

  .hero-panel {
    display: none;
  }

  .split,
  .section-heading,
  .method-layout,
  .contact-section,
  .contact-form,
  .order-layout,
  .order-form {
    grid-template-columns: 1fr;
  }

  .order-aside {
    position: static;
  }

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

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  h1 {
    font-size: 35px;
    line-height: 1.04;
  }

  h2 {
    font-size: 31px;
  }

  .eyebrow,
  .section-kicker,
  .leader-role {
    font-size: 11px;
    line-height: 1.45;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 22px;
  }

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

  .metric-row {
    flex-direction: column;
  }

  .metric-row div {
    width: 100%;
  }
}
