:root {
  --blue: #0b1f3a;
  --blue-deep: #061426;
  --blue-ink: #07111f;
  --steel: #4f6f8f;
  --gold: #c8a24d;
  --gold-light: #f0d48a;
  --silver: #bfc4d1;
  --black: #111111;
  --white: #f7f8fa;
  --paper: #ffffff;
  --line: rgba(191, 196, 209, 0.28);
  --shadow: 0 24px 70px rgba(6, 20, 38, 0.18);
  --radius: 8px;
  --container: 1180px;
  --nav-height: 78px;
  --watermark-logo: url("assets/logo-gold.png");
  --watermark-logo-light: url("assets/logo-white.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--blue-ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

::selection {
  background: rgba(200, 162, 77, 0.32);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--blue);
  border: 1px solid var(--gold);
  padding: 10px 14px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--nav-height);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(6, 20, 38, 0.92);
  border-bottom: 1px solid rgba(200, 162, 77, 0.25);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 164px;
  min-height: 58px;
}

.brand img {
  width: 154px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(247, 248, 250, 0.14);
  background: rgba(6, 20, 38, 0.36);
  border-radius: 4px;
}

.main-nav > a,
.nav-services-toggle {
  color: rgba(247, 248, 250, 0.88);
  font-size: 0.92rem;
  padding: 10px 13px;
  border-radius: 3px;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-services-toggle:hover,
.nav-services-toggle:focus-visible {
  background: rgba(200, 162, 77, 0.14);
  color: var(--gold-light);
  outline: none;
}

.nav-dropdown {
  position: relative;
}

.nav-services-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-dropdown.is-open .nav-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.services-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 520px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  background: rgba(6, 20, 38, 0.98);
  border: 1px solid rgba(200, 162, 77, 0.3);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown.is-open .services-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-menu a {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  padding: 11px 10px;
  border-radius: 3px;
  color: rgba(247, 248, 250, 0.88);
  font-size: 0.88rem;
}

.services-menu a span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
}

.services-menu a:hover,
.services-menu a:focus-visible {
  color: var(--gold-light);
  background: rgba(200, 162, 77, 0.12);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(247, 248, 250, 0.28);
  border-radius: 4px;
  background: rgba(6, 20, 38, 0.44);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-reception.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 20, 38, 0.96) 0%, rgba(6, 20, 38, 0.82) 34%, rgba(6, 20, 38, 0.26) 70%, rgba(6, 20, 38, 0.5) 100%),
    linear-gradient(180deg, rgba(6, 20, 38, 0.8) 0%, rgba(6, 20, 38, 0.08) 46%, rgba(6, 20, 38, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 142px 0 148px;
}

.hero-brand-mark {
  width: clamp(180px, 18vw, 260px);
  margin: 0 0 24px;
}

.hero-brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
}

.hero h1 {
  max-width: 720px;
  font-size: 4.55rem;
  text-wrap: balance;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(247, 248, 250, 0.88);
  font-size: 1.16rem;
}

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

.hero-direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-phone,
.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(240, 212, 138, 0.34);
  border-radius: 4px;
  color: var(--gold-light);
  background: rgba(6, 20, 38, 0.36);
  font-weight: 800;
}

.hero-phone:hover,
.hero-phone:focus-visible,
.hero-whatsapp:hover,
.hero-whatsapp:focus-visible {
  color: var(--white);
  border-color: var(--gold-light);
  background: rgba(200, 162, 77, 0.16);
  outline: none;
}

