/* Enterprise service marketing system. Scoped to public enterprise-service pages. */
.es-page,
.es-legacy-page {
  --es-ink: #071a2f;
  --es-ink-soft: #29445d;
  --es-muted: #6a7d90;
  --es-line: #dce5ec;
  --es-paper: #f5f8fa;
  --es-paper-warm: #f8f7f3;
  --es-green: #069d72;
  --es-green-dark: #047957;
  --es-green-soft: #dff5ed;
  --es-navy: #061a30;
  --es-navy-2: #0b2842;
  --es-gold: #b89860;
  min-width: 0;
  overflow: clip;
  color: var(--es-ink);
  background: #fff;
}

.es-page *,
.es-legacy-page * {
  box-sizing: border-box;
}

.es-page :where(h1, h2, h3, p),
.es-legacy-page :where(h1, h2, h3, p) {
  overflow-wrap: anywhere;
}

.es-page .container,
.es-legacy-page .container {
  width: min(1240px, calc(100% - 48px));
  min-width: 0;
}

.es-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #67e0b6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.es-eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.es-eyebrow--dark {
  color: var(--es-green);
}

.es-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.es-button:hover {
  transform: translateY(-2px);
}

.es-button--primary {
  color: #fff;
  background: var(--es-green);
  box-shadow: 0 14px 30px rgba(6, 157, 114, .18);
}

.es-button--primary:hover {
  color: #fff;
  background: var(--es-green-dark);
}

.es-button--ghost {
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
  background: rgba(255, 255, 255, .03);
}

.es-button--ghost:hover {
  border-color: rgba(255, 255, 255, .72);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.es-hero {
  position: relative;
  isolation: isolate;
  padding: 82px 0 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(14, 164, 136, .3), transparent 32%),
    linear-gradient(118deg, #06192d 0%, #071f37 56%, #0b3a43 100%);
}

.es-hero::before,
.es-detail-hero::before,
.es-legacy-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  content: "";
}

.es-hero::after {
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 540px;
  right: -270px;
  top: -260px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  box-shadow:
    0 0 0 76px rgba(255, 255, 255, .025),
    0 0 0 152px rgba(255, 255, 255, .018);
  content: "";
}

.es-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .62fr);
  align-items: center;
  gap: 86px;
}

.es-hero__copy {
  min-width: 0;
  padding-bottom: 72px;
}

.es-hero__copy h1 {
  max-width: 820px;
  margin: 18px 0 22px;
  color: #fff;
  font-size: clamp(42px, 4.4vw, 66px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.es-hero__copy h1 em {
  display: block;
  color: #fff;
  font-style: normal;
}

.es-hero__copy h1 em::after {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  border-radius: 50%;
  background: #5fe0b2;
  box-shadow: 0 0 24px rgba(95, 224, 178, .7);
  content: "";
}

.es-hero__copy > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.9;
}

.es-hero__actions,
.es-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.es-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 31px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  list-style: none;
}

.es-proof-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.es-proof-list span {
  color: #69deb6;
  font-family: Georgia, serif;
  font-size: 11px;
}

.es-hero__brief {
  position: relative;
  padding: 32px 32px 28px;
  border: 1px solid rgba(255, 255, 255, .17);
  background: linear-gradient(145deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .035));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
}

.es-hero__brief::before {
  position: absolute;
  width: 44px;
  height: 3px;
  left: 31px;
  top: -2px;
  background: #5fe0b2;
  content: "";
}

.es-hero__brief-head > span {
  color: #62dbae;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.es-hero__brief-head > strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 21px;
}

.es-hero__brief ul {
  display: grid;
  margin: 24px 0 20px;
  padding: 0;
  list-style: none;
}

.es-hero__brief li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  line-height: 1.65;
}

.es-hero__brief li b {
  color: #65deb3;
  font-family: Georgia, serif;
  font-size: 11px;
}

.es-hero__brief > p {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  line-height: 1.7;
}

.es-hero__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(2, 15, 27, .28);
}

.es-hero__facts > div {
  min-width: 0;
  padding: 25px 27px 24px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.es-hero__facts > div:last-child {
  border-right: 0;
}

.es-hero__facts strong,
.es-hero__facts span {
  display: block;
}

.es-hero__facts strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
}

