:root {
  --ink: #14242a;
  --navy-950: #0b262c;
  --navy-900: #10343a;
  --navy-850: #174149;
  --navy-800: #20515a;
  --ivory: #f3f5f1;
  --ivory-2: #e9eeea;
  --paper: #fbfcf9;
  --muted: #b9c9c8;
  --muted-dark: #5d6d70;
  --copper: #b87945;
  --copper-light: #dfa873;
  --cyan: #57b8b0;
  --action: #16788a;
  --action-light: #2a9aad;
  --action-deep: #0f5e6d;
  --action-glow: rgba(24, 132, 151, 0.3);
  --line-dark: rgba(255, 255, 255, 0.2);
  --line-light: rgba(20, 36, 42, 0.1);
  --shadow: 0 28px 80px rgba(23, 52, 57, 0.14);
  --glass-light: rgba(255, 255, 255, 0.66);
  --glass-dark: rgba(15, 49, 55, 0.56);
  --radius: 24px;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(87, 184, 176, 0.09), transparent 30%),
    var(--ivory);
}

h1,
h2,
.display-title {
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.65rem);
}

.section {
  padding: clamp(80px, 8vw, 118px) 0;
}

.section--paper {
  background:
    radial-gradient(circle at 84% 16%, rgba(87, 184, 176, 0.08), transparent 27%),
    radial-gradient(circle at 12% 92%, rgba(184, 121, 69, 0.07), transparent 26%),
    linear-gradient(180deg, #f8faf7 0%, #f0f3ef 100%);
}

.section--dark {
  background:
    radial-gradient(circle at 86% 12%, rgba(87, 184, 176, 0.22), transparent 32%),
    linear-gradient(145deg, #12353b 0%, #0d2a30 58%, #183f44 100%);
}

.eyebrow {
  color: #a96637;
  letter-spacing: 0.16em;
}

.button,
.header-cta {
  border-radius: 999px;
}

.button {
  min-height: 54px;
  padding-inline: 24px;
  box-shadow: 0 14px 34px rgba(18, 50, 55, 0.11);
}

.button--primary {
  color: #fff;
  border-color: rgba(157, 226, 235, 0.42);
  background: linear-gradient(135deg, var(--action-deep) 0%, var(--action) 54%, var(--action-light) 100%);
  box-shadow: 0 16px 40px var(--action-glow), inset 0 1px rgba(255, 255, 255, 0.32);
}

.button--primary:hover {
  border-color: rgba(190, 240, 246, 0.62);
  background: linear-gradient(135deg, #126c7c 0%, #1d8da0 55%, #37aabd 100%);
  box-shadow: 0 20px 46px rgba(24, 132, 151, 0.36), inset 0 1px rgba(255, 255, 255, 0.38);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.button--dark {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, #173f45, #0e2c31);
}

/* Floating glass navigation */
.site-header {
  position: fixed;
  top: 14px;
  right: 0;
  left: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  transition: top 220ms ease;
}

.site-header .header-inner {
  min-height: 68px;
  padding: 0 12px 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(9, 31, 37, 0.46);
  box-shadow: 0 18px 50px rgba(5, 18, 22, 0.18), inset 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(145%);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  top: 8px;
}

.site-header.is-scrolled .header-inner {
  color: var(--ink);
  border-color: rgba(20, 36, 42, 0.12);
  background: rgba(248, 250, 247, 0.82);
  box-shadow: 0 16px 46px rgba(17, 42, 47, 0.14), inset 0 1px rgba(255, 255, 255, 0.9);
}

.site-header .brand img {
  width: 40px;
  height: 40px;
  border: 0;
  box-shadow: none;
  opacity: 0.94;
}

.site-header .brand {
  gap: 11px;
}

.site-header .brand-copy strong {
  font-size: 0.9rem;
  letter-spacing: 0.035em;
}

.site-header .brand-copy small {
  font-size: 0.61rem;
}

.site-header.is-scrolled .brand-copy strong {
  color: var(--ink);
}

.site-header.is-scrolled .brand-copy small {
  color: #607176;
}

.site-header .site-nav a {
  padding-top: 23px;
  padding-bottom: 21px;
  color: rgba(255, 255, 255, 0.84);
}

.site-header.is-scrolled .site-nav a {
  color: #475a5e;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-header .site-nav a::after {
  bottom: 14px;
  height: 2px;
  border-radius: 2px;
  background: #79cbd6;
}

.site-header.is-scrolled .site-nav a::after {
  background: var(--action);
}

.site-header .header-cta {
  min-height: 44px;
  padding: 11px 19px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .header-cta {
  color: #fff;
  border-color: rgba(22, 120, 138, 0.25);
  background: linear-gradient(135deg, var(--action-deep), var(--action-light));
  box-shadow: 0 10px 28px rgba(24, 132, 151, 0.26), inset 0 1px rgba(255, 255, 255, 0.24);
}

/* Home hero with independent image layer */
.home-hero {
  min-height: 760px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 15%, rgba(55, 164, 174, 0.17), transparent 29%),
    linear-gradient(135deg, #071f27 0%, #0b3039 57%, #103a42 100%);
}

.home-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 25, 32, 0.96) 0%, rgba(5, 25, 32, 0.84) 35%, rgba(5, 25, 32, 0.36) 58%, rgba(5, 25, 32, 0.05) 81%, transparent 100%),
    linear-gradient(0deg, rgba(5, 25, 32, 0.84) 0%, rgba(5, 25, 32, 0.2) 31%, transparent 58%),
    linear-gradient(180deg, rgba(4, 18, 24, 0.18), transparent 24%);
}

.hero-media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 25, 30, 0.04), transparent 60%, rgba(7, 27, 32, 0.42)),
    radial-gradient(circle at 62% 30%, transparent 0%, rgba(8, 29, 34, 0.1) 84%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 31%;
  filter: saturate(0.9) contrast(1.035) brightness(1.06);
  transform: translateX(8%);
}

.home-hero .container {
  z-index: 2;
}

.hero-grid {
  min-height: 630px;
  grid-template-columns: minmax(0, 0.9fr) minmax(355px, 0.5fr);
  gap: 74px;
  padding: 122px 0 42px;
}

.hero-copy h1 {
  max-width: 650px;
  margin-bottom: 25px;
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1.035;
  text-wrap: balance;
  text-shadow: 0 3px 30px rgba(2, 15, 19, 0.22);
}

.hero-copy .lead {
  max-width: 610px;
  margin-bottom: 31px;
  color: rgba(242, 248, 246, 0.87);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  text-shadow: 0 2px 22px rgba(2, 15, 19, 0.3);
}

.glass-panel,
.proof-rail,
.service-directory,
.content-aside,
.info-card {
  position: relative;
  overflow: hidden;
}

.glass-panel::before,
.proof-rail::before,
.service-directory::before,
.content-aside::before,
.info-card::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  content: "";
}

.glass-panel > *,
.proof-rail > *,
.service-directory > *,
.content-aside > *,
.info-card > * {
  position: relative;
  z-index: 1;
}

.loss-map {
  width: min(430px, 100%);
  margin: 54px 0 22px auto;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.31);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(15, 53, 59, 0.42)),
    rgba(8, 35, 41, 0.43);
  box-shadow: 0 30px 70px rgba(3, 15, 18, 0.26), inset 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(25px) saturate(145%);
}

.loss-map h2 {
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-color: rgba(255, 255, 255, 0.18);
  font-size: 1.02rem;
}

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

.loss-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  text-align: left;
}

.loss-item + .loss-item {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 0;
}

.loss-icon,
.proof-icon,
.service-icon {
  display: grid;
  place-items: center;
}

.loss-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(223, 168, 115, 0.55);
  border-radius: 14px;
  color: #f0b982;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.loss-icon svg,
.proof-icon svg,
.service-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.loss-item strong {
  margin-bottom: 2px;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 750;
}

.loss-item .loss-copy span {
  display: block;
  color: rgba(228, 238, 237, 0.72);
  font-size: 0.73rem;
  line-height: 1.45;
}

.proof-rail {
  margin-bottom: 24px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(10, 43, 49, 0.24)),
    rgba(8, 34, 40, 0.36);
  box-shadow: 0 16px 38px rgba(2, 14, 18, 0.14), inset 0 1px rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px) saturate(130%);
}

.proof-item {
  display: flex;
  min-height: 78px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 13px;
  padding: 13px 20px;
  text-align: left;
}

.proof-item .proof-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(223, 168, 115, 0.35);
  border-radius: 50%;
  color: #f0b982;
  background: rgba(255, 255, 255, 0.045);
}

.proof-item strong {
  display: block;
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.6vw, 1.42rem);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1;
}

.proof-copy {
  display: grid;
  min-width: 0;
  min-height: 0;
  align-content: center;
  justify-items: start;
}

.proof-item .proof-label {
  display: block;
  margin-top: 5px;
  color: rgba(226, 237, 235, 0.72);
  font-size: 0.66rem;
  line-height: 1.25;
}

.proof-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.6;
}

.proof-icon .state-code {
  fill: currentColor;
  stroke: none;
  font-family: var(--sans);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-anchor: middle;
}

/* Financial risks moved to the second institutional container */
.risk-overview {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(72px, 8vw, 104px);
  padding: clamp(32px, 4.8vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 5%, rgba(87, 184, 176, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(237, 244, 240, 0.65));
  box-shadow: 0 30px 75px rgba(30, 65, 66, 0.12), inset 0 1px rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(135%);
}

.risk-overview::before {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  content: "";
}

.risk-overview__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.68fr);
  align-items: end;
  gap: 58px;
  margin-bottom: 42px;
}

.risk-overview__intro h2 {
  max-width: 730px;
  font-size: clamp(2.45rem, 4vw, 3.85rem);
}

.risk-overview__intro > p {
  color: var(--muted-dark);
}

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

