@charset "UTF-8";
:root {
  --teal: #009da5;
  --teal-deep: #0a757b;
  --teal-light: #0eb2ba;
  --page-bg: #eef5ee;
  --hero-surface:
    radial-gradient(
      circle at 4% 24%,
      rgba(242, 230, 232, 0.95),
      rgba(242, 230, 232, 0.42) 20%,
      rgba(242, 230, 232, 0) 48%
    ),
    linear-gradient(90deg, #f3ecec 0%, #f6f2ef 39%, #edf6f6 72%, #deefee 100%);
  --mist: #eefbfa;
  --ink: #363333;
  --ink-soft: #5d5a5a;
  --warm: #f3efa1;
  --shadow-soft: 0 10px 30px rgba(31, 53, 54, 0.12);
  --shadow-card: 0 8px 18px rgba(18, 51, 52, 0.14);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Brown', 'Segoe UI', sans-serif;
}

@font-face {
  font-family: "Brown";
  src: url("../fonts/Brown-Light.woff2") format("woff2"), url("../fonts/Brown-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Brown";
  src: url("../fonts/Brown-Regular.woff2") format("woff2"), url("../fonts/Brown-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Brown";
  src: url("../fonts/Brown-RegularItalic.woff2") format("woff2"), url("../fonts/Brown-RegularItalic.woff") format("woff");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Brown";
  src: url("../fonts/Brown-Bold.woff2") format("woff2"), url("../fonts/Brown-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Brown";
  src: url("../fonts/Brown-BoldItalic.woff2") format("woff2"), url("../fonts/Brown-BoldItalic.woff") format("woff");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Brown";
  src: url("../fonts/Brown-Bold.woff2") format("woff2"), url("../fonts/Brown-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Brown";
  src: url("../fonts/Brown-BoldItalic.woff2") format("woff2"), url("../fonts/Brown-BoldItalic.woff") format("woff");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Arno Pro";
  src: url("../fonts/ArnoPro-Regular.woff2") format("woff2"), url("../fonts/ArnoPro-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Arno Pro";
  src: url("../fonts/ArnoPro-Smbd.woff2") format("woff2"), url("../fonts/ArnoPro-Smbd.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Arno Pro";
  src: url("../fonts/ArnoPro-Bold.woff2") format("woff2"), url("../fonts/ArnoPro-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Arno Pro Display";
  src: url("../fonts/ArnoPro-Display.woff2") format("woff2"), url("../fonts/ArnoPro-Display.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Arno Pro Display";
  src: url("../fonts/ArnoPro-SmbdDisplay.woff2") format("woff2"), url("../fonts/ArnoPro-SmbdDisplay.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Arno Pro Display";
  src: url("../fonts/ArnoPro-BoldDisplay.woff2") format("woff2"), url("../fonts/ArnoPro-BoldDisplay.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: radial-gradient(circle at 0% 18%, rgba(244, 234, 235, 0.95), rgba(244, 234, 235, 0.45) 18%, rgba(244, 234, 235, 0) 42%), linear-gradient(90deg, #f3ecec 0%, #f6f2ef 37%, #edf6f6 71%, #d9eceb 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.shell {
  width: min(1280px, 100% - 32px);
  margin: 0 auto;
}

.page-shell {
  overflow-x: clip;
}

@media (max-width: 780px) {
  .shell {
    width: min(100% - 24px, 1280px);
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: var(--hero-surface);
}

.header-inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 118px;
  height: auto;
}

.brand-logo--negative {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav__link,
.main-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  z-index: 21;
}

.main-nav__trigger {
  position: relative;
  z-index: 21;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav__trigger svg {
  transition: transform 180ms ease;
}

.main-nav__link:hover,
.main-nav__link:focus-visible,
.main-nav__trigger:hover,
.main-nav__trigger:focus-visible,
.main-nav__item:hover .main-nav__trigger,
.main-nav__item:focus-within .main-nav__trigger,
.main-nav__item.is-open .main-nav__trigger {
  background: rgba(0, 157, 165, 0.1);
  outline: none;
}

.main-nav__item:hover .main-nav__trigger svg,
.main-nav__item:focus-within .main-nav__trigger svg,
.main-nav__item.is-open .main-nav__trigger svg {
  transform: rotate(180deg);
}

.main-nav__panel {
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 20;
  display: grid;
  gap: 3px;
  min-width: 151px;
  width: max-content;
  max-width: min(240px, 100vw - 48px);
  padding: 60px 20px 20px;
  border-radius: 15px;
  background: #eefbfa;
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.main-nav__panel-link {
  color: #363333;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
}

.main-nav__item:hover .main-nav__trigger,
.main-nav__item:focus-within .main-nav__trigger,
.main-nav__item.is-open .main-nav__trigger {
  background: #eefbfa;
  border-radius: 15px;
  font-weight: 600;
}

.main-nav__panel-link:hover,
.main-nav__panel-link:focus-visible {
  color: var(--teal);
  outline: none;
}

.main-nav__item:hover .main-nav__panel,
.main-nav__item:focus-within .main-nav__panel,
.main-nav__item.is-open .main-nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.header-login-chip {
  gap: 6px;
}

.header-login-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-actions .ghost-btn,
.header-actions .primary-chip,
.header-actions .soft-chip {
  height: 34px;
  font-size: 13px;
  padding: 0 14px 1px;
}

.header-actions .header-order-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 34px;
  width: 133px;
  padding: 0 12px 1px;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  color: #eefbfa;
  background: #363333;
}

.header-actions .header-order-chip:visited,
.header-actions .header-order-chip:hover,
.header-actions .header-order-chip:focus-visible {
  color: #eefbfa;
  background: #363333;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 24px;
  border: 0;
  background: transparent;
}

.login-modal[open] {
  display: grid;
}

.login-modal::backdrop {
  background: rgba(28, 24, 24, 0.28);
}

.login-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100vw - 32px);
  padding: 34px 38px 40px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(31, 31, 31, 0.18);
}

.login-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
}

.login-modal__close:hover,
.login-modal__close:focus-visible {
  background: rgba(0, 157, 165, 0.1);
  outline: none;
}

.login-modal__title {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}

.login-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.login-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 16px;
  background: var(--teal);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.login-modal__action:visited,
.login-modal__action:hover,
.login-modal__action:focus-visible {
  color: #fff;
  background: var(--teal);
}

.login-modal-open {
  overflow: hidden;
}

.mobile-nav-open .main-nav {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  inset: 68px 0 0 0;
  z-index: 100;
  background: rgba(238, 245, 238, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 24px 16px;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav-open {
  overflow: hidden;
}

.mobile-nav-open .main-nav__link,
.mobile-nav-open .main-nav__trigger {
  width: 100%;
  justify-content: space-between;
  font-size: 18px;
  padding: 14px 16px;
  border-radius: 12px;
}

.mobile-nav-open .main-nav__item {
  display: block;
  width: 100%;
}

.mobile-nav-open .main-nav__panel {
  position: static;
  min-width: 0;
  max-width: none;
  margin: 0 0 0 16px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: none;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 180ms ease, max-height 180ms ease, margin 180ms ease, padding 180ms ease, visibility 180ms ease;
}

.mobile-nav-open .main-nav__item.is-open .main-nav__panel {
  margin: 0 0 12px 16px;
  padding: 2px 0 4px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 320px;
}

.mobile-nav-open .main-nav__panel-link {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  line-height: 22px;
  color: var(--ink);
}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .brand {
    grid-column: 2;
    justify-self: center;
  }
  .header-actions {
    grid-column: 3;
  }
  .main-nav {
    display: none;
  }
  .hamburger-btn {
    grid-column: 1;
    display: flex;
  }
}
@media (max-width: 780px) {
  .site-header {
    position: static;
  }
  .login-modal__dialog {
    width: min(640px, 100vw - 24px);
    padding: 28px 24px 30px;
  }
  .login-modal__close {
    top: 12px;
    right: 12px;
  }
  .login-modal__actions {
    gap: 16px;
    margin-top: 32px;
  }
  .header-inner {
    position: relative;
    padding: 18px 0;
    gap: 18px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .ghost-btn,
  .header-actions .soft-chip {
    display: none;
  }
}
@media (max-width: 480px) {
  .site-header {
    position: static;
    background: var(--hero-surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header .shell {
    width: min(100% - 32px, 362px);
  }
  .header-actions .ghost-btn,
  .header-actions .soft-chip,
  .header-actions .icon-btn {
    display: none;
  }
  .header-inner {
    min-height: 64px;
    padding: 18px 0 16px;
    gap: 12px;
  }
  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-self: auto;
  }
  .brand-logo {
    width: 118px;
  }
  .brand-logo--default {
    display: block;
  }
  .brand-logo--negative {
    display: none;
  }
  .header-actions {
    justify-self: end;
  }
  .header-login-chip {
    display: inline-flex;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 12px;
    background: var(--teal);
    color: #eefbfa;
    box-shadow: 0 4px 6.85px rgba(0, 0, 0, 0.15);
  }
  .header-login-chip__label {
    display: none;
  }
  .header-login-chip__icon svg {
    display: block;
  }
  .login-modal {
    padding: 16px;
  }
  .login-modal__dialog {
    width: 100%;
    padding: 28px 20px 24px;
  }
  .login-modal__actions {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .login-modal__action {
    min-height: 50px;
    font-size: 17px;
  }
  .header-inner {
    min-height: 67px;
    padding: 15px 0 16px;
    grid-template-columns: 24px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 16px;
  }
  .brand {
    position: static;
    grid-column: 2;
    justify-self: center;
    transform: none;
  }
  .brand-logo {
    width: 103px;
  }
  .brand-logo--default {
    display: block;
  }
  .brand-logo--negative {
    display: none;
  }
  .hamburger-btn {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: center;
  }
  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .mobile-nav-open .main-nav {
    inset: 67px 0 0 0;
    background: var(--teal);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 14px 16px 24px;
    gap: 6px;
  }
  .mobile-nav-open .main-nav__link,
  .mobile-nav-open .main-nav__trigger {
    color: var(--mist);
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(238, 251, 250, 0.18);
    border-radius: 0;
    justify-content: space-between;
  }
  .mobile-nav-open .main-nav__link:hover,
  .mobile-nav-open .main-nav__link:focus-visible,
  .mobile-nav-open .main-nav__trigger:hover,
  .mobile-nav-open .main-nav__trigger:focus-visible {
    background: transparent;
  }
  .mobile-nav-open .main-nav__item:hover .main-nav__trigger,
  .mobile-nav-open .main-nav__item:focus-within .main-nav__trigger,
  .mobile-nav-open .main-nav__item.is-open .main-nav__trigger {
    background: transparent;
    border-radius: 0;
  }
  .mobile-nav-open .main-nav__panel-link {
    color: rgba(238, 251, 250, 0.82);
  }
  .mobile-nav-open .main-nav__panel-link:hover,
  .mobile-nav-open .main-nav__panel-link:focus-visible {
    color: var(--mist);
  }
  .mobile-nav-open .main-nav svg {
    color: var(--mist);
  }
}
.site-breadcrumbs {
  background: rgba(0, 157, 165, 0.15);
  border-top: 1px solid rgba(0, 157, 165, 0.08);
  border-bottom: 1px solid rgba(0, 157, 165, 0.08);
}

.site-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 7px 0;
  list-style: none;
}

.site-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-breadcrumbs__link,
.site-breadcrumbs__current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
}

.site-breadcrumbs__link {
  color: var(--ink);
}

.site-breadcrumbs__current {
  color: var(--teal);
  font-weight: 600;
}

.site-breadcrumbs__separator,
.site-breadcrumbs__home-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--ink);
}

.site-breadcrumbs__separator svg,
.site-breadcrumbs__home-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 700px) {
  .site-breadcrumbs__list {
    gap: 8px;
    padding: 9px 0;
  }
}
@media (max-width: 560px) {
  .site-breadcrumbs__item {
    gap: 8px;
  }
  .site-breadcrumbs__separator,
  .site-breadcrumbs__home-icon {
    width: 14px;
    height: 14px;
  }
}
.ghost-btn,
.primary-chip,
.soft-chip,
.icon-btn,
.primary-link,
.secondary-link,
.report-link,
.newsletter-form button {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ghost-btn,
.primary-chip,
.soft-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.ghost-btn {
  color: var(--teal);
  background: transparent;
}

.primary-chip {
  color: #eef5ee;
  background: var(--teal);
}

.soft-chip {
  color: var(--ink);
  background: var(--mist);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: transparent;
  position: relative;
  cursor: pointer;
}

.icon-btn::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 1.7px solid var(--ink);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
}

.icon-btn::after {
  content: "";
  width: 6px;
  height: 1.7px;
  background: var(--ink);
  position: absolute;
  right: 7px;
  bottom: 9px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  order: 10;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger-btn[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 480px) {
  .hamburger-btn {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    gap: 4px;
    background: transparent;
  }
  .hamburger-btn span {
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
  }
  .mobile-nav-open .hamburger-btn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .mobile-nav-open .hamburger-btn span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-open .hamburger-btn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.site-footer {
  background: linear-gradient(98deg, #2c989d 2%, #187d82 61%, #33b6bd 104%);
  color: var(--mist);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  gap: 48px;
}

.footer-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(238, 251, 250, 0.14);
}

.footer-stat-block {
  padding: 16px 18px 20px;
  text-align: center;
  border-radius: 14px;
  background: rgba(238, 251, 250, 0.1);
  border: 1px solid rgba(238, 251, 250, 0.2);
}

.footer-stat-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
}

.footer-stat-big {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
  color: white;
}

.footer-stat-block strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
}

.footer-stat-block span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-logo {
  width: 118px;
  margin-bottom: 24px;
}

.contact-list,
.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 8px;
}

.footer-columns ul li {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-no-icon {
  padding-left: 28px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-col-title {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
}

.footer-columns a,
.footer-brand-col p,
.contact-list li,
.footer-columns li {
  color: rgba(238, 251, 250, 0.9);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.footer-brand-col p {
  font-size: 16px;
  font-weight: 300;
}

.contact-list li {
  font-size: 16px;
  font-weight: 400;
}

.footer-social {
  margin-top: 28px;
}

.footer-social p {
  margin: 0 0 12px;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(238, 251, 250, 0.9);
  transition: transform 0.2s;
}

.social-icon img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(238, 251, 250, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(238, 251, 250, 0.78);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.footer-bottom p {
  margin: 0;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

@media (max-width: 820px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .footer-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-stat-block:last-child:nth-child(odd) {
    grid-column: 1/-1;
  }
}
@media (max-width: 780px) {
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .legal-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-highlights {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  .footer-top {
    gap: 32px;
  }
  .footer-highlights {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-bottom: 20px;
  }
  .footer-stat-block {
    height: 117px;
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-stat-icon {
    margin-bottom: 6px;
  }
  .footer-stat-block strong {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .footer-stat-block span {
    font-size: 14px;
  }
  .footer-stat-big {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 4px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-brand-col {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(238, 251, 250, 0.1);
  }
  .footer-logo {
    width: 118px;
    margin-bottom: 20px;
  }
  .footer-brand-col p {
    font-size: 16px;
    line-height: 24px;
    max-width: 311px;
    margin: 0 0 20px;
  }
  .contact-list {
    margin-top: 0;
    gap: 6px;
  }
  .contact-list li {
    font-size: 16px;
    line-height: 24px;
  }
  .footer-columns > div:not(.footer-brand-col) {
    padding-top: 24px;
  }
  .footer-col-title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
  }
  .footer-columns ul {
    margin: 0;
    gap: 0;
  }
  .footer-columns ul li {
    min-height: 44px;
  }
  .footer-columns a {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
  }
  .footer-social {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(238, 251, 250, 0.1);
  }
  .footer-social p {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
  }
  .social-links {
    gap: 8px;
  }
  .social-icon {
    width: 44px;
    height: 44px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
  }
  .footer-bottom p {
    font-size: 14px;
  }
  .legal-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }
}
.stat-tab:hover,
.primary-link:hover,
.secondary-link:hover,
.report-link:hover,
.newsletter-form button:hover,
.ghost-btn:hover,
.primary-chip:hover,
.soft-chip:hover,
.guide-card:hover,
.story-card:hover,
.explore-card:hover,
.social-icon:hover,
.icon-btn:hover {
  transform: translateY(-1px);
}

.stat-tab:focus-visible,
.main-nav a:focus-visible,
.primary-link:focus-visible,
.secondary-link:focus-visible,
.report-link:focus-visible,
.newsletter-form button:focus-visible,
.newsletter-form input:focus-visible,
.search-shell input:focus-visible,
.search-shell button:focus-visible,
.header-actions button:focus-visible,
.header-actions a:focus-visible,
.guide-card:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
}

.hero {
  padding: 26px 0 74px;
  background: var(--hero-surface);
}

.hero .shell {
  width: min(1276px, 100% - 32px);
  position: relative;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 610px 648px;
  gap: 18px;
  align-items: start;
  min-height: 665px;
  overflow: visible;
}

.hero-frame {
  position: absolute;
  inset: 0;
  background: url("/assets/images/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 2;
}

.hero-copy {
  padding: 36px 0 0;
  position: relative;
  z-index: 1;
}

.hero-copy-frame {
  position: relative;
  width: 610px;
  min-height: 404px;
  padding: 100px 56px 52px 72px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Arno Pro", "Arno Pro Display", var(--serif);
  font-weight: 700;
  line-height: 75px;
  letter-spacing: -0.02em;
  max-width: 445px;
  color: var(--teal);
  font-size: 70px;
}

.hero-image-wrap {
  position: relative;
  width: 648px;
  height: 665px;
  overflow: hidden;
  padding-top: 0;
  z-index: 1;
}

.hero-photo {
  position: absolute;
  width: 192.28%;
  height: 151.08%;
  max-width: none;
  left: -31.17%;
  top: -38.44%;
  object-fit: fill;
}

.hero-photo--desktop {
  display: block;
  width: 167.28%;
  height: 108.68%;
  left: -28.65%;
  top: -2.62%;
}

.hero-photo--mobile {
  display: none;
}

.hero-stats {
  width: 558px;
  margin-top: -220px;
  position: relative;
  z-index: 2;
}

.hero-stats-left {
  width: 558px;
  flex-shrink: 0;
}

.stat-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.stat-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(54, 51, 51, 0.7);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.stat-tab.is-active {
  padding-left: 14px;
  padding-right: 14px;
  border: 2px solid var(--teal);
  background: transparent;
}

.stat-value {
  margin: 0;
  color: var(--teal);
  font-family: "Arno Pro Display", "Arno Pro", var(--serif);
  font-weight: 600;
  font-style: normal;
  font-size: 96px;
  line-height: 80px;
  letter-spacing: -0.03em;
}

.stat-label {
  margin: 0;
  font-size: 25px;
  line-height: 36px;
  color: var(--ink);
}

.collection-card {
  position: absolute;
  right: 54px;
  top: 462px;
  width: 328px;
  min-height: 164px;
  padding: 26px 34px 15px 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--mist);
  border-radius: 15px;
  box-shadow: 0 4px 11.3px rgba(0, 0, 0, 0.15);
  background: linear-gradient(1.584deg, rgba(0, 0, 0, 0.45) 11.486%, rgba(92, 92, 92, 0.294) 124.4%);
  flex-shrink: 0;
  z-index: 3;
}

.collection-title {
  margin: 0 0 18px;
  width: 267px;
  font-size: 24px;
  line-height: 20px;
  font-weight: 700;
  text-align: left;
}

.collection-meta {
  display: flex;
  width: 182px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.collection-meta span {
  font-size: 10px;
  line-height: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.collection-values {
  display: flex;
  width: 267px;
  gap: 39px;
  align-items: center;
}

.collection-values strong {
  display: block;
  min-width: 114px;
  font-family: "Arno Pro", "Arno Pro Display", var(--serif);
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1320px) and (min-width: 821px) {
  .hero .shell {
    width: min(100% - 32px, 1180px);
  }
  .hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
    gap: clamp(18px, 2.4vw, 30px);
    min-height: clamp(470px, 52vw, 665px);
  }
  .hero-copy {
    padding-top: clamp(18px, 2.8vw, 36px);
  }
  .hero-copy-frame {
    width: 100%;
    min-height: clamp(300px, 31vw, 404px);
    padding: clamp(88px, 9vw, 122px) clamp(32px, 4vw, 56px) clamp(40px, 4vw, 52px) clamp(42px, 5vw, 72px);
  }
  .hero-copy h1 {
    max-width: min(100%, 445px);
    font-size: clamp(52px, 5.7vw, 70px);
    line-height: 0.98;
  }
  .hero-image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 648/665;
  }
  .hero-photo--desktop {
    inset: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
  }
  .hero-stats {
    width: clamp(390px, 58vw, 558px);
    margin-top: clamp(-220px, -18vw, -132px);
  }
  .hero-stats-left {
    width: 100%;
    max-width: 100%;
  }
  .stat-tabs {
    gap: 8px;
    margin-bottom: clamp(18px, 2vw, 25px);
  }
  .stat-tab {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
  }
  .stat-value {
    font-size: clamp(72px, 9.2vw, 96px);
    line-height: 0.9;
  }
  .stat-label {
    margin-top: clamp(16px, 1.8vw, 25px);
    font-size: clamp(20px, 2.2vw, 25px);
    line-height: 1.3;
  }
  .collection-card {
    top: calc(clamp(470px, 52vw, 665px) - clamp(138px, 15vw, 164px) - clamp(20px, 5.9%, 39px));
    right: clamp(32px, 4.2vw, 54px);
    width: clamp(230px, 29vw, 328px);
    min-height: clamp(138px, 15vw, 164px);
    padding: clamp(20px, 2vw, 26px) clamp(22px, 2.5vw, 34px) clamp(12px, 1.5vw, 15px) clamp(20px, 2vw, 27px);
  }
  .collection-title {
    width: 100%;
    margin-bottom: clamp(12px, 1.5vw, 18px);
    font-size: clamp(20px, 2vw, 24px);
  }
  .collection-meta {
    width: min(100%, 182px);
  }
  .collection-values {
    width: 100%;
    gap: clamp(20px, 2.4vw, 39px);
    justify-content: space-between;
  }
  .collection-values strong {
    min-width: auto;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1;
  }
}
@media (max-width: 820px) {
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: unset;
  }
  .hero-stats {
    width: 100%;
    margin-top: 28px;
  }
  .collection-card {
    position: static;
    width: min(328px, 100% - 32px);
    margin: 32px auto 0;
  }
}
@media (max-width: 780px) {
  .hero-copy {
    padding-top: 12px;
  }
  .hero-copy-frame {
    width: 100%;
    min-height: 248px;
    padding: 78px 24px 30px 34px;
  }
  .hero-image-wrap {
    width: 100%;
    height: 340px;
    min-height: 340px;
    padding-top: 0;
  }
  .hero-photo {
    width: 192.28%;
    height: 151.08%;
  }
  .hero-photo--desktop {
    display: none;
  }
  .hero-photo--mobile {
    display: block;
  }
  .collection-card {
    width: min(328px, 100% - 32px);
    margin: 32px auto 0;
  }
  .hero-copy h1 {
    font-size: clamp(3.2rem, 11vw, 4.5rem);
    line-height: 0.95;
  }
  .stat-value {
    font-size: clamp(4rem, 12vw, 6rem);
    line-height: 0.9;
  }
  .stat-label {
    font-size: clamp(1.15rem, 4vw, 1.55rem);
    line-height: 1.35;
  }
  .stat-tabs {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 0 0 48px;
    background: var(--hero-surface);
  }
  .hero .shell {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .hero-stage {
    position: relative;
    grid-template-columns: 1fr;
    min-height: 374px;
    gap: 0;
    overflow: hidden;
  }
  .hero-frame {
    display: block;
    inset: 0;
    z-index: 3;
    background: url("/assets/images/hero-frame-mobile.svg") 16px 40px/361px 251px no-repeat;
  }
  .hero-image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    overflow: hidden;
  }
  .hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
  }
  .hero-photo {
    width: 142.01%;
    height: 100%;
    left: -9.95%;
    top: 0;
    object-fit: fill;
  }
  .hero-photo--desktop {
    display: none;
  }
  .hero-photo--mobile {
    display: block;
  }
  .hero-copy {
    position: relative;
    z-index: 4;
    padding: 107px 16px 0;
  }
  .hero-copy-frame {
    width: 361px;
    max-width: 100%;
    min-height: 231px;
    padding: 30px 60px 90px 30px;
    background: none;
  }
  .hero-copy h1 {
    font-size: 40px;
    line-height: 40px;
    color: var(--mist);
    max-width: 253px;
  }
  .hero-stats {
    width: 100%;
    margin-top: 34px;
    padding: 0 32px;
    align-items: center;
    text-align: center;
    background: transparent;
  }
  .hero-stats-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .stat-tabs {
    display: flex;
    width: 100%;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
  .stat-value {
    font-size: clamp(74px, 19vw, 82px);
    line-height: 0.9;
    text-align: center;
    width: 100%;
  }
  .stat-label {
    font-size: 17px;
    line-height: 24px;
    text-align: center;
    margin-top: 10px;
    max-width: 335px;
  }
  .collection-card {
    width: min(328px, 100% - 42px);
    background: var(--teal);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 26px 27px 15px;
    margin: 32px auto 0;
    position: static;
  }
  .collection-title {
    font-size: 24px;
    line-height: 20px;
    margin-bottom: 14px;
    text-align: left;
  }
  .collection-values {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
  .collection-values strong {
    font-size: 48px;
    line-height: 48px;
    min-width: auto;
  }
  .collection-meta {
    width: 100%;
    justify-content: space-between;
    padding: 0 1px;
  }
}
.guide-band {
  background: linear-gradient(180deg, #10a9b2 0%, #0d9da6 100%);
  padding: 42px 0 46px;
  position: relative;
  z-index: 1;
}

.guide-inner {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.eyebrow img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.eyebrow.light {
  color: var(--mist);
}

.search-shell {
  position: relative;
  margin-bottom: 12px;
}

.search-shell input {
  width: 100%;
  height: 60px;
  padding: 0 76px 0 24px;
  border-radius: var(--radius-pill);
  border: 0;
  background: rgba(6, 6, 6, 0.3);
  color: var(--mist);
  font-size: 18px;
}

.search-shell input::placeholder {
  color: rgba(238, 251, 250, 0.85);
}

.search-shell button {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(238, 251, 250, 0.2);
  color: var(--mist);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.search-shell button img {
  width: 20px;
  height: 20px;
}

.guide-tip {
  margin: 0;
  font-size: 16px;
  color: rgba(238, 251, 250, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.guide-tip img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.guide-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-card {
  display: block;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 24px;
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
}

.guide-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.guide-card-top img:first-child {
  width: 40px;
  height: 40px;
}

.guide-card-top .guide-arrow-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
}

.guide-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.guide-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 780px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .guide-band {
    padding: 29px 0 60px;
    background: var(--teal);
  }
  .guide-inner {
    width: min(100% - 32px, 362px);
  }
  .guide-head {
    width: 100%;
  }
  .eyebrow.light {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
  }
  .eyebrow img {
    width: 20px;
    height: 20px;
  }
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 16px;
  }
  .guide-card {
    min-height: 149px;
    padding: 12px 13px 16px;
    border-radius: 15px;
    background: rgba(238, 251, 250, 0.7);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }
  .guide-card-top {
    margin-bottom: 8px;
  }
  .guide-card-top img:first-child {
    width: 31px;
    height: 31px;
  }
  .guide-card-top .guide-arrow-icon {
    width: 16px;
    height: 16px;
    opacity: 1;
  }
  .guide-card h2 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 28px;
  }
  .guide-card p {
    font-size: 12px;
    line-height: 19px;
    max-width: 130px;
  }
  .search-shell {
    margin-bottom: 16px;
  }
  .search-shell input {
    height: 63px;
    font-size: 18px;
    padding: 0 74px 0 24px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--mist);
  }
  .search-shell button {
    right: 11px;
    top: 10px;
    width: 44px;
    height: 44px;
    background: rgba(238, 251, 250, 0.3);
  }
  .guide-tip {
    max-width: 280px;
    font-size: 16px;
    line-height: 24px;
  }
}
.news-section {
  background: var(--mist);
  padding: 80px 0 74px;
  position: relative;
  z-index: 1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.section-link img {
  width: 20px;
  height: 20px;
}

.section-head h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

.section-head a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.section-head.no-link {
  margin-bottom: 22px;
}

.story-card {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s;
  position: relative;
  cursor: pointer;
}

.story-card:not(.news-mobile-card):hover {
  transform: translateY(-3px);
}

.story-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.feature-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #c9eaed;
}

.story-media {
  overflow: hidden;
}

.story-media img,
.story-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-highlight {
  padding: 120px 48px 48px;
  background: rgba(200, 234, 237, 0.6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

.pill img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pill.solid {
  background: var(--teal);
  color: var(--mist);
}

.pill.outline {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.pill.pale {
  background: var(--mist);
  color: var(--ink);
}

.story-body {
  padding: 22px 24px 20px;
  background: rgba(0, 157, 165, 0.14);
}

.story-body h3 {
  margin: 14px 0 10px;
  font-size: 19px;
  line-height: 1.25;
}

.story-highlight h3 {
  margin: 18px 0 20px;
  font-size: 36px;
  line-height: 40px;
  font-family: var(--sans);
  font-weight: 700;
}

.story-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.story-highlight p {
  max-width: 480px;
  font-size: 18px;
  line-height: 1.55;
}

.story-highlight a,
.story-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
}

.story-meta {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.story-meta a {
  margin-left: auto;
}
.story-meta a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.news-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.news-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-mobile-grid,
.news-mobile-cta {
  display: none;
}

.compact,
.small {
  display: flex;
  flex-direction: column;
  background: #c9eaed;
}
.compact > .story-body,
.small > .story-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.compact > img,
.small > img {
  height: 194px;
  object-fit: cover;
}

@media (max-width: 820px) {
  .feature-story,
  .news-grid.two-up,
  .news-grid.three-up {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 780px) {
  .story-highlight {
    padding: 28px 24px;
  }
  .story-highlight h3 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .news-section {
    padding: 32px 0 40px;
  }
  .news-section .shell {
    width: min(100% - 38px, 354px);
  }
  .news-section .section-head {
    margin-bottom: 18px;
  }
  .news-section .section-title-row {
    gap: 8px;
    align-items: center;
  }
  .news-section .section-icon {
    width: 24px;
    height: 24px;
  }
  .news-section .section-head h2 {
    font-size: 24px;
  }
  .section-link {
    display: none;
  }
  .feature-story {
    grid-template-columns: 1fr;
    border-radius: 16px;
    background: transparent;
  }
  .story-media img {
    height: 160px;
  }
  .feature-story .story-media {
    border-radius: 15px 15px 0 0;
  }
  .story-highlight {
    padding: 20px 20px 24px;
    background: rgba(0, 157, 165, 0.2);
  }
  .story-highlight h3 {
    font-size: 20px;
    line-height: 25px;
    margin: 12px 0 10px;
  }
  .story-highlight p {
    font-size: 16px;
    line-height: 26px;
    max-width: 308px;
  }
  .story-highlight a {
    font-size: 16px;
    color: var(--teal);
    margin-top: 12px;
  }
  .news-grid.two-up,
  .news-grid.three-up {
    display: none;
  }
  .news-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 15px;
  }
  .news-mobile-card {
    border-radius: 15px;
    background: rgba(0, 157, 165, 0.2);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .news-mobile-card img {
    width: 100%;
    height: 156px;
    object-fit: cover;
    display: block;
  }
  .news-mobile-card .story-card-link {
    display: flex;
    flex-direction: column;
  }
  .news-mobile-card .story-body {
    flex: 1;
    min-height: 122px;
    padding: 14px 16px 16px;
    background: rgba(0, 157, 165, 0.2);
  }
  .news-mobile-card .pill {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }
  .news-mobile-card h3 {
    font-size: 15px;
    line-height: 20px;
    margin: 14px 0 0;
  }
  .news-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin-top: 24px;
    border-radius: var(--radius-pill);
    background: var(--teal);
    color: var(--mist);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 600;
  }
  .news-mobile-cta .link-arrow {
    filter: brightness(0) invert(1);
  }
  .story-card {
    border-radius: 16px;
  }
  .story-card.compact,
  .story-card.small {
    border-radius: 15px;
  }
  .compact > img,
  .small > img {
    height: 120px;
  }
  .story-body {
    padding: 14px 16px 16px;
  }
  .story-body h3 {
    font-size: 15px;
    line-height: 20px;
    margin: 8px 0 0;
  }
  .story-body p,
  .story-meta {
    display: none;
  }
}
.action-stack {
  padding: 70px 0;
  display: grid;
  gap: 80px;
}

.surface-card {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.pickup-card {
  background: rgba(238, 251, 250, 0.9);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 504px;
  align-items: center;
  gap: 38px;
  padding: 48px 80px;
}

.pickup-main h2 {
  margin: 20px 0 0;
  font-family: "Arno Pro", "Arno Pro Display", var(--serif);
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: 55px;
}

.pickup-main p {
  max-width: 480px;
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.4;
}

.pickup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.primary-link,
.secondary-link,
.report-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.primary-link,
.report-link {
  background: var(--teal);
  color: var(--mist);
  gap: 8px;
}

.primary-link img,
.report-link img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.secondary-link {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.pickup-benefits {
  display: grid;
  gap: 16px;
  align-content: start;
}

.benefit-item {
  background: rgba(0, 157, 165, 0.2);
  border-radius: 15px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: var(--mist);
  display: grid;
  place-items: center;
  color: var(--ink);
}

.benefit-text h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.benefit-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.report-card {
  background: rgba(238, 251, 250, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 48px;
  border-radius: 30px;
}

.report-card h2 {
  font-family: "Arno Pro", "Arno Pro Display", var(--serif);
  font-size: 55px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 20px 0 0;
}

.report-card .pill {
  margin-bottom: 8px;
}

.report-card p {
  max-width: 843px;
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .pickup-card {
    grid-template-columns: 1fr;
  }
  .report-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 780px) {
  .pickup-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .pickup-card,
  .report-card {
    padding: 28px 24px;
  }
  .pickup-main h2,
  .report-card h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .report-link,
  .primary-link,
  .secondary-link {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .action-stack {
    padding: 40px 0;
    gap: 20px;
  }
  .surface-card {
    border-radius: 15px;
  }
  .pickup-card {
    padding: 24px 16px;
    gap: 24px;
  }
  .pickup-main .pill {
    background: var(--mist);
    color: var(--teal);
    border: none;
    font-size: 14px;
  }
  .pickup-main h2 {
    font-size: 30px;
    line-height: 36px;
    margin-top: 16px;
  }
  .pickup-main p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px;
  }
  .pickup-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  .primary-link,
  .secondary-link {
    width: 100%;
    min-height: 56px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    justify-content: center;
  }
  .primary-link {
    background: var(--mist);
    color: var(--teal);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }
  .secondary-link {
    background: var(--mist);
    color: var(--teal);
    border-color: transparent;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }
  .benefit-item {
    padding: 17px;
    border-radius: 15px;
    gap: 16px;
  }
  .benefit-text h3 {
    font-size: 18px;
  }
  .benefit-text p {
    font-size: 16px;
    line-height: 26px;
  }
  .report-card {
    padding: 24px 17px;
    border-radius: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  .report-card h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .report-card p {
    font-size: 16px;
    line-height: 24px;
  }
  .report-link {
    width: 100%;
    min-height: 47px;
    font-size: 16px;
    border-radius: var(--radius-pill);
  }
}
.explore-section {
  background: var(--mist);
  padding: 0 0 68px;
  position: relative;
  z-index: 1;
}

.explore-section .section-head,
.explore-section-head {
  padding-top: 60px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.explore-card {
  display: block;
  min-height: 264px;
  background: rgba(0, 157, 165, 0.2);
  color: var(--ink);
  padding: 34px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s;
}

.explore-card--mobile-only {
  display: none;
}

.explore-card h3 {
  margin: 16px 0 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.explore-card p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.5;
}

.explore-card > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
}

.link-arrow {
  width: 20px;
  height: 20px;
}

.explore-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.explore-icon img {
  width: 48px;
  height: 48px;
}

@media (max-width: 820px) {
  .explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 780px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .explore-section {
    padding: 12px 0 45px;
  }
  .explore-section .section-head,
  .explore-section-head {
    padding-top: 0;
    margin-bottom: 10px;
  }
  .explore-section-head .section-title-row {
    gap: 8px;
    align-items: flex-start;
  }
  .explore-section .shell {
    width: min(100% - 46px, 349px);
  }
  .explore-section .section-icon {
    width: 24px;
    height: 24px;
    margin-top: 4px;
  }
  .explore-section-head h2 {
    font-size: 24px;
    line-height: 32px;
    max-width: 318px;
  }
  .explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    justify-content: center;
  }
  .explore-card {
    min-height: 219px;
    padding: 19px;
    border-radius: 15px;
    background: rgba(0, 157, 165, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .explore-card h3 {
    font-size: 15px;
    line-height: 20px;
    margin: 12px 0 8px;
  }
  .explore-card p {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 14px;
    max-width: 135px;
  }
  .explore-card > span {
    margin-top: auto;
    font-size: 14px;
  }
  .explore-icon,
  .explore-icon img {
    width: 40px;
    height: 40px;
  }
  .explore-card--mobile-only {
    display: flex;
  }
}
.newsletter-band {
  position: relative;
  min-height: 580px;
  color: var(--mist);
}

.newsletter-feedback {
  margin-top: 12px;
  font-size: 15px;
}
.newsletter-feedback--success {
  color: #b8f0e0;
}
.newsletter-feedback--error {
  color: #ffb3b3;
}

.newsletter-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.newsletter-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 20, 20, 0.58), rgba(28, 20, 20, 0.18));
}

.newsletter-backdrop img {
  position: absolute;
  width: 139.09%;
  height: 229.45%;
  max-width: none;
  left: -4.24%;
  top: -76.24%;
}

.newsletter-shell {
  position: relative;
  padding: 80px 0;
}

.newsletter-card {
  position: relative;
  min-height: 418px;
  padding: 50px 70px;
  width: min(1268px, 100%);
}
.newsletter-card::before {
  content: "";
  position: absolute;
  inset: -12px -5px;
  background: url("/assets/images/newsletter-frame.svg") no-repeat center;
  background-size: 100% 100%;
  pointer-events: none;
}

.newsletter-card h2 {
  margin: 18px 0 0;
  font-family: "Arno Pro Display", "Arno Pro", var(--serif);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--warm);
  font-size: 70px;
}

.newsletter-card p {
  max-width: 479px;
  font-size: 20px;
  margin: 24px 0 0;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 38px;
  max-width: 660px;
}

.newsletter-form input {
  flex: 1;
  min-height: 56px;
  padding: 0 30px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--mist);
  background: var(--mist);
  color: var(--ink);
  font-size: 18px;
}

.newsletter-form button {
  min-width: 185px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--mist);
  background: transparent;
  color: var(--mist);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.newsletter-form button img {
  width: 16px;
  height: 16px;
}

@media (max-width: 820px) {
  .newsletter-card {
    padding-right: 48px;
  }
}
@media (max-width: 780px) {
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-card {
    padding: 28px 24px;
  }
  .newsletter-card h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .newsletter-form button {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .newsletter-card::before {
    display: none;
  }
  .newsletter-band {
    min-height: 581px;
  }
  .newsletter-shell {
    padding: 27px 0 26px;
  }
  .newsletter-card {
    width: min(354px, 100%);
    margin: 0 auto;
    padding: 28px 24px 27px;
    border-width: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 528px;
    justify-content: flex-start;
    background: transparent;
  }
  .newsletter-card .pill {
    align-self: center;
    min-height: 36px;
    padding: 0 16px;
  }
  .newsletter-card h2 {
    font-size: 45px;
    line-height: 36px;
    margin-top: 30px;
    max-width: 100%;
  }
  .newsletter-card p {
    font-size: 20px;
    line-height: 25px;
    margin-top: 15px;
    max-width: 304px;
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
    max-width: 292px;
    margin-top: auto;
  }
  .newsletter-form input {
    min-height: 56px;
    padding: 0 30px;
    font-size: 18px;
    text-align: left;
    border-width: 1.736px;
    border-color: rgba(238, 251, 250, 0.4);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
  .newsletter-form button {
    min-height: 56px;
    min-width: unset;
    width: 100%;
    border: 2px solid var(--mist);
    font-size: 18px;
    font-weight: 600;
    gap: 10px;
  }
  .newsletter-form button img {
    width: 16px;
    height: 16px;
  }
}
.about-page {
  padding: 0;
  overflow: hidden;
}

.about-page__hero {
  margin: 8px auto 0;
}

.about-page__hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 97px;
  align-items: center;
  min-height: 665px;
  padding: 78px 72px 92px 64px;
  isolation: isolate;
}

.about-page__hero-frame {
  position: absolute;
  inset: 0;
  background: url("/assets/images/about/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 2;
}

.about-page__hero-surface {
  position: absolute;
  left: 52px;
  right: 52px;
  top: 56px;
  bottom: 58px;
  border-radius: 40px;
  pointer-events: none;
  z-index: 0;
}

.about-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(54, 51, 51, 0.86);
  border-radius: var(--radius-pill);
  background: transparent;
  margin-bottom: 42px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.about-page__eyebrow-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--ink);
}

.about-page__eyebrow-icon svg {
  width: 100%;
  height: 100%;
}

.about-page__hero-copy,
.about-page__mini-stats {
  position: relative;
  z-index: 1;
}

.about-page__hero-copy {
  max-width: 827px;
  padding-top: 30px;
}

.about-page__hero-copy h1 {
  margin: 0;
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(48px, 5vw, 55px);
  font-weight: 700;
  line-height: 1.12;
  max-width: 507px;
}

.about-page__hero-copy p {
  max-width: 827px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 30px;
}

.about-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 29px;
}

.about-page__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.about-page__button--primary {
  background: var(--teal);
  color: var(--mist);
}

.about-page__button--secondary {
  background: var(--mist);
  color: var(--teal);
}

.about-page__button-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.about-page__button-icon svg {
  width: 100%;
  height: 100%;
}

.about-page__mini-stats {
  display: grid;
  gap: 24px;
  padding-top: 46px;
}

.about-page__mini-stat {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 24px;
  border-radius: 15px;
  background: var(--mist);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.about-page__mini-stat-icon-wrap {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--teal);
}

.about-page__mini-stat p,
.about-page__mini-stat strong {
  margin: 0;
}

.about-page__mini-stat strong {
  display: block;
  color: #101828;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.about-page__mini-stat p {
  margin-top: 2px;
  color: #6a7282;
  font-size: 14px;
  line-height: 20px;
}

.about-page__highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
}

.about-page__highlight-card {
  min-height: 236px;
  padding: 26px;
  border-radius: 18px;
  background: var(--teal);
  box-shadow: var(--shadow-card);
  color: var(--mist);
}

.about-page__highlight-card img,
.about-page__responsibility-card img {
  width: 40px;
  height: 40px;
}

.about-page__highlight-card h2,
.about-page__responsibility-card h3,
.about-page__cta-copy h2,
.about-page__section-heading h2,
.about-page__timeline-card h3 {
  margin: 0;
}

.about-page__highlight-card h2 {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.about-page__highlight-card p,
.about-page__responsibility-card p {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.5;
}

.about-page__employees {
  position: relative;
  isolation: isolate;
  margin-top: 58px;
  padding: 58px 0 57px;
}

.about-page__employees::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #eefbfa;
  z-index: -1;
}

.about-page__history-band {
  position: relative;
  height: 500px;
  margin-top: 0;
  overflow: hidden;
}

.about-page__history-band-image,
.about-page__history-band-frame {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
}

.about-page__history-band-image {
  position: absolute;
  width: 133.49%;
  height: 264.7%;
  left: -0.87%;
  top: -87.36%;
  max-width: none;
  opacity: 0.8;
}

.about-page__history-band-frame {
  top: 60px;
  left: 50%;
  width: min(1267px, 100% - 64px);
  transform: translateX(-50%);
}

.about-page__section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.about-page__section-heading h2 {
  color: #101828;
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
}

.about-page__section-heading p,
.about-page__history-outro {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.625;
}

.about-page__employee-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.about-page__employee-card {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(0, 157, 165, 0.18);
  box-shadow: none;
}

.about-page__employee-photo-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: rgba(0, 157, 165, 0.12);
}

.about-page__employee-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page__employee-body {
  flex: 1 1 auto;
  min-height: 171px;
  padding: 22px 18px 20px;
  background: rgba(0, 157, 165, 0.18);
}

.about-page__employee-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.about-page__employee-body p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.625;
}

.about-page__employee-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  margin-top: 18px;
}

.about-page__employee-links a {
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.about-page__history {
  margin-top: 0;
  padding: 82px 0 84px;
  background: rgba(238, 251, 250, 0.82);
}

.about-page__section-heading--history {
  margin-bottom: 24px;
}

.about-page__timeline-card {
  padding: 30px 36px;
  border-radius: 18px;
  background: rgba(0, 157, 165, 0.12);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.18);
}

.about-page__timeline-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}

.about-page__timeline {
  display: grid;
  gap: 16px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.about-page__timeline li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.about-page__timeline strong {
  color: var(--teal);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.about-page__timeline span {
  color: var(--ink);
  font-size: 16px;
  line-height: 26px;
}

.about-page__history-outro {
  margin-top: 34px;
}

.about-page__responsibility {
  margin-top: 88px;
}

.about-page__section-heading--compact {
  margin-bottom: 28px;
}

.about-page__responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.about-page__responsibility-card {
  min-height: 240px;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-card);
}

.about-page__responsibility-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.about-page__cta {
  margin-top: 112px;
  padding: 64px 0;
}

.about-page__cta-shell {
  padding: 48px 64px;
  border-radius: 30px;
  background: linear-gradient(106deg, #197176 2.5%, #094346 61%, #1e666a 104%);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  color: var(--mist);
}

.about-page__cta-copy {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.about-page__cta-copy h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
}

.about-page__cta-copy p {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.4;
}

.about-page__cta-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.about-page__cta-stat {
  padding: 24px;
  border: 1px solid rgba(238, 251, 250, 0.9);
  border-radius: 16px;
  text-align: center;
}

.about-page__cta-stat strong {
  display: block;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.about-page__cta-stat span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 1180px) {
  .about-page__hero-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    min-height: 0;
    padding: 72px 28px 70px;
  }
  .about-page__hero-surface {
    left: 32px;
    right: 32px;
    top: 56px;
    bottom: 72px;
  }
  .about-page__mini-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 0;
  }
  .about-page__history-band {
    height: 400px;
    margin-top: 48px;
  }
  .about-page__history-band-frame {
    top: 48px;
    width: calc(100% - 48px);
  }
  .about-page__highlights,
  .about-page__responsibility-grid,
  .about-page__cta-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-page__employee-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .about-page__hero-stage {
    padding: 64px 20px 56px;
  }
  .about-page__hero-surface {
    left: 20px;
    right: 20px;
    top: 44px;
    bottom: 56px;
  }
  .about-page__history-band {
    height: 320px;
    margin-top: 40px;
  }
  .about-page__history-band-frame {
    top: 36px;
    width: calc(100% - 32px);
  }
  .about-page__highlights,
  .about-page__employee-grid,
  .about-page__responsibility-grid,
  .about-page__cta-stats,
  .about-page__mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-page__cta-shell {
    padding: 40px 28px;
  }
}
@media (max-width: 680px) {
  .about-page__hero {
    margin-top: 12px;
  }
  .about-page__hero-stage {
    gap: 16px;
    padding: 12px 0 24px;
  }
  .about-page__hero-frame,
  .about-page__hero-surface {
    display: none;
  }
  .about-page__hero-copy {
    padding-top: 0;
  }
  .about-page__eyebrow {
    margin-bottom: 20px;
  }
  .about-page__hero-copy h1 {
    font-size: 42px;
  }
  .about-page__hero-copy p {
    font-size: 18px;
    line-height: 1.55;
  }
  .about-page__history-band {
    height: 240px;
    margin-top: 32px;
  }
  .about-page__history-band-frame {
    top: 24px;
    width: calc(100% - 24px);
  }
  .about-page__highlights,
  .about-page__employee-grid,
  .about-page__responsibility-grid,
  .about-page__cta-stats,
  .about-page__mini-stats {
    grid-template-columns: 1fr;
  }
  .about-page__highlight-card,
  .about-page__responsibility-card,
  .about-page__employee-body,
  .about-page__timeline-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-page__cta-copy h2,
  .about-page__section-heading h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .about-page__cta-copy p,
  .about-page__section-heading p,
  .about-page__history-outro {
    font-size: 16px;
    line-height: 1.55;
  }
  .about-page__timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .about-page__employee-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-page__cta-stat strong {
    font-size: 40px;
  }
}
.collection-hub-page {
  padding-bottom: 0;
  color: #363333;
  font-family: var(--sans);
}
.collection-hub-page * {
  box-sizing: border-box;
}
.collection-hub-page h1,
.collection-hub-page h2,
.collection-hub-page h3,
.collection-hub-page p,
.collection-hub-page ul {
  margin: 0;
}
.collection-hub-page img {
  display: block;
  max-width: 100%;
}
.collection-hub-page ul {
  padding: 0;
  list-style: none;
}
.collection-hub-page__hero-shell {
  position: relative;
  width: min(1274px, 100vw - 132px);
  height: 334px;
  padding: 0;
  margin-top: 62px;
  margin-bottom: 66px;
}
.collection-hub-page__hero-frame {
  position: absolute;
  inset: 0;
  background: url("/assets/images/collection-hub/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
}
.collection-hub-page__hero-copy {
  position: absolute;
  top: 82px;
  left: 74px;
  z-index: 1;
  width: 612px;
}
.collection-hub-page__hero-copy h1 {
  color: #009da5;
  font-family: "Arno Pro", var(--serif);
  width: 612px;
  font-size: 55px;
  font-weight: 700;
  line-height: 72px;
}
.collection-hub-page__hero-copy p {
  width: 556px;
  margin-top: 9px;
  font-size: 20px;
  line-height: 30px;
}
.collection-hub-page__rail {
  position: relative;
  padding: 62px 0 52px;
}
.collection-hub-page__rail::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 304px;
  background: #009da5;
}
.collection-hub-page__rail-shell {
  position: relative;
  z-index: 1;
  width: min(1270px, 100vw - 132px);
  margin: 0 auto;
}
.collection-hub-page__card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 19px;
}
.collection-hub-page__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 180px;
  padding: 26px;
  border-radius: 15px;
  background: rgba(238, 251, 250, 0.7);
  border: 1px solid rgba(238, 251, 250, 0.45);
  color: #363333;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.collection-hub-page__card:hover {
  transform: translateY(-2px);
  background: rgba(238, 251, 250, 0.82);
}
.collection-hub-page__card h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.collection-hub-page__card p {
  max-width: 259px;
  font-size: 16px;
  line-height: 24px;
}
.collection-hub-page__card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 32px;
}
.collection-hub-page__card-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.collection-hub-page__card-arrow {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.collection-hub-page__benefits {
  margin-top: 114px;
  margin-bottom: 62px;
  padding: 34px;
  border-radius: 30px;
  background: #eefbfa;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.collection-hub-page__benefits > h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.collection-hub-page__benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.collection-hub-page__benefit-group h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.collection-hub-page__benefit-group ul {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.collection-hub-page__benefit-group li {
  position: relative;
  padding-left: 13px;
  font-size: 16px;
  line-height: 24px;
}
.collection-hub-page__benefit-group li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1200px) {
  .collection-hub-page__hero-shell {
    width: auto;
    height: auto;
    min-height: 320px;
    padding: 56px 48px 74px;
  }
  .collection-hub-page__hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(612px, 100%);
  }
  .collection-hub-page__hero-copy h1,
  .collection-hub-page__hero-copy p {
    width: auto;
  }
  .collection-hub-page__card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .collection-hub-page__rail-shell {
    width: auto;
  }
}
@media (max-width: 800px) {
  .collection-hub-page {
    padding-bottom: 0;
  }
  .collection-hub-page__rail {
    padding-top: 36px;
    padding-bottom: 84px;
    background: #009da5;
  }
  .collection-hub-page__rail::before {
    display: none;
  }
  .collection-hub-page__hero-shell {
    min-height: 0;
    width: auto;
    padding: 48px 24px 42px;
    margin-top: 34px;
    margin-bottom: 42px;
  }
  .collection-hub-page__hero-frame {
    background-size: cover;
  }
  .collection-hub-page__hero-copy p {
    font-size: 18px;
    line-height: 1.5;
  }
  .collection-hub-page__benefits {
    margin-top: 42px;
    margin-bottom: 0;
    padding: 24px;
  }
  .collection-hub-page__benefits-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .collection-hub-page__rail {
    padding-top: 24px;
    padding-bottom: 72px;
  }
  .collection-hub-page__rail-shell {
    padding-left: 16px;
    padding-right: 16px;
  }
  .collection-hub-page__card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .collection-hub-page__card {
    min-height: 0;
  }
  .collection-hub-page__hero-shell {
    height: auto;
    margin-top: 12px;
    margin-bottom: 32px;
    padding: 20px 16px 0;
  }
  .collection-hub-page__hero-frame {
    display: none;
  }
  .collection-hub-page__hero-copy {
    position: static;
    width: auto;
  }
  .collection-hub-page__hero-copy h1 {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.12;
  }
  .collection-hub-page__hero-copy p {
    width: auto;
    font-size: 16px;
    line-height: 1.5;
  }
  .collection-hub-page__benefits {
    padding: 20px;
    border-radius: 24px;
  }
}

.collection-community-page {
  color: #094346;
  font-family: var(--sans);
  overflow: hidden;
}
.collection-community-page * {
  box-sizing: border-box;
}
.collection-community-page h1,
.collection-community-page h2,
.collection-community-page h3,
.collection-community-page p,
.collection-community-page ol,
.collection-community-page ul {
  margin: 0;
}
.collection-community-page ol,
.collection-community-page ul {
  padding: 0;
}
.collection-community-page img,
.collection-community-page svg {
  display: block;
}
.collection-community-page__hero-band {
  background: var(--hero-surface);
}
.collection-community-page__breadcrumbs-shell {
  padding-top: 34px;
}
.collection-community-page__breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(57, 84, 94, 0.9);
}
.collection-community-page__breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.collection-community-page__breadcrumbs li:not(:first-child)::before {
  content: ">";
  color: rgba(57, 84, 94, 0.6);
}
.collection-community-page__breadcrumbs a,
.collection-community-page__breadcrumbs span {
  color: inherit;
  text-decoration: none;
}
.collection-community-page__breadcrumbs .is-current span {
  color: #094346;
  font-weight: 600;
}
.collection-community-page__breadcrumb-home {
  width: 16px;
  height: 16px;
  color: rgba(57, 84, 94, 0.9);
}
.collection-community-page__breadcrumb-home svg {
  width: 16px;
  height: 16px;
}
.collection-community-page__hero-shell {
  position: relative;
  margin-top: 50px;
  padding: 72px 88px;
  min-height: 390px;
}
.collection-community-page__hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: fill;
}
.collection-community-page__hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 272px;
  gap: 40px;
  align-items: center;
}
.collection-community-page__hero-eyebrow, .collection-community-page__download-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.collection-community-page__hero-eyebrow img, .collection-community-page__download-eyebrow img {
  width: 16px;
  height: 16px;
}
.collection-community-page__hero-eyebrow {
  border: 1px solid rgba(54, 51, 51, 0.24);
  color: #363333;
}
.collection-community-page__hero-eyebrow img {
  filter: brightness(0);
}
.collection-community-page__hero-copy h1 {
  margin-top: 22px;
  color: #009da5;
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(42px, 5vw, 55px);
  line-height: 1.16;
  font-weight: 700;
}
.collection-community-page__hero-copy > p {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.5;
  color: #363333;
}
.collection-community-page__hero-actions, .collection-community-page__closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.collection-community-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.collection-community-page__button:hover {
  transform: translateY(-1px);
}
.collection-community-page__button--primary {
  background: #009da5;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 157, 165, 0.22);
}
.collection-community-page__button--light {
  gap: 8px;
  background: #eefbfa;
  color: #363333;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.collection-community-page__button--light svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.collection-community-page__button--outline {
  background: transparent;
  color: #eefbfa;
  border: 1.5px solid rgba(238, 251, 250, 0.9);
}
.collection-community-page__button--outline-teal {
  background: transparent;
  color: #009da5;
  border: 1.5px solid #009da5;
}
.collection-community-page__hero-facts {
  display: grid;
  gap: 18px;
  width: 272px;
}
.collection-community-page__hero-fact {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 18px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.collection-community-page__hero-fact p {
  font-size: 13px;
  line-height: 1.4;
  color: #6a7282;
}
.collection-community-page__hero-fact strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.45;
  color: #101828;
}
.collection-community-page__hero-fact-icon, .collection-community-page__benefit-icon, .collection-community-page__payout-icon, .collection-community-page__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.collection-community-page__hero-fact-icon, .collection-community-page__benefit-icon, .collection-community-page__payout-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #009da5;
  color: #fff;
}
.collection-community-page__hero-fact-icon svg, .collection-community-page__benefit-icon svg, .collection-community-page__payout-icon svg {
  width: 24px;
  height: 24px;
}
.collection-community-page__metric-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.collection-community-page__metric-icon.is-full {
  width: 48px;
  height: 48px;
}
.collection-community-page__stats-shell {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 48px;
  padding-bottom: 34px;
}
.collection-community-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.collection-community-page__stat-card {
  min-height: 176px;
  padding: 26px 26px 24px;
  border-radius: 15px;
  background: #009da5;
  color: #fff;
  text-align: center;
}
.collection-community-page__stat-card strong {
  display: block;
  margin-top: 12px;
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
}
.collection-community-page__stat-card p {
  margin-top: 4px;
  font-size: 16px;
  line-height: 24px;
  color: #eefbfa;
}
.collection-community-page__button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.collection-community-page__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  color: #fff;
}
.collection-community-page__stat-icon img,
.collection-community-page__stat-icon svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.collection-community-page__stat-icon img.collection-community-page__metric-icon.is-full {
  width: 48px;
  height: 48px;
}
.collection-community-page__journey-band {
  background: #eefbfa;
}
.collection-community-page__journey-shell {
  padding-top: 58px;
  padding-bottom: 78px;
}
.collection-community-page__steps-section {
  padding-top: 0;
}
.collection-community-page__section-heading {
  margin-bottom: 32px;
}
.collection-community-page__section-heading h2 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
  color: #363333;
}
.collection-community-page__steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 16px;
  align-items: start;
}
.collection-community-page__step-card, .collection-community-page__facts-card, .collection-community-page__idea-card {
  position: relative;
  border-radius: 15px;
  background: rgba(0, 157, 165, 0.2);
  border: 1px solid rgba(0, 0, 0, 0);
}
.collection-community-page__idea-card {
  overflow: hidden;
}
.collection-community-page__step-card {
  min-height: 160px;
  padding: 22px;
}
.collection-community-page__step-card--final, .collection-community-page__facts-card {
  min-height: 170px;
}
.collection-community-page__facts-card {
  min-height: 216px;
  background: rgba(238, 251, 250, 0.3);
}
.collection-community-page__step-badge {
  position: absolute;
  top: -9px;
  left: -9px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(95deg, #197176 2%, #094346 61%, #1e666a 104%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 2px;
  box-shadow: 0 10px 24px rgba(9, 67, 70, 0.18);
}
.collection-community-page__step-content {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.collection-community-page__step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #009da5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.collection-community-page__step-icon img {
  width: 20px;
  height: 20px;
}
.collection-community-page__step-card h3, .collection-community-page__facts-card h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #363333;
}
.collection-community-page__step-card p,
.collection-community-page__step-card li, .collection-community-page__facts-card p,
.collection-community-page__facts-card li {
  margin-top: 4px;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}