.es-hero__facts span {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}

.es-section {
  padding: 92px 0;
}

.es-section-heading {
  max-width: 780px;
  margin: 0 auto 45px;
  text-align: center;
}

.es-section-heading h2,
.es-manifesto h2,
.es-faq-layout header h2 {
  margin: 13px 0 15px;
  color: var(--es-ink);
  font-size: clamp(32px, 3.1vw, 46px);
  letter-spacing: -.045em;
  line-height: 1.2;
}

.es-section-heading > p,
.es-manifesto header > p,
.es-faq-layout header > p {
  margin: 0;
  color: var(--es-muted);
  font-size: 15px;
  line-height: 1.85;
}

.es-section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .65fr);
  align-items: end;
  gap: 90px;
  text-align: left;
}

.es-section-heading--split h2 {
  margin-bottom: 0;
}

.es-section-heading--light h2,
.es-section-heading--light p {
  color: #fff;
}

.es-section-heading--light p {
  opacity: .62;
}

.es-section--manifesto {
  padding: 84px 0;
  background: var(--es-paper-warm);
}

.es-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 76px;
}

.es-manifesto header {
  position: sticky;
  top: 22px;
}

.es-manifesto h2 {
  margin-top: 17px;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.13;
}

.es-manifesto h2 span,
.es-manifesto h2 em {
  display: block;
  white-space: nowrap;
}

.es-manifesto h2 span:nth-child(2),
.es-quote h2 strong {
  box-sizing: border-box;
  padding-left: .45em;
  text-indent: -.45em;
}

.es-manifesto h2 em {
  color: var(--es-green-dark);
  font-style: normal;
}

.es-manifesto__grid {
  border-top: 1px solid #cdd6dc;
}

.es-manifesto__grid article {
  display: grid;
  grid-template-columns: 72px minmax(150px, .55fr) 1fr;
  gap: 22px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid #cdd6dc;
}

.es-manifesto__grid article > span {
  color: var(--es-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.es-manifesto__grid h3 {
  margin: 0;
  color: var(--es-ink);
  font-size: 20px;
}

.es-manifesto__grid p {
  margin: 0;
  color: var(--es-muted);
  line-height: 1.8;
}

.es-section--catalog {
  background: #fff;
}

.es-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--es-line);
}

.es-filter button {
  min-height: 38px;
  padding: 7px 16px;
  border: 1px solid var(--es-line);
  border-radius: 22px;
  color: var(--es-ink-soft);
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.es-filter button:hover,
.es-filter button.is-active {
  border-color: var(--es-green);
  color: #fff;
  background: var(--es-green);
}

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

.es-service-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 405px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--es-line);
  background: #fff;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.es-service-card::after {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -76px;
  bottom: -76px;
  border: 1px solid rgba(6, 157, 114, .17);
  border-radius: 50%;
  box-shadow: 0 0 0 23px rgba(6, 157, 114, .035);
  content: "";
}

.es-service-card:hover,
.es-service-card.is-targeted {
  z-index: 1;
  border-color: rgba(6, 157, 114, .6);
  box-shadow: 0 24px 55px rgba(7, 26, 47, .1);
  transform: translateY(-6px);
}

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

.es-service-card__top,
.es-service-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.es-service-card__index {
  color: var(--es-green);
  font-family: Georgia, serif;
  font-size: 14px;
}