.risk-overview__item {
  display: grid;
  min-height: 170px;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  padding: 25px 23px;
  border: 1px solid rgba(20, 73, 76, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.84);
}

.risk-overview__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(184, 121, 69, 0.24);
  border-radius: 16px;
  color: #a96637;
  background: rgba(184, 121, 69, 0.08);
}

.risk-overview__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.risk-overview__item h3 {
  margin: 1px 0 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 780;
}

.risk-overview__item p {
  color: var(--muted-dark);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Annual financial exposure — research-backed institutional block */
.financial-exposure {
  position: relative;
  overflow: hidden;
  margin: 0 0 clamp(76px, 9vw, 118px);
  padding: clamp(34px, 4.6vw, 58px);
  color: #eef7f5;
  border: 1px solid rgba(164, 218, 216, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 0%, rgba(69, 169, 166, 0.2), transparent 30%),
    linear-gradient(145deg, #14383e 0%, #0d2a30 58%, #102f35 100%);
  box-shadow: 0 34px 80px rgba(12, 42, 47, 0.2), inset 0 1px rgba(255, 255, 255, 0.1);
}

.financial-exposure::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
  content: "";
}

.financial-exposure > * {
  position: relative;
  z-index: 1;
}

.financial-exposure__header {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
  align-items: end;
  gap: clamp(34px, 5vw, 72px);
}

.financial-exposure__header h2 {
  max-width: 760px;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(2.25rem, 3.6vw, 3.45rem);
  line-height: 1.02;
}

.financial-exposure__header > p {
  max-width: 480px;
  color: rgba(231, 242, 241, 0.72);
  font-size: 0.98rem;
  line-height: 1.72;
}

.financial-exposure__formula {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 36px 0 16px;
  padding: 16px 20px;
  border: 1px solid rgba(188, 228, 225, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.financial-exposure__formula span {
  color: #82cbc5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.financial-exposure__formula strong {
  font-size: 1.08rem;
}

.financial-exposure__formula small {
  color: rgba(232, 242, 241, 0.58);
  font-size: 0.75rem;
  text-align: right;
}

.financial-exposure__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(235px, 0.28fr);
  gap: 16px;
}

.financial-exposure__ranges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(185, 225, 222, 0.16);
  border-radius: 22px;
  background: rgba(191, 226, 224, 0.14);
}

.cost-range {
  min-width: 0;
  padding: 25px 22px 23px;
  background: rgba(9, 34, 39, 0.76);
}

.cost-range--focus {
  background: linear-gradient(180deg, rgba(36, 93, 98, 0.9), rgba(12, 43, 48, 0.92));
}

.cost-range__top {
  display: flex;
  min-height: 34px;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cost-range__top span {
  color: #86d1cb;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cost-range__top small {
  color: rgba(230, 242, 240, 0.52);
  font-size: 0.63rem;
  text-align: right;
}

.cost-range > strong {
  display: block;
  margin: 14px 0 4px;
  color: #fff;
  font-size: clamp(1.18rem, 1.45vw, 1.56rem);
  line-height: 1.15;
  white-space: nowrap;
}

.cost-range > strong i {
  color: rgba(227, 241, 239, 0.48);
  font-size: 0.7em;
  font-style: normal;
  font-weight: 500;
}

.cost-range > p {
  margin: 0;
  color: rgba(231, 242, 241, 0.6);
  font-size: 0.72rem;
}

.cost-range__difference {
  display: block;
  margin-top: 19px;
  padding-top: 15px;
  color: rgba(228, 241, 239, 0.68);
  border-top: 1px solid rgba(191, 226, 223, 0.13);
  font-size: 0.69rem;
}

.cost-range__difference b {
  color: #fff;
}

.financial-exposure__market {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 27px 25px;
  border: 1px solid rgba(168, 222, 217, 0.2);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(88, 174, 168, 0.18), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
}

.financial-exposure__market > span {
  color: #83cec8;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.financial-exposure__market > strong {
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(1.8rem, 2.5vw, 2.55rem);
  line-height: 1;
}

.financial-exposure__market p {
  color: rgba(232, 242, 241, 0.68);
  font-size: 0.78rem;
  line-height: 1.55;
}

.financial-exposure__market a {
  width: fit-content;
  margin-top: 18px;
  color: #9dddd8;
  border-bottom: 1px solid rgba(157, 221, 216, 0.4);
  font-size: 0.68rem;
  font-weight: 750;
}

.financial-exposure__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(190, 225, 222, 0.13);
}

.financial-exposure__footer p {
  max-width: 790px;
  color: rgba(228, 240, 239, 0.63);
  font-size: 0.71rem;
  line-height: 1.55;
}

.financial-exposure__footer p strong {
  color: rgba(246, 251, 250, 0.9);
}

.financial-exposure__footer .button {
  min-height: 48px;
  white-space: nowrap;
}

.financial-exposure__sources {
  margin: 16px 0 0;
  color: rgba(224, 238, 236, 0.46);
  font-size: 0.62rem;
  line-height: 1.55;
}

.financial-exposure__sources a {
  color: rgba(158, 218, 213, 0.76);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1100px) {
  .financial-exposure__content {
    grid-template-columns: 1fr;
  }

  .financial-exposure__market {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .financial-exposure {
    margin-bottom: 70px;
    padding: 29px 18px 23px;
    border-radius: 25px;
  }

  .financial-exposure__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .financial-exposure__header h2 {
    font-size: clamp(2rem, 9.4vw, 2.72rem);
  }

  .financial-exposure__header > p {
    font-size: 0.88rem;
  }

  .financial-exposure__formula {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 26px;
    padding: 16px;
  }

  .financial-exposure__formula small {
    text-align: left;
  }

  .financial-exposure__ranges {
    grid-template-columns: 1fr;
  }

  .cost-range {
    padding: 22px 18px 20px;
  }

  .cost-range__top {
    min-height: 0;
  }

  .cost-range > strong {
    font-size: 1.42rem;
    white-space: normal;
  }

  .financial-exposure__market {
    padding: 24px 20px;
  }

  .financial-exposure__footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .financial-exposure__footer .button {
    width: 100%;
    white-space: normal;
  }
}

@media (min-width: 901px) {
  .hero-grid {
    position: relative;
    min-height: 650px;
    grid-template-columns: minmax(0, 690px);
    padding-top: 118px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-copy h1 {
    max-width: 620px;
    font-size: clamp(3rem, 3.5vw, 3.7rem);
    line-height: 1.035;
  }

}

/* Softer, rounded institutional surfaces */
.section-heading {
  margin-bottom: 46px;
}

.solutions-layout {
  gap: 20px;
}

.integrated-card {
  min-height: 610px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 12%, rgba(87, 184, 176, 0.23), transparent 30%),
    linear-gradient(145deg, rgba(28, 74, 80, 0.98), rgba(12, 42, 48, 0.98));
  box-shadow: 0 32px 80px rgba(25, 59, 63, 0.2), inset 0 1px rgba(255, 255, 255, 0.14);
}

.integrated-card::after {
  opacity: 0.65;
}

.outcome-list b {
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.service-directory {
  padding: 46px 46px 34px;
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(239, 245, 241, 0.58)),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 30px 75px rgba(31, 61, 63, 0.13), inset 0 1px rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(130%);
}

.service-directory h3 {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.service-row {
  grid-template-columns: 48px minmax(0, 1fr) 26px;
  gap: 15px;
  margin: 3px 0;
  padding: 15px 14px;
  border: 0;
  border-radius: 18px;
}

.service-row:last-child {
  border: 0;
}

.service-row + .service-row {
  border-top: 1px solid rgba(20, 36, 42, 0.09);
}

.service-row:hover {
  padding: 15px 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(24, 54, 58, 0.09);
  transform: translateX(4px);
}

.service-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 73, 76, 0.13);
  border-radius: 14px;
  color: #2d7772;
  background: rgba(87, 184, 176, 0.1);
}

.service-row strong {
  color: var(--ink);
}

.service-arrow {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 121, 69, 0.1);
}

#empresa.section--dark {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(87, 184, 176, 0.14), transparent 30%),
    linear-gradient(145deg, #edf2ee, #e4ebe7);
}

#empresa .origin-copy > p {
  color: #526568;
}

#empresa .founder-signature span,
#empresa .origin-facts span {
  color: #647579;
}

#empresa .origin-facts {
  border-color: rgba(20, 36, 42, 0.12);
}

#empresa .origin-facts div + div {
  border-color: rgba(20, 36, 42, 0.12);
}

#empresa .origin-facts strong {
  color: var(--ink);
}

.origin-photo::before {
  inset: 20px -20px -20px 20px;
  border-color: rgba(45, 119, 114, 0.28);
  border-radius: 32px;
}

.origin-photo img {
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(26, 61, 64, 0.18);
}

.method-step {
  margin-bottom: 10px;
  padding: 27px 25px;
  border: 1px solid rgba(20, 36, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8);
}

.method-step:last-child {
  border-bottom: 1px solid rgba(20, 36, 42, 0.08);
}

/* Internal heroes */
.page-hero {
  min-height: 590px;
  background-color: #10363d;
  background-position: right center;
  background-size: 58% auto;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(11, 43, 49, 1) 0%, rgba(11, 43, 49, 0.97) 45%, rgba(11, 43, 49, 0.62) 68%, rgba(11, 43, 49, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 37, 43, 0.72), transparent 50%);
}

.page-hero__inner {
  min-height: 590px;
  padding-top: 142px;
  padding-bottom: 74px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 5vw, 4.75rem);
}

.page-hero--compact .page-hero__inner {
  min-height: 450px;
  padding-top: 140px;
}

.hero-side-note {
  padding: 29px;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(13, 47, 53, 0.42)),
    rgba(11, 40, 46, 0.47);
  box-shadow: 0 24px 60px rgba(3, 16, 19, 0.2), inset 0 1px rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(22px) saturate(140%);
}