.hero-whatsapp {
  color: #dfffe8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--blue-deep);
  border-color: var(--gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(247, 248, 250, 0.36);
  background: rgba(247, 248, 250, 0.06);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-proof {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: min(var(--container), calc(100% - 40px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(200, 162, 77, 0.55);
  border-bottom: 1px solid rgba(247, 248, 250, 0.1);
  background: rgba(6, 20, 38, 0.62);
  backdrop-filter: blur(12px);
}

.hero-proof span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: rgba(247, 248, 250, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid rgba(247, 248, 250, 0.1);
}

.hero-proof span:last-child {
  border-right: 0;
}

.signal-strip {
  width: min(var(--container), calc(100% - 40px));
  margin: -18px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow);
}

.signal-strip div {
  min-height: 104px;
  padding: 24px 28px;
  border-right: 1px solid rgba(11, 31, 58, 0.08);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  display: block;
  color: var(--blue);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.signal-strip span {
  display: block;
  margin-top: 8px;
  color: #536174;
  font-size: 0.95rem;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-section,
.services-section,
.approach-section,
.split-section,
.sectors-section,
.profile-section,
.experience-section,
.insights-section,
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.intro-section::after,
.approach-section::after,
.services-section::before,
.sectors-section::before,
.experience-section::before,
.insights-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.intro-section::after {
  right: -42px;
  top: 48px;
  width: 280px;
  height: 180px;
  background-image: var(--watermark-logo);
  opacity: 0.055;
}

.section-heading,
.intro-grid,
.services-grid,
.approach-principles,
.approach-proof-grid,
.method-timeline,
.risk-grid,
.experience-grid,
.standards-line,
.insights-shell,
.contact-shell,
.profile-panel {
  position: relative;
  z-index: 1;
}

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

.section-heading h2,
.intro-grid h2,
.split-copy h2,
.profile-content h2,
.contact-copy h2 {
  color: var(--blue);
  font-size: 2.55rem;
}

.section-heading p,
.intro-copy p,
.split-copy p,
.contact-copy p,
.profile-content p {
  color: #536174;
  font-size: 1.02rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.intro-copy {
  border-left: 1px solid rgba(200, 162, 77, 0.5);
  padding-left: 36px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.services-section,
.sectors-section {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100% - var(--container)) / 2));
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 162, 77, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(11, 31, 58, 0.03) 0 25%, transparent 25% 50%, rgba(11, 31, 58, 0.03) 50% 75%, transparent 75%),
    #eef1f5;
  background-size: auto, 28px 28px, auto;
}

.services-section::before,
.sectors-section::before {
  right: max(20px, calc((100% - var(--container)) / 2));
  top: 50px;
  width: min(440px, 36vw);
  height: min(300px, 24vw);
  background-image: var(--watermark-logo);
  opacity: 0.05;
}

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

.service-card,
.risk-grid div {
  background: var(--paper);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(6, 20, 38, 0.07);
}

.service-card {
  min-height: 485px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(200, 162, 77, 0.08), rgba(200, 162, 77, 0) 42%),
    radial-gradient(circle at 100% 0, rgba(11, 31, 58, 0.08), transparent 34%),
    var(--paper);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 28px;
  color: rgba(11, 31, 58, 0.045);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.4vw, 3.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  z-index: 1;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

#cumplimiento::before {
  content: "COMPLIANCE";
}

#riesgos::before {
  content: "RISK";
}

#auditoria::before {
  content: "AUDIT";
}

#auditoria-forense::before {
  content: "FORENSIC";
}

#revisoria-fiscal::before {
  content: "ASSURANCE";
}

#finanzas-niif::before {
  content: "CFO";
}

#normas-iso::before {
  content: "ISO";
}

#basc::before {
  content: "BASC";
}

#legal::before {
  content: "LEGAL";
}

#proteccion-datos::before {
  content: "DATA";
}

#academy::before {
  content: "ACADEMY";
}

.service-code,
.method-step span {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.86rem;
}

.service-card h3,
.method-step h3,
.risk-grid strong {
  margin: 0;
  color: var(--blue);
  font-size: 1.18rem;
}

.service-card p,
.method-step p,
.risk-grid span {
  margin: 0;
  color: #536174;
  font-size: 0.96rem;
}

.service-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-points li {
  position: relative;
  padding-left: 18px;
  color: #536174;
  font-size: 0.92rem;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 2px;
  background: var(--gold);
}

.service-card a {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
  word-break: break-word;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--blue);
  background: rgba(200, 162, 77, 0.18);
  border: 1px solid rgba(200, 162, 77, 0.42);
  border-radius: 4px;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: #8a6a24;
  outline: none;
}