.es-service-card__category {
  padding: 5px 9px;
  border-radius: 2px;
  color: var(--es-green-dark);
  background: var(--es-green-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.es-service-card h3 {
  margin: 32px 0 13px;
  color: var(--es-ink);
  font-size: 24px;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.es-service-card > p {
  margin: 0;
  color: var(--es-muted);
  font-size: 14px;
  line-height: 1.8;
}

.es-service-card__deliverable {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 17px 0;
  border-top: 1px solid var(--es-line);
}

.es-service-card__deliverable span {
  color: #8a9aa8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.es-service-card__deliverable strong {
  color: var(--es-ink-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.es-service-card__foot {
  margin-top: auto;
  padding-top: 18px;
}

.es-service-card__foot small {
  color: var(--es-green-dark);
  font-size: 11px;
  font-weight: 800;
}

.es-service-card__foot a {
  position: relative;
  z-index: 1;
  color: var(--es-ink);
  font-size: 12px;
  font-weight: 800;
}

.es-service-card__foot a:hover {
  color: var(--es-green-dark);
}

.es-empty {
  padding: 32px;
  border: 1px solid var(--es-line);
  text-align: center;
}

.es-section--chain {
  color: #fff;
  background:
    radial-gradient(circle at 12% 100%, rgba(5, 157, 114, .22), transparent 30%),
    var(--es-navy);
}

.es-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .17);
  list-style: none;
}

.es-chain li {
  position: relative;
  min-width: 0;
  padding: 32px 25px 27px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.es-chain li:last-child {
  border-right: 0;
}

.es-chain li::before {
  position: absolute;
  width: 7px;
  height: 7px;
  left: 24px;
  top: -4px;
  border-radius: 50%;
  background: #62ddaf;
  box-shadow: 0 0 0 5px rgba(98, 221, 175, .12);
  content: "";
}

.es-chain b {
  color: #65ddb1;
  font-family: Georgia, serif;
  font-size: 12px;
}

.es-chain strong {
  display: block;
  margin: 35px 0 9px;
  color: #fff;
  font-size: 18px;
}

.es-chain p {
  margin: 0;
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
  line-height: 1.75;
}

.es-section--delivery {
  background: var(--es-paper);
}

.es-delivery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #d7e1e8;
}

.es-delivery__grid article {
  min-width: 0;
  padding: 30px 27px 33px;
  border-right: 1px solid #d7e1e8;
  background: rgba(255, 255, 255, .7);
}

.es-delivery__grid article:last-child {
  border-right: 0;
}

.es-delivery__grid span {
  color: var(--es-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.es-delivery__grid h3 {
  margin: 30px 0 13px;
  color: var(--es-ink);
  font-size: 21px;
}

.es-delivery__grid p {
  margin: 0;
  color: var(--es-muted);
  font-size: 13px;
  line-height: 1.8;
}

.es-section--quote {
  padding: 0;
  color: #fff;
  background: #0a273e;
}

.es-quote {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr);
  align-items: stretch;
}

.es-quote > div {
  padding: 70px 70px 70px 0;
}

.es-quote h2 {
  margin: 15px 0 18px;
  color: #fff;
  font-size: clamp(34px, 3vw, 44px);
  letter-spacing: -.045em;
  line-height: 1.13;
}

.es-quote h2 span,
.es-quote h2 strong {
  display: block;
  color: inherit;
  font: inherit;
  white-space: nowrap;
}

.es-quote > div p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  line-height: 1.8;
}

.es-quote > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, .12);
  list-style: none;
}

.es-quote li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 34px 30px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.es-quote li:nth-child(3),
.es-quote li:nth-child(4) {
  border-bottom: 0;
}

.es-quote li > span {
  color: #63dcae;
  font-family: Georgia, serif;
  font-size: 11px;
}

.es-quote li p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.7;
}

.es-quote li strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
}

.es-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--es-line);
  border-bottom: 1px solid var(--es-line);
  list-style: none;
}

.es-process li {
  min-width: 0;
  padding: 27px 24px 32px;
  border-right: 1px solid var(--es-line);
}

.es-process li:last-child {
  border-right: 0;
}

.es-process b {
  color: var(--es-green);
  font-family: Georgia, serif;
  font-size: 13px;
}

.es-process strong {
  display: block;
  margin: 28px 0 10px;
  color: var(--es-ink);
  font-size: 17px;
}

.es-process p {
  margin: 0;
  color: var(--es-muted);
  font-size: 13px;
  line-height: 1.7;
}

.es-section--faq {
  background: var(--es-paper-warm);
}

.es-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 110px;
}

.es-faq-layout header {
  position: sticky;
  top: 22px;
}

.es-faq details {
  border-top: 1px solid #ccd7de;
}

.es-faq details:last-child {
  border-bottom: 1px solid #ccd7de;
}