.trust-strip {
  background: linear-gradient(90deg, #18434a, #1f5357);
}

.trust-strip__inner {
  gap: 1px;
}

.trust-strip__inner div {
  border-right: 0;
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip__inner div:first-child {
  border-left: 0;
}

.content-aside,
.info-card {
  border-color: rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(239, 245, 241, 0.54)),
    rgba(255, 255, 255, 0.57);
  box-shadow: 0 22px 55px rgba(30, 61, 63, 0.1), inset 0 1px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.section--dark .content-aside,
.section--dark .info-card {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(17, 55, 60, 0.38);
  box-shadow: 0 24px 60px rgba(3, 18, 21, 0.14), inset 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.info-card {
  min-height: 220px;
}

a.info-card:hover {
  border-color: rgba(87, 184, 176, 0.42);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 62px rgba(30, 73, 72, 0.14);
}

.service-catalog {
  gap: 18px;
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 8%, rgba(87, 184, 176, 0.18), transparent 28%),
    linear-gradient(145deg, #1c4b52, #103238);
  box-shadow: 0 26px 65px rgba(20, 54, 58, 0.17), inset 0 1px rgba(255, 255, 255, 0.12);
}

.service-card--feature {
  border-radius: 32px;
}

.process-grid {
  gap: 12px;
  border: 0;
}

.process-card {
  min-height: 265px;
  border: 1px solid rgba(20, 36, 42, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.88);
}

.process-card + .process-card {
  border-left: 1px solid rgba(20, 36, 42, 0.09);
}

.impact-table {
  display: grid;
  gap: 10px;
  border: 0;
}

.impact-row {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.faq-list {
  border-top: 0;
}

.faq-list details {
  margin-bottom: 10px;
  padding: 0 22px;
  border: 1px solid rgba(20, 36, 42, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.faq-list summary {
  padding: 21px 0;
}

.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 8%, rgba(87, 184, 176, 0.2), transparent 27%),
    linear-gradient(145deg, #1c4b52, #103238);
  box-shadow: 0 30px 70px rgba(20, 54, 58, 0.18);
}

.field input,
.field select,
.field textarea {
  border-color: rgba(20, 36, 42, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.9);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(45, 119, 114, 0.62);
  outline: 3px solid rgba(87, 184, 176, 0.14);
}

/* Footer with a softer premium close */
.footer-stage {
  border-radius: 44px 44px 0 0;
  background-color: #0e3036;
  background-position: center 54%;
}

.footer-stage::before {
  background:
    linear-gradient(90deg, rgba(8, 32, 38, 0.92), rgba(14, 52, 58, 0.68), rgba(8, 32, 38, 0.91)),
    linear-gradient(0deg, rgba(6, 24, 29, 0.97), transparent 72%);
}

.closing-banner .container {
  width: min(calc(100% - 64px), 1020px);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(10, 39, 45, 0.34)),
    rgba(10, 39, 45, 0.4);
  box-shadow: 0 30px 75px rgba(2, 13, 17, 0.2), inset 0 1px rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(22px) saturate(140%);
}

.site-footer {
  background: rgba(5, 23, 28, 0.64);
  backdrop-filter: blur(18px);
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  background: linear-gradient(145deg, #2bd46f, #1ca856);
  box-shadow: 0 15px 38px rgba(11, 99, 54, 0.3), inset 0 1px rgba(255, 255, 255, 0.32);
  font-size: 0;
  line-height: 0;
  opacity: 1;
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 30px;
  content: "";
  background: url("../images/whatsapp-logo.svg") center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.has-js .whatsapp-float {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px) scale(0.88);
}

.has-js .whatsapp-float.is-visible {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.whatsapp-float:hover {
  box-shadow: 0 19px 44px rgba(11, 99, 54, 0.38), inset 0 1px rgba(255, 255, 255, 0.36);
  transform: translateY(-2px) scale(1.03);
}

.has-js .whatsapp-float.is-visible:hover {
  transform: translateY(-2px) scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }
}

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

  .site-header .nav-toggle {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header.is-scrolled .nav-toggle {
    color: var(--ink);
    border-color: rgba(20, 36, 42, 0.14);
    background: rgba(20, 36, 42, 0.04);
  }

  .site-nav {
    inset: 90px 20px auto;
    padding: 18px 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    background: rgba(10, 37, 43, 0.9);
    box-shadow: 0 22px 60px rgba(4, 19, 22, 0.25), inset 0 1px rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
  }

  .site-header.is-scrolled .site-nav {
    border-color: rgba(20, 36, 42, 0.12);
    background: rgba(248, 250, 247, 0.94);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 760px);
    gap: 0;
  }

  .hero-media {
    width: 100%;
  }

}

@media (min-width: 721px) and (max-width: 900px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(8, 30, 35, 0.03) 0%, rgba(8, 30, 35, 0.08) 43%, rgba(9, 34, 39, 0.9) 60%, #0c3036 76%, #0c3036 100%);
  }

  .hero-media {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 600px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  }

  .hero-media img {
    width: 100%;
    object-position: 50% 27%;
    transform: none;
  }

  .hero-grid {
    display: block;
    padding: 500px 0 42px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-copy h1 {
    max-width: 600px;
    font-size: clamp(2.75rem, 6.5vw, 3.45rem);
    line-height: 1.04;
  }

  .loss-map {
    width: 100%;
    margin: 42px 0 0;
  }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .hero-copy,
  .hero-copy h1 {
    max-width: 600px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5.2vw, 3.6rem);
  }

  .hero-copy .lead {
    max-width: 470px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 8px;
  }

  .site-header .header-inner {
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 0 7px 0 10px;
  }

  .site-header .brand img {
    width: 39px;
    height: 39px;
  }

  .site-header .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .site-nav {
    inset: 76px 10px auto;
  }

  .home-hero {
    min-height: auto;
    background: linear-gradient(180deg, #0c2c32, #123a40);
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(8, 30, 35, 0.04) 0%, rgba(8, 30, 35, 0.06) 42%, rgba(9, 34, 39, 0.9) 58%, #0c3036 72%, #0c3036 100%);
  }

  .hero-media {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 500px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(7, 25, 30, 0.08), transparent 50%, rgba(8, 31, 36, 0.8));
  }

  .hero-media img {
    width: 100%;
    object-position: 50% 24%;
    filter: saturate(0.88) contrast(1.02) brightness(1.04);
    transform: none;
  }

  .hero-grid {
    display: block;
    min-height: 0;
    padding: 410px 0 34px;
  }

  .hero-copy h1 {
    max-width: 330px;
    font-size: clamp(2.1rem, 9vw, 2.55rem);
    line-height: 1.04;
  }

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

  .loss-map {
    width: 100%;
    margin: 38px 0 0;
    padding: 23px;
  }

  .proof-rail {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
  }

  .proof-item {
    min-height: 82px;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 11px;
  }

  .proof-item .proof-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 50%;
  }

  .proof-icon svg {
    width: 16px;
    height: 16px;
  }

  .proof-item strong {
    font-size: 1rem;
  }

  .proof-item .proof-label {
    font-size: 0.61rem;
  }

  .risk-overview {
    margin-bottom: 66px;
    padding: 30px 20px 22px;
    border-radius: 25px;
  }

  .risk-overview__intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .risk-overview__intro h2 {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
  }

  .risk-overview__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .risk-overview__item {
    min-height: 0;
    padding: 21px 18px;
  }

  .integrated-card,
  .service-directory,
  .contact-panel {
    border-radius: 25px;
  }

  .service-directory {
    padding: 30px 19px 22px;
  }

  .service-row {
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    padding-inline: 8px;
  }

  .service-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .service-row span:not(.service-icon):not(.service-arrow) {
    min-width: 0;
  }

  .origin-photo::before {
    inset: 14px -14px -14px 14px;
  }

  .method-step {
    padding: 23px 17px;
  }

  .page-hero {
    min-height: 610px;
    background-position: 58% 22%;
    background-size: auto 74%;
  }

  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(10, 38, 44, 0.35), rgba(10, 38, 44, 0.8) 48%, #0b3036 76%),
      linear-gradient(90deg, rgba(10, 38, 44, 0.58), transparent);
  }

  .page-hero__inner {
    min-height: 610px;
    padding-top: 130px;
    padding-bottom: 52px;
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 11.6vw, 3.75rem);
  }

  .page-hero--compact .page-hero__inner {
    min-height: 500px;
    padding-top: 135px;
  }

  .hero-side-note,
  .content-aside,
  .info-card,
  .service-card,
  .process-card,
  .faq-list details {
    border-radius: 20px;
  }

  .process-grid {
    gap: 10px;
  }

  .process-card + .process-card,
  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    border-left: 1px solid rgba(20, 36, 42, 0.09);
  }

  .footer-stage {
    border-radius: 30px 30px 0 0;
  }

  .closing-banner {
    padding: 60px 0;
  }

  .closing-banner .container {
    width: calc(100% - 28px);
    padding: 34px 22px;
    border-radius: 25px;
  }
}

@media (max-width: 470px) {
  .proof-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item {
    padding: 11px 9px;
  }

  .proof-item:nth-child(2),
  .proof-item:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .loss-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header .header-inner,
  .service-row {
    transition: none;
  }
}

/* Solutions page — institutional editorial layout */
.solutions-page {
  background: #eef2ee;
}

.solutions-hero {
  position: relative;
  display: grid;
  min-height: clamp(680px, 82svh, 790px);
  overflow: hidden;
  color: #fff;
  background: #0b2c31;
  isolation: isolate;
}

.solutions-hero__media,
.solutions-hero__media::after {
  position: absolute;
  inset: 0;
}

.solutions-hero__media {
  z-index: -2;
  background: #0b2c31;
}