.service-cta::after {
  content: "→";
  margin-left: 9px;
  color: var(--gold);
}

.service-contact-strip {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin: 28px auto 0;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  background:
    linear-gradient(135deg, rgba(200, 162, 77, 0.1), transparent 42%),
    var(--blue-deep);
  border: 1px solid rgba(200, 162, 77, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(6, 20, 38, 0.12);
}

.service-contact-strip span {
  grid-column: 1 / -1;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-contact-strip a {
  color: rgba(247, 248, 250, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
  word-break: break-word;
}

.service-contact-strip a:hover,
.service-contact-strip a:focus-visible {
  color: var(--gold-light);
  outline: none;
}

.approach-section {
  width: min(1260px, calc(100% - 40px));
}

.approach-section::after {
  right: -78px;
  top: 96px;
  width: 390px;
  height: 270px;
  background-image:
    linear-gradient(rgba(200, 162, 77, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 162, 77, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.42;
}

.approach-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 52px;
  border-top: 1px solid rgba(11, 31, 58, 0.14);
  border-bottom: 1px solid rgba(11, 31, 58, 0.14);
}

.approach-principles div {
  min-height: 185px;
  padding: 26px 22px;
  border-right: 1px solid rgba(11, 31, 58, 0.12);
  background:
    linear-gradient(180deg, rgba(200, 162, 77, 0.055), rgba(200, 162, 77, 0)),
    linear-gradient(135deg, rgba(11, 31, 58, 0.035), transparent 50%);
}

.approach-principles div:last-child {
  border-right: 0;
}

.approach-principles strong {
  display: block;
  color: var(--blue);
  font-size: 1.02rem;
}

.approach-principles span {
  display: block;
  margin-top: 10px;
  color: #536174;
  font-size: 0.92rem;
}

.approach-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: -20px 0 52px;
}

.approach-proof-grid div {
  min-height: 168px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(200, 162, 77, 0.14), rgba(200, 162, 77, 0)),
    radial-gradient(circle at 92% 20%, rgba(240, 212, 138, 0.14), transparent 32%),
    var(--blue-ink);
  border: 1px solid rgba(200, 162, 77, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(6, 20, 38, 0.12);
  position: relative;
  overflow: hidden;
}

.approach-proof-grid div::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(200, 162, 77, 0.18);
  border-radius: 50%;
}

.approach-proof-grid strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.98rem;
}

.approach-proof-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(247, 248, 250, 0.76);
  font-size: 0.9rem;
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(11, 31, 58, 0.14);
  border-bottom: 1px solid rgba(11, 31, 58, 0.14);
}