.es-faq summary {
  position: relative;
  padding: 23px 45px 23px 0;
  color: var(--es-ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.es-faq summary::-webkit-details-marker {
  display: none;
}

.es-faq summary::after {
  position: absolute;
  right: 4px;
  top: 19px;
  color: var(--es-green);
  content: "+";
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.es-faq details[open] summary::after {
  content: "−";
}

.es-faq details > p {
  margin: -5px 0 23px;
  padding-right: 45px;
  color: var(--es-muted);
  line-height: 1.8;
}

.es-section--apply {
  color: #fff;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 164, 116, .2), transparent 30%),
    linear-gradient(120deg, #071a2f, #0b3045);
}

.es-apply {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(430px, .92fr);
  align-items: start;
  gap: 90px;
}

.es-apply__copy h2 {
  margin: 16px 0 18px;
  color: #fff;
  font-size: clamp(34px, 3.2vw, 48px);
  letter-spacing: -.045em;
  line-height: 1.2;
}

.es-apply__copy > p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  line-height: 1.85;
}

.es-apply__contact {
  display: grid;
  gap: 6px;
  margin: 33px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.es-apply__contact span {
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  letter-spacing: .08em;
}

.es-apply__contact a {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 31px;
}

.es-apply__copy ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  list-style: none;
}

.es-apply__copy li::before {
  margin-right: 9px;
  color: #63ddb0;
  content: "✓";
}

.es-apply__form,
.es-detail-apply-card {
  min-width: 0;
  padding: 34px;
  color: var(--es-ink);
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
}

.es-apply__form > .zg-form,
.es-detail-apply-card > .zg-form {
  margin: 0;
}

.es-page .zg-form {
  display: grid;
  gap: 16px;
}

.es-page .zg-form__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.es-page .zg-form label {
  min-width: 0;
}

.es-page .zg-form label > span {
  color: var(--es-ink-soft);
  font-size: 12px;
}

.es-page .zg-form :where(input, select, textarea) {
  width: 100%;
  min-width: 0;
  border: 1px solid #d3dfe6;
  border-radius: 2px;
  color: var(--es-ink);
  background: #f9fbfc;
  font: inherit;
}

.es-page .zg-form :where(input, select) {
  min-height: 46px;
  padding: 9px 12px;
}

.es-page .zg-form textarea {
  min-height: 126px;
  padding: 12px;
  resize: vertical;
}

.es-page .zg-form :where(input, select, textarea):focus {
  border-color: var(--es-green);
  outline: 3px solid rgba(6, 157, 114, .1);
}

.es-page .zg-form .zg-check {
  display: grid;
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--es-muted);
  font-size: 11px;
  line-height: 1.65;
}

.es-page .zg-form .zg-check input {
  width: 16px;
  height: 16px;
  min-height: 0;
  margin-top: 2px;
}

.es-page .zg-form .zg-check a {
  color: var(--es-green-dark);
  text-decoration: underline;
}

.es-page .zg-form > .zg-button {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  justify-content: center;
  border-radius: 2px;
  color: #fff;
  background: var(--es-green);
}

.es-page .zg-form-unavailable {
  padding: 25px;
  border: 1px solid #d5e1e7;
  background: #f7fafb;
}

.es-page .zg-form-unavailable strong {
  display: block;
  margin-bottom: 8px;
  color: var(--es-ink);
  font-size: 17px;
}

.es-page .zg-form-unavailable p {
  margin: 0 0 17px;
  color: var(--es-muted);
  line-height: 1.75;
}

.es-page .zg-form-unavailable .zg-button {
  display: inline-flex;
  color: #fff;
}

.es-identity {
  padding: 28px 0;
  border-top: 1px solid #e0e6ea;
  background: #f4f6f7;
}

.es-identity .container {
  display: grid;
  grid-template-columns: 165px 1fr auto;
  align-items: center;
  gap: 30px;
}

.es-identity strong {
  color: var(--es-ink);
  font-size: 13px;
}

.es-identity p {
  margin: 0;
  color: var(--es-muted);
  font-size: 12px;
  line-height: 1.7;
}

.es-identity a {
  color: var(--es-green-dark);
  font-size: 12px;
  font-weight: 800;
}

/* Detail page */
.es-detail-hero,
.es-legacy-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(11, 163, 132, .25), transparent 30%),
    linear-gradient(118deg, #06192d 0%, #08243d 65%, #0b3943 100%);
}

.es-detail-hero {
  padding: 43px 0 68px;
}

.es-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, .43);
  font-size: 12px;
}

