:root {
  --navy: #071a2f;
  --navy-2: #0b2540;
  --anthracite: #151a21;
  --ink: #172033;
  --muted: #5b6678;
  --line: #dbe4ef;
  --soft: #eef3f8;
  --white: #ffffff;
  --blue: #0083c1;
  --blue-light: #52bce8;
  --blue-dark: #006fa5;
  --cyan: var(--blue);
  --teal: #16b8a6;
  --shadow: 0 22px 60px rgba(7, 26, 47, 0.12);
  --radius: 8px;
  --container: min(100% - 40px, 1200px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

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

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

a:hover {
  color: var(--blue);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(25, 189, 235, 0.72);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 228, 239, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--navy);
}

.brand-logo {
  width: 150px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.93rem;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--navy);
}

.site-nav .nav-cta {
  margin-left: 4px;
  background: var(--navy);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--blue);
  color: var(--white);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.site-nav .language-switch a {
  min-height: 34px;
  padding: 7px 9px;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav .language-switch a[aria-current="page"] {
  background: var(--soft);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: currentColor;
}

.section {
  padding: 96px 0;
}

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

.section-muted {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 560px;
  margin-bottom: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--blue-light);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  color: inherit;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.35rem, 5.5vw, 4.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.18rem;
}

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

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 82px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.98) 0%, rgba(7, 26, 47, 0.89) 38%, rgba(7, 26, 47, 0.52) 74%, rgba(7, 26, 47, 0.74) 100%),
    radial-gradient(circle at 18% 24%, rgba(25, 189, 235, 0.18), transparent 30%);
  z-index: 1;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 48px;
}

.hero-content {
  max-width: 890px;
}

.hero-lead {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 131, 193, 0.26);
}

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

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

.button-secondary:hover {
  border-color: var(--cyan);
  color: var(--white);
  background: rgba(25, 189, 235, 0.13);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.hero-panel {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 22px;
  background: rgba(7, 26, 47, 0.54);
}

.metric-value,
.metric-label {
  display: block;
}

.metric-value {
  color: var(--blue-light);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

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

.service-card,
.reference-grid article,
.audience-list article,
.consultant-profile,
.process-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  min-height: 260px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 128, 255, 0.38);
  box-shadow: var(--shadow);
}

.card-index {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.86rem;
}

.service-card h3,
.reference-grid h3,
.audience-list h3,
.process-list h3 {
  color: var(--navy);
}

.service-card p,
.reference-grid p,
.audience-list p,
.process-list p {
  margin-top: 12px;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

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

.audience-list article {
  padding: 26px;
}

.expertise-band {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

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

.tag-grid li {
  min-height: 62px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.statement {
  margin-top: 28px;
  padding: 30px;
  border-left: 5px solid var(--blue);
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
}

.statement p {
  max-width: 820px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.consultants {
  background:
    linear-gradient(135deg, rgba(7, 26, 47, 1), rgba(12, 37, 62, 1));
}

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

.consultant-profile {
  padding: 30px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.18);
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.profile-initials {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--blue-light);
  font-weight: 900;
  font-size: 1.2rem;
}

.role {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.consultant-profile > p + p {
  margin-top: 14px;
}

.focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

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

.reference-grid article {
  padding: 22px;
  min-height: 200px;
}

.process-list {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 26px;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

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

.company-details {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.company-details h3 {
  color: var(--navy);
  font-size: 1.05rem;
}

.company-details address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.company-details dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.company-details dl div {
  padding: 12px 14px;
  border: 1px solid rgba(199, 212, 227, 0.8);
  border-radius: var(--radius);
  background: var(--white);
}

.company-details dt {
  margin-bottom: 2px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-details dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.company-details .registry-row {
  grid-column: 1 / -1;
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.legal-hero {
  padding: 118px 0 82px;
  background:
    linear-gradient(135deg, rgba(7, 26, 47, 1), rgba(10, 42, 70, 1));
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-content {
  background: var(--white);
}

.legal-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.legal-summary h2,
.legal-text h2 {
  color: var(--navy);
}

.legal-summary h2 {
  font-size: 1.25rem;
}

.legal-summary ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.legal-text {
  max-width: 860px;
}

.legal-text section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-text h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.legal-text p + p {
  margin-top: 12px;
}

.legal-text a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-updated {
  margin-top: 38px;
  font-weight: 800;
}

.form-row {
  margin-bottom: 16px;
}

.challenge-row {
  margin-top: 4px;
}

label {
  display: block;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 7px;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c7d4e3;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #c43d4b;
}

.topic-field {
  padding: 0;
  border: 0;
}

.topic-field legend {
  display: block;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 10px;
}

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

.topic-option {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.topic-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.topic-option span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c7d4e3;
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.topic-option input:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 131, 193, 0.18);
}

.topic-option input:focus-visible + span {
  outline: 3px solid rgba(82, 188, 232, 0.72);
  outline-offset: 3px;
}

.topic-field[aria-invalid="true"] .topic-option span {
  border-color: rgba(196, 61, 75, 0.55);
}

.field-error {
  min-height: 20px;
  margin-top: 5px;
  color: #9f2432;
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 8px;
  color: var(--muted);
  font-weight: 600;
}

.consent a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.consent input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
  border: 0;
}

.form-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--anthracite);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-logo {
  width: 154px;
  height: auto;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

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

  .hero-panel {
    max-width: 720px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    width: 100%;
    margin-left: 0;
  }

  .language-switch {
    width: 100%;
    margin-left: 0;
  }

  .site-nav .language-switch a {
    justify-content: center;
  }

  .split,
  .contact-grid,
  .consultant-grid,
  .footer-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

  .section-heading.compact {
    margin-bottom: 34px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1200px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-logo {
    width: 132px;
    max-height: 52px;
  }

  .site-nav {
    inset: 68px 14px auto;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 46px;
  }

  h1 {
    font-size: clamp(2.05rem, 8vw, 2.3rem);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1rem;
  }

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

  .trust-list {
    margin-top: 20px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 26, 47, 0.98) 0%, rgba(7, 26, 47, 0.92) 58%, rgba(7, 26, 47, 0.82) 100%),
      radial-gradient(circle at 18% 24%, rgba(25, 189, 235, 0.14), transparent 40%);
  }

  .hero-media img {
    object-position: center;
    opacity: 0.48;
  }

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

  .trust-list li {
    font-size: 0.84rem;
  }

  .hero-panel,
  .service-grid,
  .audience-list,
  .tag-grid,
  .reference-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .service-card,
  .reference-grid article,
  .audience-list article,
  .process-list li,
  .contact-form,
  .consultant-profile {
    padding: 22px;
  }

  .profile-top {
    align-items: flex-start;
  }

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

  .company-details dl {
    grid-template-columns: 1fr;
  }

  .topic-options {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