.method-step {
  min-height: 250px;
  padding: 28px 22px;
  border-right: 1px solid rgba(11, 31, 58, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.method-step:last-child {
  border-right: 0;
}

.leadership-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  margin-top: 56px;
  padding: 42px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid rgba(200, 162, 77, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.leadership-title {
  padding-right: 40px;
  border-right: 1px solid rgba(200, 162, 77, 0.3);
}

.leadership-title h3 {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.04;
}

.leadership-title p {
  color: var(--gold-light);
  font-weight: 800;
}

.leadership-copy p {
  margin: 0 0 16px;
  color: rgba(247, 248, 250, 0.78);
}

.leadership-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.leadership-tags span {
  padding: 7px 10px;
  color: rgba(247, 248, 250, 0.9);
  border: 1px solid rgba(200, 162, 77, 0.36);
  border-radius: 4px;
  font-size: 0.84rem;
}

.split-section {
  width: 100%;
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--blue-deep);
  color: var(--white);
}

.split-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(200, 162, 77, 0.1), transparent 34%),
    radial-gradient(circle at 14% 18%, rgba(240, 212, 138, 0.1), transparent 28%),
    linear-gradient(rgba(247, 248, 250, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 250, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  opacity: 0.75;
  z-index: 0;
}

.split-section > * {
  position: relative;
  z-index: 1;
}

.systems-visual {
  min-height: 620px;
  padding: 72px max(36px, calc((100vw - var(--container)) / 2)) 72px max(36px, calc((100vw - var(--container)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(6, 20, 38, 0.04), rgba(6, 20, 38, 0.66)),
    radial-gradient(circle at 88% 22%, rgba(200, 162, 77, 0.12), transparent 26%),
    linear-gradient(rgba(247, 248, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 250, 0.035) 1px, transparent 1px),
    #091a30;
  background-size: auto, auto, 40px 40px, 40px 40px, auto;
  border-right: 1px solid rgba(200, 162, 77, 0.25);
}

.systems-visual > span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.standards-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
  border-top: 1px solid rgba(247, 248, 250, 0.12);
  border-left: 1px solid rgba(247, 248, 250, 0.12);
}

.standards-stack div {
  min-height: 118px;
  padding: 20px;
  border-right: 1px solid rgba(247, 248, 250, 0.12);
  border-bottom: 1px solid rgba(247, 248, 250, 0.12);
}

.standards-stack strong,
.standards-stack small {
  display: block;
}

.standards-stack strong {
  color: var(--white);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.standards-stack small {
  margin-top: 9px;
  color: rgba(247, 248, 250, 0.66);
  font-size: 0.84rem;
}

.systems-visual > p {
  margin: 28px 0 0;
  color: rgba(247, 248, 250, 0.68);
  font-size: 0.88rem;
}

.split-copy {
  padding: 84px max(40px, calc((100vw - var(--container)) / 2)) 84px 62px;
  align-self: center;
}

.split-copy h2 {
  color: var(--white);
}

.split-copy p,
.split-copy li {
  color: rgba(247, 248, 250, 0.78);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 2px;
  background: var(--gold);
}

.systems-focus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.systems-focus div {
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(200, 162, 77, 0.28);
  border-radius: 5px;
  background: rgba(247, 248, 250, 0.045);
}

.systems-focus strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.02rem;
}

.systems-focus span {
  display: block;
  margin-top: 9px;
  color: rgba(247, 248, 250, 0.74);
  font-size: 0.94rem;
}

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

.risk-grid div {
  min-height: 155px;
  padding: 26px;
  display: grid;
  align-content: start;
  gap: 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.risk-grid div::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(200, 162, 77, 0.22);
  border-radius: 50%;
  z-index: -1;
}

.risk-grid div::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 128px;
  height: 76px;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(11, 31, 58, 0.06) 48% 52%, transparent 52%),
    linear-gradient(45deg, transparent 0 48%, rgba(200, 162, 77, 0.12) 48% 52%, transparent 52%);
  background-size: 16px 16px;
  opacity: 0.7;
  z-index: -1;
}

.profile-section {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100% - var(--container)) / 2));
  background:
    radial-gradient(circle at 78% 16%, rgba(200, 162, 77, 0.2), transparent 28%),
    linear-gradient(180deg, var(--blue-deep), var(--blue));
}

.profile-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 54px;
  padding: 44px;
  border: 1px solid rgba(200, 162, 77, 0.32);
  border-radius: var(--radius);
  background: rgba(247, 248, 250, 0.045);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.profile-panel::before {
  content: "";
  position: absolute;
  right: -84px;
  bottom: -72px;
  width: 430px;
  height: 270px;
  background: var(--watermark-logo-light) center / contain no-repeat;
  opacity: 0.055;
  z-index: -1;
}

.profile-logo {
  border-right: 1px solid rgba(200, 162, 77, 0.34);
  padding-right: 46px;
}

.profile-logo img {
  width: min(360px, 100%);
  margin: 0 auto;
}

.profile-content h2,
.profile-content p {
  color: var(--white);
}

.profile-content p {
  color: rgba(247, 248, 250, 0.78);
}

.role {
  margin-top: 10px;
  color: var(--gold-light) !important;
  font-weight: 800;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.profile-tags span {
  border: 1px solid rgba(200, 162, 77, 0.38);
  border-radius: 4px;
  padding: 7px 10px;
  color: rgba(247, 248, 250, 0.88);
  font-size: 0.86rem;
}

.experience-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(11, 31, 58, 0.14);
  border-bottom: 1px solid rgba(11, 31, 58, 0.14);
}