.solutions-hero__media::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 35, 39, 0.96) 0%, rgba(7, 35, 39, 0.83) 34%, rgba(7, 35, 39, 0.4) 55%, rgba(7, 35, 39, 0.025) 82%),
    linear-gradient(0deg, rgba(7, 34, 38, 0.46), transparent 43%);
  content: "";
}

.solutions-hero__media img {
  position: absolute;
  top: 86px;
  right: 0;
  width: 100%;
  height: calc(100% - 86px);
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) contrast(1.02) brightness(1.07);
}

.solutions-hero__inner {
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-top: 116px;
  padding-bottom: 64px;
}

.solutions-hero__content {
  width: min(100%, 700px);
}

.solutions-hero .breadcrumbs {
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.64);
}

.solutions-hero .eyebrow {
  color: #e0a36e;
}

.solutions-hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 3.3vw, 3.65rem);
  line-height: 1.035;
  text-wrap: balance;
}

.solutions-hero .lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(241, 247, 245, 0.85);
  font-size: clamp(1.03rem, 1.3vw, 1.19rem);
  line-height: 1.65;
}

.solutions-hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(9, 42, 46, 0.22);
}

.solutions-system {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(78px, 8vw, 112px);
  background:
    radial-gradient(circle at 82% 0%, rgba(87, 184, 176, 0.1), transparent 29%),
    linear-gradient(180deg, #edf2ee 0%, #f7f8f5 100%);
}

.solutions-system__shell {
  margin-top: -46px;
  padding: 34px 36px 30px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.91), rgba(235, 242, 237, 0.73)),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 80px rgba(21, 57, 59, 0.14), inset 0 1px rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px) saturate(140%);
}

.solutions-system__intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  align-items: end;
  gap: 38px 70px;
  padding: 0 4px 28px;
  border-bottom: 1px solid rgba(20, 36, 42, 0.1);
}

.solutions-system__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -17px;
}

.solutions-system__intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3vw, 3.1rem);
  line-height: 1.02;
}

.solutions-system__intro > p:last-child {
  max-width: 570px;
  margin-bottom: 3px;
  color: var(--muted-dark);
  font-size: 0.98rem;
}

.solutions-system__flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 20px;
}

.system-step {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 12px 19px;
  border-right: 1px solid rgba(20, 36, 42, 0.1);
  transition: color 180ms ease, transform 180ms ease;
}

a.system-step:hover {
  color: #9c5a2f;
  transform: translateY(-2px);
}

.system-step:first-child {
  padding-left: 4px;
}

.system-step:last-child {
  padding-right: 4px;
  border-right: 0;
}

.system-step__number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(20, 36, 42, 0.12);
  border-radius: 14px;
  color: #a46134;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.9);
}

.system-step__number svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.system-step strong,
.system-step small {
  display: block;
}

.system-step strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.25;
}

.system-step small {
  color: #66777a;
  font-size: 0.7rem;
  line-height: 1.45;
}

.system-step--result .system-step__number {
  color: #fff;
  border-color: #b97742;
  background: linear-gradient(135deg, #a76032, #cd8950);
}

.solutions-directory {
  position: relative;
  padding: clamp(88px, 9vw, 132px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(184, 121, 69, 0.08), transparent 24%),
    radial-gradient(circle at 92% 84%, rgba(87, 184, 176, 0.1), transparent 27%),
    #f7f8f5;
}

.solutions-directory::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(20, 36, 42, 0.027) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 36, 42, 0.027) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
  content: "";
}

.solutions-directory .container {
  position: relative;
}

.solutions-directory__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.46fr);
  align-items: end;
  gap: 50px 80px;
  margin-bottom: 54px;
}

.solutions-directory__heading h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4vw, 4rem);
  text-wrap: balance;
}

.solutions-directory__heading > p {
  margin-bottom: 5px;
  color: var(--muted-dark);
}

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

.solution-tile {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(20, 36, 42, 0.09);
  border-radius: 30px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 244, 240, 0.7)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 64px rgba(29, 64, 65, 0.1), inset 0 1px rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(135%);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.solution-tile::before {
  position: absolute;
  top: -120px;
  right: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(87, 184, 176, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(87, 184, 176, 0.025), 0 0 0 72px rgba(87, 184, 176, 0.018);
  content: "";
}

.solution-tile:hover {
  border-color: rgba(66, 139, 134, 0.25);
  box-shadow: 0 32px 76px rgba(29, 64, 65, 0.16), inset 0 1px rgba(255, 255, 255, 0.96);
  transform: translateY(-6px);
}

.solution-tile--risk {
  grid-column: span 7;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 88% 8%, rgba(87, 184, 176, 0.22), transparent 31%),
    linear-gradient(145deg, #16464b 0%, #0d3035 62%, #123b40 100%);
  box-shadow: 0 30px 74px rgba(14, 48, 52, 0.2), inset 0 1px rgba(255, 255, 255, 0.12);
}

.solution-tile--risk::before {
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.018), 0 0 0 72px rgba(255, 255, 255, 0.012);
}

.solution-tile--ltcat {
  grid-column: span 5;
}

.solution-tile--social {
  grid-column: span 5;
}

.solution-tile--health {
  grid-column: span 7;
  background:
    radial-gradient(circle at 90% 8%, rgba(184, 121, 69, 0.13), transparent 29%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 237, 229, 0.8));
}

.solution-tile--training {
  min-height: 310px;
  grid-column: 1 / -1;
  padding-right: min(36%, 450px);
  background:
    radial-gradient(circle at 83% 50%, rgba(87, 184, 176, 0.15), transparent 23%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.95), rgba(233, 241, 236, 0.78));
}

.solution-tile--training::after {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 205px;
  height: 118px;
  border: 1px solid rgba(20, 36, 42, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(20, 36, 42, 0.07) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(20, 36, 42, 0.07) 50%, transparent 50.5%),
    rgba(255, 255, 255, 0.34);
  box-shadow: 14px 14px 0 rgba(20, 36, 42, 0.035), inset 0 1px rgba(255, 255, 255, 0.9);
  content: "";
  transform: translateY(-50%);
}

.solution-tile__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8d5b38;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.solution-tile--risk .solution-tile__topline {
  color: #e4b287;
}

.solution-tile__topline > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
}

.solution-tile__icon {
  position: absolute;
  z-index: 1;
  top: 26px;
  right: 27px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(20, 36, 42, 0.12);
  border-radius: 17px;
  color: #a56335;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.9);
}

.solution-tile--risk .solution-tile__icon {
  color: #e3aa78;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.solution-tile__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.solution-tile__copy {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin: auto 0 24px;
  padding-top: 58px;
}

.solution-tile__label {
  margin-bottom: 10px;
  color: #a46337;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-tile--risk .solution-tile__label {
  color: #e3a874;
}

.solution-tile h3 {
  max-width: 560px;
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.55vw, 2.72rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.solution-tile__copy > p:last-child {
  max-width: 570px;
  margin-bottom: 0;
  color: #5f7073;
  font-size: 0.91rem;
}

.solution-tile--risk .solution-tile__copy > p:last-child {
  color: rgba(238, 246, 244, 0.73);
}

.solution-tile__outcome {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(20, 36, 42, 0.08);
  border-radius: 15px;
  color: #657477;
  background: rgba(255, 255, 255, 0.38);
  font-size: 0.73rem;
  line-height: 1.45;
}

.solution-tile__outcome strong {
  color: var(--ink);
}

.solution-tile--risk .solution-tile__outcome {
  color: rgba(238, 246, 244, 0.7);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
}

.solution-tile--risk .solution-tile__outcome strong {
  color: #fff;
}

.solution-tile__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #965d37;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.solution-tile--risk .solution-tile__link {
  color: #e6b58b;
}

.solution-tile__link b {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.solution-tile:hover .solution-tile__link b {
  transform: translate(3px, -3px);
}

.solutions-risk {
  position: relative;
  padding: clamp(90px, 9vw, 130px) 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(87, 184, 176, 0.2), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(184, 121, 69, 0.13), transparent 26%),
    linear-gradient(145deg, #123d42 0%, #0c2c31 64%, #123a3f 100%);
}

.solutions-risk::before {
  position: absolute;
  top: -180px;
  left: 38%;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(255, 255, 255, 0.018), 0 0 0 148px rgba(255, 255, 255, 0.012);
  content: "";
}

.solutions-risk__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 0.7fr);
  align-items: center;
  gap: 70px;
}

.solutions-risk__copy h2 {
  max-width: 710px;
  margin-bottom: 28px;
  font-size: clamp(2.55rem, 4vw, 4rem);
  text-wrap: balance;
}

.solutions-risk__copy > p:not(.eyebrow) {
  max-width: 710px;
  color: rgba(233, 243, 241, 0.74);
  font-size: 0.98rem;
}

.solutions-risk__copy > p:last-child {
  margin-bottom: 0;
}

.solutions-risk__panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(10, 44, 48, 0.52);
  box-shadow: 0 30px 80px rgba(3, 20, 23, 0.22), inset 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(135%);
}

.solutions-risk__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.solutions-risk__panel-head span {
  color: #e2ab7c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solutions-risk__panel-head strong {
  font-size: 0.82rem;
}

.solutions-risk__panel ul {
  margin: 0;
  padding: 0 26px;
  list-style: none;
}

.solutions-risk__panel li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solutions-risk__panel li:last-child {
  border-bottom: 0;
}

.solutions-risk__panel li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(226, 171, 124, 0.45);
  border-radius: 50%;
  color: #e2ab7c;
  font-size: 0.64rem;
  font-weight: 800;
}

.solutions-risk__panel p,
.solutions-risk__panel strong,
.solutions-risk__panel small {
  display: block;
  margin: 0;
}

.solutions-risk__panel strong {
  margin-bottom: 2px;
  font-size: 0.87rem;
}

.solutions-risk__panel small {
  color: rgba(231, 242, 240, 0.63);
  font-size: 0.72rem;
  line-height: 1.45;
}

.solutions-faq {
  padding-top: clamp(82px, 8vw, 112px);
}