.collection-community-page__step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #009da5;
  text-decoration: none;
}
.collection-community-page__step-link img {
  width: 16px;
  height: 16px;
}
.collection-community-page__facts-card {
  padding: 24px;
}
.collection-community-page__facts-card h3 {
  font-weight: 600;
}
.collection-community-page__facts-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.collection-community-page__facts-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 0;
}
.collection-community-page__facts-card li img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-top: 2px;
  filter: invert(44%) sepia(86%) saturate(1058%) hue-rotate(141deg) brightness(92%) contrast(101%);
}
.collection-community-page__facts-card li span {
  margin-top: 0;
}
.collection-community-page__ideas-shell {
  padding-top: 72px;
  padding-bottom: 44px;
}
.collection-community-page__ideas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
}
.collection-community-page__idea-card {
  min-height: 227px;
  padding: 34px;
}
.collection-community-page__idea-card::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 28px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.22), rgba(96, 165, 250, 0));
  filter: blur(24px);
  opacity: 0.55;
  pointer-events: none;
}
.collection-community-page__idea-mark {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #009da5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.collection-community-page__idea-mark img,
.collection-community-page__idea-mark svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.collection-community-page__idea-glyph {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.collection-community-page__idea-copy h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #363333;
}
.collection-community-page__idea-copy p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 26px;
  color: #4a5565;
  max-width: 34ch;
}
.collection-community-page__idea-arrow {
  display: none;
}
.collection-community-page__benefits-shell, .collection-community-page__payout-shell, .collection-community-page__success-shell {
  padding-top: 28px;
  padding-bottom: 28px;
}
.collection-community-page__success-shell {
  background: #fff;
}
.collection-community-page__benefits-panel, .collection-community-page__payout-panel, .collection-community-page__success-card {
  border-radius: 24px;
  background: rgba(0, 157, 165, 0.15);
}
.collection-community-page__benefits-panel, .collection-community-page__payout-panel {
  border-radius: 24px;
  background: rgba(0, 157, 165, 0.15);
}
.collection-community-page__benefits-panel {
  display: grid;
  gap: 0;
  padding: 20px 24px;
}
.collection-community-page__success-card {
  border-radius: 16px;
  background: rgba(0, 157, 165, 0.15);
}
.collection-community-page__benefit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.collection-community-page__benefit-row span {
  font-size: 15px;
  line-height: 22px;
  color: #363333;
}
.collection-community-page__benefit-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #009da5;
}
.collection-community-page__payout-panel {
  padding: 28px;
}
.collection-community-page__payout-panel > p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: #4a5565;
  max-width: 98ch;
}
.collection-community-page__payout-panel > p:first-child {
  margin-top: 0;
}
.collection-community-page__payout-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.collection-community-page__payout-header h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #363333;
}
.collection-community-page__payout-header p {
  margin-top: 2px;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}
