:root {
  color-scheme: light;
  --bg: #f4f6f2;
  --surface: #ffffff;
  --surface-2: #eef3ef;
  --ink: #11181c;
  --muted: #58646c;
  --line: #d7ded8;
  --dark: #11181c;
  --steel: #26343b;
  --green: #0f766e;
  --green-dark: #0a4f4a;
  --amber: #b7791f;
  --blue: #2563eb;
  --repair: #0e7490;
  --shadow: 0 18px 48px rgba(17, 24, 28, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--green-dark);
}

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

.skip-link {
  left: 1rem;
  position: absolute;
  top: -4rem;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  background: rgba(244, 246, 242, 0.94);
  border-bottom: 1px solid rgba(17, 24, 28, 0.1);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  min-height: 74px;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 4;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 0.8rem;
  text-decoration: none;
}

.brand__logo {
  background: #fff;
  border: 1px solid rgba(17, 24, 28, 0.1);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(17, 24, 28, 0.08);
  height: 40px;
  object-fit: contain;
  padding: 0.35rem 0.45rem;
  width: 150px;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: center;
}

.site-nav a,
.language-link {
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  padding: 0.48rem 0.68rem;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.language-link:hover {
  background: #e3e9e3;
}

.hero {
  align-items: center;
  color: white;
  display: grid;
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.hero__backdrop {
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero__backdrop::after {
  background: rgba(7, 12, 14, 0.68);
  content: "";
  inset: 0;
  position: absolute;
}

.hero__content {
  max-width: 860px;
  padding: 5rem clamp(1.2rem, 7vw, 6rem);
  position: relative;
  z-index: 1;
}

.hero__media {
  display: none;
}

.eyebrow {
  color: #d89a2b;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.hero h1,
.page-header h1 {
  font-size: 4.35rem;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 960px;
}

.hero__lead {
  color: #e7eeeb;
  font-size: 1.2rem;
  margin: 1.25rem 0 0;
  max-width: 700px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 720;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  text-decoration: none;
}

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

.button--primary:hover {
  background: var(--green-dark);
}

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

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

.content-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 4rem clamp(1rem, 4vw, 2rem);
}

.page-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.page-header p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
}

.prose {
  display: grid;
  gap: 0.4rem;
  max-width: 880px;
}

.prose h2 {
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 2rem 0 0.3rem;
}

.prose h3 {
  font-size: 1.18rem;
  margin: 1.2rem 0 0;
}

.prose p,
.prose li {
  color: #2f383d;
}

.prose blockquote {
  border-left: 4px solid var(--green);
  color: var(--ink);
  margin: 1rem 0;
  padding: 0.2rem 0 0.2rem 1rem;
}

.prose ul {
  margin-top: 0.2rem;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 28, 0.08);
  color: var(--ink);
  display: grid;
  overflow: hidden;
  text-decoration: none;
}

.service-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.service-card span {
  font-size: 1.08rem;
  font-weight: 800;
  padding: 1rem 1rem 0;
}

.service-card p {
  color: var(--muted);
  margin: 0;
  padding: 0.35rem 1rem 1.1rem;
}

.service-card:hover {
  border-color: rgba(15, 118, 110, 0.46);
  transform: translateY(-2px);
}

.value-case {
  background: #eef2ee;
  border: 1px solid #d2dbd4;
  border-radius: 8px;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  margin: 3rem 0;
  overflow: hidden;
  padding: 2rem;
  position: relative;
}

.value-case::before {
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 118, 110, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  bottom: 0;
  content: "";
  opacity: 0.34;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
}

.value-case__lead,
.value-grid {
  position: relative;
  z-index: 1;
}

.value-case h2 {
  font-size: 2.15rem;
  line-height: 1.12;
  margin: 0;
  max-width: 680px;
}

.value-case__lead > p:not(.eyebrow) {
  color: #344247;
  max-width: 660px;
}

.value-grid {
  display: grid;
  gap: 0.85rem;
}

.value-grid article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(123, 137, 128, 0.28);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 31, 35, 0.08);
  padding: 1rem;
}

.value-grid span {
  color: var(--green);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 0.55rem;
}

.value-grid h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

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

.assessment-band,
.visual-panel,
.sample-panel,
.cra-hub {
  border-radius: 8px;
}

.assessment-band {
  align-items: center;
  background: var(--dark);
  color: white;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  margin: 3rem 0;
  overflow: hidden;
  padding: 2rem;
}

.assessment-band h2 {
  font-size: 2.35rem;
  line-height: 1.12;
  margin: 0;
  max-width: 720px;
}

.assessment-band p {
  color: #d7e0dd;
  max-width: 680px;
}