.solutions-faq .faq-list {
  max-width: 980px;
  margin-inline: auto;
}

.solutions-faq .faq-list details {
  border-color: rgba(20, 36, 42, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 44px rgba(29, 64, 65, 0.06), inset 0 1px rgba(255, 255, 255, 0.94);
}

@media (max-width: 1050px) {
  .solutions-hero__media img {
    object-position: 70% center;
  }

  .solutions-hero .breadcrumbs {
    display: none;
  }

  .solutions-hero h1 {
    max-width: 620px;
    font-size: clamp(2.55rem, 4.7vw, 3.4rem);
  }

  .solutions-system__intro,
  .solutions-directory__heading {
    gap: 34px 48px;
  }

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

  .system-step:nth-child(2) {
    border-right: 0;
  }

  .system-step:nth-child(n + 3) {
    border-top: 1px solid rgba(20, 36, 42, 0.1);
  }

  .system-step:nth-child(3) {
    padding-left: 4px;
  }

  .solution-tile--risk,
  .solution-tile--ltcat,
  .solution-tile--social,
  .solution-tile--health {
    grid-column: span 6;
  }

  .solutions-risk__layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 44px;
  }
}

@media (max-width: 760px) {
  .solutions-hero {
    display: block;
    min-height: 0;
  }

  .solutions-hero__media {
    position: relative;
    height: 410px;
  }

  .solutions-hero__media img {
    top: 72px;
    height: calc(100% - 72px);
    object-position: 77% center;
  }

  .solutions-hero__media::after {
    background:
      linear-gradient(0deg, rgba(11, 44, 49, 0.94) 0%, rgba(11, 44, 49, 0.08) 50%, transparent 100%),
      linear-gradient(90deg, rgba(7, 35, 39, 0.1), transparent 72%);
  }

  .solutions-hero__inner {
    min-height: 0;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .solutions-hero .breadcrumbs {
    margin-bottom: 25px;
  }

  .solutions-hero h1 {
    max-width: none;
    margin-bottom: 20px;
    font-size: clamp(2.05rem, 8.8vw, 2.45rem);
    line-height: 1.04;
  }

  .solutions-hero .lead {
    margin-bottom: 26px;
    font-size: 0.98rem;
  }

  .solutions-hero .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .solutions-system {
    padding-bottom: 72px;
  }

  .solutions-system__shell {
    margin-top: -25px;
    padding: 28px 19px 20px;
    border-radius: 24px;
  }

  .solutions-system__intro,
  .solutions-directory__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solutions-system__intro {
    padding-bottom: 23px;
  }

  .solutions-system__intro .eyebrow {
    margin-bottom: 0;
  }

  .solutions-system__intro h2 {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
  }

  .solutions-system__flow {
    grid-template-columns: 1fr;
    padding-top: 8px;
  }

  .system-step,
  .system-step:first-child,
  .system-step:nth-child(3),
  .system-step:last-child {
    padding: 15px 3px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 36, 42, 0.1);
  }

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

  .solutions-directory {
    padding: 76px 0 86px;
  }

  .solutions-directory__heading {
    margin-bottom: 34px;
  }

  .solutions-directory__heading h2 {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
  }

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

  .solution-tile,
  .solution-tile--risk,
  .solution-tile--ltcat,
  .solution-tile--social,
  .solution-tile--health,
  .solution-tile--training {
    min-height: 0;
    grid-column: 1;
    padding: 24px 21px 22px;
    border-radius: 24px;
  }

  .solution-tile--training {
    padding-right: 21px;
  }

  .solution-tile--training::after {
    display: none;
  }

  .solution-tile__icon {
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .solution-tile__icon svg {
    width: 23px;
    height: 23px;
  }

  .solution-tile__copy {
    margin: 66px 0 22px;
    padding-top: 0;
  }

  .solution-tile h3 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .solution-tile__outcome {
    margin-top: auto;
  }

  .solutions-risk {
    padding: 82px 0;
  }

  .solutions-risk__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .solutions-risk__copy h2 {
    font-size: clamp(2.3rem, 10.5vw, 3.1rem);
  }

  .solutions-risk__panel {
    border-radius: 24px;
  }

  .solutions-risk__panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 21px 19px;
  }

  .solutions-risk__panel ul {
    padding: 0 19px;
  }

  .solutions-risk__panel li {
    gap: 12px;
    padding: 17px 0;
  }

  .solutions-faq .solutions-directory__heading {
    margin-bottom: 28px;
  }
}