.experience-grid div {
  min-height: 210px;
  padding: 28px 25px;
  border-right: 1px solid rgba(11, 31, 58, 0.12);
  border-bottom: 1px solid rgba(11, 31, 58, 0.12);
}

.experience-grid div:nth-child(3n) {
  border-right: 0;
}

.experience-grid div:nth-child(n + 10) {
  border-bottom: 0;
}

.experience-grid span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.experience-grid h3 {
  margin: 16px 0 10px;
  color: var(--blue);
  font-size: 1.08rem;
}

.experience-grid p {
  margin: 0;
  color: #536174;
  font-size: 0.94rem;
}

.standards-line {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.34fr 1.66fr;
  gap: 34px;
  padding: 28px 0;
  border-top: 1px solid rgba(200, 162, 77, 0.55);
}

.standards-line strong {
  color: var(--blue);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.35rem;
}

.standards-line p {
  margin: 0;
  color: #536174;
}

.insights-section {
  padding: 96px max(20px, calc((100% - var(--container)) / 2));
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.025), rgba(11, 31, 58, 0)),
    #eef1f5;
}

.insights-section::before {
  left: max(20px, calc((100% - var(--container)) / 2));
  top: 58px;
  width: min(360px, 34vw);
  height: 230px;
  background-image: var(--watermark-logo);
  opacity: 0.045;
}

.insights-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
}

.insights-heading {
  padding-right: 40px;
}

.insights-heading h2 {
  margin: 0;
  color: var(--blue);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1.04;
}

.insights-heading p {
  color: #536174;
}

.insight-feature {
  min-height: 310px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.insight-feature img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
}

.insight-feature-copy {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(6, 20, 38, 0.1), rgba(6, 20, 38, 0.74)),
    var(--watermark-logo-light) right 24px bottom 18px / 210px auto no-repeat,
    var(--blue);
}

.insight-feature-copy > span,
.insight-card > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-feature h3 {
  max-width: 620px;
  margin: 18px 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.08;
}

.insight-feature p {
  color: rgba(247, 248, 250, 0.76);
}

.insight-feature a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-light);
  font-weight: 800;
}

.insights-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.insight-card {
  min-height: 238px;
  overflow: hidden;
  display: block;
  padding: 0 0 26px;
  background: var(--paper);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(6, 20, 38, 0.07);
  position: relative;
  isolation: isolate;
  color: inherit;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.insight-card:hover,
.insight-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 77, 0.42);
  box-shadow: 0 20px 54px rgba(6, 20, 38, 0.12);
  outline: none;
}

.insight-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 76px;
  height: 44px;
  background: var(--watermark-logo) center / contain no-repeat;
  opacity: 0.045;
  z-index: -1;
}

.insight-media {
  width: 100%;
  height: 154px;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
}

.insight-card > span,
.insight-card h3,
.insight-card p {
  margin-left: 26px;
  margin-right: 26px;
}

.insight-card > span {
  display: block;
  margin-top: 22px;
}

.insight-card h3 {
  margin: 14px 0 10px;
  margin-left: 26px;
  margin-right: 26px;
  color: var(--blue);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.14;
}

.insight-card p {
  margin-top: 0;
  margin-bottom: 0;
  color: #536174;
}

.insights-subscribe {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 26px 30px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(200, 162, 77, 0.13), transparent 38%),
    var(--watermark-logo-light) right 500px center / 150px auto no-repeat,
    var(--blue-deep);
  border-top: 2px solid var(--gold);
}

.insights-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.insights-subscribe strong,
.insights-subscribe span {
  display: block;
}

.insights-subscribe strong {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.45rem;
}

.insights-subscribe span {
  color: rgba(247, 248, 250, 0.72);
}

.contact-section {
  padding: 94px max(20px, calc((100% - var(--container)) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 162, 77, 0.14), transparent 27%),
    var(--blue-ink);
  color: var(--white);
}

.contact-section::before {
  right: max(20px, calc((100% - var(--container)) / 2));
  top: 48px;
  width: min(380px, 34vw);
  height: 250px;
  background-image: var(--watermark-logo-light);
  opacity: 0.05;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: start;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(247, 248, 250, 0.74);
}