.collection-community-page__payout-example {
  margin-top: 16px;
  padding: 18px 22px;
  border-radius: 15px;
  background: #eefbfa;
  color: #009da5;
  font-family: "Inter", var(--sans);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
.collection-community-page__payout-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.collection-community-page__payout-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
}
.collection-community-page__payout-row strong {
  color: #009da5;
  font-family: "Inter", var(--sans);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.collection-community-page__payout-row span {
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}
.collection-community-page__download-band {
  position: relative;
  overflow: hidden;
  min-height: 396px;
  margin-top: 18px;
  background: #1f2121;
}
.collection-community-page__download-media {
  position: absolute;
  inset: 0;
}
.collection-community-page__download-media img {
  position: absolute;
  top: -29.77%;
  left: -1.65%;
  width: 101.68%;
  height: 254.62%;
  max-width: none;
}
.collection-community-page__download-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  min-height: inherit;
  padding: 0 clamp(48px, 4vw, 56px) 49px 82px;
  color: #eefbfa;
}
.collection-community-page__download-frame {
  position: absolute;
  z-index: 1;
  top: 43px;
  bottom: 49px;
  left: max(16px, (100% - 1280px) / 2);
  width: min(861px, 100% - 420px);
  pointer-events: none;
  overflow: visible;
}
.collection-community-page__download-frame img {
  display: block;
  width: 100%;
  height: 100%;
}
.collection-community-page__download-copy {
  position: relative;
  align-self: flex-start;
  padding-top: 118px;
  max-width: 480px;
}
.collection-community-page__download-copy h2 {
  margin-top: 14px;
  color: #f3efa1;
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(34px, 3.7vw, 55px);
  line-height: 1.08;
  font-weight: 700;
}
.collection-community-page__download-copy p {
  max-width: 34ch;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}
.collection-community-page__download-eyebrow {
  border: 1.5px solid rgba(255, 255, 255, 0.78);
  color: #fff;
}
.collection-community-page__download-eyebrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.collection-community-page__download-eyebrow img {
  filter: brightness(0) invert(1);
}
.collection-community-page__success-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.collection-community-page__success-card {
  position: relative;
  padding: 32px;
}
.collection-community-page__success-card p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}
.collection-community-page__success-name {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #363333;
}
.collection-community-page__success-attribution {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}
.collection-community-page__success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #009da5;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-community-page__success-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.collection-community-page__closing-band {
  padding: 32px 0 48px;
}
.collection-community-page__closing-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 24px;
  border-radius: 30px;
  background: linear-gradient(105.3deg, #197176 2.43%, #094346 61.23%, #1e666a 104.34%);
  color: #eefbfa;
}
.collection-community-page__closing-shell h2 {
  margin-top: 24px;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: #eefbfa;
}
.collection-community-page__closing-shell p {
  max-width: 52ch;
  margin-top: 24px;
  font-size: 20px;
  line-height: 28px;
  color: rgba(238, 251, 250, 0.9);
}
.collection-community-page__closing-icon {
  width: 48px;
  height: 48px;
}
.collection-community-page__closing-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}
.collection-community-page__closing-actions .collection-community-page__button--light {
  width: 154px;
  padding-inline: 0;
  color: #009da5;
}
.collection-community-page__closing-actions .collection-community-page__button--outline {
  width: 156px;
  padding-inline: 0;
}
@media (max-width: 1100px) {
  .collection-community-page__hero {
    grid-template-columns: 1fr;
  }
  .collection-community-page__hero-shell {
    padding: 56px 40px;
  }
  .collection-community-page__hero-facts, .collection-community-page__stats-grid, .collection-community-page__steps-grid, .collection-community-page__ideas-grid, .collection-community-page__success-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .collection-community-page__hero-facts {
    width: auto;
    padding-top: 0;
  }
  .collection-community-page__download-shell {
    align-items: flex-start;
    flex-direction: column;
  }
  .collection-community-page__download-frame {
    width: min(430px, 100% - 48px);
  }
  .collection-community-page__facts-card {
    grid-column: span 2;
  }
}
@media (max-width: 720px) {
  .collection-community-page__breadcrumbs-shell {
    padding-top: 24px;
  }
  .collection-community-page__hero-shell {
    margin-top: 12px;
    padding: 12px 0 24px;
    min-height: 0;
  }
  .collection-community-page__hero-frame {
    display: none !important;
  }
  .collection-community-page__hero-copy {
    padding: 0;
  }
  .collection-community-page__hero-copy h1 {
    max-width: none;
    font-size: 40px;
  }
  .collection-community-page__hero-copy > p {
    font-size: 15px;
  }
  .collection-community-page__hero-actions, .collection-community-page__closing-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .collection-community-page__step-card, .collection-community-page__facts-card, .collection-community-page__idea-card {
    padding: 22px;
  }
  .collection-community-page__benefits-panel, .collection-community-page__payout-panel, .collection-community-page__success-card {
    padding: 20px;
  }
  .collection-community-page__benefit-row {
    grid-template-columns: 1fr;
  }
  .collection-community-page__payout-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .collection-community-page__step-card, .collection-community-page__step-card--final, .collection-community-page__facts-card, .collection-community-page__idea-card {
    min-height: auto;
  }
  .collection-community-page__step-content {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }
  .collection-community-page__step-card h3, .collection-community-page__facts-card h3, .collection-community-page__idea-copy h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .collection-community-page__step-card p,
  .collection-community-page__step-card li, .collection-community-page__facts-card p,
  .collection-community-page__facts-card li, .collection-community-page__idea-copy p,
  .collection-community-page__idea-copy li {
    font-size: 16px;
  }
  .collection-community-page__idea-card {
    min-height: auto;
  }
  .collection-community-page__download-band {
    min-height: 0;
  }
  .collection-community-page__download-shell {
    padding: 42px 18px;
  }
  .collection-community-page__steps-grid, .collection-community-page__ideas-grid, .collection-community-page__success-grid {
    grid-template-columns: 1fr;
  }
  .collection-community-page__download-frame {
    display: none;
  }
  .collection-community-page__download-copy {
    padding-top: 32px;
    padding-left: 0;
  }
  .collection-community-page__download-copy h2 {
    font-size: 34px;
  }
  .collection-community-page__closing-shell {
    padding-inline: 18px;
  }
  .collection-community-page__closing-shell h2 {
    font-size: 30px;
    line-height: 34px;
  }
  .collection-community-page__idea-arrow {
    display: none;
  }
}