.assessment-band img {
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.step-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.step-cloud span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  padding: 0.42rem 0.68rem;
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cra-hub {
  background: #121a1d;
  color: white;
  margin: 3rem 0;
  overflow: hidden;
  padding: 2rem;
}

.cra-hub__header {
  align-items: end;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
}

.cra-hub h2 {
  font-size: 2.25rem;
  line-height: 1.12;
  margin: 0;
}

.cra-hub p {
  color: #dbe6e3;
}

.cra-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.cra-grid article {
  background: #f4f6f2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--ink);
  min-height: 230px;
  padding: 1.1rem;
  position: relative;
}

.cra-grid article::before {
  background: var(--green);
  content: "";
  height: 4px;
  left: 1.1rem;
  position: absolute;
  right: 1.1rem;
  top: 0;
}

.cra-grid h3 {
  font-size: 1.05rem;
  margin: 0.65rem 0 0.55rem;
}

.cra-grid p {
  color: #445158;
  margin: 0;
}

.cra-timeline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
  overflow: hidden;
}

.cra-timeline span {
  background: rgba(255, 255, 255, 0.06);
  color: #dbe6e3;
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
}

.cra-timeline strong {
  color: white;
  font-size: 1rem;
}

.cra-posts {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 1.4rem;
  padding-top: 1.4rem;
}

.cra-posts__header {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 1fr);
}

.cra-posts__header span {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.cra-posts__header p {
  color: #dbe6e3;
  margin: 0;
}

.cra-post-list {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.cra-post-list article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 1rem;
}

.cra-post-list h3 {
  color: #ffffff;
  font-size: 1rem;
  margin: 0 0 0.45rem;
}

.cra-post-list p {
  color: #dbe6e3;
  margin: 0;
}

.source-row {
  color: #bfd1cc !important;
  font-size: 0.92rem;
  margin-bottom: 0;
}

.source-row a {
  color: #ffffff;
  font-weight: 800;
  margin-left: 0.65rem;
}

.visual-panel {
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  margin: 3rem 0;
  overflow: hidden;
}

.visual-panel > img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}

.visual-panel > div {
  padding: 2rem;
}

.visual-panel h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 1.2rem;
}

.proof-list {
  display: grid;
  gap: 0.85rem;
}

.proof-list article {
  border-left: 3px solid var(--green);
  padding-left: 0.9rem;
}

.page-consulting .proof-list article {
  border-left-color: var(--blue);
}

.page-diagnostics .proof-list article {
  border-left-color: var(--repair);
}

.proof-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.proof-list p {
  color: var(--muted);
  margin: 0;
}

.sample-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  margin-top: 2.5rem;
  padding: 2rem;
}

.sample-panel h2 {
  margin-top: 0;
}

.sample-panel p {
  color: var(--muted);
}

.contact-phone {
  font-size: 1.04rem;
}

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

.sample-form label {
  color: var(--muted);
  display: grid;
  font-size: 0.9rem;
  gap: 0.35rem;
}

.sample-form .bot-field {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.sample-form input,
.sample-form select,
.sample-form textarea {
  border: 1px solid #cbd3cd;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 0.6rem 0.7rem;
  width: 100%;
}

.sample-form textarea {
  resize: vertical;
}

.sample-form .full,
.sample-form button,
.form-status {
  grid-column: 1 / -1;
}

.check {
  align-items: start;
  display: flex !important;
  grid-template-columns: auto 1fr;
}

.check input {
  min-height: auto;
  width: auto;
}

.form-status {
  color: var(--muted);
  margin: 0;
}

.site-footer {
  align-items: center;
  background: #e3e8e2;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero {
    min-height: 580px;
  }

  .hero h1,
  .page-header h1 {
    font-size: 3.1rem;
  }

  .service-strip,
  .value-case,
  .assessment-band,
  .cra-hub__header,
  .visual-panel,
  .sample-panel {
    grid-template-columns: 1fr;
  }

  .value-case::before {
    height: 42%;
    left: 0;
    top: auto;
    width: 100%;
  }

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

  .visual-panel > img {
    min-height: 280px;
  }
}

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

  .site-nav a,
  .language-link {
    font-size: 0.86rem;
  }

  .hero {
    min-height: 540px;
  }

  .hero__content {
    padding: 4rem 1.1rem;
  }

  .hero h1,
  .page-header h1 {
    font-size: 2.35rem;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .content-shell {
    padding: 3rem 1rem;
  }

  .assessment-band,
  .value-case,
  .cra-hub,
  .visual-panel > div,
  .sample-panel {
    padding: 1.25rem;
  }

  .value-case h2,
  .assessment-band h2,
  .cra-hub h2,
  .visual-panel h2 {
    font-size: 1.65rem;
  }

  .cra-grid,
  .cra-timeline,
  .cra-posts__header,
  .cra-post-list {
    grid-template-columns: 1fr;
  }

  .cra-grid article {
    min-height: auto;
  }

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