.es-breadcrumb a {
  color: rgba(255, 255, 255, .7);
}

.es-detail-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, .5fr);
  align-items: end;
  gap: 90px;
}

.es-detail-hero__copy {
  min-width: 0;
}

.es-detail-hero__copy h1 {
  margin: 16px 0 18px;
  color: #fff;
  font-size: clamp(42px, 4.4vw, 64px);
  letter-spacing: -.055em;
  line-height: 1.1;
}

.es-detail-hero__copy > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  line-height: 1.85;
}

.es-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 29px;
  background: rgba(255, 255, 255, .12);
}

.es-detail-meta > span {
  min-width: 0;
  padding: 16px 18px;
  background: rgba(5, 27, 47, .75);
}

.es-detail-meta small,
.es-detail-meta strong {
  display: block;
}

.es-detail-meta small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
  letter-spacing: .08em;
}

.es-detail-meta strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.55;
}

.es-detail-hero__aside {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
}

.es-detail-hero__aside > span {
  color: #63deb1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.es-detail-hero__aside > strong {
  display: block;
  margin: 8px 0 12px;
  color: #fff;
  font-size: 20px;
}

.es-detail-hero__aside > p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.75;
}

.es-detail-hero__aside ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.es-detail-hero__aside li {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
}

.es-detail-intro {
  padding: 66px 0;
  border-bottom: 1px solid var(--es-line);
  background: var(--es-paper-warm);
}

.es-detail-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 75px;
}

.es-detail-intro h2 {
  margin: 13px 0 24px;
  color: var(--es-ink);
  font-size: 28px;
  letter-spacing: -.03em;
}

.es-check-list ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.es-check-list li {
  position: relative;
  padding: 14px 0 14px 29px;
  border-top: 1px solid #d3dcdf;
  color: var(--es-ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.es-check-list li:last-child {
  border-bottom: 1px solid #d3dcdf;
}

.es-check-list li::before {
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--es-green);
  content: "↗";
  font-family: Georgia, serif;
}

.es-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 90px;
}

.es-detail-body {
  min-width: 0;
}

.es-detail-body > section {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 26px;
  padding: 44px 0;
  border-bottom: 1px solid var(--es-line);
}

.es-detail-body > section:first-child {
  padding-top: 0;
}

.es-detail-section__number {
  padding-top: 4px;
  color: var(--es-green);
  font-family: Georgia, serif;
  font-size: 13px;
}

.es-detail-section__label {
  color: #8b9aa7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.es-detail-body h2 {
  margin: 8px 0 20px;
  color: var(--es-ink);
  font-size: 29px;
  letter-spacing: -.035em;
}