.collection-red-cross-page {
  color: #363333;
  font-family: var(--sans);
  overflow: hidden;
}
.collection-red-cross-page * {
  box-sizing: border-box;
}
.collection-red-cross-page h1,
.collection-red-cross-page h2,
.collection-red-cross-page h3,
.collection-red-cross-page p,
.collection-red-cross-page ol,
.collection-red-cross-page ul {
  margin: 0;
}
.collection-red-cross-page ol,
.collection-red-cross-page ul {
  padding: 0;
}
.collection-red-cross-page img,
.collection-red-cross-page svg {
  display: block;
}
.collection-red-cross-page__breadcrumbs-shell {
  padding-top: 34px;
}
.collection-red-cross-page__breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(57, 84, 94, 0.9);
}
.collection-red-cross-page__breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.collection-red-cross-page__breadcrumbs li:not(:first-child)::before {
  content: ">";
  color: rgba(57, 84, 94, 0.6);
}
.collection-red-cross-page__breadcrumbs a,
.collection-red-cross-page__breadcrumbs span {
  color: inherit;
  text-decoration: none;
}
.collection-red-cross-page__breadcrumbs .is-current span {
  color: #009da5;
  font-weight: 600;
}
.collection-red-cross-page__breadcrumb-home {
  width: 16px;
  height: 16px;
  color: rgba(57, 84, 94, 0.9);
}
.collection-red-cross-page__breadcrumb-home svg {
  width: 16px;
  height: 16px;
}
.collection-red-cross-page__hero-band {
  background: var(--hero-surface);
}
.collection-red-cross-page__hero-shell {
  position: relative;
  margin-top: 50px;
  padding: 72px 88px;
  min-height: 390px;
}
.collection-red-cross-page__hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: fill;
}
.collection-red-cross-page__hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 272px;
  gap: 40px;
  align-items: center;
}
.collection-red-cross-page__hero-copy {
  max-width: 620px;
}
.collection-red-cross-page__hero-copy h1 {
  margin-top: 18px;
  color: #009da5;
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1.06;
  font-weight: 700;
}
.collection-red-cross-page__hero-copy > p {
  margin-top: 18px;
  max-width: 59ch;
  font-size: 16px;
  line-height: 1.6;
  color: #363333;
}
.collection-red-cross-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(54, 51, 51, 0.24);
  border-radius: 999px;
  color: #363333;
  font-size: 14px;
  font-weight: 600;
}
.collection-red-cross-page__eyebrow img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}
.collection-red-cross-page__hero-actions, .collection-red-cross-page__closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.collection-red-cross-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.collection-red-cross-page__button:hover {
  transform: translateY(-1px);
}
.collection-red-cross-page__button--primary {
  background: #009da5;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 157, 165, 0.22);
}
.collection-red-cross-page__button--light {
  background: #eefbfa;
  color: #363333;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.collection-red-cross-page__button--outline {
  background: transparent;
  color: #009da5;
  border: 1.5px solid rgba(0, 157, 165, 0.7);
}
.collection-red-cross-page__button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.collection-red-cross-page__hero-facts {
  display: grid;
  gap: 18px;
  width: 272px;
}
.collection-red-cross-page__hero-fact, .collection-red-cross-page__stat-card {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.collection-red-cross-page__hero-fact {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 18px;
  border-radius: 15px;
}
.collection-red-cross-page__hero-fact p {
  font-size: 13px;
  line-height: 1.4;
  color: #6a7282;
}
.collection-red-cross-page__hero-fact strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.45;
  color: #101828;
}
.collection-red-cross-page__hero-fact-icon, .collection-red-cross-page__stat-icon, .collection-red-cross-page__step-icon, .collection-red-cross-page__closing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.collection-red-cross-page__hero-fact-icon, .collection-red-cross-page__step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #009da5;
  color: #fff;
}
.collection-red-cross-page__hero-fact-icon img,
.collection-red-cross-page__hero-fact-icon svg, .collection-red-cross-page__step-icon img,
.collection-red-cross-page__step-icon svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.collection-red-cross-page__stats-shell {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 48px;
  padding-bottom: 46px;
}
.collection-red-cross-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.collection-red-cross-page__stat-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 176px;
  padding: 26px 24px;
  border-radius: 15px;
  background: #009da5;
  color: #eefbfa;
  box-shadow: none;
}
.collection-red-cross-page__stat-card strong {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 400;
}
.collection-red-cross-page__stat-card p {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}
.collection-red-cross-page__stat-icon {
  width: 48px;
  height: 48px;
  color: #fff;
}
.collection-red-cross-page__stat-icon img,
.collection-red-cross-page__stat-icon svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.collection-red-cross-page__about-band {
  background: #009da5;
}
.collection-red-cross-page__about-shell, .collection-red-cross-page__steps-shell, .collection-red-cross-page__pricing-shell, .collection-red-cross-page__credit-shell {
  padding-top: 48px;
  padding-bottom: 48px;
}
.collection-red-cross-page__about-shell {
  color: #eefbfa;
}
.collection-red-cross-page__section-heading {
  margin-bottom: 24px;
}
.collection-red-cross-page__section-heading h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
  color: #363333;
}
.collection-red-cross-page__section-heading--light h2 {
  color: #eefbfa;
}
.collection-red-cross-page__about-body {
  font-size: 18px;
  line-height: 1.625;
  color: rgba(238, 251, 250, 0.96);
}
.collection-red-cross-page__about-highlight {
  margin-top: 24px;
  padding: 22px 32px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
}
.collection-red-cross-page__about-highlight p {
  font-size: 16px;
  line-height: 1.625;
  color: #eefbfa;
}
.collection-red-cross-page__steps-board {
  display: grid;
  gap: 16px;
}
.collection-red-cross-page__steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.collection-red-cross-page__steps-row--bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.collection-red-cross-page__steps-row--bottom .collection-red-cross-page__step-card:nth-child(1) {
  grid-column: 1;
}
.collection-red-cross-page__steps-row--bottom .collection-red-cross-page__step-card:nth-child(2) {
  grid-column: 2;
}
.collection-red-cross-page__step-card {
  position: relative;
  min-height: 160px;
  padding: 22px;
  border-radius: 30px;
  background: rgba(0, 157, 165, 0.15);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.collection-red-cross-page__step-card--large {
  min-height: 180px;
}
.collection-red-cross-page__step-card--compact {
  min-height: 156px;
}
.collection-red-cross-page__step-card h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #363333;
}
.collection-red-cross-page__step-card p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}
.collection-red-cross-page__step-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(95deg, #197176 2%, #094346 61%, #1e666a 104%);
  color: #eefbfa;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 2px;
}
.collection-red-cross-page__step-content {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.collection-red-cross-page__step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.collection-red-cross-page__step-icon img,
.collection-red-cross-page__step-icon svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.collection-red-cross-page__step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #009da5;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-decoration: none;
}
.collection-red-cross-page__step-link img {
  width: 16px;
  height: 16px;
}
.collection-red-cross-page__pricing-body {
  font-size: 18px;
  line-height: 1.625;
  color: #363333;
}
.collection-red-cross-page__pricing-highlight {
  margin-top: 24px;
  padding: 20px 32px 22px;
  border-radius: 15px;
  background: rgba(0, 157, 165, 0.2);
}
.collection-red-cross-page__pricing-highlight p {
  font-size: 16px;
  line-height: 1.625;
  color: #363333;
}
.collection-red-cross-page__credit-panel {
  padding: 32px;
  border-radius: 30px;
  background: rgba(0, 157, 165, 0.15);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.collection-red-cross-page__credit-intro {
  font-size: 16px;
  line-height: 1.5;
  color: #363333;
}
.collection-red-cross-page__credit-code {
  display: grid;
  gap: 2px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 15px;
  background: #eefbfa;
  color: #009da5;
  font-family: "Menlo", "Consolas", monospace;
  font-size: 16px;
  line-height: 24px;
}
.collection-red-cross-page__credit-panel h3 {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #363333;
}
.collection-red-cross-page__credit-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.collection-red-cross-page__credit-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.collection-red-cross-page__credit-row strong {
  color: #009da5;
  font-family: "Menlo", "Consolas", monospace;
  font-size: 16px;
  line-height: 24px;
}
.collection-red-cross-page__credit-row span {
  font-size: 16px;
  line-height: 24px;
  color: #363333;
}
.collection-red-cross-page__closing-band {
  padding: 20px 0 48px;
  background: linear-gradient(92deg, #e6d6d6 3%, #c4e8ea 55%, #d5d7be 115%);
}
.collection-red-cross-page__closing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 46px 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.collection-red-cross-page__closing-card h2 {
  margin-top: 16px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #009da5;
}
.collection-red-cross-page__closing-card p {
  max-width: 672px;
  margin-top: 10px;
  font-size: 20px;
  line-height: 28px;
  color: #009da5;
}
.collection-red-cross-page__closing-icon {
  width: 80px;
  height: 80px;
  color: #009da5;
}
.collection-red-cross-page__closing-icon img,
.collection-red-cross-page__closing-icon svg {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
@media (max-width: 1100px) {
  .collection-red-cross-page__hero {
    grid-template-columns: 1fr;
  }
  .collection-red-cross-page__hero-shell {
    padding: 56px 40px;
  }
  .collection-red-cross-page__hero-facts, .collection-red-cross-page__stats-grid, .collection-red-cross-page__steps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .collection-red-cross-page__hero-facts {
    width: auto;
    padding-top: 0;
  }
  .collection-red-cross-page__steps-row--bottom .collection-red-cross-page__step-card:nth-child(1),
  .collection-red-cross-page__steps-row--bottom .collection-red-cross-page__step-card:nth-child(2) {
    grid-column: auto;
  }
}
@media (max-width: 720px) {
  .collection-red-cross-page__breadcrumbs-shell {
    padding-top: 24px;
  }
  .collection-red-cross-page__hero-shell {
    margin-top: 12px;
    padding: 12px 0 24px;
    min-height: 0;
  }
  .collection-red-cross-page__hero-frame {
    display: none !important;
  }
  .collection-red-cross-page__hero-copy {
    padding: 0;
  }
  .collection-red-cross-page__hero-copy h1 {
    font-size: 40px;
  }
  .collection-red-cross-page__hero-actions, .collection-red-cross-page__closing-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .collection-red-cross-page__button {
    width: 100%;
  }
  .collection-red-cross-page__hero-facts, .collection-red-cross-page__stats-grid, .collection-red-cross-page__steps-row {
    grid-template-columns: 1fr;
  }
  .collection-red-cross-page__about-shell, .collection-red-cross-page__steps-shell, .collection-red-cross-page__pricing-shell, .collection-red-cross-page__credit-shell, .collection-red-cross-page__closing-band {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .collection-red-cross-page__stats-shell {
    padding-bottom: 32px;
  }
  .collection-red-cross-page__step-card, .collection-red-cross-page__credit-panel, .collection-red-cross-page__closing-card {
    padding: 22px;
    border-radius: 22px;
  }
  .collection-red-cross-page__pricing-highlight, .collection-red-cross-page__about-highlight {
    padding: 18px 22px 20px;
  }
  .collection-red-cross-page__credit-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .collection-red-cross-page__closing-card h2 {
    font-size: 30px;
    line-height: 34px;
  }
}

.collection-retail-page {
  color: #363333;
  font-family: var(--sans);
  overflow: hidden;
}
.collection-retail-page * {
  box-sizing: border-box;
}
.collection-retail-page h1,
.collection-retail-page h2,
.collection-retail-page h3,
.collection-retail-page p,
.collection-retail-page ul {
  margin: 0;
}
.collection-retail-page img {
  display: block;
  max-width: 100%;
}
.collection-retail-page ul {
  padding: 0;
  list-style: none;
}
.collection-retail-page__hero-shell {
  position: relative;
  margin-top: 50px;
  padding: 80px 88px;
  min-height: 473px;
  display: flex;
  flex-direction: column;
}
.collection-retail-page__hero-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  --frame-inset: 0.2344%;
  --frame-top-left-end: 9.77898%;
  --frame-top-right-start: 17.6214%;
  --frame-bottom-left-end: 78.2414%;
  --frame-bottom-right-start: 86.56797%;
}
.collection-retail-page__hero-frame-segment {
  position: absolute;
  display: block;
  background: #009da5;
}
.collection-retail-page__hero-frame-segment--left, .collection-retail-page__hero-frame-segment--right {
  top: var(--frame-inset);
  bottom: 0.8824%;
  width: 6px;
}
.collection-retail-page__hero-frame-segment--left {
  left: var(--frame-inset);
}
.collection-retail-page__hero-frame-segment--right {
  right: var(--frame-inset);
}
.collection-retail-page__hero-frame-segment--top-left, .collection-retail-page__hero-frame-segment--top-right, .collection-retail-page__hero-frame-segment--bottom-left, .collection-retail-page__hero-frame-segment--bottom-right {
  height: 6px;
}
.collection-retail-page__hero-frame-segment--top-left {
  top: var(--frame-inset);
  left: var(--frame-inset);
  width: calc(var(--frame-top-left-end) - var(--frame-inset));
}
.collection-retail-page__hero-frame-segment--top-right {
  top: var(--frame-inset);
  left: var(--frame-top-right-start);
  right: var(--frame-inset);
}
.collection-retail-page__hero-frame-segment--bottom-left {
  bottom: 0.8824%;
  left: var(--frame-inset);
  right: calc(100% - var(--frame-bottom-left-end));
}
.collection-retail-page__hero-frame-segment--bottom-right {
  bottom: 0.8824%;
  left: var(--frame-bottom-right-start);
  right: var(--frame-inset);
}
.collection-retail-page__hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 591px 272px;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}
.collection-retail-page__hero-copy {
  max-width: 591px;
}
.collection-retail-page__hero-copy h1 {
  margin-top: 22px;
  color: #009da5;
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(42px, 5vw, 55px);
  line-height: 1.16;
  font-weight: 700;
}
.collection-retail-page__hero-copy > p {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.5;
  color: #363333;
}
.collection-retail-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(54, 51, 51, 0.24);
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
}
.collection-retail-page__eyebrow img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}
.collection-retail-page__hero-actions, .collection-retail-page__closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.collection-retail-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.collection-retail-page__button img {
  width: 18px;
  height: 18px;
}
.collection-retail-page__button:hover {
  transform: translateY(-1px);
}
.collection-retail-page__button--primary {
  background: #009da5;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 157, 165, 0.22);
}
.collection-retail-page__button--light {
  background: #eefbfa;
  color: #363333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}
.collection-retail-page__button--light-filled {
  background: #eefbfa;
  color: #363333;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.collection-retail-page__button--light-filled img {
  display: none;
}
.collection-retail-page__button--outline-light {
  border: 2px solid rgba(238, 251, 250, 0.9);
  color: #fff;
  background: transparent;
}
.collection-retail-page__hero-facts {
  display: grid;
  gap: 24px;
  width: 272px;
}
.collection-retail-page__hero-fact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  min-height: 96px;
  border-radius: 15px;
  background: #eefbfa;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.collection-retail-page__hero-fact p {
  font-size: 14px;
  line-height: 1.2;
  color: #6a7282;
}
.collection-retail-page__hero-fact strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.4;
  color: #101828;
}
.collection-retail-page__hero-fact-icon, .collection-retail-page__benefit-icon, .collection-retail-page__payout-icon, .collection-retail-page__resource-kicker img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.collection-retail-page__hero-fact-icon, .collection-retail-page__benefit-icon, .collection-retail-page__payout-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #009da5;
  padding: 12px;
}
.collection-retail-page__hero-fact-icon img, .collection-retail-page__benefit-icon img, .collection-retail-page__payout-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.collection-retail-page__metrics-shell {
  position: relative;
  z-index: 2;
  margin-top: 54px;
  margin-bottom: 47px;
}
.collection-retail-page__metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.collection-retail-page__metric-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 26px 20px;
  min-height: 176px;
  border-radius: 15px;
  background: #009da5;
  color: #eefbfa;
}
.collection-retail-page__metric-card img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}
.collection-retail-page__metric-card strong {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 400;
}
.collection-retail-page__metric-card p {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}
.collection-retail-page__process-band {
  position: relative;
  padding: 45px 0 80px;
  background: #009da5;
}
.collection-retail-page__process-shell, .collection-retail-page__benefits-shell, .collection-retail-page__payout-shell, .collection-retail-page__resources-shell, .collection-retail-page__solutions-shell {
  padding-top: 48px;
  padding-bottom: 48px;
}
.collection-retail-page__process-shell {
  padding-top: 0;
  padding-bottom: 0;
}
.collection-retail-page__section-heading {
  margin-bottom: 24px;
}
.collection-retail-page__section-heading h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
}
.collection-retail-page__section-heading p {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.5;
  color: #4c5c6d;
}
.collection-retail-page__section-heading--light h2,
.collection-retail-page__section-heading--light p {
  color: #eefbfa;
}
.collection-retail-page__steps-board {
  display: grid;
  gap: 24px;
}
.collection-retail-page__steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.collection-retail-page__steps-row--bottom {
  grid-template-columns: minmax(0, 1fr) repeat(2, minmax(0, 1fr));
}
.collection-retail-page__steps-row--bottom .collection-retail-page__step-card {
  grid-column: 1;
}
.collection-retail-page__step-card {
  position: relative;
  padding: 34px 22px 22px;
  border-radius: 15px;
  background: rgba(238, 251, 250, 0.74);
  color: #363333;
}
.collection-retail-page__step-card--compact {
  min-height: 136px;
}
.collection-retail-page__step-card--expanded {
  min-height: 169px;
}
.collection-retail-page__step-card h3 {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
.collection-retail-page__step-card p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.45;
}
.collection-retail-page__step-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(95deg, #197176, #094346 61%, #1e666a);
  color: #eefbfa;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 2px;
}
.collection-retail-page__step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #009da5;
  padding: 10px;
}
.collection-retail-page__step-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.collection-retail-page__benefits-grid, .collection-retail-page__solutions-shell {
  display: grid;
  gap: 28px;
}
.collection-retail-page__benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.collection-retail-page__benefits-frame {
  padding: 0;
  border-radius: 15px;
  border: 0;
}
.collection-retail-page__benefit-card, .collection-retail-page__solution-card {
  padding: 26px 26px 24px;
  border-radius: 15px;
  background: #eefbfa;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.collection-retail-page__benefit-card {
  min-height: 194px;
}
.collection-retail-page__benefit-card h3 {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.collection-retail-page__benefit-card p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
}
.collection-retail-page__benefit-card p strong {
  color: #009da5;
  font-weight: 700;
}
.collection-retail-page__membership-band, .collection-retail-page__closing-band {
  position: relative;
  overflow: hidden;
}
.collection-retail-page__membership-band {
  margin-top: 24px;
  min-height: 396px;
  background: #202020;
}
.collection-retail-page__membership-media, .collection-retail-page__closing-media {
  position: absolute;
  inset: 0;
}
.collection-retail-page__membership-media img, .collection-retail-page__closing-media img {
  position: absolute;
  max-width: none;
}
.collection-retail-page__membership-media img {
  top: -87.77%;
  left: -27.43%;
  width: 127.5%;
  height: 319.34%;
}
.collection-retail-page__closing-media img {
  top: -13.53%;
  left: -12.23%;
  width: 114.92%;
  height: 163%;
}
.collection-retail-page__membership-frame, .collection-retail-page__closing-frame {
  position: absolute;
  inset: 42px 50% 48px 108px;
  transform: translateX(0);
  pointer-events: none;
  z-index: 1;
}
.collection-retail-page__membership-frame img, .collection-retail-page__closing-frame img {
  width: 100%;
  height: 100%;
}
.collection-retail-page__membership-frame {
  inset: 50% auto auto 0;
  width: min(867px, 100% - 380px);
  aspect-ratio: 867/310;
  transform: translateY(-50%);
  overflow: visible;
}
.collection-retail-page__membership-frame img {
  display: block;
  width: 100%;
  height: 100%;
}
.collection-retail-page__membership-content, .collection-retail-page__closing-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  min-height: inherit;
  padding-top: 92px;
  padding-bottom: 48px;
  color: #fff;
}
.collection-retail-page__membership-content h2, .collection-retail-page__closing-content h2 {
  max-width: 360px;
  color: #f3efa1;
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(42px, 5vw, 55px);
  line-height: 1.08;
  font-weight: 700;
}
.collection-retail-page__membership-content p, .collection-retail-page__closing-content p {
  max-width: 360px;
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.collection-retail-page__membership-content {
  align-items: center;
  width: min(1280px, 100% - 32px);
  margin: 0 auto;
  padding-top: 74px;
  padding-bottom: 66px;
  overflow: visible;
}
.collection-retail-page__membership-content h2 {
  max-width: 319px;
}
.collection-retail-page__membership-content p {
  max-width: 315px;
}
.collection-retail-page__membership-content .collection-retail-page__button {
  min-height: 56px;
  padding-inline: 32px;
}
.collection-retail-page__membership-copy {
  margin-left: clamp(24px, 2.5vw, 40px);
}
.collection-retail-page__payout-panel {
  border-radius: 30px;
  background: rgba(0, 157, 165, 0.15);
}
.collection-retail-page__payout-panel {
  padding: 34px;
}
.collection-retail-page__payout-panel > p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
}
.collection-retail-page__payout-header, .collection-retail-page__resource-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}
.collection-retail-page__payout-header h3 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}
.collection-retail-page__payout-header p {
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.45;
}
.collection-retail-page__payout-example {
  margin-top: 18px;
  padding: 25px;
  border-radius: 15px;
  background: #eefbfa;
  color: #009da5;
  font-family: "Inter", var(--sans);
  font-size: 14px;
  line-height: 1.4;
}
.collection-retail-page__payout-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.collection-retail-page__payout-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.collection-retail-page__payout-row strong {
  color: #009da5;
  font-family: "Inter", var(--sans);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.collection-retail-page__payout-row span {
  font-size: 16px;
  line-height: 1.5;
}
.collection-retail-page__resource-panel {
  display: grid;
  gap: 28px;
}
.collection-retail-page__resource-video-card {
  padding: 25px;
  border-radius: 30px;
  background: rgba(0, 157, 165, 0.22);
}
.collection-retail-page__resource-kicker img {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 10px;
  background: #009da5;
}
.collection-retail-page__resource-kicker strong,
.collection-retail-page__resource-kicker span {
  display: block;
}
.collection-retail-page__resource-kicker strong {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}
.collection-retail-page__resource-kicker span {
  font-size: 14px;
  line-height: 1.4;
}
.collection-retail-page__video-surface {
  position: relative;
  min-height: 656px;
  margin-top: 18px;
  border-radius: 15px;
  background: rgba(238, 251, 250, 0.98);
}
.collection-retail-page__resource-caption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 16px;
}
.collection-retail-page__download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 271px;
  padding: 48px;
  border-radius: 30px;
  background: linear-gradient(98deg, #2c989d 2.43%, #187d82 61.23%, #33b6bd 104.34%);
  color: #eefbfa;
}
.collection-retail-page__download-band .collection-retail-page__button {
  min-height: 56px;
  padding-inline: 24px;
}
.collection-retail-page__download-copy h3 {
  margin-top: 24px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
}
.collection-retail-page__download-copy p {
  max-width: 626px;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.6;
}
.collection-retail-page__download-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 2px solid rgba(238, 251, 250, 0.82);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}
.collection-retail-page__download-eyebrow img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.collection-retail-page__solutions-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.collection-retail-page__solution-card {
  background: rgba(0, 157, 165, 0.15);
}
.collection-retail-page__solution-card p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.5;
}
.collection-retail-page__solution-card ul {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 0;
}
.collection-retail-page__solution-card li {
  position: relative;
  padding-left: 14px;
  font-size: 16px;
  line-height: 1.5;
}
.collection-retail-page__solution-card li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: #009da5;
}
.collection-retail-page__closing-band {
  min-height: 699px;
  margin-top: 28px;
  background: #202020;
}
.collection-retail-page__closing-frame {
  top: 75px;
  bottom: 74px;
  left: 50%;
  width: min(1280px, 100% - 32px);
  transform: translateX(-50%);
}
.collection-retail-page__closing-content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 160px;
}
.collection-retail-page__closing-content h2,
.collection-retail-page__closing-content p {
  max-width: 615px;
}
.collection-retail-page__closing-content p {
  max-width: 600px;
}
.collection-retail-page__closing-actions {
  margin-top: 38px;
}
.collection-retail-page__closing-actions .collection-retail-page__button {
  min-height: 60px;
  padding-inline: 32px;
}
@media (max-width: 1200px) {
  .collection-retail-page__hero-shell {
    padding: 56px 40px;
  }
  .collection-retail-page__hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .collection-retail-page__hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
    padding-top: 0;
  }
  .collection-retail-page__metrics-grid, .collection-retail-page__benefits-grid, .collection-retail-page__steps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .collection-retail-page__steps-row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .collection-retail-page__steps-row--bottom .collection-retail-page__step-card {
    grid-column: span 2;
  }
  .collection-retail-page__membership-frame, .collection-retail-page__closing-frame {
    inset-inline: 48px;
  }
  .collection-retail-page__membership-frame {
    inset: 43px 48px 48px 48px;
    width: auto;
    height: auto;
    transform: none;
    left: auto;
  }
}
@media (max-width: 900px) {
  .collection-retail-page__metrics-grid, .collection-retail-page__benefits-grid, .collection-retail-page__steps-row, .collection-retail-page__solutions-shell, .collection-retail-page__hero-facts {
    grid-template-columns: 1fr;
  }
  .collection-retail-page__steps-row--bottom .collection-retail-page__step-card {
    grid-column: auto;
  }
  .collection-retail-page__download-band, .collection-retail-page__membership-content, .collection-retail-page__closing-content {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .collection-retail-page__membership-content, .collection-retail-page__closing-content {
    padding-top: 72px;
  }
  .collection-retail-page__membership-content {
    width: min(100% - 24px, 1280px);
  }
  .collection-retail-page__membership-copy {
    margin-left: 0;
  }
  .collection-retail-page__payout-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
@media (max-width: 640px) {
  .collection-retail-page__hero-shell {
    margin-top: 12px;
    padding: 12px 0 24px;
    min-height: 0;
  }
  .collection-retail-page__hero-frame {
    display: none;
  }
  .collection-retail-page__hero-copy > p {
    font-size: 18px;
  }
  .collection-retail-page__hero-actions, .collection-retail-page__closing-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .collection-retail-page__button {
    width: 100%;
  }
  .collection-retail-page__metrics-shell {
    margin-top: 0;
    margin-bottom: -64px;
  }
  .collection-retail-page__metric-card, .collection-retail-page__step-card, .collection-retail-page__benefit-card, .collection-retail-page__solution-card, .collection-retail-page__payout-panel, .collection-retail-page__resource-panel, .collection-retail-page__download-band {
    padding-left: 18px;
    padding-right: 18px;
  }
  .collection-retail-page__process-band {
    padding-top: 132px;
  }
  .collection-retail-page__membership-frame, .collection-retail-page__closing-frame {
    inset: 24px 18px;
  }
  .collection-retail-page__video-surface {
    min-height: 260px;
  }
  .collection-retail-page__download-copy h3 {
    font-size: 30px;
  }
}

.collection-serving-page {
  color: #363333;
  font-family: var(--sans);
  overflow: hidden;
}
.collection-serving-page * {
  box-sizing: border-box;
}
.collection-serving-page h1,
.collection-serving-page h2,
.collection-serving-page h3,
.collection-serving-page p {
  margin: 0;
}
.collection-serving-page a {
  text-decoration: none;
}
.collection-serving-page img {
  display: block;
  max-width: 100%;
}
.collection-serving-page details summary {
  list-style: none;
  cursor: pointer;
}
.collection-serving-page details summary::-webkit-details-marker {
  display: none;
}
.collection-serving-page__breadcrumbs {
  background: rgba(0, 157, 165, 0.15);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}
.collection-serving-page__breadcrumbs-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
}
.collection-serving-page__breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #202020;
}
.collection-serving-page__breadcrumb-item img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.collection-serving-page__breadcrumb-item--current {
  color: #009da5;
  font-weight: 600;
}
.collection-serving-page__hero-shell {
  position: relative;
  margin-top: 50px;
  padding: 80px 88px;
  min-height: 447px;
  display: flex;
  flex-direction: column;
}
.collection-serving-page__hero-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  --frame-inset: 0.2344%;
  --frame-top-left-end: 13.97898%;
  --frame-top-right-start: 20.9214%;
  --frame-bottom-left-end: 80.7414%;
  --frame-bottom-right-start: 88.06797%;
}
.collection-serving-page__hero-frame-segment {
  position: absolute;
  display: block;
  background: #009da5;
}
.collection-serving-page__hero-frame-segment--left, .collection-serving-page__hero-frame-segment--right {
  top: var(--frame-inset);
  bottom: 0.8824%;
  width: 6px;
}
.collection-serving-page__hero-frame-segment--left {
  left: var(--frame-inset);
}
.collection-serving-page__hero-frame-segment--right {
  right: var(--frame-inset);
}
.collection-serving-page__hero-frame-segment--top-left, .collection-serving-page__hero-frame-segment--top-right, .collection-serving-page__hero-frame-segment--bottom-left, .collection-serving-page__hero-frame-segment--bottom-right {
  height: 6px;
}
.collection-serving-page__hero-frame-segment--top-left {
  top: var(--frame-inset);
  left: var(--frame-inset);
  width: calc(var(--frame-top-left-end) - var(--frame-inset));
}
.collection-serving-page__hero-frame-segment--top-right {
  top: var(--frame-inset);
  left: var(--frame-top-right-start);
  right: var(--frame-inset);
}
.collection-serving-page__hero-frame-segment--bottom-left {
  bottom: 0.8824%;
  left: var(--frame-inset);
  right: calc(100% - var(--frame-bottom-left-end));
}
.collection-serving-page__hero-frame-segment--bottom-right {
  bottom: 0.8824%;
  left: var(--frame-bottom-right-start);
  right: var(--frame-inset);
}
.collection-serving-page__hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 696px) 272px;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.collection-serving-page__hero-copy h1 {
  margin-top: 24px;
  color: #009da5;
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(42px, 5vw, 55px);
  line-height: 1.16;
  font-weight: 700;
}
.collection-serving-page__hero-copy > p {
  margin-top: 24px;
  max-width: 717px;
  font-size: 20px;
  line-height: 1.5;
  color: #363333;
}
.collection-serving-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(54, 51, 51, 0.24);
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
}
.collection-serving-page__eyebrow img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}
.collection-serving-page__hero-actions, .collection-serving-page__festival-actions, .collection-serving-page__closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.collection-serving-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 47px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.collection-serving-page__button:hover {
  transform: translateY(-1px);
}
.collection-serving-page__button img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.collection-serving-page__button--primary {
  background: #009da5;
  color: #eefbfa;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.collection-serving-page__button--light {
  background: #eefbfa;
  color: #363333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}
.collection-serving-page__button--light-filled {
  background: #eefbfa;
  color: #363333;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.collection-serving-page__button--outline-light {
  border: 2px solid rgba(238, 251, 250, 0.95);
  color: #eefbfa;
  background: transparent;
}
.collection-serving-page__button--outline-light img {
  filter: brightness(0) invert(1);
}
.collection-serving-page__hero-facts {
  display: grid;
  gap: 24px;
  width: 272px;
}
.collection-serving-page__hero-fact {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 24px;
  border-radius: 15px;
  background: #eefbfa;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.collection-serving-page__hero-fact p {
  font-size: 14px;
  line-height: 1.2;
  color: #6a7282;
}
.collection-serving-page__hero-fact strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.4;
  color: #101828;
}
.collection-serving-page__hero-fact-icon, .collection-serving-page__benefit-icon, .collection-serving-page__impact-icon, .collection-serving-page__step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.collection-serving-page__hero-fact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #009da5;
  padding: 12px;
}
.collection-serving-page__hero-fact-icon img {
  width: 24px;
  height: 24px;
}
.collection-serving-page__benefits-shell {
  padding-top: 48px;
  margin-bottom: 48px;
}
.collection-serving-page__benefits-grid, .collection-serving-page__impact-grid, .collection-serving-page__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.collection-serving-page__benefit-card {
  min-height: 270px;
  padding: 34px;
  border-radius: 15px;
  background: #009da5;
  color: #eefbfa;
}
.collection-serving-page__benefit-card h2 {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}
.collection-serving-page__benefit-card p {
  margin-top: 12px;
  max-width: 306px;
  font-size: 16px;
  line-height: 1.5;
}
.collection-serving-page__benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 16px;
}
.collection-serving-page__benefit-icon img {
  width: 32px;
  height: 32px;
}
.collection-serving-page__process-band, .collection-serving-page__testimonials-band {
  background: #fff;
}
.collection-serving-page__process-shell, .collection-serving-page__testimonials-shell {
  padding-top: 64px;
  padding-bottom: 96px;
}
.collection-serving-page__section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}
.collection-serving-page__section-heading h2 {
  font-size: clamp(32px, 4vw, 36px);
  line-height: 1.12;
  font-weight: 500;
  color: #363333;
}
.collection-serving-page__section-heading p {
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.4;
  color: #363333;
}
.collection-serving-page__steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 25px;
}
.collection-serving-page__step-card {
  position: relative;
  display: flex;
  gap: 12px;
  min-height: 136px;
  padding: 38px 22px 22px;
  border-radius: 15px;
  background: rgba(0, 157, 165, 0.2);
}
.collection-serving-page__step-card h3 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #101828;
}
.collection-serving-page__step-card p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.43;
  color: #4a5565;
}
.collection-serving-page__step-number {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(95deg, #197176 2.43%, #094346 61.22%, #1e666a 104.34%);
  color: #eefbfa;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 2px;
}
.collection-serving-page__step-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: #009da5;
  padding: 10px;
}
.collection-serving-page__step-icon img {
  width: 20px;
  height: 20px;
}
.collection-serving-page__registration-card {
  margin-top: 64px;
  padding: 92px 24px;
  border-radius: 30px;
  background: #009da5;
  text-align: center;
  color: #eefbfa;
}
.collection-serving-page__registration-card h2 {
  font-size: clamp(30px, 4vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}
.collection-serving-page__registration-card p {
  max-width: 921px;
  margin: 24px auto 0;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}
.collection-serving-page__registration-card .collection-serving-page__button {
  margin-top: 36px;
}
.collection-serving-page__impact-band {
  background: #fff;
}
.collection-serving-page__impact-shell, .collection-serving-page__pet-shell, .collection-serving-page__faq-shell, .collection-serving-page__closing-shell {
  padding-top: 64px;
  padding-bottom: 64px;
}
.collection-serving-page__impact-card, .collection-serving-page__testimonial-card {
  border-radius: 15px;
}
.collection-serving-page__impact-card {
  display: grid;
  justify-items: center;
  min-height: 220px;
  padding: 34px 24px;
  text-align: center;
  background: rgba(0, 157, 165, 0.2);
}
.collection-serving-page__impact-card strong {
  margin-top: 22px;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: #009da5;
}
.collection-serving-page__impact-card h3 {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #363333;
}
.collection-serving-page__impact-card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #363333;
}
.collection-serving-page__impact-icon {
  width: 64px;
  height: 64px;
}
.collection-serving-page__impact-icon img {
  width: 64px;
  height: 64px;
}
.collection-serving-page__pet-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 175px;
}
.collection-serving-page__pet-card h2 {
  margin-top: 24px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: #363333;
}
.collection-serving-page__pet-card p {
  max-width: 602px;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.625;
  color: #363333;
}
.collection-serving-page__pet-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #363333;
}
.collection-serving-page__pet-kicker img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.collection-serving-page__festival-band {
  position: relative;
  min-height: 699px;
  background: #000;
  overflow: hidden;
}
.collection-serving-page__festival-media {
  position: absolute;
  inset: 0;
}
.collection-serving-page__festival-media img {
  position: absolute;
  top: -122.15%;
  left: 0;
  width: 126.83%;
  height: 404.67%;
  max-width: none;
}
.collection-serving-page__festival-shell {
  position: relative;
  padding-top: 65px;
  padding-bottom: 65px;
}
.collection-serving-page__festival-frame {
  position: absolute;
  top: 65px;
  left: 50%;
  width: min(1275px, 100%);
  height: 550px;
  transform: translateX(-50%);
  overflow: hidden;
  pointer-events: none;
}
.collection-serving-page__festival-frame img {
  position: absolute;
  inset: -0.55% -0.24%;
  width: 100.48%;
  height: 101.1%;
  max-width: none;
}
.collection-serving-page__festival-content {
  position: relative;
  z-index: 1;
  max-width: 615px;
  margin: 122px auto 0;
  text-align: center;
}
.collection-serving-page__festival-content h2 {
  color: #f3efa1;
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(38px, 5vw, 55px);
  line-height: 1.09;
  font-weight: 700;
}
.collection-serving-page__festival-content p {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}
.collection-serving-page__festival-actions {
  justify-content: center;
}
.collection-serving-page__faq-list {
  display: grid;
  gap: 12px;
}
.collection-serving-page__faq-item {
  overflow: hidden;
  border-radius: 15px;
  background: #caeded;
  padding: 0 24px;
}
.collection-serving-page__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 79px;
  padding: 16px 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #363333;
}
.collection-serving-page__faq-item[open] .collection-serving-page__faq-toggle::before {
  transform: none;
}
.collection-serving-page__faq-answer {
  padding: 0 0 24px;
}
.collection-serving-page__faq-answer p {
  max-width: 1088px;
  font-size: 16px;
  line-height: 1.7;
  color: #363333;
}
.collection-serving-page__faq-toggle {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.collection-serving-page__faq-toggle img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}
.collection-serving-page__faq-item[open] .collection-serving-page__faq-toggle img {
  transform: rotate(180deg);
}
.collection-serving-page__testimonial-card {
  min-height: 316px;
  padding: 34px;
  background: rgba(0, 157, 165, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.collection-serving-page__testimonial-quote {
  font-size: 16px;
  line-height: 1.5;
  font-style: italic;
  color: #363333;
}
.collection-serving-page__testimonial-quote-icon {
  width: 40px;
  height: 40px;
}
.collection-serving-page__testimonial-quote-icon img {
  width: 40px;
  height: 40px;
}
.collection-serving-page__testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.collection-serving-page__testimonial-person strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #363333;
}
.collection-serving-page__testimonial-person span {
  display: block;
  font-size: 14px;
  line-height: 1.43;
  color: #363333;
}
.collection-serving-page__testimonial-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #009da5;
  color: #eefbfa;
  font-size: 16px;
  font-weight: 700;
}
.collection-serving-page__closing-card {
  padding: 55px 24px 64px;
  border-radius: 30px;
  background: linear-gradient(104deg, #197176 2.43%, #094346 61.22%, #1e666a 104.34%);
  text-align: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.collection-serving-page__closing-card h2 {
  margin-top: 24px;
  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 700;
  color: #eefbfa;
}
.collection-serving-page__closing-card p {
  max-width: 664px;
  margin: 16px auto 0;
  font-size: 20px;
  line-height: 1.4;
  color: #eefbfa;
}
.collection-serving-page__closing-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.collection-serving-page__closing-icon img {
  width: 80px;
  height: 80px;
}
.collection-serving-page__closing-actions {
  justify-content: center;
}
@media (max-width: 1200px) {
  .collection-serving-page__hero-shell {
    padding: 56px 40px;
  }
  .collection-serving-page__hero {
    grid-template-columns: minmax(0, 1fr) 272px;
  }
}
@media (max-width: 980px) {
  .collection-serving-page__hero, .collection-serving-page__benefits-grid, .collection-serving-page__impact-grid, .collection-serving-page__testimonials-grid, .collection-serving-page__steps-grid, .collection-serving-page__pet-card {
    grid-template-columns: 1fr;
  }
  .collection-serving-page__hero {
    display: grid;
  }
  .collection-serving-page__hero-facts {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 0;
  }
  .collection-serving-page__festival-frame {
    width: calc(100% - 48px);
  }
}
@media (max-width: 780px) {
  .collection-serving-page__hero-shell {
    margin-top: 12px;
    padding: 12px 0 24px;
  }
  .collection-serving-page__hero-frame {
    display: none;
  }
  .collection-serving-page__hero-copy > p {
    font-size: 18px;
  }
  .collection-serving-page__hero-actions, .collection-serving-page__festival-actions, .collection-serving-page__closing-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .collection-serving-page__button {
    width: 100%;
  }
  .collection-serving-page__hero-facts {
    grid-template-columns: 1fr;
  }
  .collection-serving-page__benefit-card, .collection-serving-page__testimonial-card, .collection-serving-page__impact-card, .collection-serving-page__step-card {
    min-height: auto;
  }
  .collection-serving-page__registration-card, .collection-serving-page__closing-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .collection-serving-page__pet-card {
    flex-direction: column;
    align-items: stretch;
  }
  .collection-serving-page__festival-content {
    margin-top: 124px;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .collection-serving-page__section-heading {
    margin-bottom: 28px;
  }
  .collection-serving-page__section-heading p {
    font-size: 18px;
  }
  .collection-serving-page__benefits-shell, .collection-serving-page__impact-shell, .collection-serving-page__pet-shell, .collection-serving-page__faq-shell, .collection-serving-page__closing-shell {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .collection-serving-page__process-shell, .collection-serving-page__testimonials-shell {
    padding-top: 40px;
    padding-bottom: 56px;
  }
  .collection-serving-page__festival-band {
    min-height: 560px;
  }
  .collection-serving-page__festival-frame {
    display: none;
  }
  .collection-serving-page__festival-shell {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .collection-serving-page__festival-content {
    margin-top: 108px;
  }
  .collection-serving-page__festival-content p {
    font-size: 18px;
  }
}

.contact-page {
  padding: 0;
  background: #fff;
}

.contact-page__hero {
  position: relative;
  margin: 0 auto;
  padding-top: 14px;
  padding-bottom: 42px;
}

.contact-page__hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--hero-surface);
  z-index: 0;
}

.contact-page__hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 530px);
  column-gap: 72px;
  align-items: start;
  min-height: 430px;
  padding: 76px 7px 52px 76px;
}

.contact-page__hero-frame {
  position: absolute;
  top: 36px;
  left: calc(50% - 18px);
  width: min(1237px, 100% - 42px);
  transform: translateX(-50%);
  height: 334px;
  background: url("/assets/images/deposit-system/sustainability/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 3;
}

.contact-page__hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-top: -68px;
  width: min(100%, 380px);
  padding: 0;
}

.contact-page__hero-copy h1 {
  margin: 0;
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(48px, 5vw, 55px);
  font-weight: 700;
  line-height: 1.16;
}

.contact-page__hero-copy p {
  margin: 20px 0 0;
  color: var(--ink);
  max-width: 360px;
  font-size: 18px;
  line-height: 29px;
}

.contact-page__hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 530px;
  height: 392px;
  margin-top: -70px;
  justify-self: end;
  overflow: hidden;
}

.contact-page__hero-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  max-width: none;
  transform: scale(1.8);
  transform-origin: 65% 20%;
}

.contact-page__main {
  position: relative;
  margin-top: 0;
  padding: 86px 0 0;
  background: #eefbfa;
}

.contact-page__main-shell {
  position: relative;
}