.contact-lines {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.contact-lines a {
  color: var(--gold-light);
  font-weight: 800;
  word-break: break-word;
}

.contact-phone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-phone-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  color: var(--white);
  border: 1px solid rgba(200, 162, 77, 0.36);
  border-radius: 4px;
  background: rgba(247, 248, 250, 0.055);
  font-weight: 800;
}

.contact-phone-actions a:hover,
.contact-phone-actions a:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold-light);
  outline: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(247, 248, 250, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(200, 162, 77, 0.08), transparent 42%),
    rgba(247, 248, 250, 0.055);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact-form::before {
  content: "LCB";
  position: absolute;
  right: 20px;
  top: 10px;
  color: rgba(247, 248, 250, 0.035);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(5rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 1;
  z-index: -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(247, 248, 250, 0.8);
  font-size: 0.92rem;
  font-weight: 800;
}

.hidden-field {
  display: none !important;
}

.contact-form .field-wide {
  grid-column: span 2;
}

.contact-form .privacy-consent {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-form .privacy-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.form-privacy {
  grid-column: span 2;
  margin: -4px 0 0;
  color: rgba(247, 248, 250, 0.62);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--gold-light);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(247, 248, 250, 0.16);
  border-radius: 4px;
  background: rgba(6, 20, 38, 0.54);
  color: var(--white);
  padding: 12px 13px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 77, 0.12);
}

.contact-form .btn {
  justify-self: start;
}

.form-status {
  grid-column: span 2;
  min-height: 22px;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status:not(:empty) {
  padding: 14px 16px;
  border: 1px solid rgba(200, 162, 77, 0.3);
  border-radius: 4px;
  background: rgba(6, 20, 38, 0.42);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.form-status a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.form-status-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(240, 212, 138, 0.44);
  border-radius: 4px;
  background: rgba(200, 162, 77, 0.14);
  color: var(--gold-light);
  text-decoration: none;
}

.form-status-actions a:hover,
.form-status-actions a:focus-visible {
  border-color: var(--gold-light);
  background: rgba(200, 162, 77, 0.22);
  outline: none;
}

.form-status.is-success {
  color: var(--gold-light);
}

.form-status.is-warning {
  color: rgba(247, 248, 250, 0.86);
}

.form-status.is-ready {
  color: rgba(247, 248, 250, 0.9);
}

.form-status.is-error {
  color: #ffd2d2;
}

.site-footer {
  padding: 46px max(20px, calc((100% - var(--container)) / 2));
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  background: #050b14;
  color: rgba(247, 248, 250, 0.76);
}

.site-footer img {
  width: 170px;
  margin: 0 auto;
}

.site-footer p {
  margin: 14px 0 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-social a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: rgba(247, 248, 250, 0.84);
  border: 1px solid rgba(200, 162, 77, 0.3);
  border-radius: 4px;
  background: rgba(247, 248, 250, 0.04);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold-light);
  outline: none;
}

.article-main {
  background: var(--white);
}

.article-hero {
  padding: 136px max(20px, calc((100% - var(--container)) / 2)) 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 20, 38, 0.96), rgba(6, 20, 38, 0.76)),
    var(--watermark-logo-light) right 8% bottom 28px / min(360px, 34vw) auto no-repeat,
    var(--blue-deep);
}

.article-hero .brand {
  width: 178px;
  margin-bottom: 42px;
}

.article-hero .brand img {
  width: 170px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.8vw, 5rem);
  line-height: 1.02;
}

.article-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(247, 248, 250, 0.78);
  font-size: 1.08rem;
}

.article-layout {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.26fr);
  gap: 58px;
}

.article-content {
  min-width: 0;
}