.es-rich-content {
  color: var(--es-ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.es-rich-content p {
  margin: 0 0 12px;
}

.es-rich-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.es-rich-content li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border: 1px solid var(--es-line);
  background: #fbfcfd;
}

.es-rich-content li::before {
  position: absolute;
  left: 15px;
  top: 12px;
  color: var(--es-green);
  content: "✓";
  font-weight: 900;
}

.es-detail-body__highlight > div:last-child {
  padding: 27px;
  border-left: 3px solid var(--es-green);
  background: var(--es-paper);
}

.es-detail-note {
  margin: 17px 0 0;
  color: var(--es-muted);
  font-size: 11px;
  line-height: 1.7;
}

.es-detail-process {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.es-detail-process li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid var(--es-line);
}

.es-detail-process li:last-child {
  border-bottom: 1px solid var(--es-line);
}

.es-detail-process b {
  color: var(--es-green);
  font-family: Georgia, serif;
  font-size: 12px;
}

.es-detail-process strong {
  color: var(--es-ink);
  font-size: 15px;
}

.es-detail-process p {
  margin: 4px 0 0;
  color: var(--es-muted);
  font-size: 13px;
}

.es-transaction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.es-transaction-grid article {
  padding: 18px;
  border: 1px solid var(--es-line);
  background: #fff;
}

.es-transaction-grid strong {
  color: var(--es-green-dark);
  font-size: 13px;
}

.es-transaction-grid p {
  margin: 7px 0 0;
  color: var(--es-muted);
  font-size: 12px;
  line-height: 1.7;
}

.es-detail-body__boundary > div:last-child {
  padding: 27px;
  color: #fff;
  background: var(--es-navy);
}

.es-detail-body__boundary h2,
.es-detail-body__boundary .es-rich-content,
.es-detail-body__boundary > div:last-child > p {
  color: #fff;
}

.es-detail-body__boundary .es-rich-content {
  opacity: .75;
}

.es-detail-body__boundary > div:last-child > p {
  margin: 17px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  opacity: .58;
  font-size: 12px;
  line-height: 1.7;
}

.es-detail-aside {
  position: sticky;
  top: 18px;
  min-width: 0;
}

.es-detail-apply-card {
  padding: 28px;
  border: 1px solid var(--es-line);
  box-shadow: 0 18px 50px rgba(7, 26, 47, .09);
}

.es-detail-apply-card > h2 {
  margin: 12px 0 10px;
  color: var(--es-ink);
  font-size: 24px;
  letter-spacing: -.025em;
}

.es-detail-apply-card > p {
  margin: 0 0 22px;
  color: var(--es-muted);
  font-size: 12px;
  line-height: 1.7;
}

.es-detail-contact-card {
  display: grid;
  gap: 4px;
  margin-top: 13px;
  padding: 22px 25px;
  color: #fff;
  background: var(--es-navy);
}

.es-detail-contact-card span,
.es-detail-contact-card small {
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
}

.es-detail-contact-card a {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 24px;
}

.es-private-note {
  margin: 14px 0 0;
  padding: 15px;
  border: 1px solid #e4dbcb;
  color: #766a56;
  background: #fbf8f1;
  font-size: 11px;
  line-height: 1.7;
}

.es-detail-next {
  padding: 37px 0;
  color: #fff;
  background: #0a273e;
}

.es-detail-next .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.es-detail-next span,
.es-detail-next strong {
  display: block;
}

.es-detail-next div > span {
  margin-bottom: 5px;
  color: #63ddb0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.es-detail-next strong {
  color: #fff;
  font-size: 18px;
}

/* Legacy public URLs retained for SEO and old links. */
.es-legacy-hero {
  padding: 44px 0 68px;
}

.es-legacy-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: 70px;
}

.es-legacy-hero h1 {
  margin: 15px 0 14px;
  color: #fff;
  font-size: clamp(40px, 4vw, 60px);
  letter-spacing: -.05em;
}

.es-legacy-hero__copy > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  line-height: 1.8;
}

.es-legacy-hero__rule {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .055);
}

.es-legacy-hero__rule span,
.es-legacy-hero__rule strong,
.es-legacy-hero__rule small {
  display: block;
}

.es-legacy-hero__rule span {
  color: #61dbad;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.es-legacy-hero__rule strong {
  margin: 7px 0;
  color: #fff;
  font-size: 19px;
}