.contact-page__content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.contact-page__section-label,
.contact-page__channels-heading {
  margin: 0;
  color: var(--teal);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-page__form {
  margin-top: 48px;
}

.contact-page__field + .contact-page__field {
  margin-top: 16px;
}

.contact-page__label {
  display: inline-flex;
  gap: 2px;
  color: var(--teal);
  font-size: 14px;
  line-height: 20px;
}

.contact-page__required {
  color: var(--teal);
}

.contact-page__control {
  display: block;
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  background: rgba(0, 157, 165, 0.2);
  color: var(--ink);
  font-size: 14px;
  line-height: 20px;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__control:focus-visible {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 157, 165, 0.18);
}

.contact-page__control[aria-invalid=true] {
  border-color: #c35555;
  background: rgba(195, 85, 85, 0.08);
}

.contact-page__form-feedback {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.contact-page__form-feedback--error {
  background: rgba(195, 85, 85, 0.08);
  color: #9b3030;
  border: 1px solid rgba(195, 85, 85, 0.3);
}

.contact-page__success-card {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 371px;
  padding: 84px 48px;
  background: var(--mist, #eefbfa);
  border-radius: 20px;
  box-shadow: 0 8px 7.5px rgba(0, 0, 0, 0.15);
  text-align: center;
  margin-bottom: 64px;
}
.contact-page__success-card:not([hidden]) {
  display: flex;
}

.contact-page__success-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  color: var(--teal);
}

.contact-page__success-heading {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-page__success-text {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.contact-page__control::placeholder {
  color: #717182;
}

.contact-page__control--textarea {
  min-height: 64px;
  resize: vertical;
}

.contact-page__hint,
.contact-page__required-note {
  margin: 8px 0 0;
  color: var(--teal);
  font-size: 12px;
  line-height: 16px;
}

.contact-page__form-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.contact-page__submit {
  min-width: 178px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--teal);
  color: var(--mist);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.contact-page__required-note {
  text-align: center;
}

.contact-page__info-list {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.contact-page__info-item,
.contact-page__faq-callout {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-page__info-icon {
  width: 24px;
  height: 24px;
}

.contact-page__info-item h3,
.contact-page__faq-callout h3,
.contact-page__channel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-page__info-text,
.contact-page__info-lines p,
.contact-page__channel p {
  margin: 8px 0 0;
  color: var(--teal);
  font-size: 16px;
  line-height: 24px;
}

.contact-page__info-lines p + p {
  margin-top: 0;
}

.contact-page__info-link,
.contact-page__channel a {
  display: inline-block;
  margin-top: 8px;
  color: var(--teal);
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-page__faq-callout {
  margin-top: 72px;
}

.contact-page__channels {
  margin-top: 0;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(119.963deg, #197176 2.4322%, #094346 61.225%, #1e666a 104.34%);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.contact-page__channels-band {
  margin-top: 112px;
  padding: 46px 0 52px;
  background: var(--hero-surface);
}

.contact-page__channels-band .shell {
  width: min(1268px, 100% - 32px);
}

.contact-page__channels-heading {
  color: var(--mist);
}

.contact-page__channels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.contact-page__channel h3,
.contact-page__channel p,
.contact-page__channel a {
  color: var(--mist);
}

@media (max-width: 1180px) {
  .contact-page__content-grid,
  .contact-page__channels-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 920px) {
  .contact-page__hero {
    padding-top: 0;
    padding-bottom: 32px;
  }
  .contact-page__hero-stage {
    grid-template-columns: 1fr;
    column-gap: 0;
    gap: 20px;
    min-height: 0;
    padding: 12px 0 0;
  }
  .contact-page__hero-frame {
    display: none;
  }
  .contact-page__hero-copy {
    align-self: start;
    margin-top: 0;
    width: min(100%, 380px);
    max-width: 100%;
  }
  .contact-page__hero-media {
    justify-self: end;
    width: min(100%, 360px);
    max-width: 360px;
    height: auto;
    aspect-ratio: 530/392;
    margin-top: 0;
  }
  .contact-page__hero-media img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 780px) {
  .contact-page__hero-media {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }
  .contact-page__hero-copy h1 {
    font-size: clamp(38px, 10vw, 44px);
  }
  .contact-page__hero-copy p {
    margin-top: 14px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }
  .contact-page__main {
    padding: 64px 0 0;
  }
  .contact-page__channels-band {
    margin-top: 72px;
    padding: 32px 0 36px;
  }
  .contact-page__channels {
    padding: 28px 20px;
  }
}
.deposit-system-page {
  padding: 0 0 72px;
}

.deposit-system-page__hero {
  margin: 14px auto 0;
}

.deposit-system-page__hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 530px);
  column-gap: 72px;
  align-items: start;
  min-height: 430px;
  padding: 76px 7px 52px 76px;
}

.deposit-system-page__frame {
  position: absolute;
  top: 36px;
  left: calc(50% - 18px);
  width: min(1237px, 100% - 42px);
  transform: translateX(-50%);
  right: auto;
  height: 334px;
  background: url("/assets/images/deposit-system/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 3;
}

.deposit-system-page__hero-stage--single-column {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}

.deposit-system-page__intro {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-top: -68px;
  width: 100%;
  max-width: 608px;
}

.deposit-system-page__intro h1 {
  margin: 0;
  max-width: none;
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(46px, 4.4vw, 55px);
  font-weight: 700;
  line-height: 1.1;
}

.deposit-system-page__intro p {
  max-width: 608px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.deposit-system-page__media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 530px;
  height: 392px;
  margin-top: -70px;
  justify-self: end;
  overflow: hidden;
}

.deposit-system-page__media img {
  position: absolute;
  top: -14.68%;
  left: -21.7%;
  width: 143.4%;
  height: 129.27%;
  max-width: none;
}

.deposit-system-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 25px;
}

.deposit-system-card {
  min-height: 180px;
  padding: 26px;
  border-radius: 15px;
  background: #009da5;
  color: #fff;
}

.deposit-system-card--link {
  display: block;
}

.deposit-system-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  margin-bottom: 16px;
}

.deposit-system-card__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.deposit-system-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.deposit-system-card__arrow img {
  width: 20px;
  height: 20px;
}

.deposit-system-card h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.deposit-system-card p {
  max-width: 278px;
  margin: 12px 0 0;
  color: rgba(238, 251, 250, 0.94);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .deposit-system-page__hero {
    margin: 36px auto 32px;
  }
  .deposit-system-page__hero-stage {
    width: auto;
    min-height: 0;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.92fr);
    gap: 22px;
    padding: 68px 24px 22px;
  }
  .deposit-system-page__frame {
    top: 18px;
    left: 0;
    right: 0;
    width: auto;
    transform: none;
    height: calc(100% - 52px);
  }
  .deposit-system-page__intro {
    width: 100%;
    margin-top: 0;
  }
  .deposit-system-page__media {
    width: min(100%, 460px);
    height: 340px;
    margin-top: -28px;
    justify-self: end;
  }
  .deposit-system-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .deposit-system-page {
    padding: 0 0 72px;
  }
  .deposit-system-page__hero {
    margin: 12px auto 24px;
  }
  .deposit-system-page__hero-stage {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px 0 0;
  }
  .deposit-system-page__frame {
    display: none;
  }
  .deposit-system-page__intro {
    max-width: none;
    align-self: start;
    margin-top: 0;
    padding: 0;
  }
  .deposit-system-page__intro h1 {
    max-width: none;
    font-size: clamp(40px, 12vw, 52px);
  }
  .deposit-system-page__intro p {
    font-size: 18px;
  }
  .deposit-system-page__media {
    width: 100%;
    justify-self: start;
    height: auto;
    margin-top: 0;
  }
  .deposit-system-page__media img {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 1.35/1;
  }
  .deposit-system-page__grid {
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .deposit-system-page__grid {
    grid-template-columns: 1fr;
  }
  .deposit-system-card {
    min-height: 0;
  }
}
.deposit-system-what-can-page {
  padding: 0 0 72px;
}

.deposit-system-what-can-page h1,
.deposit-system-what-can-page h2,
.deposit-system-what-can-page h3,
.deposit-system-what-can-page p,
.deposit-system-what-can-page ul {
  margin: 0;
}

.deposit-system-what-can-page__hero {
  margin: 50px auto 48px;
}

.deposit-system-what-can-page__hero-stage {
  position: relative;
  min-height: 334px;
  padding: 44px 56px;
  display: flex;
  align-items: center;
}

.deposit-system-what-can-page__hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.deposit-system-what-can-page__hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.deposit-system-what-can-page__hero-copy h1 {
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(48px, 5.1vw, 55px);
  font-weight: 700;
  line-height: 1.1;
}

.deposit-system-what-can-page__hero-copy p {
  margin-top: 14px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.deposit-system-what-can-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.deposit-system-what-can-page__stat-card {
  min-height: 244px;
  padding: 32px;
  border-radius: 15px;
  background: var(--teal);
  color: var(--mist);
  text-align: center;
}

.deposit-system-what-can-page__stat-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.deposit-system-what-can-page__stat-icon-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.deposit-system-what-can-page__stat-card h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.deposit-system-what-can-page__stat-card h3 {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.deposit-system-what-can-page__stat-card p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.43;
}

.deposit-system-what-can-page__criteria-band {
  margin-top: 48px;
  padding: 34px 0;
  background: var(--teal);
}

.deposit-system-what-can-page__criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.deposit-system-what-can-page__criteria-card {
  min-height: 368px;
  padding: 34px;
  border-radius: 15px;
}

.deposit-system-what-can-page__criteria-card h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.deposit-system-what-can-page__criteria-card ul {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.deposit-system-what-can-page__criteria-card li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.5;
}

.deposit-system-what-can-page__criteria-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.deposit-system-what-can-page__criteria-card--allowed {
  background: rgba(255, 255, 255, 0.2);
  color: var(--mist);
}

.deposit-system-what-can-page__criteria-card--allowed li::before {
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.deposit-system-what-can-page__criteria-card--allowed li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.deposit-system-what-can-page__criteria-card--blocked {
  background: #fff;
  color: var(--ink);
}

.deposit-system-what-can-page__criteria-card--blocked li::before,
.deposit-system-what-can-page__criteria-card--blocked li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 11px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #6f6c6c;
}

.deposit-system-what-can-page__criteria-card--blocked li::after {
  transform: rotate(90deg);
}

.deposit-system-what-can-page__recognize {
  margin-top: 48px;
  padding: 48px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--mist);
}

.deposit-system-what-can-page__recognize-top {
  display: flex;
  align-items: flex-start;
  gap: 46px;
  margin-bottom: 32px;
}

.deposit-system-what-can-page__recognize-pant {
  flex-shrink: 0;
  width: 128px;
  height: auto;
  object-fit: contain;
}

.deposit-system-what-can-page__recognize-copy {
  flex: 1 1 0;
}

.deposit-system-what-can-page__recognize-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.deposit-system-what-can-page__recognize-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
}

.deposit-system-what-can-page__recognize-icon-wrap img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.deposit-system-what-can-page__recognize-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.deposit-system-what-can-page__recognize-copy > p {
  max-width: 780px;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.6;
}

.deposit-system-what-can-page__recognize-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.deposit-system-what-can-page__recognize-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.deposit-system-what-can-page__recognize-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.deposit-system-what-can-page__recognize-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deposit-system-what-can-page__recognize-card-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.deposit-system-what-can-page__recognize-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.deposit-system-what-can-page__recognize-card p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.deposit-system-what-can-page__recognize-card strong {
  margin: 0 4px;
  color: #fff;
  font-weight: 700;
}

.deposit-system-what-can-page__faq {
  margin-top: 72px;
}

.deposit-system-what-can-page__faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.deposit-system-what-can-page__faq-head-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(0, 157, 165, 0.15);
}

.deposit-system-what-can-page__faq-head-icon img,
.deposit-system-what-can-page__faq-icon-wrap img {
  width: 20px;
  height: 20px;
}

.deposit-system-what-can-page__faq-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.deposit-system-what-can-page__faq-header p {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.deposit-system-what-can-page__faq-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.deposit-system-what-can-page__faq-card {
  min-height: 150px;
  padding: 26px;
  border-radius: 15px;
  background: rgba(0, 157, 165, 0.15);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.deposit-system-what-can-page__faq-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deposit-system-what-can-page__faq-icon-wrap img {
  filter: brightness(0) invert(1);
}

.deposit-system-what-can-page__faq-copy h3 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
}

.deposit-system-what-can-page__faq-copy p {
  margin-top: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .deposit-system-what-can-page__hero-stage {
    min-height: 0;
    padding: 64px 32px 34px;
  }
  .deposit-system-what-can-page__stats-grid,
  .deposit-system-what-can-page__criteria-grid,
  .deposit-system-what-can-page__faq-grid {
    grid-template-columns: 1fr;
  }
  .deposit-system-what-can-page__recognize-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .deposit-system-what-can-page {
    padding: 0 0 52px;
  }
  .deposit-system-what-can-page__hero {
    margin: 12px auto 32px;
  }
  .deposit-system-what-can-page__hero-stage {
    padding: 12px 0 0;
  }
  .deposit-system-what-can-page__hero-frame {
    display: none;
  }
  .deposit-system-what-can-page__hero-copy h1,
  .deposit-system-what-can-page__recognize-header h2,
  .deposit-system-what-can-page__faq-header h2 {
    font-size: clamp(36px, 9vw, 44px);
  }
  .deposit-system-what-can-page__hero-copy p,
  .deposit-system-what-can-page__recognize > p {
    font-size: 18px;
  }
  .deposit-system-what-can-page__criteria-card,
  .deposit-system-what-can-page__recognize,
  .deposit-system-what-can-page__stat-card,
  .deposit-system-what-can-page__faq-card {
    padding: 22px;
  }
}
.deposit-system-annual-report-page {
  padding: 0 0 72px;
}

.deposit-system-annual-report-page h1,
.deposit-system-annual-report-page h2,
.deposit-system-annual-report-page h3,
.deposit-system-annual-report-page p,
.deposit-system-annual-report-page ul {
  margin: 0;
}

.deposit-system-annual-report-page__hero {
  margin: 50px auto 0;
}

.deposit-system-annual-report-page__hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 334px;
  padding: 48px 56px;
}

.deposit-system-annual-report-page__hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.deposit-system-annual-report-page__hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.deposit-system-annual-report-page__hero-copy h1 {
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(46px, 4.8vw, 55px);
  font-weight: 700;
  line-height: 1.1;
}

.deposit-system-annual-report-page__hero-copy p {
  margin-top: 14px;
  max-width: 560px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.deposit-system-annual-report-page__download-link {
  position: absolute;
  right: 0;
  bottom: -76px;
  z-index: 2;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: var(--shadow-soft);
  color: var(--teal);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
}

.deposit-system-annual-report-page__download-link img {
  width: 16px;
  height: 16px;
}

.deposit-system-annual-report-page__stats-header {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deposit-system-annual-report-page__stats-header h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--teal);
}
.deposit-system-annual-report-page__stats-header .deposit-system-annual-report-page__download-link {
  position: static;
}

.deposit-system-annual-report-page__stats-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.deposit-system-annual-report-page__stat-card {
  min-height: 116px;
  padding: 24px 26px;
  border-radius: 15px;
  background: var(--teal);
  color: var(--mist);
}

.deposit-system-annual-report-page__stat-card > p {
  font-size: 14px;
  line-height: 1.43;
}

.deposit-system-annual-report-page__stat-row {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.deposit-system-annual-report-page__stat-row h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.deposit-system-annual-report-page__stat-row span {
  color: rgba(238, 251, 250, 0.95);
  font-size: 14px;
  line-height: 1.43;
}

.deposit-system-annual-report-page__details-band {
  margin-top: 30px;
  padding: 48px 0;
  background: var(--teal);
}

.deposit-system-annual-report-page__details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 622px);
  gap: 48px;
}

.deposit-system-annual-report-page__highlights h2,
.deposit-system-annual-report-page__about-card h2 {
  color: var(--mist);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.deposit-system-annual-report-page__highlights-list {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.deposit-system-annual-report-page__highlight-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.deposit-system-annual-report-page__highlight-item img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.deposit-system-annual-report-page__highlight-item h3,
.deposit-system-annual-report-page__highlight-item p {
  color: var(--mist);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.deposit-system-annual-report-page__about-card {
  padding: 34px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.3);
}

.deposit-system-annual-report-page__about-card > p {
  margin-top: 16px;
  color: var(--mist);
  font-size: 16px;
  line-height: 1.5;
}

.deposit-system-annual-report-page__about-card ul {
  margin-top: 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.deposit-system-annual-report-page__about-card li {
  position: relative;
  padding-left: 16px;
  color: var(--mist);
  font-size: 16px;
  line-height: 1.5;
}

.deposit-system-annual-report-page__about-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mist);
}

.deposit-system-annual-report-page__previous-reports {
  margin-top: 72px;
  padding: 32px;
  border-radius: 30px;
  background: var(--mist);
  box-shadow: var(--shadow-soft);
}

.deposit-system-annual-report-page__previous-reports h2 {
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.deposit-system-annual-report-page__previous-report-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.deposit-system-annual-report-page__previous-report-link {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 16px;
  border-radius: 15px;
  border: 1px solid rgba(0, 157, 165, 0.2);
  background: rgba(0, 157, 165, 0.2);
  color: var(--teal);
  font-size: 16px;
  line-height: 1.5;
}

.deposit-system-annual-report-page__previous-report-link img {
  width: 16px;
  height: 16px;
}

@media (max-width: 1100px) {
  .deposit-system-annual-report-page__hero-stage {
    min-height: 0;
    padding: 64px 32px 28px;
  }
  .deposit-system-annual-report-page__download-link {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }
  .deposit-system-annual-report-page__stats-grid,
  .deposit-system-annual-report-page__details-grid,
  .deposit-system-annual-report-page__previous-report-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .deposit-system-annual-report-page {
    padding: 0 0 52px;
  }
  .deposit-system-annual-report-page__hero {
    margin: 12px auto 32px;
  }
  .deposit-system-annual-report-page__hero-stage {
    padding: 12px 0 0;
  }
  .deposit-system-annual-report-page__hero-frame {
    display: none;
  }
  .deposit-system-annual-report-page__hero-copy h1 {
    font-size: clamp(38px, 10vw, 44px);
  }
  .deposit-system-annual-report-page__hero-copy p,
  .deposit-system-annual-report-page__highlight-item h3,
  .deposit-system-annual-report-page__highlight-item p,
  .deposit-system-annual-report-page__about-card > p,
  .deposit-system-annual-report-page__about-card li,
  .deposit-system-annual-report-page__previous-report-link {
    font-size: 15px;
  }
  .deposit-system-annual-report-page__details-band {
    padding: 32px 0;
  }
  .deposit-system-annual-report-page__about-card,
  .deposit-system-annual-report-page__previous-reports {
    padding: 24px;
  }
}
.sustainability-page {
  padding: 0;
}

.sustainability-page h1,
.sustainability-page h2 {
  margin: 0;
}

.sustainability-page p {
  margin: 0;
}

.sustainability-page__section-heading {
  display: grid;
  gap: 16px;
}

.sustainability-page__section-heading h2,
.sustainability-page__mix h2,
.sustainability-page__circular h2 {
  color: #101828;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.sustainability-page__section-heading p,
.sustainability-page__mix p,
.sustainability-page__circular p {
  max-width: 1064px;
  color: #364153;
  font-size: 18px;
  line-height: 1.625;
}

.sustainability-page__hero {
  margin: 14px auto 0;
}

.sustainability-page__hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 530px);
  column-gap: 72px;
  align-items: start;
  min-height: 430px;
  padding: 76px 7px 52px 76px;
}

.sustainability-page__hero-frame {
  position: absolute;
  top: 36px;
  left: calc(50% - 18px);
  width: min(1237px, 100% - 42px);
  transform: translateX(-50%);
  height: 334px;
  background: url("/assets/images/deposit-system/sustainability/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 3;
}

.sustainability-page__hero-copy,
.sustainability-page__hero-media {
  position: relative;
}

.sustainability-page__hero-copy {
  z-index: 2;
  align-self: center;
  margin-top: -68px;
  display: grid;
  gap: 16px;
  max-width: 500px;
}

.sustainability-page__hero-copy h1 {
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(44px, 4vw, 55px);
  font-weight: 700;
  line-height: 1.12;
}

.sustainability-page__hero-copy p {
  max-width: 470px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.sustainability-page__hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 530px;
  height: 392px;
  margin-top: -70px;
  justify-self: end;
  overflow: hidden;
}

.sustainability-page__hero-media img {
  position: absolute;
  top: -31.65%;
  left: -8.56%;
  width: 108.56%;
  height: 203.92%;
  max-width: none;
}

.sustainability-page__stats-band {
  margin: 0;
  padding: 38px 0 48px;
  background: var(--teal);
}

.sustainability-page__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
}

.sustainability-page__stat-card {
  min-height: 242px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px 24px;
  border-radius: 15px;
  background: linear-gradient(180deg, #1d757b 0%, #165f64 100%);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.sustainability-page__stat-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.sustainability-page__stat-value {
  color: var(--mist);
  font-family: "Arno Pro", var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
}

.sustainability-page__stat-label {
  max-width: 236px;
  color: var(--mist);
  font-size: 16px;
  line-height: 1.5;
}

.sustainability-page__highlight {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 38px auto 46px;
  padding: 50px;
  border-radius: 30px;
  background: var(--teal);
  color: var(--mist);
}

.sustainability-page__highlight-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--mist);
}

.sustainability-page__highlight-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.sustainability-page__highlight-copy {
  display: grid;
  gap: 16px;
}

.sustainability-page__highlight-copy h2 {
  color: var(--mist);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.sustainability-page__highlight-copy p {
  max-width: 845px;
  color: var(--mist);
  font-size: 18px;
  line-height: 1.625;
}

.sustainability-page__highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 48px;
  padding: 11px 24px 11px 20px;
  border: 2px solid var(--mist);
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.sustainability-page__highlight-link img {
  width: 20px;
  height: 20px;
}

.sustainability-page__sorting,
.sustainability-page__international,
.sustainability-page__calculator {
  position: relative;
  overflow: clip;
}

.sustainability-page__sorting {
  min-height: 478px;
  margin: 0 0 70px;
  background: #0f1418;
}

.sustainability-page__international-background,
.sustainability-page__calculator-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability-page__sorting-background {
  position: absolute;
  top: -54.98%;
  left: 0;
  width: 100%;
  height: 216.26%;
  max-width: none;
}

.sustainability-page__sorting-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 20, 24, 0.58) 0%, rgba(15, 20, 24, 0.38) 48%, rgba(15, 20, 24, 0.24) 100%);
}

.sustainability-page__sorting-shell {
  position: relative;
  min-height: 478px;
  display: flex;
  align-items: center;
}

.sustainability-page__sorting-frame {
  position: absolute;
  left: 0;
  top: 66px;
  width: min(1146px, 100% - 130px);
  height: 346px;
  object-fit: fill;
  pointer-events: none;
}

.sustainability-page__sorting h2 {
  position: relative;
  z-index: 1;
  max-width: 604px;
  padding-left: 56px;
  color: var(--warm);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(40px, 4.3vw, 55px);
  font-weight: 700;
  line-height: 1.09;
}

.sustainability-page__success {
  display: grid;
  gap: 24px;
  margin: 0 auto 72px;
}

.sustainability-page__success-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 418px);
  gap: 56px;
  align-items: stretch;
}

.sustainability-page__success-copy {
  display: grid;
  gap: 24px;
}

.sustainability-page__success-body,
.sustainability-page__success-panel p,
.sustainability-page__success-outro {
  color: #364153;
  font-size: 18px;
  line-height: 1.625;
}

.sustainability-page__success-panel {
  display: grid;
  gap: 16px;
  padding: 24px 28px;
  border-radius: 15px;
  background: rgba(0, 157, 165, 0.2);
}

.sustainability-page__success-panel strong {
  font-weight: 700;
}

.sustainability-page__success-visual {
  min-height: 385px;
  border-radius: 15px;
  overflow: hidden;
}

.sustainability-page__success-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability-page__mix {
  display: grid;
  gap: 16px;
  margin: 0 auto 78px;
  padding: 42px;
  border: 1px solid rgba(0, 157, 165, 0.16);
  border-radius: 30px;
  background: rgba(0, 157, 165, 0.18);
}

.sustainability-page__mix strong {
  font-weight: 700;
}

.sustainability-page__future,
.sustainability-page__process,
.sustainability-page__reports,
.sustainability-page__ethics {
  display: grid;
  gap: 24px;
}

.sustainability-page__future {
  margin: 0 auto 56px;
}

.sustainability-page__goal-grid,
.sustainability-page__process-grid,
.sustainability-page__report-grid,
.sustainability-page__ethics-grid {
  display: grid;
}

.sustainability-page__goal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sustainability-page__goal-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 26px;
  border-radius: 15px;
  background: rgba(0, 157, 165, 0.15);
}

.sustainability-page__goal-icon-wrap,
.sustainability-page__process-icon-wrap,
.sustainability-page__report-card-icon-wrap,
.sustainability-page__calculator-intro-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sustainability-page__goal-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--teal);
}

.sustainability-page__goal-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sustainability-page__goal-copy {
  display: grid;
  gap: 8px;
}

.sustainability-page__goal-copy h3,
.sustainability-page__process-card h3,
.sustainability-page__report-card-copy h3 {
  margin: 0;
  color: #101828;
}

.sustainability-page__goal-copy h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.sustainability-page__goal-copy p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.sustainability-page__circular {
  display: grid;
  gap: 24px;
  margin: 0 auto 58px;
}

.sustainability-page__process {
  margin: 0 auto 96px;
}

.sustainability-page__process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.sustainability-page__process-card {
  position: relative;
  min-height: 232px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 34px;
  border-radius: 16px;
  background: rgba(0, 157, 165, 0.15);
}

.sustainability-page__process-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--teal);
}

.sustainability-page__process-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sustainability-page__process-card h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
}

.sustainability-page__process-card p {
  max-width: 438px;
  color: #364153;
  font-size: 16px;
  line-height: 1.625;
}

.sustainability-page__international {
  min-height: 509px;
  margin: 0 0 64px;
  background: #090d10;
}

.sustainability-page__international-background {
  position: absolute;
  top: -178.93%;
  left: 0.78%;
  width: 110.6%;
  height: 485.18%;
  max-width: none;
}

.sustainability-page__international-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 17, 0.6) 0%, rgba(10, 14, 17, 0.4) 56%, rgba(10, 14, 17, 0.18) 100%);
}

.sustainability-page__international-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 509px;
}

.sustainability-page__international-frame {
  position: absolute;
  left: 0;
  top: 66px;
  width: min(1182px, 100% - 90px);
  height: 377px;
  object-fit: fill;
  pointer-events: none;
}

.sustainability-page__international-copy {
  position: relative;
  z-index: 1;
  max-width: 880px;
  display: grid;
  gap: 18px;
  padding: 72px 0 72px 55px;
}

.sustainability-page__international-copy h2 {
  color: var(--warm);
  font-family: "Arno Pro Display", "Arno Pro", var(--serif);
  font-size: clamp(40px, 5vw, 55px);
  font-weight: 600;
  line-height: 1.05;
}

.sustainability-page__international-copy p {
  max-width: 880px;
  color: var(--mist);
  font-size: 20px;
  line-height: 1.5;
}

.sustainability-page__international-emphasis {
  font-style: normal;
}

.sustainability-page__reports {
  margin: 0 auto 54px;
}

.sustainability-page__report-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sustainability-page__report-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 176px;
  padding: 26px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.sustainability-page__report-card-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  width: 100%;
}

.sustainability-page__report-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 157, 165, 0.6);
}

.sustainability-page__report-card-icon {
  width: 24px;
  height: 24px;
}

.sustainability-page__report-card-copy {
  display: grid;
  gap: 8px;
}

.sustainability-page__report-card-copy h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.sustainability-page__report-card-copy p {
  max-width: 390px;
  color: #364153;
  font-size: 14px;
  line-height: 1.43;
}

.sustainability-page__report-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a5565;
  font-size: 12px;
  line-height: 1.33;
}

.sustainability-page__report-card-meta img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 16px;
}

.sustainability-page__report-card-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.sustainability-page__ethics {
  margin: 0 auto 62px;
  padding: 40px;
  border-radius: 30px;
  background: rgba(0, 157, 165, 0.18);
}

.sustainability-page__ethics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sustainability-page__ethics-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 16px 20px;
  border: 1px solid rgba(0, 157, 165, 0.22);
  border-radius: 12px;
  background: var(--mist);
  color: #101828;
  font-size: 16px;
  line-height: 1.5;
}

.sustainability-page__ethics-card img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.sustainability-page__calculator {
  min-height: 756px;
  padding: 48px 0 68px;
  background: #090d10;
}

.sustainability-page__calculator-background {
  position: absolute;
  top: -53.02%;
  left: 0;
  width: 100%;
  height: 295%;
  max-width: none;
}

.sustainability-page__calculator-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 16, 0.74), rgba(9, 13, 16, 0.58));
}

.sustainability-page__calculator-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  justify-items: center;
}

.sustainability-page__calculator-intro {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 672px;
  text-align: center;
}

.sustainability-page__calculator-intro-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--teal);
}

.sustainability-page__calculator-intro-icon-wrap img {
  width: 32px;
  height: 32px;
}

.sustainability-page__calculator-intro h2 {
  color: var(--mist);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.sustainability-page__calculator-intro p {
  color: var(--mist);
  font-size: 18px;
  line-height: 1.625;
}

.sustainability-page__calculator-card {
  width: min(100%, 1071px);
  display: grid;
  gap: 28px;
  justify-items: center;
  padding: 34px 34px 54px;
  border-radius: 30px;
  background: var(--mist);
  box-shadow: var(--shadow-soft);
}

.sustainability-page__calculator-labels {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.sustainability-page__calculator-labels p:first-child {
  color: #363333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.sustainability-page__calculator-labels p:last-child,
.sustainability-page__calculator-scale {
  color: #363333;
  font-size: 12px;
  line-height: 1.33;
}

.sustainability-page__calculator-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.sustainability-page__calculator-step {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--teal);
  cursor: pointer;
}

.sustainability-page__calculator-step--muted {
  background: rgba(0, 157, 165, 0.3);
}

.sustainability-page__calculator-step img {
  width: 24px;
  height: 24px;
}

.sustainability-page__calculator-value {
  min-width: 128px;
  padding-bottom: 12px;
  border-bottom: 4px solid rgba(0, 157, 165, 0.3);
  color: var(--teal);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.sustainability-page__calculator-range-wrap {
  width: 100%;
  display: grid;
  gap: 12px;
}

.sustainability-page__calculator-range {
  width: 100%;
  margin: 0;
  appearance: none;
  height: 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(0, 157, 165, 0.35) 0%, rgba(0, 157, 165, 0.35) var(--progress, 0%), rgba(0, 157, 165, 0.25) var(--progress, 0%), rgba(0, 157, 165, 0.25) 100%);
  accent-color: var(--teal);
}

.sustainability-page__calculator-range::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 157, 165, 0.16);
  cursor: pointer;
}

.sustainability-page__calculator-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 157, 165, 0.16);
  cursor: pointer;
}

.sustainability-page__calculator-range::-moz-range-track {
  height: 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 157, 165, 0.25);
}

.sustainability-page__calculator-scale {
  display: flex;
  justify-content: space-between;
}

.sustainability-page__calculator-submit {
  min-width: 305px;
  min-height: 60px;
  padding: 16px 28px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--teal);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  cursor: pointer;
}

.sustainability-page__calculator-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.sustainability-page__calculator-result {
  position: relative;
  width: 100%;
  min-height: 160px;
}