@media (max-width: 410px) {
  .solutions-hero {
    min-height: 0;
  }

  .solutions-hero__inner {
    padding-top: 28px;
  }

  .solutions-hero h1 {
    font-size: 2.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-tile,
  .system-step,
  .solution-tile__link b {
    transition: none;
  }
}

/* Solutions directory — continuous institutional index */
.solutions-ledger {
  overflow: hidden;
  border: 1px solid rgba(20, 36, 42, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 28px 76px rgba(25, 58, 60, 0.11), inset 0 1px rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(22px) saturate(135%);
}

.solution-entry {
  position: relative;
  display: grid;
  min-height: 184px;
  grid-template-columns: 38px 54px minmax(0, 1fr) minmax(230px, 0.48fr) 114px;
  align-items: center;
  gap: 22px;
  padding: 25px 27px;
  border-bottom: 1px solid rgba(20, 36, 42, 0.09);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: inset 4px 0 transparent;
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.solution-entry:last-child {
  border-bottom: 0;
}

.solution-entry:not(.solution-entry--featured):hover {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 4px 0 #b87945;
}

.solution-entry--featured {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 90% 0%, rgba(87, 184, 176, 0.2), transparent 28%),
    linear-gradient(135deg, #17464b 0%, #0d3035 72%);
  box-shadow: inset 4px 0 #c8844a;
}

.solution-entry--featured:hover {
  background:
    radial-gradient(circle at 88% 0%, rgba(87, 184, 176, 0.25), transparent 31%),
    linear-gradient(135deg, #1a4c51 0%, #0f353a 72%);
}

.solution-entry__index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(20, 36, 42, 0.13);
  border-radius: 50%;
  color: #99603a;
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.solution-entry__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(20, 36, 42, 0.11);
  border-radius: 17px;
  color: #a56639;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.88);
}

.solution-entry__icon svg,
.solution-entry__action svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-entry__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.45;
}

.solution-entry__main,
.solution-entry__main > span,
.solution-entry__main strong,
.solution-entry__main small,
.solution-entry__impact,
.solution-entry__impact > span,
.solution-entry__impact em {
  display: block;
}

.solution-entry__main {
  min-width: 0;
}

.solution-entry__kicker {
  margin-bottom: 5px;
  color: #9d6239;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.solution-entry__main strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-entry__statement {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.solution-entry__main small {
  max-width: 640px;
  color: #657477;
  font-size: 0.76rem;
  line-height: 1.5;
}

.solution-entry__impact {
  min-height: 82px;
  align-self: stretch;
  padding: 13px 8px 13px 25px;
  border-left: 1px solid rgba(20, 36, 42, 0.1);
}

.solution-entry__impact em {
  margin-bottom: 8px;
  color: #9b613a;
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-entry__impact > span {
  color: #526367;
  font-size: 0.76rem;
  line-height: 1.5;
}

.solution-entry__action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #955c36;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.solution-entry__action svg {
  width: 39px;
  height: 39px;
  padding: 10px;
  border: 1px solid rgba(20, 36, 42, 0.14);
  border-radius: 50%;
  stroke-width: 1.6;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.solution-entry:hover .solution-entry__action svg {
  color: #fff;
  border-color: #b87945;
  background: #b87945;
  transform: translateX(3px);
}

.solution-entry--featured .solution-entry__index,
.solution-entry--featured .solution-entry__icon {
  color: #e5ac79;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
}

.solution-entry--featured .solution-entry__kicker,
.solution-entry--featured .solution-entry__impact em,
.solution-entry--featured .solution-entry__action {
  color: #e5ac79;
}

.solution-entry--featured .solution-entry__main strong,
.solution-entry--featured .solution-entry__statement {
  color: #fff;
}

.solution-entry--featured .solution-entry__main small,
.solution-entry--featured .solution-entry__impact > span {
  color: rgba(235, 244, 242, 0.7);
}

.solution-entry--featured .solution-entry__impact {
  border-color: rgba(255, 255, 255, 0.13);
}

.solution-entry--featured .solution-entry__action svg {
  border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 1050px) {
  .solution-entry {
    grid-template-columns: 38px 52px minmax(0, 1fr) minmax(205px, 0.46fr) 42px;
    gap: 17px;
    padding-inline: 22px;
  }

  .solution-entry__action > span {
    display: none;
  }
}

@media (max-width: 760px) {
  .solutions-ledger {
    border-radius: 24px;
  }

  .solution-entry {
    min-height: 0;
    grid-template-areas:
      "index icon action"
      "main main main"
      "impact impact impact";
    grid-template-columns: 38px 50px minmax(0, 1fr);
    gap: 14px 12px;
    padding: 22px 19px 20px;
  }

  .solution-entry__index {
    grid-area: index;
  }

  .solution-entry__icon {
    width: 50px;
    height: 50px;
    grid-area: icon;
    border-radius: 16px;
  }

  .solution-entry__main {
    grid-area: main;
    padding-top: 8px;
  }

  .solution-entry__statement {
    margin-bottom: 10px;
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .solution-entry__main small {
    font-size: 0.78rem;
  }

  .solution-entry__impact {
    min-height: 0;
    grid-area: impact;
    padding: 15px 0 0;
    border-top: 1px solid rgba(20, 36, 42, 0.09);
    border-left: 0;
  }

  .solution-entry--featured .solution-entry__impact {
    border-color: rgba(255, 255, 255, 0.13);
  }

  .solution-entry__impact em {
    margin-bottom: 4px;
  }

  .solution-entry__action {
    grid-area: action;
    justify-self: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-entry,
  .solution-entry__action svg {
    transition: none;
  }
}

/* Solutions explorer — one focused service at a time */
.service-explorer {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

.service-explorer__nav-wrap {
  padding: 19px;
  border: 1px solid rgba(20, 36, 42, 0.09);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(238, 243, 239, 0.7)),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 24px 64px rgba(25, 58, 60, 0.09), inset 0 1px rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(135%);
}

.service-explorer__nav-wrap > p {
  margin: 4px 8px 15px;
  color: #8f5b37;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-explorer__nav {
  display: grid;
  gap: 5px;
}

.service-tab {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 91px;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 13px;
  padding: 14px 15px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-tab:hover:not(.is-active) {
  border-color: rgba(20, 36, 42, 0.07);
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(3px);
}

.service-tab.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(87, 184, 176, 0.2), transparent 42%),
    linear-gradient(135deg, #17464b, #10343a);
  box-shadow: 0 15px 36px rgba(15, 50, 54, 0.18), inset 0 1px rgba(255, 255, 255, 0.12);
}

.service-tab__number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(20, 36, 42, 0.11);
  border-radius: 50%;
  color: #9a6038;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  font-weight: 800;
}

.service-tab__copy,
.service-tab__copy strong,
.service-tab__copy small {
  display: block;
}

.service-tab__copy strong {
  margin-bottom: 2px;
  font-size: 0.85rem;
}

.service-tab__copy small {
  color: #6a797c;
  font-size: 0.69rem;
}

.service-tab__marker {
  color: #a0663d;
  font-size: 1rem;
  opacity: 0.58;
  transition: transform 180ms ease;
}

.service-tab.is-active .service-tab__number {
  color: #e3ab7b;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.service-tab.is-active .service-tab__copy small {
  color: rgba(236, 245, 243, 0.66);
}

.service-tab.is-active .service-tab__marker {
  color: #e3ab7b;
  opacity: 1;
  transform: translateX(3px);
}

.service-explorer__stage {
  min-width: 0;
}

.service-panel {
  position: relative;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  overflow: hidden;
  padding: 48px 50px 42px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 13%, rgba(87, 184, 176, 0.22), transparent 31%),
    radial-gradient(circle at 10% 105%, rgba(184, 121, 69, 0.14), transparent 28%),
    linear-gradient(145deg, #17474c 0%, #0d3035 66%, #123b40 100%);
  box-shadow: 0 30px 78px rgba(15, 48, 52, 0.2), inset 0 1px rgba(255, 255, 255, 0.12);
  isolation: isolate;
  animation: service-panel-in 260ms ease both;
}

.service-panel[hidden] {
  display: none;
}

.service-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(120deg, transparent 12%, #000 58%, transparent 96%);
  content: "";
}

.service-panel::after {
  position: absolute;
  z-index: -1;
  top: -38px;
  right: 20px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display);
  font-size: clamp(11rem, 18vw, 17rem);
  letter-spacing: -0.08em;
  line-height: 1;
  content: attr(data-number);
}

.service-panel__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #e2aa78;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.service-panel__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.service-panel__kicker {
  margin-bottom: 12px;
  color: #e2aa78;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-panel h3 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(2.55rem, 4.1vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.service-panel__lead {
  max-width: 720px;
  margin-bottom: 26px;
  color: rgba(235, 244, 242, 0.73);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-panel__deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.service-panel__deliverables span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(243, 248, 247, 0.83);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.69rem;
  font-weight: 700;
}

.service-panel__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-panel__footer span,
.service-panel__footer strong {
  display: block;
}

.service-panel__footer span {
  margin-bottom: 7px;
  color: #e2aa78;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-panel__footer strong {
  max-width: 560px;
  color: rgba(244, 248, 247, 0.82);
  font-size: 0.78rem;
  line-height: 1.5;
}

.service-panel__footer .button {
  white-space: nowrap;
}

@keyframes service-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .service-explorer {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .service-explorer__nav-wrap {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 15px;
    border-radius: 24px;
  }

  .service-explorer__stage,
  .service-panel {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .service-explorer__nav-wrap > p {
    margin-bottom: 12px;
  }

  .service-explorer__nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .service-explorer__nav::-webkit-scrollbar {
    display: none;
  }

  .service-tab {
    min-width: 185px;
    min-height: 74px;
    flex: 0 0 185px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 10px 12px;
    border-color: rgba(20, 36, 42, 0.07);
    background: rgba(255, 255, 255, 0.44);
    scroll-snap-align: start;
  }

  .service-tab__number {
    width: 32px;
    height: 32px;
  }

  .service-tab__marker {
    display: none;
  }

  .service-panel {
    min-height: 600px;
  }
}

@media (max-width: 520px) {
  .service-explorer__nav-wrap {
    margin-inline: -5px;
    padding: 13px;
    border-radius: 21px;
  }

  .service-panel {
    min-height: 0;
    padding: 27px 21px 22px;
    border-radius: 24px;
  }

  .service-panel::after {
    top: 2px;
    right: 12px;
    font-size: 8.5rem;
  }

  .service-panel__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 44px;
    border-radius: 16px;
  }

  .service-panel__icon svg {
    width: 25px;
    height: 25px;
  }

  .service-panel h3 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .service-panel__lead {
    font-size: 0.88rem;
  }

  .service-panel__deliverables {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .service-panel__deliverables span {
    padding: 10px 13px;
    border-radius: 13px;
  }

  .service-panel__footer {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
  }

  .service-panel__footer .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-tab,
  .service-tab__marker,
  .service-panel {
    animation: none;
    transition: none;
  }
}

/* Institutional refinement — Solutions */
.solutions-page .solutions-system {
  background: linear-gradient(180deg, #e9ece8 0%, #f7f7f3 100%);
}

.solutions-page .solutions-system__shell {
  position: relative;
  overflow: hidden;
  border-color: rgba(27, 40, 48, 0.12);
  border-radius: 22px;
  background: rgba(250, 251, 248, 0.82);
  box-shadow: 0 24px 60px rgba(25, 37, 43, 0.1), inset 0 1px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(112%);
}

.solutions-page .solutions-system__shell::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 18%, rgba(255, 255, 255, 0.55) 43%, transparent 68%);
  content: "";
  opacity: 0.52;
}

.solutions-page .solutions-system__intro,
.solutions-page .solutions-system__flow {
  position: relative;
  z-index: 1;
}

.solutions-page .system-step__number {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.solutions-page .solutions-directory {
  background: linear-gradient(180deg, #f7f7f3 0%, #eceeea 100%);
}

.solutions-page .solutions-directory::before {
  background-image: linear-gradient(rgba(25, 39, 47, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(25, 39, 47, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.solutions-page .service-explorer__nav-wrap {
  border-color: rgba(27, 40, 48, 0.11);
  border-radius: 20px;
  background: rgba(250, 251, 248, 0.78);
  box-shadow: 0 18px 44px rgba(25, 37, 43, 0.08), inset 0 1px rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px) saturate(108%);
}

.solutions-page .service-tab {
  border-radius: 13px;
}

.solutions-page .service-tab.is-active {
  border-color: rgba(255, 255, 255, 0.13);
  background: linear-gradient(135deg, #1c2b34 0%, #111e26 100%);
  box-shadow: 0 14px 32px rgba(15, 27, 34, 0.18), inset 0 1px rgba(255, 255, 255, 0.12);
}

.solutions-page .service-panel {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 4%, rgba(201, 131, 69, 0.13), transparent 29%),
    linear-gradient(142deg, rgba(37, 53, 63, 0.98), rgba(14, 27, 35, 0.99) 70%);
  box-shadow: 0 30px 70px rgba(15, 26, 33, 0.19), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(110%);
}

.solutions-page .service-panel::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, transparent 49.8%, rgba(226, 170, 120, 0.055) 50%, transparent 50.2%);
  background-size: 76px 76px, 76px 76px, 100% 100%;
  mask-image: linear-gradient(120deg, transparent 4%, #000 52%, transparent 100%);
}

.solutions-page .service-panel h3 {
  font-weight: 700;
}

.solutions-page .service-panel__icon,
.solutions-page .service-panel__deliverables span {
  border-radius: 12px;
}

.solutions-page .solutions-risk {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(30, 44, 52, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #e8ebe7 0%, #f5f5f1 100%);
  background-size: 86px 100%, 100% 100%;
}

.solutions-page .solutions-risk::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(112deg, transparent 18%, rgba(255, 255, 255, 0.58) 43%, transparent 68%);
  box-shadow: none;
  opacity: 0.68;
}

.solutions-page .solutions-risk__copy > p:not(.eyebrow) {
  color: #56646a;
}

.solutions-page .solutions-risk__panel {
  border-color: rgba(24, 37, 45, 0.12);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.67);
  box-shadow: 0 24px 62px rgba(24, 37, 45, 0.1), inset 0 1px rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(108%);
}

.solutions-page .solutions-risk__panel-head,
.solutions-page .solutions-risk__panel li {
  border-color: rgba(24, 37, 45, 0.1);
}

.solutions-page .solutions-risk__panel-head span,
.solutions-page .solutions-risk__panel li > span {
  color: #9a5f35;
}

.solutions-page .solutions-risk__panel li > span {
  border-color: rgba(154, 95, 53, 0.32);
  border-radius: 10px;
}

.solutions-page .solutions-risk__panel small {
  color: #647177;
}

.solutions-page .footer-stage {
  border-radius: 34px 34px 0 0;
  background: #111c23;
}

.solutions-page .closing-banner .container {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(110%);
}

.solutions-page .closing-banner .container::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 22%, rgba(255, 255, 255, 0.08) 46%, transparent 68%);
  content: "";
}

.solutions-page .closing-banner .container > * {
  position: relative;
}

@media (max-width: 700px) {
  .solutions-page .solutions-system__shell,
  .solutions-page .service-explorer__nav-wrap,
  .solutions-page .service-panel,
  .solutions-page .solutions-risk__panel,
  .solutions-page .closing-banner .container {
    border-radius: 18px;
  }
}

/* Individual services — visual system and technical ledgers */
.service-detail-page {
  background: #f1f2ee;
}

.service-detail-page .page-hero {
  min-height: clamp(700px, 82svh, 810px);
  background: #101b22;
  isolation: isolate;
}

.service-detail-page .page-hero::before {
  display: none;
}

.service-detail-hero__media,
.service-detail-hero__media::after {
  position: absolute;
  inset: 0;
}

.service-detail-hero__media {
  z-index: -1;
  background: #101b22;
}

.service-detail-hero__media::after {
  background:
    linear-gradient(90deg, rgba(11, 21, 28, 0.97) 0%, rgba(11, 21, 28, 0.84) 34%, rgba(11, 21, 28, 0.4) 57%, rgba(11, 21, 28, 0.02) 83%),
    linear-gradient(0deg, rgba(9, 17, 23, 0.5), transparent 49%);
  content: "";
}

.service-detail-hero__media img {
  position: absolute;
  top: 86px;
  right: 0;
  width: 100%;
  height: calc(100% - 86px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02) brightness(1.07);
}

.service-detail-page .page-hero__inner {
  display: grid;
  min-height: clamp(700px, 82svh, 810px);
  grid-template-columns: minmax(0, 660px);
  align-content: center;
  align-items: start;
  gap: 22px;
  padding-top: 124px;
  padding-bottom: 62px;
}

.service-detail-page .page-hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 3.35vw, 3.55rem);
  line-height: 1.035;
  text-wrap: balance;
}

.service-detail-page .page-hero .lead {
  max-width: 680px;
  color: rgba(239, 244, 242, 0.82);
}

.service-detail-page .page-hero .hero-side-note {
  display: grid;
  max-width: 690px;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 0;
  border-left: 2px solid #cb8650;
  border-radius: 0;
  background: rgba(11, 22, 29, 0.5);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.service-detail-page .page-hero .hero-side-note strong,
.service-detail-page .page-hero .hero-side-note p {
  margin: 0;
}

.service-detail-page .page-hero .hero-side-note strong {
  font-size: 0.76rem;
}

.service-detail-page .page-hero .hero-side-note p {
  color: rgba(232, 239, 237, 0.68);
  font-size: 0.73rem;
  line-height: 1.5;
}

.service-detail-page .section--paper {
  background: linear-gradient(180deg, #f4f4ef 0%, #e9ebe7 100%);
}

.service-detail-page .section--dark {
  background:
    linear-gradient(rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    #14212a;
  background-size: 76px 76px, 76px 76px, 100% 100%;
}

.service-detail-page :is(#entregas, #eventos, #treinamentos) .card-grid--2 {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.service-detail-page :is(#entregas, #eventos, #treinamentos) .info-card {
  min-height: 230px;
  padding: 30px 32px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
  backdrop-filter: none;
}

.service-detail-page :is(#entregas, #eventos, #treinamentos) .info-card:nth-child(even) {
  border-right: 0;
}

.service-detail-page :is(#entregas, #eventos, #treinamentos) .info-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-detail-page :is(#entregas, #eventos, #treinamentos) .info-card .card-number {
  margin-bottom: 48px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-detail-page :is(#entregas, #eventos, #treinamentos) .info-card h3 {
  font-weight: 700;
}

.service-detail-page .process-grid {
  gap: 0;
  border-top: 1px solid rgba(24, 39, 47, 0.16);
  border-bottom: 1px solid rgba(24, 39, 47, 0.16);
}

.service-detail-page .process-card {
  min-height: 285px;
  border: 0;
  border-right: 1px solid rgba(24, 39, 47, 0.13);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.service-detail-page .process-card:last-child {
  border-right: 0;
}

.service-detail-page .process-card + .process-card {
  border-left: 0;
}

.service-detail-page .process-card span {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-detail-page .process-card h3,
.service-detail-page .info-card h3 {
  font-weight: 700;
}

.service-detail-page .content-aside,
.service-detail-page .section--paper .info-card {
  border-radius: 16px;
}

.training-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid rgba(24, 39, 47, 0.14);
  list-style: none;
}

.training-index li {
  padding: 13px 14px 13px 0;
  border-bottom: 1px solid rgba(24, 39, 47, 0.14);
  color: #4f5d63;
  font-size: 0.77rem;
  font-weight: 600;
}

.training-index li:nth-child(odd) {
  border-right: 1px solid rgba(24, 39, 47, 0.14);
}

.training-index li:nth-child(even) {
  padding-left: 14px;
}

.service-detail-page .footer-stage {
  border-radius: 34px 34px 0 0;
  background: #111c23;
}

.service-detail-page .footer-stage::before {
  background: linear-gradient(180deg, rgba(17, 28, 35, 0.88), rgba(7, 14, 19, 0.98));
}

.service-detail-page .closing-banner .container {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(108%);
}

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

  .service-detail-page .process-card:nth-child(2) {
    border-right: 0;
  }

  .service-detail-page .process-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(24, 39, 47, 0.13);
  }
}

@media (max-width: 700px) {
  .service-detail-page .page-hero {
    display: block;
    min-height: 0;
  }

  .service-detail-hero__media {
    position: relative;
    height: 405px;
  }

  .service-detail-hero__media::after {
    background: linear-gradient(0deg, rgba(16, 27, 34, 0.88) 0%, rgba(16, 27, 34, 0.045) 59%, transparent 100%);
  }

  .service-detail-hero__media img {
    top: 72px;
    height: calc(100% - 72px);
    object-position: 72% center;
  }

  .service-detail-page .page-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .service-detail-page .page-hero h1 {
    font-size: clamp(2rem, 8.7vw, 2.4rem);
    line-height: 1.05;
  }

  .service-detail-page .page-hero .hero-side-note {
    grid-template-columns: 1fr;
  }

  .service-detail-page :is(#entregas, #eventos, #treinamentos) .card-grid--2,
  .service-detail-page .process-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-page :is(#entregas, #eventos, #treinamentos) .info-card,
  .service-detail-page :is(#entregas, #eventos, #treinamentos) .info-card:nth-child(even),
  .service-detail-page :is(#entregas, #eventos, #treinamentos) .info-card:nth-last-child(-n + 2),
  .service-detail-page .process-card,
  .service-detail-page .process-card:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .service-detail-page .process-card,
  .service-detail-page .process-card:nth-child(2) {
    border-bottom-color: rgba(24, 39, 47, 0.13);
  }

  .service-detail-page :is(#entregas, #eventos, #treinamentos) .info-card:last-child,
  .service-detail-page .process-card:last-child {
    border-bottom: 0;
  }

  .service-detail-page .closing-banner .container {
    border-radius: 18px;
  }

  .training-index {
    grid-template-columns: 1fr;
  }

  .training-index li:nth-child(odd) {
    border-right: 0;
  }

  .training-index li:nth-child(even) {
    padding-left: 0;
  }
}

/* Contact page — focused triage and no-cost local proof */
.contact-page {
  background: #eef0ec;
}

.contact-page .page-hero {
  min-height: 580px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 84% 18%, rgba(201, 131, 69, 0.13), transparent 25%),
    #13212a;
  background-size: 76px 76px, 76px 76px, 100% 100%, 100% 100%;
}

.contact-page .page-hero::before {
  background: linear-gradient(90deg, rgba(19, 33, 42, 0.12), rgba(19, 33, 42, 0.38));
}

.contact-page .page-hero__inner {
  min-height: 580px;
}

.contact-page .page-hero h1 {
  max-width: 700px;
  font-size: clamp(2.5rem, 3.35vw, 3.55rem);
  line-height: 1.035;
  text-wrap: balance;
}

.contact-page .hero-side-note {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(18px) saturate(108%);
}

.contact-page #formulario {
  background: linear-gradient(180deg, #f3f3ef 0%, #e8ebe7 100%);
}

.contact-page .contact-panel {
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 44%),
    #18262f;
  box-shadow: 0 26px 64px rgba(20, 31, 38, 0.15), inset 0 1px rgba(255, 255, 255, 0.1);
}

.contact-page .contact-layout > div:last-child {
  padding: 38px;
  border: 1px solid rgba(24, 38, 47, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 60px rgba(24, 38, 47, 0.08), inset 0 1px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(105%);
}

.contact-page .field input,
.contact-page .field select,
.contact-page .field textarea {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-location {
  color: #fff;
  background: #14212a;
}

.contact-location__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 94px);
}

.contact-location__copy h2 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 3.5vw, 3.7rem);
}

.contact-location__copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(234, 240, 239, 0.68);
}

.contact-map {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(4, 12, 17, 0.22), inset 0 1px rgba(255, 255, 255, 0.1);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: 0;
  filter: saturate(0.78) contrast(1.03);
}

.contact-page .section--dark {
  background: linear-gradient(180deg, #e8ebe7 0%, #f5f5f1 100%);
  color: var(--ink);
}

.contact-page .section--dark .section-heading > p,
.contact-page .section--dark .info-card p {
  color: #5d6b71;
}

.contact-page .section--dark .info-card {
  border-color: rgba(24, 38, 47, 0.1);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.88);
}

.contact-page .footer-stage {
  border-radius: 34px 34px 0 0;
  background: #111c23;
}

.contact-page .footer-stage::before {
  background: linear-gradient(180deg, rgba(17, 28, 35, 0.96), rgba(7, 14, 19, 0.98));
}

@media (max-width: 900px) {
  .contact-location__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contact-page .page-hero,
  .contact-page .page-hero__inner {
    min-height: 0;
  }

  .contact-page .page-hero__inner {
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .contact-page .page-hero h1 {
    font-size: clamp(2.05rem, 8.8vw, 2.4rem);
    line-height: 1.05;
  }

  .contact-page .contact-layout > div:last-child,
  .contact-page .contact-panel {
    padding: 27px 21px;
    border-radius: 18px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 360px;
    height: 360px;
  }
}

/* Method page — architectural process language */
.method-page {
  background: #f1f2ee;
}

.method-hero {
  position: relative;
  display: grid;
  min-height: clamp(700px, 82svh, 810px);
  overflow: hidden;
  color: #fff;
  background: #101b22;
  isolation: isolate;
}

.method-hero__media,
.method-hero__media::after {
  position: absolute;
  inset: 0;
}

.method-hero__media {
  z-index: -2;
  background: #101b22;
}

.method-hero__media::after {
  background:
    linear-gradient(90deg, rgba(12, 23, 30, 0.96) 0%, rgba(12, 23, 30, 0.82) 33%, rgba(12, 23, 30, 0.37) 56%, rgba(12, 23, 30, 0.02) 82%),
    linear-gradient(0deg, rgba(10, 19, 25, 0.48), transparent 47%);
  content: "";
}

.method-hero__media img {
  position: absolute;
  top: 86px;
  right: 0;
  width: 100%;
  height: calc(100% - 86px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02) brightness(1.07);
}

.method-hero__inner {
  display: flex;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 76px;
}

.method-hero__content {
  width: min(640px, 54vw);
}

.method-hero .breadcrumbs,
.method-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

.method-hero h1 {
  margin-bottom: 25px;
  font-size: clamp(2.5rem, 3.35vw, 3.55rem);
  line-height: 1.035;
  text-wrap: balance;
}

.method-hero .lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(239, 243, 241, 0.82);
}

.method-architecture {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(24, 39, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 39, 47, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f4f4ef 0%, #e9ebe7 100%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
}

.method-architecture::before {
  position: absolute;
  top: 84px;
  right: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(25, 42, 50, 0.08);
  border-radius: 50%;
  content: "";
}

.method-architecture .container {
  position: relative;
}

.method-page .method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid rgba(24, 39, 47, 0.18);
  border-bottom: 1px solid rgba(24, 39, 47, 0.18);
}

.method-page .method-step {
  position: relative;
  display: block;
  min-height: 330px;
  grid-template-columns: none;
  padding: 28px 26px 25px;
  border-right: 1px solid rgba(24, 39, 47, 0.14);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
}

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

.method-page .method-step::before {
  position: absolute;
  top: -4px;
  left: 25px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b66f3e;
  box-shadow: 0 0 0 5px rgba(182, 111, 62, 0.12);
  content: "";
}

.method-page .method-step__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 56px;
}

.method-page .method-step__top > span {
  color: #9b6139;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.method-page .method-step__top svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: #53636a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.method-page .method-step h3 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: 1.28rem;
}

.method-page .method-step p {
  margin-bottom: 28px;
  color: #59676d;
  font-size: 0.82rem;
  line-height: 1.62;
}

.method-page .method-step small {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 39, 47, 0.12);
  color: #915a34;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-page .section--dark {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #14212a;
  background-size: 74px 74px, 74px 74px, 100% 100%;
}

.method-page .impact-table {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.method-page .footer-stage {
  border-radius: 34px 34px 0 0;
  background: #111c23;
}

.method-page .closing-banner .container {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(110%);
}

@media (max-width: 1000px) {
  .method-page .method-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .method-page .method-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(24, 39, 47, 0.14);
  }
}

@media (max-width: 700px) {
  .method-hero {
    display: block;
    min-height: 0;
  }

  .method-hero__media {
    position: relative;
    height: 405px;
  }

  .method-hero__media::after {
    background: linear-gradient(0deg, rgba(16, 27, 34, 0.88) 0%, rgba(16, 27, 34, 0.045) 57%, transparent 100%);
  }

  .method-hero__media img {
    top: 72px;
    height: calc(100% - 72px);
    object-position: 72% center;
  }

  .method-hero__inner {
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .method-hero__content {
    width: 100%;
  }

  .method-hero h1 {
    font-size: clamp(2.05rem, 8.8vw, 2.4rem);
    line-height: 1.05;
  }

  .method-page .method-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 38px;
    border-top: 0;
    border-bottom: 0;
  }

  .method-page .method-step,
  .method-page .method-step:nth-child(2) {
    min-height: 300px;
    padding: 24px 22px 22px;
    border: 1px solid rgba(24, 39, 47, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
  }

  .method-page .method-step:last-child {
    border-bottom: 1px solid rgba(24, 39, 47, 0.12);
  }

  .method-page .method-step::before {
    display: none;
  }

  .method-page .method-step__top {
    margin-bottom: 34px;
  }

  .method-page .method-step p {
    max-width: none;
    margin-bottom: 58px;
  }

  .method-page .method-step small {
    right: 22px;
    bottom: 21px;
    left: 22px;
  }

  .method-page .closing-banner .container {
    border-radius: 18px;
  }
}

/* Company page — authority without visual excess */
.company-page {
  background: #f2f2ee;
}

.company-hero {
  position: relative;
  display: grid;
  min-height: clamp(650px, 78svh, 760px);
  overflow: hidden;
  color: #fff;
  background: #101b22;
  isolation: isolate;
}

.company-hero__media,
.company-hero__media::after {
  position: absolute;
  inset: 0;
}

.company-hero__media {
  z-index: -2;
}

.company-hero__media::after {
  background:
    linear-gradient(90deg, rgba(12, 24, 31, 0.96) 0%, rgba(12, 24, 31, 0.82) 33%, rgba(12, 24, 31, 0.36) 56%, rgba(12, 24, 31, 0.02) 83%),
    linear-gradient(0deg, rgba(10, 20, 27, 0.46), transparent 44%);
  content: "";
}

.company-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.94) contrast(1.02) brightness(1.07);
}

.company-hero__inner {
  display: flex;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 58px;
}

.company-hero__content {
  width: min(650px, 54vw);
}

.company-hero .breadcrumbs,
.company-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

.company-hero h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 4vw, 4.25rem);
  line-height: 1;
  text-wrap: balance;
}