.es-legacy-hero__rule small {
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

.es-legacy-nav {
  border-bottom: 1px solid var(--es-line);
  background: #fff;
}

.es-legacy-nav .container {
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
}

.es-legacy-nav a {
  flex: 0 0 auto;
  padding: 17px 18px;
  border-right: 1px solid var(--es-line);
  color: var(--es-ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.es-legacy-nav a:hover {
  color: var(--es-green-dark);
  background: var(--es-paper);
}

.es-legacy-main {
  padding: 75px 0 90px;
  background: var(--es-paper);
}

.es-legacy-content {
  padding: 52px;
  border: 1px solid var(--es-line);
  background: #fff;
  box-shadow: 0 20px 55px rgba(7, 26, 47, .06);
}

.es-content-lead {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
  margin-bottom: 55px;
}

.es-content-lead > span {
  color: var(--es-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}

.es-content-lead h2 {
  margin: 0 0 15px;
  color: var(--es-ink);
  font-size: 32px;
  letter-spacing: -.035em;
}

.es-content-lead p {
  margin: 0;
  color: var(--es-muted);
  line-height: 1.85;
}

.es-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin: 30px 0;
}

.es-certification-page .es-content-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.es-content-grid article,
.es-content-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--es-line);
  background: #fbfcfd;
}

.es-content-grid span,
.es-content-card > span {
  color: var(--es-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
}

.es-content-grid h3,
.es-content-card h3 {
  margin: 18px 0 9px;
  color: var(--es-ink);
  font-size: 18px;
}

.es-content-grid p,
.es-content-card p {
  margin: 0;
  color: var(--es-muted);
  font-size: 13px;
  line-height: 1.75;
}

.es-content-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px;
  margin-top: 50px;
  padding-top: 42px;
  border-top: 1px solid var(--es-line);
}

.es-content-split h2 {
  margin: 0 0 17px;
  color: var(--es-ink);
  font-size: 25px;
}

.es-content-split ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.es-content-split li {
  position: relative;
  padding-left: 25px;
  color: var(--es-ink-soft);
  line-height: 1.7;
}

.es-content-split li::before {
  position: absolute;
  left: 0;
  color: var(--es-green);
  content: "✓";
}

.es-content-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding: 30px;
  color: #fff;
  background: var(--es-navy);
}

.es-content-action strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 21px;
}

.es-content-action p {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
}

.es-content-action a {
  flex: 0 0 auto;
  padding: 13px 18px;
  color: #fff;
  background: var(--es-green);
  font-size: 13px;
  font-weight: 800;
}

.es-legacy-footer-cta {
  padding: 34px 0;
  color: #fff;
  background: #0a273e;
}

.es-legacy-footer-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.es-legacy-footer-cta span,
.es-legacy-footer-cta strong {
  display: block;
}

.es-legacy-footer-cta span {
  margin-bottom: 5px;
  color: #63ddb0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.es-legacy-footer-cta strong {
  color: #fff;
  font-size: 18px;
}

@media (max-width: 1100px) {
  .es-hero__layout,
  .es-detail-hero__layout {
    gap: 45px;
  }

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

  .es-certification-page .es-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .es-chain li:nth-child(3),
  .es-process li:nth-child(3) {
    border-right: 0;
  }

  .es-chain li:nth-child(n + 4),
  .es-process li:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .es-process li:nth-child(n + 4) {
    border-top-color: var(--es-line);
  }

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

  .es-delivery__grid article:nth-child(2) {
    border-right: 0;
  }

  .es-delivery__grid article:nth-child(n + 3) {
    border-top: 1px solid #d7e1e8;
  }

  .es-detail-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
  }
}