.sustainability-page__calculator-result-card {
  position: absolute;
  top: 0;
  width: 220px;
  padding: 14px 14px 18px;
  border-radius: 16px;
  background: var(--teal);
  color: #fff;
  text-align: center;
}
.sustainability-page__calculator-result-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: var(--arrow-x, 50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom-color: var(--teal);
  border-top-width: 0;
}

.sustainability-page__calculator-result-icon {
  display: block;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 6px;
}

.sustainability-page__calculator-result-count {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.sustainability-page__calculator-result-body {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: #fff;
}

@media (max-width: 1180px) {
  .sustainability-page__hero-stage {
    min-height: 332px;
    padding: 64px 20px 34px 28px;
  }
  .sustainability-page__hero-frame {
    top: 0;
    left: 0;
    width: 100%;
  }
  .sustainability-page__hero-media {
    top: -34px;
    right: -28px;
    width: min(45%, 448px);
    height: auto;
  }
  .sustainability-page__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sustainability-page__success-layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: 32px;
  }
  .sustainability-page__sorting-frame,
  .sustainability-page__international-frame {
    width: calc(100% - 48px);
  }
  .sustainability-page__sorting h2,
  .sustainability-page__international-copy {
    padding-left: 36px;
  }
}
@media (max-width: 920px) {
  .sustainability-page {
    padding-bottom: 0;
  }
  .sustainability-page__success-layout,
  .sustainability-page__goal-grid,
  .sustainability-page__process-grid,
  .sustainability-page__report-grid,
  .sustainability-page__ethics-grid {
    grid-template-columns: 1fr;
  }
  .sustainability-page__hero-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 50px 20px 24px;
  }
  .sustainability-page__hero-frame {
    left: 0;
    width: 100%;
    top: 14px;
  }
  .sustainability-page__hero-media {
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
    width: min(100%, 364px);
    height: 268px;
    margin-top: -18px;
    margin-right: 0;
  }
  .sustainability-page__hero-media img {
    position: static;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: 51% 22%;
  }
  .sustainability-page__highlight,
  .sustainability-page__mix,
  .sustainability-page__ethics {
    padding: 32px 24px;
  }
  .sustainability-page__sorting,
  .sustainability-page__international {
    min-height: 420px;
  }
  .sustainability-page__stats-band {
    padding: 30px 0 40px;
  }
  .sustainability-page__sorting-shell,
  .sustainability-page__international-shell {
    min-height: 420px;
  }
  .sustainability-page__sorting-frame,
  .sustainability-page__international-frame {
    left: 0;
    top: 38px;
    width: 100%;
    height: calc(100% - 76px);
  }
  .sustainability-page__sorting h2 {
    padding-left: 28px;
  }
  .sustainability-page__international-copy {
    padding: 56px 24px 56px 28px;
  }
  .sustainability-page__calculator {
    min-height: 0;
  }
  .sustainability-page__calculator-card {
    padding: 28px 20px 40px;
  }
  .sustainability-page__calculator-result-card {
    width: 200px;
  }
}
@media (max-width: 640px) {
  .sustainability-page__hero {
    margin-top: 34px;
  }
  .sustainability-page__hero-stage {
    gap: 16px;
    padding: 44px 16px 18px;
  }
  .sustainability-page__hero-frame {
    display: none;
  }
  .sustainability-page__hero-copy p,
  .sustainability-page__section-heading p,
  .sustainability-page__mix p,
  .sustainability-page__circular p,
  .sustainability-page__success-body,
  .sustainability-page__success-panel p,
  .sustainability-page__success-outro,
  .sustainability-page__highlight-copy p,
  .sustainability-page__international-copy p,
  .sustainability-page__calculator-intro p {
    font-size: 17px;
  }
  .sustainability-page__stats {
    grid-template-columns: 1fr;
  }
  .sustainability-page__stats-band {
    padding: 24px 0 32px;
  }
  .sustainability-page__highlight {
    grid-template-columns: 1fr;
  }
  .sustainability-page__hero-media {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
  .sustainability-page__hero-media img {
    position: static;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: 51% 22%;
    aspect-ratio: 1.48/1;
  }
  .sustainability-page__sorting,
  .sustainability-page__international {
    min-height: 360px;
  }
  .sustainability-page__sorting-shell,
  .sustainability-page__international-shell {
    min-height: 360px;
  }
  .sustainability-page__sorting h2,
  .sustainability-page__international-copy h2 {
    font-size: 36px;
  }
  .sustainability-page__sorting h2 {
    padding-left: 22px;
  }
  .sustainability-page__international-copy {
    gap: 14px;
    padding: 48px 18px 48px 22px;
  }
  .sustainability-page__process-card,
  .sustainability-page__report-card,
  .sustainability-page__ethics-card {
    padding: 22px;
  }
  .sustainability-page__calculator-controls {
    gap: 12px;
  }
  .sustainability-page__calculator-value {
    min-width: 104px;
    font-size: 40px;
  }
  .sustainability-page__calculator-submit {
    width: 100%;
    min-width: 0;
  }
}
.ethics-guidelines-page {
  padding: 0;
}

.ethics-guidelines-page h1,
.ethics-guidelines-page h2,
.ethics-guidelines-page h3,
.ethics-guidelines-page p,
.ethics-guidelines-page ul {
  margin: 0;
}

.ethics-guidelines-page__hero {
  margin: 14px auto 48px;
}

.ethics-guidelines-page__hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 506px);
  column-gap: 72px;
  align-items: start;
  min-height: 430px;
  padding: 76px 7px 52px 76px;
}

.ethics-guidelines-page__hero-frame {
  position: absolute;
  top: 36px;
  left: calc(50% - 18px);
  width: min(1237px, 100% - 42px);
  transform: translateX(-50%);
  height: 334px;
  background: url("/assets/images/deposit-system/ethics-guidelines/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 3;
}

.ethics-guidelines-page__hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-top: -68px;
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.ethics-guidelines-page__hero-copy h1 {
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(44px, 4.7vw, 56px);
  font-weight: 700;
  line-height: 1.08;
}

.ethics-guidelines-page__hero-copy p {
  max-width: 632px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.ethics-guidelines-page__hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 506px;
  height: 392px;
  margin-top: -70px;
  justify-self: end;
  overflow: hidden;
}

.ethics-guidelines-page__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ethics-guidelines-page__intro-panel {
  display: grid;
  gap: 18px;
  margin: 0 auto 52px;
  padding: 48px 56px;
  border-radius: 30px;
  background: var(--teal);
  color: var(--mist);
}

.ethics-guidelines-page__intro-panel p {
  font-size: 20px;
  line-height: 1.5;
}

.ethics-guidelines-page__principles-band {
  margin: 0 0 56px;
  padding: 62px 0 60px;
  background: linear-gradient(98deg, #2c989d 2.4%, #187d82 61.2%, #33b6bd 104.34%);
}

.ethics-guidelines-page__principles-shell {
  display: grid;
  gap: 28px;
}

.ethics-guidelines-page__section-heading {
  display: grid;
  gap: 14px;
}

.ethics-guidelines-page__section-heading h2 {
  color: #101828;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.ethics-guidelines-page__section-heading p {
  max-width: 1064px;
  color: #364153;
  font-size: 18px;
  line-height: 1.625;
}

.ethics-guidelines-page__section-heading--light h2,
.ethics-guidelines-page__section-heading--light p {
  color: var(--mist);
}

.ethics-guidelines-page__principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ethics-guidelines-page__principle-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 26px;
  border-radius: 15px;
  background: rgba(238, 251, 250, 0.72);
  box-shadow: var(--shadow-soft);
}

.ethics-guidelines-page__principle-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--teal);
}

.ethics-guidelines-page__principle-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.ethics-guidelines-page__principle-copy {
  display: grid;
  gap: 8px;
}

.ethics-guidelines-page__principle-copy h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.ethics-guidelines-page__principle-copy p {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.625;
}

.ethics-guidelines-page__principles-callout {
  display: grid;
  gap: 12px;
  padding: 40px 48px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
}

.ethics-guidelines-page__principles-callout h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.56;
}

.ethics-guidelines-page__principles-callout p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.625;
}

.ethics-guidelines-page__content-stack {
  display: grid;
  gap: 52px;
  margin: 0 auto 56px;
}

.ethics-guidelines-page__content-section {
  display: grid;
  gap: 24px;
}

.ethics-guidelines-page__topic-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.ethics-guidelines-page__topic-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ethics-guidelines-page__topic-list li img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.ethics-guidelines-page__supplier-panel {
  display: grid;
  gap: 24px;
  padding: 40px;
  border-radius: 30px;
  background: rgba(0, 157, 165, 0.15);
}

.ethics-guidelines-page__supplier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ethics-guidelines-page__supplier-item {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 15px;
  background: var(--mist);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.ethics-guidelines-page__supplier-check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.ethics-guidelines-page__supplier-outro {
  max-width: 983px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.625;
}

.ethics-guidelines-page__transparency-panel {
  display: grid;
  gap: 18px;
  padding: 24px 28px;
  border-radius: 30px;
  background: rgba(0, 157, 165, 0.15);
}

.ethics-guidelines-page__transparency-panel p {
  color: #1e2939;
  font-size: 16px;
  line-height: 1.625;
}

.ethics-guidelines-page__inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--teal);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.ethics-guidelines-page__inline-link img {
  width: 16px;
  height: 16px;
}

.ethics-guidelines-page__document-grid {
  display: grid;
  gap: 16px;
}

.ethics-guidelines-page__document-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px;
  border-radius: 15px;
  background: rgba(0, 157, 165, 0.15);
}

.ethics-guidelines-page__document-main {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.ethics-guidelines-page__document-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--teal);
  flex: 0 0 48px;
}

.ethics-guidelines-page__document-icon {
  width: 24px;
  height: 24px;
}

.ethics-guidelines-page__document-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.ethics-guidelines-page__document-copy h3 {
  color: #101828;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.ethics-guidelines-page__document-copy p {
  color: #364153;
  font-size: 14px;
  line-height: 1.43;
}

.ethics-guidelines-page__document-copy span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4a5565;
  font-size: 12px;
  line-height: 1.33;
}

.ethics-guidelines-page__document-copy span img {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.ethics-guidelines-page__document-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.ethics-guidelines-page__whistleblowing {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 0 auto 56px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(104.966deg, #197176 2.4322%, #094346 61.225%, #1e666a 104.34%);
  color: var(--mist);
}

.ethics-guidelines-page__whistleblowing-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--mist);
}

.ethics-guidelines-page__whistleblowing-icon-wrap img {
  width: 32px;
  height: 32px;
}

.ethics-guidelines-page__whistleblowing-copy {
  display: grid;
  gap: 18px;
}

.ethics-guidelines-page__whistleblowing-copy h2 {
  color: var(--mist);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.ethics-guidelines-page__whistleblowing-copy p {
  max-width: 1114px;
  color: rgba(238, 251, 250, 0.95);
  font-size: 18px;
  line-height: 1.625;
}

.ethics-guidelines-page__whistleblowing-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.ethics-guidelines-page__whistleblowing-topics span {
  color: var(--mist);
  font-size: 16px;
  line-height: 1.5;
}

.ethics-guidelines-page__whistleblowing-topics span::before {
  content: "•";
  margin-right: 8px;
}

.ethics-guidelines-page__portal-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--mist);
  color: var(--teal);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.ethics-guidelines-page__portal-link img {
  width: 20px;
  height: 20px;
}

.ethics-guidelines-page__support {
  position: relative;
  min-height: 698px;
  overflow: clip;
  background: #0f1418;
}

.ethics-guidelines-page__support-background-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ethics-guidelines-page__support-background {
  position: absolute;
  top: -15.56%;
  left: -10.04%;
  width: 120.09%;
  height: 170.58%;
  max-width: none;
}

.ethics-guidelines-page__support-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 18, 0.78) 0%, rgba(10, 14, 18, 0.48) 45%, rgba(10, 14, 18, 0.2) 100%);
}

.ethics-guidelines-page__support-shell {
  position: relative;
  min-height: 698px;
  display: flex;
  align-items: center;
}

.ethics-guidelines-page__support-frame {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 87px;
  width: min(100% - 13px, 1267px);
  height: 511px;
  overflow: hidden;
  pointer-events: none;
}

.ethics-guidelines-page__support-frame img {
  position: absolute;
  inset: -0.59% -0.24%;
  width: 100.48%;
  height: 101.18%;
  max-width: none;
}

.ethics-guidelines-page__support-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  max-width: 665px;
  padding: 0 0 0 102px;
}

.ethics-guidelines-page__support-copy h2 {
  color: var(--warm);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.05;
}

.ethics-guidelines-page__support-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.5;
}

.ethics-guidelines-page__support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ethics-guidelines-page__support-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.ethics-guidelines-page__support-link img {
  width: 20px;
  height: 20px;
}

.ethics-guidelines-page__support-link--ghost {
  border: 2px solid #fff;
  color: #fff;
}

.ethics-guidelines-page__support-link--solid {
  background: #fff;
  color: var(--ink);
}

@media (max-width: 1120px) {
  .ethics-guidelines-page__hero-stage {
    min-height: 0;
    display: grid;
    gap: 24px;
  }
  .ethics-guidelines-page__hero-frame,
  .ethics-guidelines-page__hero-media {
    position: relative;
    top: auto;
    right: auto;
    inset: auto;
    width: 100%;
  }
  .ethics-guidelines-page__hero-copy {
    position: relative;
    inset: auto;
    padding: 48px 32px 0;
    max-width: 100%;
  }
  .ethics-guidelines-page__principles-grid,
  .ethics-guidelines-page__supplier-grid {
    grid-template-columns: 1fr;
  }
  .ethics-guidelines-page__support-frame {
    width: calc(100% - 32px);
    left: 50%;
    transform: translateX(-50%);
  }
  .ethics-guidelines-page__support-copy {
    padding-left: 48px;
    padding-right: 32px;
  }
}
@media (max-width: 820px) {
  .ethics-guidelines-page__intro-panel,
  .ethics-guidelines-page__supplier-panel,
  .ethics-guidelines-page__whistleblowing {
    padding: 28px 24px;
  }
  .ethics-guidelines-page__hero-copy {
    padding: 32px 24px 0;
  }
  .ethics-guidelines-page__hero-copy h1,
  .ethics-guidelines-page__support-copy h2 {
    font-size: clamp(38px, 10vw, 48px);
  }
  .ethics-guidelines-page__section-heading h2,
  .ethics-guidelines-page__whistleblowing-copy h2 {
    font-size: 28px;
  }
  .ethics-guidelines-page__document-card,
  .ethics-guidelines-page__whistleblowing {
    grid-template-columns: 1fr;
  }
  .ethics-guidelines-page__support {
    min-height: 560px;
  }
  .ethics-guidelines-page__support-shell {
    align-items: flex-start;
    padding: 56px 0;
  }
  .ethics-guidelines-page__support-frame {
    top: 32px;
    height: calc(100% - 64px);
  }
  .ethics-guidelines-page__support-copy {
    padding: 0 24px;
  }
}
@media (max-width: 920px) {
  .ethics-guidelines-page__hero-stage {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px 24px;
  }
  .ethics-guidelines-page__hero-frame {
    display: none;
  }
  .ethics-guidelines-page__hero-copy {
    align-self: start;
    margin-top: 0;
    padding: 0;
  }
  .ethics-guidelines-page__hero-media {
    justify-self: end;
    width: min(100%, 364px);
    max-width: 364px;
    height: 268px;
    margin-top: -18px;
  }
  .ethics-guidelines-page__hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media (max-width: 600px) {
  .ethics-guidelines-page {
    padding-top: 0;
  }
  .ethics-guidelines-page__hero {
    margin-top: 12px;
  }
  .ethics-guidelines-page__hero-stage {
    gap: 16px;
    padding: 12px 16px 18px;
  }
  .ethics-guidelines-page__hero-copy {
    padding: 0;
  }
  .ethics-guidelines-page__hero-copy p {
    font-size: 17px;
  }
  .ethics-guidelines-page__hero-media {
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: 0;
  }
  .ethics-guidelines-page__hero-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.48/1;
  }
  .ethics-guidelines-page__hero,
  .ethics-guidelines-page__content-stack,
  .ethics-guidelines-page__whistleblowing {
    margin-bottom: 40px;
  }
  .ethics-guidelines-page__intro-panel p,
  .ethics-guidelines-page__section-heading p,
  .ethics-guidelines-page__principles-callout p,
  .ethics-guidelines-page__whistleblowing-copy p,
  .ethics-guidelines-page__support-copy p {
    font-size: 16px;
    line-height: 1.56;
  }
  .ethics-guidelines-page__support-link {
    width: 100%;
  }
}
.why-pant-page {
  padding: 0;
}

.why-pant-page h1,
.why-pant-page h2,
.why-pant-page h3,
.why-pant-page p {
  margin: 0;
}

.why-pant-page__hero {
  margin: 14px auto 52px;
}

.why-pant-page__hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 530px);
  column-gap: 72px;
  align-items: start;
  min-height: 466px;
  padding: 76px 7px 52px 76px;
}

.why-pant-page__hero-frame {
  position: absolute;
  top: 36px;
  left: calc(50% - 18px);
  width: min(1237px, 100% - 42px);
  transform: translateX(-50%);
  height: 370px;
  background: url("/assets/images/deposit-system/why-we-pant/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 3;
}

.why-pant-page__hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-top: -68px;
  display: grid;
  gap: 28px;
  max-width: 560px;
}

.why-pant-page__hero-copy h1 {
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(46px, 4.6vw, 55px);
  font-weight: 700;
  line-height: 1.08;
}

.why-pant-page__hero-copy p {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.why-pant-page__hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 530px;
  height: 428px;
  margin-top: -70px;
  justify-self: end;
  overflow: hidden;
}

.why-pant-page__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-pant-page__section-intro {
  display: grid;
  gap: 16px;
}

.why-pant-page__section-intro--left {
  justify-items: start;
}

.why-pant-page__section-intro--center {
  justify-items: center;
  text-align: center;
}

.why-pant-page__section-intro h2 {
  color: #101828;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.11;
}

.why-pant-page__section-intro p {
  max-width: 768px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.56;
}

.why-pant-page__map-shell .why-pant-page__section-intro p {
  max-width: none;
}

.why-pant-page__section-intro--on-dark h2,
.why-pant-page__section-intro--on-dark p {
  color: #fff;
}

.why-pant-page__section-intro--on-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.why-pant-page__reasons {
  display: grid;
  gap: 48px;
  margin: 0 auto 48px;
}

.why-pant-page__reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 26px;
}

.why-pant-page__reason-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 34px;
  border-radius: 15px;
  background: rgba(0, 157, 165, 0.2);
}

.why-pant-page__reason-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--teal);
}

.why-pant-page__reason-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.why-pant-page__reason-copy {
  display: grid;
  gap: 12px;
}

.why-pant-page__reason-copy h3 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
}

.why-pant-page__reason-copy p {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.625;
}

.why-pant-page__system {
  display: grid;
  gap: 48px;
  margin: 0 auto 52px;
  padding: 64px 94px;
  border-radius: 30px;
  background: linear-gradient(101.585deg, #197176 2.4322%, #094346 61.225%, #1e666a 104.34%);
  box-shadow: var(--shadow-soft);
}

.why-pant-page__system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.why-pant-page__system-card {
  min-height: 278px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  padding: 33px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.why-pant-page__system-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 8px;
}

.why-pant-page__system-value {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.why-pant-page__system-label {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
}

.why-pant-page__system-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.5;
}

.why-pant-page__impact {
  display: grid;
  gap: 40px;
  margin: 0 auto 60px;
  padding: 50px 80px 54px;
  border-radius: 30px;
  background: var(--mist);
  box-shadow: var(--shadow-soft);
}

.why-pant-page__impact-pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: var(--teal);
  color: var(--mist);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.why-pant-page__impact-pill img {
  width: 20px;
  height: 20px;
}

.why-pant-page__impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.why-pant-page__impact-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  padding: 26px 20px 22px;
  border-radius: 15px;
  background: var(--teal);
  color: var(--mist);
  text-align: center;
}

.why-pant-page__impact-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 4px;
}

.why-pant-page__impact-value {
  color: var(--mist);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.11;
}

.why-pant-page__impact-label {
  color: var(--mist);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
}

.why-pant-page__impact-description {
  color: var(--mist);
  font-size: 16px;
  line-height: 1.5;
}

.why-pant-page__map-band {
  margin: 0 calc(50% - 50vw);
  padding: 58px 0 88px;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.why-pant-page__map-shell {
  display: grid;
  gap: 36px;
}

.why-pant-page__map-card {
  position: relative;
}

.why-pant-page__map-canvas {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border-radius: 40px;
  background: #e3f2fd;
}
.why-pant-page__map-canvas .leaflet-container {
  width: 100%;
  height: 100%;
  min-height: 630px;
  border-radius: 40px;
  background: #e3f2fd;
  font-family: inherit;
}

.why-pant-page__map-background {
  position: absolute;
  inset: -4px 0 0;
  width: 100%;
  height: calc(100% + 8px);
  object-fit: cover;
}

.why-pant-page__map-landmass {
  position: absolute;
  inset: 18.89% 7.21% 14.76% 7.68%;
  width: auto;
  height: auto;
}

.why-pant-page__map-toolbar {
  position: absolute;
  top: 31px;
  left: 47px;
  right: 47px;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.why-pant-page__map-search {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: 15px;
  background: var(--mist);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.why-pant-page__map-search img {
  width: 20px;
  height: 20px;
}

.why-pant-page__map-search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.why-pant-page__map-search input:focus {
  outline: none;
}

.why-pant-page__map-search input::placeholder {
  color: var(--ink);
  opacity: 1;
}

.why-pant-page__map-toggle {
  min-height: 50px;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 15px;
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.why-pant-page__map-toggle button {
  min-width: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.why-pant-page__map-toggle button + button {
  border-left: 1px solid #e5e7eb;
}

.why-pant-page__map-toggle .is-active {
  background: rgba(0, 157, 165, 0.15);
  color: var(--teal);
}

.why-pant-page__map-toggle img {
  width: 20px;
  height: 20px;
}

.why-pant-page__map-marker {
  position: absolute;
  z-index: 2;
  top: var(--marker-top);
  left: var(--marker-left);
  width: var(--marker-width);
  height: var(--marker-height);
}

.why-pant-page__map-marker img,
.why-pant-page__map-marker {
  object-fit: contain;
}

.why-pant-page__map-legend {
  position: absolute;
  left: 55px;
  bottom: 39px;
  z-index: 3;
  width: 197px;
  padding: 16px;
  border-radius: 15px;
  background: var(--mist);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.why-pant-page__map-legend p {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.33;
  text-transform: uppercase;
}

.why-pant-page__map-legend ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-pant-page__map-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #364153;
  font-size: 12px;
  line-height: 1.33;
}

.why-pant-page__map-legend span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 12px;
}

.why-pant-page__map-legend .is-established {
  background: var(--teal);
}

.why-pant-page__map-legend .is-pending {
  background: var(--warm);
  border: 0.5px solid #101828;
}

.why-pant-page__map-legend .is-visited {
  background: #e85571;
}

.why-pant-page__map-zoom {
  position: absolute;
  right: 55px;
  bottom: 39px;
  z-index: 3;
  display: grid;
  width: 40px;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.why-pant-page__map-zoom button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-bottom: 1px solid var(--mist);
  background: #fff;
}

.why-pant-page__map-zoom button:last-child {
  border-bottom: 0;
}

.why-pant-page__map-zoom img {
  width: 20px;
  height: 20px;
}

.why-pant-page__map-legend,
.why-pant-page__map-zoom {
  z-index: 1000;
}

.why-pant-page__map-list {
  padding: 100px 47px 32px;
  min-height: 630px;
  border-radius: 40px;
  background: var(--mist);
}

.why-pant-map-list__group {
  margin-bottom: 24px;
}

.why-pant-map-list__group-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #364153;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.why-pant-map-list__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 12px;
}

.why-pant-map-list__group--established .why-pant-map-list__dot {
  background: #009da5;
}

.why-pant-map-list__group--pending .why-pant-map-list__dot {
  background: #f5a623;
}

.why-pant-map-list__group--visited .why-pant-map-list__dot {
  background: #e85571;
}

.why-pant-map-list__group ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-pant-map-list__group li {
  color: #364153;
  font-size: 14px;
  line-height: 1.4;
}

.why-pant-map-list__empty {
  color: var(--ink);
  font-size: 15px;
  opacity: 0.6;
}

.why-pant-map-tooltip {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #364153;
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 4px 10px;
}
.why-pant-map-tooltip::before {
  display: none;
}

@media (max-width: 1180px) {
  .why-pant-page__hero-stage {
    min-height: 520px;
  }
  .why-pant-page__hero-copy {
    padding: 102px 0 0 56px;
  }
  .why-pant-page__hero-frame {
    width: calc(100% - 120px);
  }
  .why-pant-page__hero-media {
    width: min(47%, 520px);
  }
  .why-pant-page__system {
    padding: 56px 48px;
  }
  .why-pant-page__impact {
    padding: 44px 36px 48px;
  }
}
@media (max-width: 920px) {
  .why-pant-page {
    padding-top: 0;
  }
  .why-pant-page__hero-stage {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px 24px;
  }
  .why-pant-page__hero-frame {
    display: none;
  }
  .why-pant-page__hero-copy {
    align-self: start;
    margin-top: 0;
    padding: 0;
    max-width: 100%;
  }
  .why-pant-page__hero-media {
    position: relative;
    justify-self: end;
    width: min(100%, 364px);
    max-width: 364px;
    height: 268px;
    margin-top: 0;
  }
  .why-pant-page__reasons-grid,
  .why-pant-page__system-grid,
  .why-pant-page__impact-grid {
    grid-template-columns: 1fr;
  }
  .why-pant-page__system {
    padding: 44px 28px;
  }
  .why-pant-page__impact {
    padding: 40px 24px 42px;
  }
  .why-pant-page__map-toolbar {
    left: 24px;
    right: 24px;
    top: 24px;
    grid-template-columns: 1fr;
  }
  .why-pant-page__map-canvas {
    min-height: 560px;
  }
  .why-pant-page__map-legend {
    left: 24px;
    bottom: 24px;
  }
  .why-pant-page__map-zoom {
    right: 24px;
    bottom: 24px;
  }
}
@media (max-width: 640px) {
  .why-pant-page__hero {
    margin: 12px auto 42px;
  }
  .why-pant-page__hero-stage {
    gap: 16px;
    padding: 12px 16px 18px;
  }
  .why-pant-page__hero-copy {
    gap: 20px;
    padding: 0;
  }
  .why-pant-page__hero-copy h1 {
    font-size: 44px;
  }
  .why-pant-page__hero-copy p,
  .why-pant-page__section-intro p {
    font-size: 17px;
  }
  .why-pant-page__hero-media {
    width: 100%;
    max-width: none;
    height: auto;
  }
  .why-pant-page__hero-media img {
    height: auto;
    aspect-ratio: 1.48/1;
  }
  .why-pant-page__section-intro h2 {
    font-size: 32px;
  }
  .why-pant-page__reason-card,
  .why-pant-page__impact-card,
  .why-pant-page__system-card {
    padding: 24px;
  }
  .why-pant-page__reason-card {
    grid-template-columns: 1fr;
  }
  .why-pant-page__reason-icon-wrap {
    margin-bottom: 4px;
  }
  .why-pant-page__system-value {
    font-size: 52px;
  }
  .why-pant-page__system-label {
    font-size: 22px;
  }
  .why-pant-page__impact-label {
    font-size: 17px;
  }
  .why-pant-page__map-band {
    padding: 46px 0 64px;
  }
  .why-pant-page__map-canvas {
    min-height: 480px;
    border-radius: 28px;
  }
  .why-pant-page__map-toggle {
    width: 100%;
  }
  .why-pant-page__map-toggle button {
    min-width: 0;
  }
  .why-pant-page__map-legend {
    width: calc(100% - 88px);
  }
}
.pantereisen-page__hero {
  margin: 14px auto 4px;
}
.pantereisen-page__hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 530px);
  column-gap: 72px;
  align-items: start;
  min-height: 370px;
  padding: 76px 7px 8px 76px;
}
.pantereisen-page__hero-frame {
  position: absolute;
  top: 36px;
  left: calc(50% - 18px);
  width: min(1237px, 100% - 42px);
  transform: translateX(-50%);
  height: 334px;
  background: url("/assets/images/deposit-system/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 3;
}
.pantereisen-page__hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-top: -68px;
}
.pantereisen-page__hero-copy h1 {
  font-size: clamp(46px, 4.4vw, 55px);
  font-weight: 700;
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: none;
}
.pantereisen-page__hero-copy p {
  font-size: 20px;
  color: var(--ink);
  line-height: 1.5;
  max-width: 608px;
  margin: 0;
}
.pantereisen-page__hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 530px;
  height: 392px;
  margin-top: -70px;
  justify-self: end;
  overflow: hidden;
}
.pantereisen-page__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pantereisen-page__tabs {
  display: flex;
  gap: 1rem;
  padding-block: 0 4.5rem;
  flex-wrap: wrap;
}
.pantereisen-page__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100vmax;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  background: var(--lys, #eefbfa);
  color: var(--blågrønn, #009da5);
}
.pantereisen-page__tab img {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.pantereisen-page__tab--active {
  background: var(--blågrønn, #009da5);
  color: var(--lys, #eefbfa);
}
.pantereisen-page__tab:hover:not(.pantereisen-page__tab--active) {
  background: #d0f4f3;
}
.pantereisen-page__facility-band {
  background: var(--blågrønn, #009da5);
  padding-block: 3rem;
}
.pantereisen-page__facility-card {
  background: var(--lys, #eefbfa);
  border-radius: 1.875rem;
  padding: 2.125rem 2.125rem 2.5rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.pantereisen-page__facility-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #101828;
  margin-block-end: 0.375rem;
}
.pantereisen-page__facility-header p {
  font-size: 1.125rem;
  color: #4a5565;
}
.pantereisen-page__facility-map-wrap {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1148/903;
  width: 100%;
}
#veolia-anlegget .pantereisen-page__facility-map-wrap {
  aspect-ratio: 1148/611;
}
.pantereisen-page__facility-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 1rem;
  display: block;
  object-fit: cover;
}
.pantereisen-page__hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  border: 4px solid white;
  box-shadow: 0 10px 7.5px rgba(0, 0, 0, 0.1), 0 4px 3px rgba(0, 0, 0, 0.1);
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-indent: 0.02em;
  padding-bottom: 2px;
}
.pantereisen-page__hotspot::before {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #101828;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.15s ease;
}
.pantereisen-page__hotspot:hover::before, .pantereisen-page__hotspot:focus-visible::before {
  opacity: 1;
}
.pantereisen-page__steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 900px) {
  .pantereisen-page__steps-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .pantereisen-page__steps-list {
    grid-template-columns: 1fr;
  }
}
.pantereisen-page__step-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 157, 165, 0.08);
  border-radius: 0.625rem;
  padding: 0.625rem 0.875rem;
}
.pantereisen-page__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  box-sizing: border-box;
  border-radius: 50%;
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding-bottom: 1px;
}
.pantereisen-page__step-label {
  font-size: 1rem;
  font-weight: 600;
  color: #101828;
}
.pantereisen-page__facts-band {
  background: var(--blågrønn, #009da5);
  padding-block-end: 3.5rem;
}
.pantereisen-page__facts-inner {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1.875rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pantereisen-page__facts-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}
.pantereisen-page__facts-heading img {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.pantereisen-page__facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) {
  .pantereisen-page__facts-grid {
    grid-template-columns: 1fr;
  }
}
.pantereisen-page__fact-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.9375rem;
  padding: 1.5rem;
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  align-items: baseline;
}
.pantereisen-page__fact-card strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.pantereisen-page__fact-card span {
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 920px) {
  .pantereisen-page__hero-stage {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 24px 20px 16px;
  }
  .pantereisen-page__hero-frame {
    display: none;
  }
  .pantereisen-page__hero-copy {
    align-self: start;
    margin-top: 0;
  }
  .pantereisen-page__hero-copy h1 {
    font-size: clamp(38px, 8vw, 48px);
    margin-bottom: 16px;
  }
  .pantereisen-page__hero-copy p {
    font-size: 18px;
    max-width: 100%;
  }
  .pantereisen-page__hero-media {
    justify-self: end;
    width: min(100%, 364px);
    max-width: 364px;
    height: 268px;
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .pantereisen-page__hero {
    margin: 12px auto 8px;
  }
  .pantereisen-page__hero-stage {
    gap: 16px;
    padding: 12px 16px 8px;
  }
  .pantereisen-page__hero-copy p {
    font-size: 17px;
  }
  .pantereisen-page__hero-media {
    width: 100%;
    max-width: none;
    height: auto;
  }
  .pantereisen-page__hero-media img {
    height: auto;
    aspect-ratio: 1.48/1;
  }
  .pantereisen-page__hotspot {
    width: 36px;
    height: 36px;
    border-width: 3px;
    font-size: 0.9375rem;
  }
  .pantereisen-page__hotspot::before {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}
.bph-hero {
  position: relative;
  background-color: #202020;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center 34%;
  min-height: 777px;
  padding-block: 4rem 5.5rem;
  overflow: hidden;
  isolation: isolate;
}
.bph-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 32, 32, 0.58);
}
.bph-hero .shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.bph-hero__frame {
  position: absolute;
  inset: 20px 14px 42px;
  background: url("/assets/images/bestill-pantehenting/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}
.bph-hero__inner {
  position: relative;
  z-index: 1;
  width: min(732px, 100%);
  margin-inline: auto;
  padding-block: 120px 142px;
  text-align: center;
}
.bph-hero__title {
  font-family: "Arno Pro Display", var(--serif);
  font-size: clamp(3rem, 4.3vw, 3.4375rem);
  font-weight: 700;
  color: #f3efa1;
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0 0 1.5rem;
}
.bph-hero__body {
  max-width: 545px;
  margin: 0 auto 2.25rem;
  font-size: 1.125rem;
  color: rgba(238, 251, 250, 0.96);
  line-height: 1.55;
}
.bph-hero__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto 1.75rem;
}
.bph-hero__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 168px;
  padding: 1.5rem 2rem 1.375rem;
  border-radius: 15px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.bph-hero__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.bph-hero__card--filled {
  background: #eefbfa;
  color: #363333;
  box-shadow: 0 8px 7.5px rgba(0, 0, 0, 0.15);
}
.bph-hero__card--outlined {
  background: transparent;
  border: 3px solid rgba(238, 251, 250, 0.96);
  color: #eefbfa;
}
.bph-hero__card-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 0.75rem;
}
.bph-hero__card-label {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.bph-hero__card-sub {
  max-width: 290px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.45;
  opacity: 1;
}
.bph-hero__features {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(238, 251, 250, 0.95);
}
.bph-hero__phone {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(238, 251, 250, 0.95);
}
.bph-hero__phone-link {
  color: #eefbfa;
  font-weight: 700;
  text-decoration: none;
}
.bph-hero__phone-link:hover {
  text-decoration: underline;
}

.bph-steps {
  padding: 3.75rem 0 3.5rem;
}
.bph-steps__heading {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  line-height: 1.333;
  font-weight: 700;
  color: #363333;
}
.bph-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 960px) {
  .bph-steps__grid {
    grid-template-columns: 1fr;
  }
}