.article-content h2 {
  margin: 40px 0 14px;
  color: var(--blue);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.article-content p,
.article-content li {
  color: #536174;
  font-size: 1.02rem;
}

.article-content ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.article-content li + li {
  margin-top: 10px;
}

.article-callout {
  margin: 34px 0;
  padding: 26px;
  border-left: 3px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(200, 162, 77, 0.1), transparent 42%),
    #eef1f5;
  color: var(--blue);
  font-weight: 800;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.article-aside-card {
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(200, 162, 77, 0.13), transparent 46%),
    var(--blue-ink);
  border: 1px solid rgba(200, 162, 77, 0.28);
  border-radius: var(--radius);
}

.article-aside-card strong {
  display: block;
  color: var(--gold-light);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 1.1;
}

.article-aside-card p {
  color: rgba(247, 248, 250, 0.74);
}

.article-list-hero {
  padding-bottom: 84px;
}

.article-list-section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 94px;
}

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

.article-list-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: inherit;
  background: var(--paper);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(6, 20, 38, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.article-list-card:hover,
.article-list-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 77, 0.42);
  box-shadow: 0 20px 54px rgba(6, 20, 38, 0.12);
  outline: none;
}

.article-list-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.article-list-copy {
  padding: 24px;
}

.article-list-copy span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-list-copy h2 {
  margin: 12px 0 10px;
  color: var(--blue);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.12;
}

.article-list-copy p {
  margin: 0;
  color: #536174;
  font-size: 0.94rem;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(200, 162, 77, 0.14), transparent 36%),
    var(--watermark-logo-light) right 10% bottom 12% / min(460px, 46vw) auto no-repeat,
    var(--blue-ink);
  color: var(--white);
}

.thanks-shell {
  width: min(760px, 100%);
  padding: 44px;
  border: 1px solid rgba(200, 162, 77, 0.3);
  border-radius: var(--radius);
  background: rgba(247, 248, 250, 0.055);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.thanks-shell img {
  width: min(260px, 70vw);
  margin-bottom: 30px;
}

.thanks-shell h1 {
  margin: 18px 0;
  color: var(--white);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1;
}

.thanks-shell p {
  max-width: 620px;
  color: rgba(247, 248, 250, 0.78);
}

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

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 18px;
  align-content: start;
}

.footer-links a {
  color: rgba(247, 248, 250, 0.86);
  word-break: break-word;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
  outline: none;
}

.legal {
  grid-column: 1 / -1;
  margin-top: 8px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 248, 250, 0.1);
  font-size: 0.88rem;
}