.company-hero .lead {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(239, 243, 241, 0.82);
}

.company-story {
  background: linear-gradient(180deg, #f4f4ef 0%, #e9ebe7 100%);
}

.company-story__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.72fr);
  align-items: start;
  gap: clamp(52px, 7vw, 96px);
}

.company-story__copy h2 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(2.4rem, 3.6vw, 3.75rem);
  text-wrap: balance;
}

.company-story__copy > p:not(.eyebrow) {
  max-width: 730px;
  color: #536168;
}

.company-profile {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 46%),
    #18262f;
  box-shadow: 0 28px 68px rgba(20, 31, 38, 0.16), inset 0 1px rgba(255, 255, 255, 0.1);
}

.company-profile::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
}

.company-profile > * {
  position: relative;
}

.company-profile__heading > span {
  display: block;
  margin-bottom: 12px;
  color: #dda16c;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.company-profile__heading h2 {
  margin-bottom: 28px;
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.credential-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.credential-list li > span {
  color: #dca06c;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.credential-list p,
.credential-list strong,
.credential-list small {
  display: block;
  margin: 0;
}

.credential-list strong {
  margin-bottom: 5px;
  font-size: 0.86rem;
}

.credential-list small {
  color: rgba(235, 241, 240, 0.66);
  font-size: 0.74rem;
  line-height: 1.58;
}

.company-profile__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.company-profile__skills span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(243, 247, 246, 0.76);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.67rem;
  font-weight: 600;
}

.company-principles {
  color: #fff;
  background: #132029;
}

.company-principles .section-heading > p {
  color: rgba(237, 242, 241, 0.68);
}

.principles-ledger {
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.principle-row {
  display: grid;
  grid-template-columns: 72px minmax(210px, 0.5fr) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.principle-row > span {
  color: #dca06b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principle-row h3,
.principle-row p {
  margin: 0;
}

.principle-row h3 {
  font-family: var(--display);
  font-size: 1.18rem;
}

.principle-row p {
  max-width: 680px;
  color: rgba(234, 240, 239, 0.68);
  font-size: 0.88rem;
}

.company-page .footer-stage {
  border-radius: 34px 34px 0 0;
  background: #111c23;
}

.company-page .closing-banner .container {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(110%);
}

@media (max-width: 900px) {
  .company-hero {
    min-height: 700px;
  }

  .company-hero__media img {
    object-position: 63% center;
  }

  .company-hero__inner {
    padding-top: 116px;
    padding-bottom: 56px;
  }

  .company-hero__content {
    width: min(590px, 70vw);
  }

  .company-hero h1 {
    font-size: clamp(2.75rem, 6vw, 3.45rem);
  }

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

  .company-profile {
    max-width: 700px;
  }
}

@media (max-width: 700px) {
  .company-hero {
    display: block;
    min-height: 0;
  }

  .company-hero__media {
    position: relative;
    height: clamp(290px, 82vw, 340px);
    padding-top: 72px;
    background: #101b22;
  }

  .company-hero__media::after {
    background: linear-gradient(0deg, rgba(16, 27, 34, 0.88) 0%, rgba(16, 27, 34, 0.045) 57%, transparent 100%);
  }

  .company-hero__media img {
    object-position: 69% center;
  }

  .company-hero__inner {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  .company-hero__content {
    width: 100%;
  }

  .company-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.1rem, 9.8vw, 2.8rem);
    line-height: 1.02;
  }

  .company-hero .breadcrumbs {
    display: none;
  }

  .company-hero .lead {
    margin-bottom: 25px;
    font-size: 0.98rem;
  }

  .company-hero .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .company-profile {
    padding: 27px 22px;
    border-radius: 18px;
  }

  .principle-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px 16px;
  }

  .principle-row p {
    grid-column: 2;
  }

  .company-page .closing-banner .container {
    border-radius: 18px;
  }
}