.bph-step-card {
  background: #009da5;
  border-radius: 15px;
  min-height: 192px;
  padding: 1.625rem 1.625rem 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bph-step-card__icon-wrap {
  width: 48px;
  height: 48px;
  background: #eefbfa;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.625rem;
}
.bph-step-card__icon {
  width: 24px;
  height: 24px;
}
.bph-step-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  line-height: 1.555;
  font-weight: 700;
}
.bph-step-card__body {
  max-width: 262px;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.428;
  color: rgba(255, 255, 255, 0.94);
}

.bph-benefits {
  padding: 0 0 3rem;
}
.bph-benefits__heading {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  line-height: 1.333;
  font-weight: 700;
  color: #363333;
}
.bph-benefits__card {
  background: #eefbfa;
  border-radius: 15px;
  padding: 2.125rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 640px) {
  .bph-benefits__card {
    padding: 1.5rem;
  }
}
.bph-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) {
  .bph-benefits__grid {
    grid-template-columns: 1fr;
  }
}

.bph-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bph-benefit-item__icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #009da5;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #eefbfa;
}
.bph-benefit-item__icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}
.bph-benefit-item__vector {
  position: absolute;
  display: block;
  max-width: none;
}
.bph-benefit-item__vector--pickup-body {
  inset: 16.67% 41.67% 25% 8.33%;
}
.bph-benefit-item__vector--pickup-axle {
  inset: 75% 37.5% 25% 37.5%;
}
.bph-benefit-item__vector--pickup-cab {
  inset: 33.33% 8.33% 25% 58.33%;
}
.bph-benefit-item__vector--pickup-wheel-left {
  inset: 66.67% 62.5% 16.67% 20.83%;
}
.bph-benefit-item__vector--pickup-wheel-right {
  inset: 66.67% 20.83% 16.67% 62.5%;
}
.bph-benefit-item__vector--containers-frame {
  inset: 8.34% 12.5%;
}
.bph-benefit-item__vector--containers-divider {
  inset: 50% calc(50% - 0.5px) 8.33% calc(50% - 0.5px);
}
.bph-benefit-item__vector--containers-lid {
  inset: 29.17% 13.71% 50% 13.7%;
}
.bph-benefit-item__vector--containers-top {
  inset: 17.79% 31.25% 60.75% 31.25%;
}
.bph-benefit-item__vector--stats-frame {
  inset: 12.5%;
}
.bph-benefit-item__vector--stats-accent {
  inset: 37.5% 25% 29.17% 75%;
}
.bph-benefit-item__vector--stats-line {
  inset: 20.83% 45.83% 29.17% 54.17%;
}
.bph-benefit-item__vector--stats-bar {
  inset: 58.33% 66.67% 29.17% 33.33%;
}
.bph-benefit-item__vector--schedule-pin-left {
  inset: 8.33% 66.67% 75% 33.33%;
}
.bph-benefit-item__vector--schedule-pin-right {
  inset: 8.33% 33.33% 75% 66.67%;
}
.bph-benefit-item__vector--schedule-frame {
  inset: 16.67% 12.5% 8.33% 12.5%;
}
.bph-benefit-item__vector--schedule-divider {
  inset: 41.67% 12.5% 58.33% 12.5%;
}
.bph-benefit-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.bph-benefit-item__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  color: #363333;
}
.bph-benefit-item__body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.428;
  color: #363333;
}

.bph-faq {
  padding: 0 0 3.875rem;
}
.bph-faq__panel {
  padding: 2.125rem;
  border-radius: 30px;
  background: linear-gradient(107deg, #197176 2.43%, #094346 61.23%, #1e666a 104.34%);
}
.bph-faq__heading {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  line-height: 1.333;
  font-weight: 700;
  color: #fff;
}
.bph-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bph-faq__item {
  background: #eefbfa;
  border: 0;
  border-radius: 15px;
  overflow: hidden;
}
.bph-faq__item[open] .bph-faq__chevron {
  transform: rotate(180deg);
}
.bph-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  color: #363333;
  cursor: pointer;
  list-style: none;
}
.bph-faq__question::-webkit-details-marker {
  display: none;
}
.bph-faq__question:hover {
  background: transparent;
}
.bph-faq__chevron {
  flex-shrink: 0;
  color: #009da5;
  transition: transform 0.2s;
}
.bph-faq__answer {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.428;
  color: #363333;
}

@media (max-width: 960px) {
  .bph-hero {
    min-height: auto;
    padding-block: 3.5rem 4rem;
  }
  .bph-hero__frame {
    display: none;
  }
  .bph-hero__inner {
    padding-block: 1.5rem 0;
  }
  .bph-hero__cards {
    grid-template-columns: 1fr;
  }
  .bph-steps__grid,
  .bph-benefits__grid {
    grid-template-columns: 1fr;
  }
  .bph-step-card__body {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .bph-hero {
    padding-block: 3rem 3.5rem;
  }
  .bph-hero__title {
    font-size: 2.5rem;
  }
  .bph-hero__body, .bph-hero__features, .bph-hero__phone {
    font-size: 0.9375rem;
  }
  .bph-hero__card {
    min-height: 150px;
    padding-inline: 1.5rem;
  }
  .bph-benefits__heading,
  .bph-steps__heading,
  .bph-faq__heading {
    font-size: 1.3125rem;
  }
  .bph-faq__panel {
    padding: 1.25rem;
    border-radius: 22px;
  }
}
.fot-hero {
  position: relative;
  padding-top: 50px;
  padding-bottom: 42px;
}
.fot-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--hero-surface);
  z-index: 0;
}
.fot-hero__shell {
  position: relative;
  z-index: 1;
}
.fot-hero__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 334px;
  margin: 0 auto 48px;
  padding: 48px 56px;
}
.fot-hero__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}
.fot-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.fot-hero__copy h1 {
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(46px, 4.8vw, 55px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 14px;
}
.fot-hero__copy p {
  max-width: 560px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.fot-teal-band {
  background: #009da5;
  padding-block: 3.5rem 4rem;
}

.fot-section-label {
  font-size: 1rem;
  font-weight: 500;
  color: #eefbfa;
  margin-block-end: 0.625rem;
}
.fot-section-label--spaced {
  margin-block-start: 3rem;
}

.fot-section-sub {
  font-size: 1.125rem;
  color: #eefbfa;
  margin-block-end: 1.75rem;
}

.fot-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-block-end: 2rem;
}
@media (max-width: 900px) {
  .fot-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .fot-stats {
    grid-template-columns: 1fr;
  }
}

.fot-stat-card {
  background: #eefbfa;
  border-radius: 15px;
  padding: 1.625rem;
}
.fot-stat-card__icon-wrap {
  width: 48px;
  height: 48px;
  background: #009da5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 1rem;
}
.fot-stat-card__icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.fot-stat-card__value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #009da5;
  line-height: 1.1;
  margin-block-end: 0.375rem;
}
.fot-stat-card__label {
  font-size: 1rem;
  font-weight: 600;
  color: #009da5;
  margin-block-end: 0.5rem;
}
.fot-stat-card__desc {
  font-size: 0.875rem;
  color: #009da5;
  line-height: 1.5;
  opacity: 0.85;
}

.fot-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .fot-milestones {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .fot-milestones {
    grid-template-columns: 1fr;
  }
}

.fot-milestone-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 1.625rem 1.625rem 0.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fot-milestone-card__year {
  font-size: 3rem;
  font-weight: 700;
  color: #eefbfa;
  line-height: 1;
}
.fot-milestone-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #eefbfa;
}
.fot-milestone-card__body {
  font-size: 1rem;
  color: #eefbfa;
  line-height: 1.5;
  opacity: 0.9;
  padding-block-end: 1.5rem;
}

.fot-comparison {
  padding-block: 4rem;
  background: #f8fbfb;
}
.fot-comparison__card {
  background: linear-gradient(107.5deg, #197176 2.4%, #094346 61.2%, #1e666a 104.3%);
  border-radius: 30px;
  padding: 3rem 3rem 3.5rem;
}
.fot-comparison__header {
  text-align: center;
  margin-block-end: 2.5rem;
}
.fot-comparison__label {
  font-size: 1rem;
  font-weight: 500;
  color: #eefbfa;
  margin-block-end: 0.5rem;
}
.fot-comparison__sub {
  font-size: 1.125rem;
  color: #eefbfa;
}
.fot-comparison__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 700px) {
  .fot-comparison__grid {
    grid-template-columns: 1fr;
  }
}
.fot-comparison__item {
  background: #eefbfa;
  border-radius: 16px;
  padding: 1.625rem;
  text-align: center;
}
.fot-comparison__value {
  font-size: 3rem;
  font-weight: 700;
  color: #009da5;
  line-height: 1;
  margin-block-end: 0.5rem;
}
.fot-comparison__country {
  font-size: 1.125rem;
  font-weight: 600;
  color: #009da5;
  margin-block-end: 0.375rem;
}
.fot-comparison__desc {
  font-size: 0.875rem;
  color: #009da5;
}