@media (max-width: 1080px) {
  .hero h1 {
    max-width: 650px;
    font-size: 3.65rem;
  }

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

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

  .service-card {
    min-height: 0;
  }

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

  .method-step:nth-child(3) {
    border-right: 0;
  }

  .method-step:nth-child(n + 4) {
    border-top: 1px solid rgba(11, 31, 58, 0.12);
  }

  .split-section,
  .contact-shell,
  .insights-shell,
  .leadership-panel {
    grid-template-columns: 1fr;
  }

  .approach-principles,
  .approach-proof-grid,
  .insights-grid,
  .article-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approach-principles div:nth-child(2) {
    border-right: 0;
  }

  .approach-principles div:nth-child(n + 3) {
    border-top: 1px solid rgba(11, 31, 58, 0.12);
  }

  .leadership-title {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 162, 77, 0.3);
  }

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

  .experience-grid div,
  .experience-grid div:nth-child(3n),
  .experience-grid div:nth-child(n + 10) {
    border-right: 1px solid rgba(11, 31, 58, 0.12);
    border-bottom: 1px solid rgba(11, 31, 58, 0.12);
  }

  .experience-grid div:nth-child(even) {
    border-right: 0;
  }

  .experience-grid div:nth-child(n + 11) {
    border-bottom: 0;
  }

  .systems-visual {
    min-height: 470px;
  }

  .split-copy {
    padding: 60px 28px 70px;
  }

  .insights-heading {
    padding-right: 0;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --nav-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(var(--nav-height) + 8px);
    display: grid;
    gap: 0;
    padding: 8px;
    background: rgba(6, 20, 38, 0.97);
    border-color: rgba(200, 162, 77, 0.28);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    max-height: calc(100vh - var(--nav-height) - 24px);
    overflow-y: auto;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.menu-open .main-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav > a,
  .nav-services-toggle {
    padding: 14px;
    border-radius: 3px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-services-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .services-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    margin: 2px 0 8px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.is-open .services-menu {
    display: grid;
  }

  .brand {
    width: 138px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding: 120px 0 152px;
  }

  .hero-brand-mark {
    width: 172px;
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.28rem;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 1.03rem;
  }

  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof span {
    min-height: 48px;
    font-size: 0.78rem;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .services-section,
  .sectors-section,
  .profile-section,
  .contact-section,
  .insights-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .intro-grid,
  .profile-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-copy,
  .profile-logo {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(200, 162, 77, 0.45);
    padding-left: 0;
    padding-right: 0;
    padding-top: 26px;
  }

  .section-heading h2,
  .intro-grid h2,
  .split-copy h2,
  .profile-content h2,
  .insights-heading h2,
  .contact-copy h2 {
    font-size: 2.12rem;
  }

  .services-grid,
  .risk-grid,
  .method-timeline,
  .experience-grid,
  .approach-principles,
  .approach-proof-grid,
  .systems-focus,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-feature {
    grid-template-columns: 1fr;
  }

  .insight-feature img {
    min-height: 220px;
    height: 220px;
  }

  .experience-grid div,
  .experience-grid div:nth-child(3n),
  .experience-grid div:nth-child(even),
  .experience-grid div:nth-child(n + 11) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 31, 58, 0.12);
  }

  .experience-grid div:last-child {
    border-bottom: 0;
  }

  .standards-line {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .method-step,
  .method-step:nth-child(3) {
    border-right: 0;
    border-top: 1px solid rgba(11, 31, 58, 0.12);
    min-height: 172px;
  }

  .method-step:first-child {
    border-top: 0;
  }

  .profile-panel {
    padding: 28px;
  }

  .leadership-panel {
    padding: 28px;
  }

  .approach-principles div,
  .approach-principles div:nth-child(2),
  .approach-principles div:nth-child(n + 3) {
    min-height: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(11, 31, 58, 0.12);
  }

  .approach-principles div:last-child {
    border-bottom: 0;
  }

  .insights-subscribe {
    align-items: stretch;
    flex-direction: column;
    background:
      linear-gradient(90deg, rgba(200, 162, 77, 0.13), transparent 38%),
      var(--blue-deep);
  }

  .insights-actions {
    display: grid;
    justify-content: stretch;
  }

  .insights-subscribe .btn {
    width: 100%;
  }

  .service-contact-strip {
    grid-template-columns: 1fr;
  }

  .contact-phone-actions {
    display: grid;
  }

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

  .contact-form .field-wide,
  .contact-form .privacy-consent,
  .form-status,
  .form-privacy {
    grid-column: span 1;
  }

  .article-hero {
    padding-top: 112px;
  }

  .article-layout,
  .article-list-section {
    width: min(100% - 32px, var(--container));
  }

  .article-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .hero-content,
  .hero-proof,
  .signal-strip,
  .section {
    width: min(100% - 28px, var(--container));
  }

  .hero h1 {
    max-width: 100%;
    font-size: 1.62rem;
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 0.94rem;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
  }

  .hero-direct-actions {
    display: grid;
    gap: 10px;
    padding-bottom: 18px;
  }

  .hero-phone,
  .hero-whatsapp {
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    bottom: 16px;
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    min-height: 36px;
    padding: 7px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 248, 250, 0.1);
    font-size: 0.78rem;
  }

  .hero-proof span:last-child {
    border-bottom: 0;
  }

  .signal-strip {
    margin-top: 0;
  }

  .section-heading h2,
  .intro-grid h2,
  .split-copy h2,
  .profile-content h2,
  .insights-heading h2,
  .contact-copy h2 {
    font-size: 1.8rem;
  }

  .service-card,
  .risk-grid div,
  .contact-form {
    padding: 22px;
  }

  .article-content h2 {
    font-size: 1.62rem;
  }

  .article-hero .brand {
    width: 148px;
    margin-bottom: 28px;
  }

  .article-hero .brand img {
    width: 142px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