@media (max-width: 860px) {
  .es-page .container,
  .es-legacy-page .container {
    width: min(100% - 32px, 1240px);
  }

  .es-hero {
    padding-top: 60px;
  }

  .es-hero__layout,
  .es-detail-hero__layout,
  .es-manifesto,
  .es-section-heading--split,
  .es-quote,
  .es-apply,
  .es-faq-layout,
  .es-detail-intro__grid,
  .es-detail-layout,
  .es-legacy-hero__layout,
  .es-content-lead {
    grid-template-columns: minmax(0, 1fr);
  }

  .es-hero__copy {
    padding-bottom: 20px;
  }

  .es-hero__brief {
    margin-bottom: 50px;
  }

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

  .es-hero__facts > div:nth-child(2) {
    border-right: 0;
  }

  .es-hero__facts > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .es-manifesto {
    gap: 45px;
  }

  .es-manifesto header,
  .es-faq-layout header {
    position: static;
  }

  .es-section-heading--split {
    gap: 20px;
  }

  .es-quote > div {
    padding: 58px 0 35px;
  }

  .es-quote > ul {
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
  }

  .es-apply {
    gap: 45px;
  }

  .es-detail-layout {
    padding-top: 60px;
  }

  .es-detail-aside {
    position: static;
  }

  .es-detail-intro__grid {
    gap: 45px;
  }

  .es-detail-next .container,
  .es-legacy-footer-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .es-identity .container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

@media (max-width: 620px) {
  .es-page,
  .es-legacy-page {
    max-width: 100%;
    overflow-x: clip;
  }

  .es-page .container,
  .es-legacy-page .container {
    width: min(100% - 28px, 1240px);
  }

  .es-hero {
    padding-top: 48px;
  }

  .es-hero__copy h1,
  .es-detail-hero__copy h1,
  .es-legacy-hero h1 {
    max-width: 100%;
    font-size: 37px;
    letter-spacing: -.045em;
    line-height: 1.13;
  }

  .es-hero__copy h1 em::after {
    width: 8px;
    height: 8px;
  }

  .es-hero__copy > p,
  .es-detail-hero__copy > p {
    font-size: 15px;
    line-height: 1.8;
  }

  .es-hero__actions,
  .es-detail-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .es-button {
    width: 100%;
    min-width: 0;
  }

  .es-proof-list {
    display: grid;
    gap: 10px;
  }

  .es-hero__brief {
    padding: 26px 22px 23px;
  }

  .es-hero__facts {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .es-hero__facts > div {
    padding: 18px 14px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-right: 0;
  }

  .es-section {
    padding: 68px 0;
  }

  .es-section-heading,
  .es-section-heading--split {
    margin-bottom: 31px;
  }

  .es-section-heading h2,
  .es-manifesto h2,
  .es-faq-layout header h2,
  .es-apply__copy h2,
  .es-quote h2 {
    font-size: 32px;
  }

  .es-manifesto__grid article {
    grid-template-columns: 42px 1fr;
    gap: 12px 10px;
  }

  .es-manifesto__grid article > p {
    grid-column: 2;
  }

  .es-filter {
    flex-wrap: nowrap;
    margin-right: -14px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .es-filter button {
    flex: 0 0 auto;
  }

  .es-service-grid,
  .es-chain,
  .es-process,
  .es-delivery__grid,
  .es-quote > ul,
  .es-transaction-grid,
  .es-content-grid,
  .es-content-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .es-certification-page .es-content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .es-service-card {
    min-height: 0;
    padding: 23px;
  }

  .es-service-card h3 {
    margin-top: 25px;
  }

  .es-service-card__foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .es-chain li,
  .es-process li {
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-right: 0;
  }

  .es-process li {
    border-top-color: var(--es-line);
  }

  .es-chain li:first-child,
  .es-process li:first-child {
    border-top: 0;
  }

  .es-chain strong {
    margin-top: 15px;
  }

  .es-delivery__grid article {
    border-top: 1px solid #d7e1e8;
    border-right: 0;
  }

  .es-delivery__grid article:first-child {
    border-top: 0;
  }

  .es-quote > ul {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .es-quote li,
  .es-quote li:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .es-quote li:last-child {
    border-bottom: 0;
  }

  .es-apply {
    grid-template-columns: minmax(0, 1fr);
  }

  .es-apply__form,
  .es-detail-apply-card {
    padding: 23px 18px;
  }

  .es-page .zg-form__pair {
    grid-template-columns: minmax(0, 1fr);
  }

  .es-apply__contact a {
    font-size: 26px;
  }

  .es-breadcrumb {
    margin-bottom: 32px;
  }

  .es-detail-hero {
    padding: 33px 0 50px;
  }

  .es-detail-hero__layout {
    gap: 35px;
  }

  .es-detail-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .es-detail-intro {
    padding: 55px 0;
  }

  .es-detail-body > section {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 36px 0;
  }

  .es-detail-body h2 {
    font-size: 25px;
  }

  .es-detail-body__highlight > div:last-child,
  .es-detail-body__boundary > div:last-child {
    padding: 20px;
  }

  .es-detail-process li {
    grid-template-columns: 35px 1fr;
  }

  .es-detail-next {
    padding-bottom: 90px;
  }

  .es-legacy-hero {
    padding: 34px 0 50px;
  }

  .es-legacy-hero__layout {
    gap: 30px;
  }

  .es-legacy-main {
    padding: 48px 0 75px;
  }

  .es-legacy-content {
    padding: 27px 19px;
  }

  .es-content-lead {
    gap: 22px;
    margin-bottom: 35px;
  }

  .es-content-action {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .es-content-action a {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .es-page *,
  .es-legacy-page * {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