@media (max-width: 700px) {
  .fot-hero {
    padding-top: 0;
    padding-bottom: 32px;
  }
  .fot-hero__stage {
    min-height: 0;
    margin: 12px auto 32px;
    padding: 12px 0 0;
  }
  .fot-hero__frame {
    display: none;
  }
  .fot-hero__copy h1 {
    font-size: clamp(38px, 10vw, 44px);
  }
  .fot-hero__copy p {
    font-size: 18px;
  }
}
.faq-page {
  padding: 0;
}
.faq-page__hero {
  margin: 14px auto 14px;
}
.faq-page__hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 506px);
  column-gap: 72px;
  align-items: start;
  min-height: 430px;
  padding: 76px 7px 52px 76px;
}
.faq-page__hero-frame {
  position: absolute;
  top: 36px;
  left: calc(50% - 18px);
  width: min(1237px, 100% - 42px);
  transform: translateX(-50%);
  height: 334px;
  background: url("/assets/images/deposit-system/ethics-guidelines/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 3;
}
.faq-page__hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-top: -68px;
  display: grid;
  gap: 18px;
  max-width: 520px;
}
.faq-page__hero-copy h1 {
  margin: 0;
  color: var(--teal, #009da5);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(44px, 4.7vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  white-space: nowrap;
}
.faq-page__hero-copy p {
  max-width: 320px;
  margin: 0;
  color: var(--ink, #202020);
  font-size: 20px;
  line-height: 1.5;
}
.faq-page__hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 506px;
  height: 392px;
  margin-top: -70px;
  justify-self: end;
  overflow: hidden;
}
.faq-page__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.faq-page__assistant-band {
  margin-top: 14px;
  background: linear-gradient(180deg, #10a9b2 0%, #009da5 100%);
  padding: 32px 0 76px;
}
.faq-page__assistant-shell {
  color: var(--mist, #eefbfa);
}
.faq-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--mist, #eefbfa);
  font-size: 14px;
  line-height: 20px;
}
.faq-page__eyebrow img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.faq-page__search-shell {
  position: relative;
}
.faq-page__search-shell input {
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 999px;
  padding: 0 76px 0 24px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--mist, #eefbfa);
  font-size: 16px;
  line-height: 1.5;
}
.faq-page__search-shell input::placeholder {
  color: rgba(255, 255, 255, 0.92);
}
.faq-page__search-shell button {
  position: absolute;
  top: 8px;
  right: 11px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.faq-page__tip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  color: rgba(238, 251, 250, 0.86);
  font-size: 14px;
  line-height: 21px;
}
.faq-page__tip img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq-page__panel {
  margin-top: 40px;
  padding: 32px 28px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
}
.faq-page__tablist {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 0;
  border-bottom: 1px solid var(--mist, #eefbfa);
}
.faq-page__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 8px 2px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--mist, #eefbfa);
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
}
.faq-page__tab.is-active {
  border-bottom-color: var(--mist, #eefbfa);
}
.faq-page__tab-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}
.faq-page__tab-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.faq-page__tab-panel {
  padding-top: 24px;
}
.faq-page__prompt-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-page__prompt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 54px;
  padding: 14px 21px;
  border: 1px solid var(--mist, #eefbfa);
  border-radius: 15px;
  background: var(--mist, #eefbfa);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  color: var(--ink, #363333);
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
.faq-page__prompt-row img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq-page__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-page__accordion-item {
  border-radius: 15px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.faq-page__accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 54px;
  padding: 14px 21px;
  border: 1px solid var(--mist, #eefbfa);
  border-radius: 15px;
  background: var(--mist, #eefbfa);
  color: var(--ink, #363333);
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  list-style: none;
  transition: border-radius 0.15s ease;
}
.faq-page__accordion-item summary::-webkit-details-marker {
  display: none;
}
.faq-page__accordion-item summary:hover {
  background: #e4f8f7;
}
.faq-page__accordion-item[open] summary {
  border-radius: 15px 15px 0 0;
}
.faq-page__accordion-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
details[open] .faq-page__accordion-icon {
  transform: rotate(45deg);
}
.faq-page__accordion-answer {
  padding: 16px 21px 20px;
  border: 1px solid var(--mist, #eefbfa);
  border-top: 0;
  border-radius: 0 0 15px 15px;
  background: rgba(238, 251, 250, 0.15);
  color: var(--mist, #eefbfa);
  font-size: 15px;
  line-height: 1.65;
  white-space: pre-line;
}
.faq-page__category-groups {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-page__category-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-page__category-group-title {
  margin: 0;
  color: rgba(238, 251, 250, 0.75);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 16px;
  text-transform: uppercase;
}
.faq-page__categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.faq-page__category-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 86px;
  padding: 21px;
  border: 2px solid var(--mist, #eefbfa);
  border-radius: 10px;
  background: var(--mist, #eefbfa);
  color: var(--ink, #363333);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.faq-page__category-card:hover, .faq-page__category-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.faq-page__category-card.is-active {
  background: #f3efa1;
  border-color: #f3efa1;
}
.faq-page__category-card img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-page__category-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.faq-page__category-detail[hidden] {
  display: none;
}
.faq-page__category-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(238, 251, 250, 0.75);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.faq-page__category-back::before {
  content: "←";
  font-size: 14px;
}
.faq-page__category-back:hover {
  color: var(--mist, #eefbfa);
}
.faq-page__category-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-page__category-copy strong {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.faq-page__category-copy span {
  font-size: 14px;
  line-height: 20px;
}
.faq-page__results-panel {
  padding-top: 0;
}
.faq-page__results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.faq-page__results-head h2,
.faq-page__results-head p {
  margin: 0;
}
.faq-page__results-head h2 {
  color: var(--mist, #eefbfa);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}
.faq-page__results-head p {
  color: rgba(238, 251, 250, 0.9);
  font-size: 14px;
  line-height: 20px;
}
.faq-page__ai-answer {
  padding: 36px 28px 34px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--mist, #eefbfa);
}
.faq-page__ai-answer-header {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
}
.faq-page__ai-answer-header img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.faq-page__ai-answer-body {
  max-width: 876px;
  margin: 0 0 12px 32px;
  font-size: 16px;
  line-height: 26px;
}
.faq-page__ai-answer-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 540px;
  margin: 0 0 0 32px;
  font-size: 12px;
  line-height: 16px;
}
.faq-page__ai-answer-note img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-page__results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.faq-page__result-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 26px;
  border: 2px solid var(--mist, #eefbfa);
  border-radius: 14px;
  background: var(--mist, #eefbfa);
  box-shadow: 0 4px 3.5px rgba(0, 0, 0, 0.25);
  color: var(--ink, #363333);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.faq-page__result-card:hover, .faq-page__result-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.18);
}
.faq-page__result-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}
.faq-page__result-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq-page__result-copy strong {
  margin: 8px 0 6px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.faq-page__result-copy span:last-child {
  font-size: 14px;
  line-height: 22.75px;
}
.faq-page__result-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(0, 157, 165, 0.1);
  color: var(--teal, #009da5);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.faq-page__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.faq-page.is-results-view .faq-page__hero-stage {
  grid-template-columns: 1fr;
  column-gap: 0;
  min-height: 183px;
  padding: 34px 46px 30px 44px;
}
.faq-page.is-results-view .faq-page__hero-frame {
  top: 50%;
  left: 0;
  width: 100%;
  height: 270px;
  transform: translateY(-50%);
  background: url("/assets/images/about/hero-frame.svg") center/100% 100% no-repeat;
}
.faq-page.is-results-view .faq-page__hero-copy {
  max-width: 308px;
  margin-top: 0;
  gap: 16px;
}
.faq-page.is-results-view .faq-page__hero-media {
  display: none;
}
.faq-page.is-results-view .faq-page__tablist {
  display: none;
}
.faq-page.is-results-view .faq-page__panel {
  padding-top: 30px;
}

@media (max-width: 1180px) {
  .faq-page__hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    column-gap: 32px;
    min-height: 372px;
    padding: 56px 28px 30px;
  }
  .faq-page__hero-frame {
    top: 28px;
    left: 50%;
    width: calc(100% - 24px);
    transform: translateX(-50%);
  }
  .faq-page__hero-copy {
    margin-top: -24px;
    max-width: 320px;
  }
  .faq-page__hero-copy p {
    max-width: 300px;
  }
  .faq-page__hero-media {
    width: 100%;
    max-width: 430px;
    height: 340px;
    margin-top: -28px;
  }
  .faq-page__categories {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .faq-page__hero-frame {
    top: 24px;
    left: 50%;
    width: calc(100% - 12px);
    height: 250px;
    transform: translateX(-50%);
  }
  .faq-page__hero-stage {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 30px 20px 24px;
  }
  .faq-page__hero-copy {
    margin-top: 0;
    max-width: 320px;
  }
  .faq-page__hero-copy h1 {
    font-size: clamp(42px, 9vw, 52px);
    white-space: normal;
  }
  .faq-page__hero-copy p {
    font-size: 18px;
  }
  .faq-page__hero-media {
    width: 100%;
    max-width: none;
    height: 220px;
    margin-top: 0;
  }
  .faq-page__assistant-band {
    padding: 28px 0 48px;
  }
  .faq-page__panel {
    margin-top: 28px;
    padding: 24px 16px 16px;
    border-radius: 24px;
  }
  .faq-page__tablist {
    gap: 10px;
    overflow-x: auto;
  }
  .faq-page__categories {
    grid-template-columns: 1fr;
  }
  .faq-page__result-card {
    padding: 20px;
  }
  .faq-page__ai-answer {
    padding: 24px 18px 22px;
  }
  .faq-page__ai-answer-body, .faq-page__ai-answer-note {
    margin-left: 0;
  }
  .faq-page.is-categories-view .faq-page__hero, .faq-page.is-results-view .faq-page__hero {
    padding: 30px 20px 24px;
  }
}
@media (max-width: 640px) {
  .faq-page__hero-frame {
    display: none;
  }
}
@media (max-width: 560px) {
  .faq-page__hero-copy {
    max-width: 280px;
  }
  .faq-page__hero-copy h1 {
    font-size: clamp(36px, 12vw, 46px);
  }
  .faq-page__search-shell input {
    height: 63px;
    font-size: 18px;
  }
  .faq-page__tab, .faq-page__prompt-row, .faq-page__category-copy strong, .faq-page__result-copy strong {
    font-size: 15px;
  }
  .faq-page__result-copy span:last-child, .faq-page__category-copy span, .faq-page__tip {
    font-size: 13px;
    line-height: 20px;
  }
  .faq-page__results-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news-overview-page {
  padding: 0 0 80px;
}

.news-overview-page__hero {
  position: relative;
  margin: 14px auto 52px;
  padding: 98px 74px 62px;
  min-height: 334px;
  display: flex;
  align-items: center;
}

.news-overview-page__frame {
  position: absolute;
  top: 36px;
  left: 6px;
  right: 0;
  bottom: 0;
  background: url("/assets/images/deposit-system/hero-frame.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}

.news-overview-page__intro {
  position: relative;
  z-index: 1;
  max-width: 540px;
}
.news-overview-page__intro h1 {
  margin: 0;
  color: var(--teal);
  font-family: "Arno Pro", var(--serif);
  font-size: clamp(42px, 4vw, 55px);
  font-weight: 700;
  line-height: 1.1;
}
.news-overview-page__intro p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
  max-width: 440px;
}

.news-overview-page__featured-wrap {
  margin-bottom: 64px;
}

.news-overview-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-card);
}
.news-overview-featured:hover .news-overview-readmore {
  gap: 10px;
}

.news-overview-featured__media {
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.news-overview-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-overview-featured__body {
  background: var(--teal);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-overview-featured__body .pill.solid-inverted {
  align-self: flex-start;
  background: rgba(238, 251, 250, 0.2);
  color: var(--mist);
  border: none;
  margin-bottom: 20px;
}
.news-overview-featured__body h2 {
  margin: 0 0 16px;
  color: var(--mist);
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}
.news-overview-featured__body > p {
  margin: 0 0 24px;
  color: var(--mist);
  font-size: 18px;
  line-height: 1.55;
  flex: 1;
}

.news-overview-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.news-overview-featured__meta .news-overview-date {
  color: var(--mist);
  font-size: 16px;
  font-weight: 500;
}
.news-overview-featured__meta .news-overview-readmore {
  color: var(--mist);
  font-size: 16px;
  font-weight: 600;
}

.news-overview-date {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
}

.news-overview-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.15s ease;
}
.news-overview-readmore svg {
  flex-shrink: 0;
}

.news-overview-page__spotlight-wrap {
  margin-bottom: 64px;
}

.news-overview-section-title {
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}

.news-overview-spotlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: rgba(0, 157, 165, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.news-card:hover .news-overview-readmore {
  gap: 10px;
}

.news-card__media {
  background: var(--mist);
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.news-card__body h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

.news-card--grid .news-card__body {
  gap: 0;
}
.news-card--grid .news-card__body .pill {
  align-self: flex-start;
  margin-bottom: 12px;
}
.news-card--grid .news-card__body h3 {
  margin-bottom: 8px;
}

.news-card__ingress {
  margin: 0 0 auto;
  font-size: 16px;
  line-height: 1.625;
  color: var(--ink);
  padding-bottom: 12px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 157, 165, 0.15);
  margin-top: auto;
}

.news-overview-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.news-filter-btn {
  appearance: none;
  border: 2px solid var(--mist);
  background: var(--mist);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  padding: 0 20px;
  height: 44px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.news-filter-btn:hover {
  border-color: var(--teal);
}
.news-filter-btn.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--mist);
}

.news-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-overview-grid .news-card.is-hidden {
  display: none;
}

.news-overview-load-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.secondary-btn {
  appearance: none;
  background: none;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  padding: 0 32px;
  height: 48px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.secondary-btn:hover {
  background: var(--teal);
  color: var(--mist);
}

@media (max-width: 900px) {
  .news-overview-featured {
    grid-template-columns: 1fr;
  }
  .news-overview-featured__media {
    height: 260px;
  }
  .news-overview-spotlight,
  .news-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .news-overview-page__hero {
    margin: 12px auto 32px;
    padding: 12px 0 0;
    min-height: 0;
    align-items: flex-start;
  }
  .news-overview-page__frame {
    display: none;
  }
  .news-overview-page__intro h1 {
    font-size: clamp(38px, 10vw, 44px);
  }
  .news-overview-page__intro p {
    font-size: 18px;
    max-width: 100%;
  }
  .news-overview-spotlight,
  .news-overview-grid {
    grid-template-columns: 1fr;
  }
  .news-overview-filters {
    gap: 8px;
  }
}
.producer-importer-page {
  background: #fff;
  color: #363333;
  font-family: var(--sans);
  line-height: 1.5;
}
.producer-importer-page * {
  box-sizing: border-box;
}
.producer-importer-page h1,
.producer-importer-page h2,
.producer-importer-page h3,
.producer-importer-page p {
  margin: 0;
}
.producer-importer-page img {
  display: block;
  max-width: 100%;
}
.producer-importer-page ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.producer-importer-page details summary {
  cursor: pointer;
  list-style: none;
}
.producer-importer-page details summary::-webkit-details-marker {
  display: none;
}
.producer-importer-page__section-heading {
  max-width: 830px;
  margin: 0 auto 48px;
  text-align: center;
}
.producer-importer-page__section-heading h2 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 16px;
}
.producer-importer-page__section-heading p {
  font-size: 18px;
  line-height: 1.55;
  color: #4a5565;
}
.producer-importer-page__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 47px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.producer-importer-page__button img {
  width: 18px;
  height: 18px;
}
.producer-importer-page__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.16);
}
.producer-importer-page__button--primary {
  background: #009da5;
  color: #fff;
}
.producer-importer-page__button--ghost {
  background: transparent;
  color: #363333;
  border: 1px solid #363333;
  box-shadow: none;
}
.producer-importer-page__button--light {
  background: #eefbfa;
  color: #363333;
  height: 60px;
  padding: 0 26px;
}
.producer-importer-page__button--outline-light {
  background: transparent;
  color: #eefbfa;
  border: 2px solid #eefbfa;
  height: 60px;
  padding: 0 24px;
  box-shadow: none;
}
.producer-importer-page__button--outline-light:hover {
  background: rgba(238, 251, 250, 0.12);
}
.producer-importer-page__top-surface {
  position: relative;
  isolation: isolate;
}
.producer-importer-page__top-surface::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--hero-surface);
  pointer-events: none;
  z-index: 0;
}
.producer-importer-page__hero-shell {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 0;
}
.producer-importer-page__hero {
  position: relative;
  z-index: 1;
  min-height: 696px;
  padding: 86px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 296px;
  gap: 48px;
  align-items: start;
  isolation: isolate;
}
.producer-importer-page__hero-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.producer-importer-page__hero-frame img {
  width: 100%;
  height: 100%;
}
.producer-importer-page__hero-copy {
  position: relative;
  z-index: 1;
}
.producer-importer-page__hero-copy h1 {
  font-family: "Arno Pro", "Arno Pro Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 55px);
  line-height: 1.1;
  color: #009da5;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  max-width: 820px;
}
.producer-importer-page__hero-copy > p {
  font-size: 20px;
  line-height: 1.6;
  color: #363333;
  max-width: 780px;
  margin-bottom: 36px;
}
.producer-importer-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 18px;
  border: 1px solid #363333;
  border-radius: 999px;
  background: transparent;
  color: #363333;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
}
.producer-importer-page__eyebrow img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%);
}
.producer-importer-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.producer-importer-page__hero-actions .producer-importer-page__button--light {
  height: 47px;
  padding: 0 24px;
}
.producer-importer-page__hero-aside {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 88px;
  transform: translateY(-50%);
  width: 272px;
}
.producer-importer-page__hero-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.producer-importer-page__hero-stat {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #eefbfa;
  border-radius: 15px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  min-height: 96px;
}
.producer-importer-page__hero-stat p {
  font-size: 14px;
  font-weight: 400;
  color: #363333;
  margin: 0;
}
.producer-importer-page__hero-stat strong {
  font-size: 16px;
  font-weight: 700;
  color: #363333;
  display: block;
  margin-top: 4px;
}
.producer-importer-page__hero-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #009da5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.producer-importer-page__hero-stat-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.producer-importer-page__resources {
  position: relative;
  z-index: 1;
  padding: 60px 0 80px;
  background: transparent;
}
.producer-importer-page__resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.producer-importer-page__resource-card {
  background: #009da5 !important;
  color: #eefbfa;
  border-radius: 15px;
  padding: 25px !important;
  min-height: 209px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(9, 67, 70, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.producer-importer-page__resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(9, 67, 70, 0.2);
}
.producer-importer-page__resource-card h2,
.producer-importer-page__resource-card h3 {
  font-family: var(--sans);
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.5;
  color: #eefbfa !important;
  margin: 0;
}
.producer-importer-page__resource-card p {
  font-size: 14px !important;
  line-height: 1.6;
  color: #eefbfa !important;
  margin: 0;
}
.producer-importer-page__resource-card-top {
  display: flex;
  justify-content: flex-start;
}
.producer-importer-page__resource-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #eefbfa !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.producer-importer-page__resource-icon img {
  width: 24px;
  height: 24px;
}
.producer-importer-page__resource-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eefbfa;
  font-size: 14px;
  font-weight: 600;
}
.producer-importer-page__resource-link img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}
.producer-importer-page__impact-band, .producer-importer-page__environment-band {
  position: relative;
  background: #000;
  min-height: 396px;
  padding: 54px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.producer-importer-page__environment-band {
  min-height: 400px;
}
.producer-importer-page__impact-media, .producer-importer-page__environment-band-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.producer-importer-page__impact-media img, .producer-importer-page__environment-band-image img {
  position: absolute;
  max-width: none;
  object-fit: fill;
  opacity: 0.6;
}
.producer-importer-page__environment-band-image img {
  top: -34.75%;
  left: 0;
  width: 108.23%;
  height: 268.25%;
}
.producer-importer-page__impact-media img {
  top: -61.45%;
  left: 0;
  width: 100%;
  height: 250.37%;
}
.producer-importer-page__impact-frame, .producer-importer-page__environment-band-frame {
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1274px, 100% - 48px);
  height: calc(100% - 108px);
  pointer-events: none;
  z-index: 1;
}
.producer-importer-page__impact-frame img, .producer-importer-page__environment-band-frame img {
  display: block;
  width: 100%;
  height: 100%;
}
.producer-importer-page__impact-frame {
  top: 50%;
  left: max(50% - 640px, 16px);
  width: min(872px, 100% - 32px);
  height: 288px;
  transform: translateY(-50%);
}
.producer-importer-page__impact-frame img {
  width: 100%;
  height: 100%;
}
.producer-importer-page__impact-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 40px;
  align-items: center;
  padding: 0 48px;
}
.producer-importer-page__impact-content h2 {
  font-family: "Arno Pro", "Arno Pro Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.1;
  color: #f3efa1 !important;
  max-width: 640px;
}
.producer-importer-page__impact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.producer-importer-page__impact-cta .producer-importer-page__button {
  height: 56px;
  width: 238px;
  justify-content: center;
  background: #eefbfa !important;
  color: #363333 !important;
}
.producer-importer-page__impact-cta .producer-importer-page__impact-cta-arrow {
  filter: brightness(0) saturate(100%);
}
.producer-importer-page__impact-cta p {
  font-size: 18px;
  line-height: 1.4;
  color: #eefbfa !important;
  max-width: 280px;
  text-align: center;
}
.producer-importer-page__environment-band-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 48px;
}
.producer-importer-page__environment-band-copy h2 {
  font-family: "Arno Pro", "Arno Pro Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.1;
  color: #f3efa1 !important;
  max-width: 760px;
  margin-bottom: 16px;
}
.producer-importer-page__environment-band-copy p {
  font-size: 20px;
  line-height: 1.45;
  color: #eefbfa !important;
  max-width: 640px;
}
.producer-importer-page__calculator {
  padding: 32px 0 70px;
  background: #eefbfa;
}
.producer-importer-page__calculator .producer-importer-page__section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(1216px, 100%);
  margin: 0 0 34px;
  padding-top: 16px;
  text-align: left;
}
.producer-importer-page__calculator .producer-importer-page__section-heading h2 {
  margin: 0;
}
.producer-importer-page__calculator .producer-importer-page__section-heading p {
  font-size: 18px;
  line-height: 1.56;
  margin: 0;
}
.producer-importer-page__calculator-shell {
  width: min(1274px, 100% - 32px);
  margin: 0 auto;
}
.producer-importer-page__calculator-panel {
  display: flex !important;
  flex-direction: column !important;
  gap: 64px !important;
  width: 100%;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.producer-importer-page__calculator-summary {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(0, 157, 165, 0.25) !important;
  border-radius: 30px !important;
  box-shadow: none !important;
  padding: 33px !important;
}
.producer-importer-page__calculator-summary h3 {
  font-size: 20px !important;
  font-weight: 700;
  color: #363333;
}
.producer-importer-page__calculator-summary > div:first-child p {
  font-size: 14px;
  line-height: 1.45;
  color: #4a5565;
  margin-top: 8px;
}
.producer-importer-page__calculator-summary > div:first-child {
  margin-bottom: 8px;
}
.producer-importer-page__fee-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  margin-top: 0 !important;
}
.producer-importer-page__fee-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  min-height: 74px;
  padding: 16px 26px 16px 16px !important;
  border-radius: 15px !important;
  background: #eefbfa !important;
  font-size: 15px !important;
}
.producer-importer-page__fee-row strong {
  font-size: 20px;
  line-height: 1.4;
  color: #363333;
}
.producer-importer-page__fee-row--accent {
  min-height: 90px;
  background: #eefbfa !important;
  color: #363333 !important;
}
.producer-importer-page__fee-row--accent strong {
  color: #009da5;
}
.producer-importer-page__fee-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.producer-importer-page__fee-meta strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}
.producer-importer-page__fee-meta span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: #6a7282;
  opacity: 1;
}
.producer-importer-page__fee-code {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 157, 165, 0.5);
  color: #094346;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.producer-importer-page__fee-row--accent .producer-importer-page__fee-code {
  background: #009da5;
  color: #eefbfa;
}
.producer-importer-page__fee-row--accent .producer-importer-page__fee-meta span {
  color: #009da5;
  font-weight: 600;
}
.producer-importer-page__fee-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.producer-importer-page__fee-stack span {
  text-decoration: line-through;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #363333;
  opacity: 0.7;
}
.producer-importer-page__fee-stack strong {
  font-size: 20px;
  line-height: 1.4;
  color: #009da5;
}
.producer-importer-page__totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.producer-importer-page__totals > div {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}
.producer-importer-page__totals > div span {
  font-size: 14px !important;
  color: #4a5565 !important;
}
.producer-importer-page__totals > div strong {
  font-size: 30px !important;
  line-height: 1.2 !important;
  color: #009da5 !important;
}
.producer-importer-page__totals > div:last-child {
  align-items: flex-end;
}
.producer-importer-page__totals > div:first-child strong {
  color: rgba(32, 32, 32, 0.7) !important;
}
.producer-importer-page__calculator-totals {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 157, 165, 0.8);
}
.producer-importer-page__savings {
  background: #eefbfa !important;
  color: #363333 !important;
  border-radius: 15px !important;
  min-height: 66px;
  padding: 17px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.producer-importer-page__savings span {
  font-size: 16px;
  font-weight: 600;
  color: #363333 !important;
}
.producer-importer-page__savings strong {
  font-size: 24px;
  line-height: 1.33;
  color: #009da5 !important;
}
.producer-importer-page__calculator-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 17px !important;
  background: #eefbfa !important;
  border-radius: 15px !important;
  font-size: 14px;
  color: #363333;
}
.producer-importer-page__calculator-note p {
  color: #363333;
}
.producer-importer-page__calculator-note strong {
  font-weight: 700;
}
.producer-importer-page__calculator-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  min-width: 119px;
  padding: 0 16px;
  border-radius: 999px;
  background: #009da5;
  color: #eefbfa;
  font-size: 14px;
  font-weight: 600;
}
.producer-importer-page__calculator-link img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.producer-importer-page__calculator-controls {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.producer-importer-page__step-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  width: min(768px, 100%);
  margin: 0 auto;
}
.producer-importer-page__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 102.859px;
  font-size: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #99a1af;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.producer-importer-page__step-item span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 157, 165, 0.28);
  border: 0;
  color: #094346;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.producer-importer-page__step-item small {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #99a1af;
  transition: color 0.2s ease;
}
.producer-importer-page__step-item em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  color: #094346;
  background: rgba(0, 157, 165, 0.15);
  border-radius: 10px;
  padding: 2px 8px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.producer-importer-page__step-item em:empty {
  display: none;
}
.producer-importer-page__step-item:hover {
  transform: translateY(-1px);
}
.producer-importer-page__step-item.is-active {
  color: #094346;
}
.producer-importer-page__step-item.is-active span {
  background: #009da5;
  color: #eefbfa;
}
.producer-importer-page__step-item.is-active small {
  color: #363333;
}
.producer-importer-page__step-divider {
  flex: 0 0 102.859px;
  height: 2px;
  margin-top: 19px;
  background: rgba(32, 32, 32, 0.5);
}
.producer-importer-page__calculator-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.producer-importer-page__calculator-group {
  background: #009da5 !important;
  border-radius: 30px !important;
  box-shadow: none !important;
  min-height: auto;
  padding: 32px !important;
}
.producer-importer-page__calculator-group[hidden] {
  display: none !important;
}
.producer-importer-page__selector-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #eefbfa;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.5;
}
.producer-importer-page__selector-label img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.producer-importer-page__option-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 16px;
}
.producer-importer-page__option-button {
  min-height: 96px;
  padding: 24px;
  border-radius: 15px;
  border: 0;
  background: #eefbfa;
  color: #363333;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.producer-importer-page__option-button strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  color: #009da5;
}
.producer-importer-page__option-button span {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(32, 32, 32, 0.72);
}
.producer-importer-page__option-button:hover {
  box-shadow: inset 0 0 0 2px rgba(0, 157, 165, 0.45);
  transform: translateY(-1px);
}
.producer-importer-page__option-button.is-selected, .producer-importer-page__option-button[aria-pressed=true] {
  background: #f3efa1;
  box-shadow: inset 0 0 0 2px #009da5, 0 12px 24px rgba(0, 157, 165, 0.18);
  transform: translateY(-1px);
}
.producer-importer-page__option-button.is-selected strong, .producer-importer-page__option-button[aria-pressed=true] strong {
  color: #094346;
}
.producer-importer-page__option-button.is-selected span, .producer-importer-page__option-button[aria-pressed=true] span {
  color: #363333;
}
.producer-importer-page__option-button.is-disabled, .producer-importer-page__option-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  box-shadow: none;
  transform: none;
}
.producer-importer-page__registration {
  background: #eefbfa !important;
  padding: 96px 0 !important;
}
.producer-importer-page__registration > .shell {
  width: min(1280px, 100% - 32px);
  margin: 0 auto;
}
.producer-importer-page__registration .producer-importer-page__section-heading {
  max-width: none;
  margin: 0 0 31px;
  text-align: left;
}
.producer-importer-page__registration .producer-importer-page__section-heading h2 {
  margin-bottom: 16px;
}
.producer-importer-page__registration .producer-importer-page__section-heading p {
  max-width: 768px;
}
.producer-importer-page__registration .producer-importer-page__button {
  margin: 52px 0 0 !important;
  display: flex !important;
  height: 59px !important;
  min-width: 229px !important;
  justify-content: center !important;
  background: #009da5 !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  width: fit-content !important;
}
.producer-importer-page__registration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1024px;
  margin: 0;
}
.producer-importer-page__registration-card {
  background: rgba(0, 157, 165, 0.15) !important;
  box-shadow: none !important;
  border-radius: 15px !important;
  padding: 25px !important;
  min-height: 208px;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}
.producer-importer-page__registration-card h3 {
  margin-top: 16px;
  font-size: 18px !important;
  line-height: 1.5 !important;
  font-weight: 700 !important;
  color: #363333 !important;
}
.producer-importer-page__registration-card p {
  margin-top: 8px;
  max-width: 275px;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #4a5565 !important;
}
.producer-importer-page__registration-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #009da5;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.producer-importer-page__faq {
  background: rgba(0, 157, 165, 0.2) !important;
  padding: 96px 0 !important;
}
.producer-importer-page__faq > .shell {
  width: min(1280px, 100% - 32px);
  margin: 0 auto;
}
.producer-importer-page__faq .producer-importer-page__section-heading {
  max-width: none;
  margin: 0 0 48px;
  text-align: left;
}
.producer-importer-page__faq .producer-importer-page__section-heading p {
  max-width: 768px;
}
.producer-importer-page__faq-list {
  display: grid;
  gap: 16px;
  max-width: 1274px;
  margin: 0;
}
.producer-importer-page__faq-item {
  background: #eefbfa !important;
  box-shadow: none !important;
  border-radius: 15px !important;
  padding: 0 24px !important;
  overflow: hidden;
}
.producer-importer-page__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 79px;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 700;
  color: #363333;
}
.producer-importer-page__faq-item[open] .producer-importer-page__faq-toggle::before {
  transform: rotate(180deg);
}
.producer-importer-page__faq-answer {
  padding: 0 0 24px;
}
.producer-importer-page__faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5565;
}
.producer-importer-page__faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.producer-importer-page__faq-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #009da5;
  -webkit-mask: url("/assets/images/producer-importer/icon-chevron.svg") center/contain no-repeat;
  mask: url("/assets/images/producer-importer/icon-chevron.svg") center/contain no-repeat;
  transition: transform 0.2s ease;
}
.producer-importer-page__testimonials {
  background: linear-gradient(105.219deg, #197176 2.43%, #094346 61.22%, #1e666a 104.34%) !important;
  padding: 96px 0;
  color: #eefbfa;
}
.producer-importer-page__testimonials .producer-importer-page__section-heading {
  max-width: none;
  margin: 0 0 48px;
  text-align: left;
}
.producer-importer-page__testimonials .producer-importer-page__section-heading h2 {
  color: #eefbfa !important;
}
.producer-importer-page__testimonials .producer-importer-page__section-heading p {
  max-width: 768px;
  color: #eefbfa !important;
}
.producer-importer-page__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.producer-importer-page__testimonial-card {
  background: #eefbfa !important;
  box-shadow: none !important;
  border-radius: 15px !important;
  padding: 28px !important;
  min-height: 205px;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  color: #363333;
}
.producer-importer-page__testimonial-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #4a5565;
}
.producer-importer-page__testimonial-company {
  display: flex;
  align-items: center;
  gap: 14px;
}
.producer-importer-page__testimonial-company strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #363333;
}
.producer-importer-page__testimonial-company span {
  display: block;
  font-size: 13px;
  color: #4a5565;
}
.producer-importer-page__testimonial-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #009da5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.producer-importer-page__testimonial-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.producer-importer-page__quality {
  padding: 96px 0;
  background: var(--hero-surface);
}
.producer-importer-page__quality > .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.producer-importer-page__quality-copy h2 {
  font-family: var(--sans) !important;
  font-weight: 400 !important;
  font-size: 32px !important;
  line-height: 1.25 !important;
  color: #1a1a1a !important;
  margin-bottom: 20px !important;
}
.producer-importer-page__quality-copy p {
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #4a5565 !important;
  margin-bottom: 28px !important;
}
.producer-importer-page__quality-copy ul {
  display: grid;
  gap: 14px;
}
.producer-importer-page__quality-copy ul li {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: #364153 !important;
}
.producer-importer-page__quality-copy ul li img {
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0;
}
.producer-importer-page__quality-copy ul li span {
  font-size: 16px !important;
  line-height: 1.5 !important;
}
.producer-importer-page__quality-image {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 24px !important;
  padding: 0 !important;
  overflow: hidden;
}
.producer-importer-page__quality-image img {
  width: 100% !important;
  height: 400px !important;
  object-fit: cover !important;
  border-radius: 24px !important;
  background: transparent !important;
  box-shadow: none !important;
}
.producer-importer-page__cta {
  position: relative;
  background: #000;
  min-height: 561px;
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.producer-importer-page__cta-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.producer-importer-page__cta-image img {
  position: absolute;
  top: -35.5%;
  left: -16.62%;
  width: 145.82%;
  height: 257.71%;
  max-width: none;
  object-fit: fill;
}
.producer-importer-page__cta-frame {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1267px, 100% - 48px);
  height: calc(100% - 120px);
  pointer-events: none;
  z-index: 1;
}
.producer-importer-page__cta-frame img {
  display: block;
  width: 100%;
  height: 100%;
}
.producer-importer-page__cta-copy {
  position: relative;
  z-index: 2;
  width: min(776px, 100% - 64px);
  max-width: none;
  margin-right: 0;
  margin-left: max(50% - 558.5px, 32px);
  text-align: left;
  padding: 40px 0;
}
.producer-importer-page__cta-copy h2 {
  font-family: "Arno Pro", "Arno Pro Display", Georgia, serif !important;
  font-weight: 700 !important;
  font-size: clamp(42px, 5vw, 70px) !important;
  line-height: 1.05 !important;
  color: #f3efa1 !important;
  margin-bottom: 20px !important;
}
.producer-importer-page__cta-copy p {
  font-size: 20px !important;
  line-height: 1.45 !important;
  color: #eefbfa !important;
  margin: 0 0 32px !important;
  max-width: 487px !important;
}
.producer-importer-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}
@media (max-width: 1180px) {
  .producer-importer-page__hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 56px 40px;
  }
  .producer-importer-page__hero-aside {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    align-self: auto;
    justify-self: stretch;
    width: 100%;
  }
  .producer-importer-page__hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .producer-importer-page__hero-stat {
    flex: 1 1 240px;
  }
  .producer-importer-page__resource-grid, .producer-importer-page__registration-grid, .producer-importer-page__testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .producer-importer-page__quality > .shell {
    grid-template-columns: 1fr !important;
    gap: 32px;
    align-items: start;
  }
  .producer-importer-page__calculator-groups {
    grid-template-columns: 1fr;
  }
  .producer-importer-page__calculator-group {
    padding: 32px !important;
  }
  .producer-importer-page__step-list {
    width: 100%;
  }
  .producer-importer-page__impact-content {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .producer-importer-page__impact-cta {
    align-items: flex-start;
  }
  .producer-importer-page__impact-cta p {
    text-align: left;
  }
}
@media (max-width: 780px) {
  .producer-importer-page__hero-shell {
    padding-top: 12px;
  }
  .producer-importer-page__hero {
    padding: 24px 24px;
  }
  .producer-importer-page__hero-frame {
    display: none;
  }
  .producer-importer-page__hero-copy h1 {
    font-size: 36px;
  }
  .producer-importer-page__calculator {
    padding: 24px 0 72px;
  }
  .producer-importer-page__quality {
    padding: 64px 0;
  }
  .producer-importer-page__quality-copy h2 {
    font-size: 28px !important;
    margin-bottom: 16px !important;
  }
  .producer-importer-page__quality-copy p {
    font-size: 16px !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important;
  }
  .producer-importer-page__quality-copy ul li {
    align-items: flex-start !important;
  }
  .producer-importer-page__quality-image {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
  }
  .producer-importer-page__quality-image img {
    height: auto !important;
    aspect-ratio: 0.66;
  }
  .producer-importer-page__calculator-summary {
    padding: 24px !important;
    border-radius: 24px !important;
    min-height: auto;
  }
  .producer-importer-page__fee-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start !important;
    gap: 12px;
    padding: 16px !important;
  }
  .producer-importer-page__fee-meta {
    min-width: 0;
  }
  .producer-importer-page__fee-meta > div {
    min-width: 0;
  }
  .producer-importer-page__fee-row > strong {
    white-space: nowrap;
    font-size: 18px;
    line-height: 1.3;
  }
  .producer-importer-page__fee-stack {
    align-items: flex-end;
  }
  .producer-importer-page__fee-stack span,
  .producer-importer-page__fee-stack strong {
    white-space: nowrap;
    font-size: 18px;
    line-height: 1.3;
  }
  .producer-importer-page__totals > div:last-child {
    align-items: flex-start;
  }
  .producer-importer-page__savings {
    gap: 12px;
    align-items: flex-start !important;
    flex-direction: column;
  }
  .producer-importer-page__calculator-controls {
    gap: 24px;
  }
  .producer-importer-page__step-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 8px;
    width: 100%;
    align-items: start;
  }
  .producer-importer-page__step-item {
    width: 100%;
    min-width: 0;
  }
  .producer-importer-page__step-item span {
    width: 36px;
    height: 36px;
  }
  .producer-importer-page__step-item small {
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
  }
  .producer-importer-page__option-grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr !important;
  }
  .producer-importer-page__option-button {
    min-height: 0;
    padding: 20px;
  }
  .producer-importer-page__calculator-note {
    flex-direction: column;
    align-items: flex-start;
  }
  .producer-importer-page__calculator-link {
    align-self: flex-end;
  }
  .producer-importer-page__step-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .producer-importer-page__step-divider {
    display: none;
  }
  .producer-importer-page__calculator-group {
    padding: 24px !important;
    border-radius: 24px !important;
    min-height: auto;
  }
  .producer-importer-page__resource-grid, .producer-importer-page__registration-grid, .producer-importer-page__testimonial-grid, .producer-importer-page__totals {
    grid-template-columns: 1fr !important;
  }
  .producer-importer-page__impact-frame, .producer-importer-page__environment-band-frame, .producer-importer-page__cta-frame {
    display: none;
  }
}

.text-page {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, rgba(238, 251, 250, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%);
}
.text-page__shell {
  max-width: 960px;
}
.text-page__header {
  margin-bottom: 48px;
}
.text-page__heading {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.text-page__ingress {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 21px;
  line-height: 1.55;
}
.text-page__body {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.8;
}
.text-page__body > *:first-child {
  margin-top: 0;
}
.text-page__body > *:last-child {
  margin-bottom: 0;
}
.text-page__body h2,
.text-page__body h3,
.text-page__body h4 {
  margin: 2em 0 0.6em;
  line-height: 1.15;
}
.text-page__body p,
.text-page__body ul,
.text-page__body ol,
.text-page__body blockquote {
  margin: 0 0 1.2em;
}
.text-page__body a {
  color: var(--teal);
  text-decoration: underline;
}
.text-page__body img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

@media (max-width: 480px) {
  .text-page {
    padding: 48px 0 72px;
  }
  .text-page__ingress,
  .text-page__body {
    font-size: 17px;
  }
}
.news-article-page {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, rgba(238, 251, 250, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.news-article-shell {
  max-width: 960px;
}

.news-article-backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
}

.news-article-header {
  margin-bottom: 28px;
}

.news-article-date {
  margin: 18px 0 10px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-article-header h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.news-article-ingress {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 21px;
  line-height: 1.55;
}

.news-article-media {
  background: #c9eaed;
  cursor: default;
  transform: none !important;
}

.news-article-figure {
  margin: 0;
}

.news-article-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.news-article-figure__caption {
  padding: 10px 0;
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.news-article-body {
  max-width: 720px;
  margin-top: 42px;
  font-size: 18px;
  line-height: 1.8;
}

.news-article-body > *:first-child {
  margin-top: 0;
}

.news-article-body > *:last-child {
  margin-bottom: 0;
}

.news-article-body h2,
.news-article-body h3,
.news-article-body h4 {
  margin: 2em 0 0.6em;
  line-height: 1.15;
}

.news-article-body p,
.news-article-body ul,
.news-article-body ol,
.news-article-body blockquote {
  margin: 0 0 1.2em;
}

.news-article-body a {
  color: var(--teal);
  text-decoration: underline;
}

.news-article-body img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

@media (max-width: 480px) {
  .news-article-page {
    padding: 48px 0 72px;
  }
  .news-article-header h1 {
    max-width: none;
  }
  .news-article-ingress,
  .news-article-body {
    font-size: 17px;
  }
}
/* ── Responsive embedded videos (Umbraco RTE embed) ──────────── */
.umb-embed-holder {
  display: block;
  width: 100%;
  margin: 1.5em 0;
}

.umb-embed-holder iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: none;
}

/* Break embeds out of the 720px body to match the 960px article shell */
.news-article-body .umb-embed-holder {
  width: min(960px, 100vw - 32px);
  margin-left: 0;
}

.mnm-form-wrapper {
  background-color: #fff !important;
  border-radius: 8px !important;
}
