:root {
  --ink: #111827;
  --navy: #0a1d36;
  --deep: #071220;
  --blue: #1d4f91;
  --teal: #0f8b8d;
  --amber: #d88c1f;
  --sky: #dcebf3;
  --mist: #eef4f7;
  --line: #d8e1e7;
  --paper: #ffffff;
  --soft: #f7fafb;
  --muted: #5d6b78;
  --shadow: 0 24px 70px rgba(10, 29, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin-top: 0;
}

.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: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(10, 29, 54, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  position: relative;
  z-index: 22;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: min(330px, 56vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.nav-cta {
  border-bottom: 2px solid var(--amber);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 22;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  filter: saturate(0.96) contrast(1.04);
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 42%, rgba(15, 139, 141, 0.2), rgba(15, 139, 141, 0) 28%),
    linear-gradient(90deg, rgba(7, 18, 32, 0.95) 0%, rgba(7, 18, 32, 0.82) 46%, rgba(7, 18, 32, 0.45) 100%),
    linear-gradient(0deg, rgba(7, 18, 32, 0.78) 0%, rgba(7, 18, 32, 0) 48%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 80px;
}

.hero-content {
  position: relative;
  width: 100%;
  min-width: 0;
}

.solution-visual {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 8px 0 8px 44px;
}

.visual-line {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--amber));
}

.visual-step {
  position: relative;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.visual-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.visual-step span {
  position: absolute;
  left: -44px;
  top: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(124, 213, 212, 0.4);
  border-radius: 50%;
  background: var(--deep);
  color: #ffd28e;
  font-size: 0.78rem;
  font-weight: 900;
}

.visual-step strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.1;
}

.visual-step p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7cd5d4;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 780px;
  font-size: clamp(3.1rem, 6.6vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
}

.tagline {
  margin-bottom: 18px;
  color: #ffd28e;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

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

.button {
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 19px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--amber);
  color: #111827;
  box-shadow: 0 16px 32px rgba(216, 140, 31, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.arrow-icon,
.grid-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.12);
}

.arrow-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: -2px;
}

.grid-icon {
  border-radius: 6px;
  background:
    linear-gradient(currentColor, currentColor) 5px 5px / 4px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 13px 5px / 4px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 5px 13px / 4px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 13px 13px / 4px 4px no-repeat,
    rgba(255, 255, 255, 0.16);
}

.section,
.section-band {
  padding: clamp(48px, 6vw, 82px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-band {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.proof-grid,
.contact-layout,
.process-layout,
.split-layout,
.faq-layout,
.about-layout {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
}

.intro-grid,
.proof-grid {
  grid-template-columns: 0.85fr 1fr;
  align-items: start;
}

.intro p:last-child,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.22rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.about-section {
  background: #fff;
}

.about-layout {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.about-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.values-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.values-grid p {
  color: var(--muted);
}

.solution-list,
.service-grid,
.industry-grid,
.engagement-grid,
.deliverables-grid {
  display: grid;
  gap: 0;
}

.solution-list {
  border-top: 1px solid var(--line);
}

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

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

.deliverables-section {
  background:
    linear-gradient(180deg, rgba(238, 244, 247, 0.72), rgba(255, 255, 255, 0)),
    #fff;
  border-top: 1px solid var(--line);
}

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

.deliverables-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(10, 29, 54, 0.06);
}

.deliverables-grid p {
  color: var(--muted);
}

.mini-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%),
    linear-gradient(135deg, var(--blue), var(--teal));
}

.solution-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.solution-list article > span {
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
}

.solution-list h3 {
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.solution-list p,
.process-list p,
.outcome-list p,
.industry-grid p,
.engagement-grid p,
.engagement-grid span,
.solution-panel p,
.faq-list p {
  color: var(--muted);
}

.split-section {
  background:
    linear-gradient(90deg, rgba(29, 79, 145, 0.06), rgba(15, 139, 141, 0.05)),
    #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-layout,
.process-layout,
.faq-layout,
.contact-layout {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

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

.solution-panel article {
  padding: 24px;
  border: 1px solid rgba(10, 29, 54, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.solution-panel span {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-weight: 900;
}

.muted {
  background:
    linear-gradient(90deg, rgba(15, 139, 141, 0.11), rgba(216, 140, 31, 0.09)),
    var(--mist);
}

.industry-grid article,
.engagement-grid article {
  padding: 24px;
}

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

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 96px;
  padding: 20px 0 20px 68px;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.process-list li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.process-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-weight: 900;
}

.proof-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-list {
  display: grid;
  gap: 12px;
}

.outcome-list p {
  margin: 0;
  padding: 20px;
  border-left: 4px solid var(--teal);
  background: #fff;
}

.engagement-section {
  background: #fff;
}

.engagement-grid article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.engagement-grid span {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  font-weight: 800;
}

.featured-engagement {
  border-color: rgba(216, 140, 31, 0.45) !important;
  box-shadow: 0 18px 42px rgba(216, 140, 31, 0.16) !important;
}

.faq-section {
  background: var(--mist);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(10, 29, 54, 0.12);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 900;
}

details p {
  padding: 0 24px 22px;
  margin: 0;
}

.contact-section {
  background: var(--navy);
  color: #fff;
}

.contact-copy h2,
.contact-copy p {
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.contact-points span {
  padding: 12px 14px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.contact-email {
  display: inline-flex;
  color: #ffd28e;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(216, 140, 31, 0.45);
  outline-offset: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #a6eeee;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep);
  font-size: 0.92rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  display: block;
  width: auto;
  height: 70px;
  max-width: min(360px, 80vw);
  object-fit: contain;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

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

@media (max-width: 900px) {
  .intro-grid,
  .proof-grid,
  .contact-layout,
  .process-layout,
  .split-layout,
  .faq-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

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

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

  .hero-layout {
    grid-template-columns: 1fr;
    padding-bottom: 76px;
  }
}

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

  .brand-logo {
    height: 48px;
    max-width: min(285px, 68vw);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(10, 29, 54, 0.96);
  }

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

  .site-nav a {
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-cta {
    border-bottom: 0;
    color: #ffd28e;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-media img {
    object-position: 74% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 18, 32, 0.96), rgba(7, 18, 32, 0.78)),
      linear-gradient(0deg, rgba(7, 18, 32, 0.9), rgba(7, 18, 32, 0.18));
  }

  .hero-layout {
    width: 100%;
    padding: 102px 18px 0;
    gap: 24px;
  }

  .hero-content {
    width: 100%;
  }

  .solution-visual {
    padding-left: 42px;
  }

  h1 {
    font-size: clamp(2.05rem, 9vw, 2.85rem);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .hero-strip {
    display: none;
  }

  .service-grid,
  .industry-grid,
  .solution-panel,
  .form-row,
  .values-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .solution-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .footer-logo {
    height: 56px;
  }

}
