/* =========================================================
   ZEIPF — contemporary digital design system
   ========================================================= */

:root {
  --zeipf-blue: #0876b9;
  --zeipf-blue-dark: #075985;
  --zeipf-green: #16a36a;
  --zeipf-green-dark: #0b7a4b;
  --zeipf-green-bright: #6ee7a7;
  --zeipf-navy: #092f3f;
  --zeipf-navy-deep: #061f2b;
  --zeipf-gold: #f3b63f;
  --zeipf-ink: #102a37;
  --zeipf-ink-soft: #5f7079;
  --zeipf-surface: #f4f8f6;
  --zeipf-surface-blue: #eef7fb;
  --zeipf-white: #ffffff;
  --zeipf-line: #dfe9e5;
  --zeipf-gradient: linear-gradient(135deg, #0876b9 0%, #16a36a 100%);
  --zeipf-font: "Manrope", "Segoe UI", Arial, sans-serif;
  --zeipf-radius-sm: 12px;
  --zeipf-radius: 22px;
  --zeipf-radius-lg: 34px;
  --zeipf-shadow: 0 14px 45px rgba(9, 47, 63, 0.08);
  --zeipf-shadow-lg: 0 28px 80px rgba(9, 47, 63, 0.15);
  --site-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--zeipf-ink);
  background: var(--zeipf-surface);
  font-family: var(--zeipf-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--zeipf-navy);
  font-family: var(--zeipf-font);
  font-weight: 750;
  letter-spacing: -0.035em;
}

p {
  line-height: 1.75;
}

a {
  color: var(--zeipf-blue);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease, box-shadow 180ms ease;
}

a:hover {
  color: var(--zeipf-green);
  text-decoration: none;
}

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

::selection {
  color: #fff;
  background: var(--zeipf-green);
}

:focus-visible {
  outline: 3px solid rgba(8, 118, 185, 0.42);
  outline-offset: 3px;
}

.site-shell,
.site-header .wrap,
.site-footer .wrap {
  width: min(calc(100% - 40px), var(--site-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--zeipf-navy);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

/* Buttons */
.btn-zeipf,
.btn-main,
.btn-primary,
.btn-zeipf-outline,
.btn-zeipf-light,
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--zeipf-font);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.btn-zeipf,
.btn-main,
.btn-primary {
  color: #fff !important;
  background: var(--zeipf-green);
  border-color: var(--zeipf-green);
  box-shadow: 0 10px 24px rgba(22, 163, 106, 0.2);
}

.btn-zeipf:hover,
.btn-main:hover,
.btn-primary:hover {
  color: #fff !important;
  background: var(--zeipf-green-dark);
  border-color: var(--zeipf-green-dark);
  box-shadow: 0 14px 28px rgba(11, 122, 75, 0.26);
  transform: translateY(-2px);
}

.btn-zeipf-lg {
  min-height: 56px;
  padding-inline: 1.6rem;
}

.btn-zeipf-outline {
  color: var(--zeipf-navy) !important;
  background: transparent;
  border-color: rgba(9, 47, 63, 0.22);
}

.btn-zeipf-outline:hover {
  color: #fff !important;
  background: var(--zeipf-navy);
  border-color: var(--zeipf-navy);
  transform: translateY(-2px);
}

.btn-zeipf-light {
  color: var(--zeipf-navy) !important;
  background: #fff;
  border-color: #fff;
}

.btn-zeipf-light:hover {
  color: var(--zeipf-navy) !important;
  background: var(--zeipf-green-bright);
  border-color: var(--zeipf-green-bright);
  transform: translateY(-2px);
}

.btn-ghost-light {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost-light:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--zeipf-navy);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link i {
  font-size: 0.75rem;
  transition: transform 180ms ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1050;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(9, 47, 63, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease;
}

.site-header.scroll-active {
  box-shadow: 0 14px 38px rgba(9, 47, 63, 0.11);
}

.topbar {
  color: rgba(255, 255, 255, 0.8);
  background: var(--zeipf-navy-deep);
  font-size: 0.72rem;
}

.topbar .wrap {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.3;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--zeipf-green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(110, 231, 167, 0.12);
}

.topbar-links {
  display: flex;
  gap: 1.4rem;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.topbar a:hover {
  color: #fff;
}

.mainnav .wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.mainnav .brand {
  flex: 0 0 auto;
  display: block;
}

.mainnav .brand img {
  width: auto;
  height: 52px;
  display: block;
  transition: height 220ms ease;
}

.site-header.scroll-active .mainnav .brand img {
  height: 46px;
}

.nav-collapse {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.nav-list,
.nav-panel {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-list > li {
  position: relative;
}

.nav-list a {
  text-decoration: none;
}

.nav-list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0.62rem;
  color: #29434f;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-list > li > a::after {
  content: "";
  position: absolute;
  right: 0.65rem;
  bottom: 0.62rem;
  left: 0.65rem;
  height: 2px;
  background: var(--zeipf-green);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-list > li > a:hover,
.nav-list > li > a.active,
.nav-list > li.open > a {
  color: var(--zeipf-green-dark);
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after,
.nav-list > li.open > a::after {
  transform: scaleX(1);
}

.nav-list .caret {
  font-size: 0.55rem;
  transition: transform 180ms ease;
}

.nav-list li.open > a .caret {
  transform: rotate(180deg);
}

.nav-panel {
  position: absolute;
  z-index: 1060;
  top: calc(100% + 2px);
  left: -14px;
  min-width: 265px;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(9, 47, 63, 0.09);
  border-radius: 18px;
  box-shadow: var(--zeipf-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(9px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.nav-panel::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 10px;
}

.nav-panel-wide {
  min-width: 500px;
  columns: 2;
  column-gap: 0.35rem;
}

.nav-panel-wide li {
  break-inside: avoid;
}

.nav-panel a {
  display: block;
  padding: 0.58rem 0.75rem;
  color: var(--zeipf-ink-soft);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.nav-panel a:hover {
  color: var(--zeipf-green-dark);
  background: #eff8f3;
  transform: translateX(2px);
}

.nav-panel .panel-label {
  display: block;
  padding: 0.65rem 0.75rem 0.3rem;
  color: var(--zeipf-blue);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-list > li:hover > .nav-panel,
.nav-list > li:focus-within > .nav-panel,
.nav-list > li.open > .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-contact {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--zeipf-navy);
  background: var(--zeipf-surface);
  border: 1px solid var(--zeipf-line);
  border-radius: 50%;
  text-decoration: none;
}

.nav-contact:hover {
  color: #fff;
  background: var(--zeipf-blue);
  border-color: var(--zeipf-blue);
}

.nav-portal {
  min-height: 43px;
  padding: 0.7rem 1rem;
  font-size: 0.74rem;
}

.nav-portal i {
  font-size: 0.65rem;
}

.nav-toggle {
  position: relative;
  z-index: 1100;
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem;
  color: var(--zeipf-navy);
  background: var(--zeipf-surface);
  border: 1px solid var(--zeipf-line);
  border-radius: 999px;
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle-lines {
  width: 18px;
  display: grid;
  gap: 5px;
}

.nav-toggle-lines span {
  width: 100%;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease;
}

.nav-toggle-label {
  font-size: 0.76rem;
  font-weight: 750;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Home hero */
.home-page {
  background: #fff;
}

.home-hero {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0 0;
  background:
    linear-gradient(180deg, #f2f8f5 0%, #f8fbfa 66%, #fff 100%);
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.38;
  background-image: radial-gradient(rgba(9, 47, 63, 0.22) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.hero-glow-one {
  top: 7%;
  left: -12%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(22, 163, 106, 0.13), transparent 68%);
}

.hero-glow-two {
  top: 4%;
  right: -12%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(8, 118, 185, 0.14), transparent 68%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.3rem;
  color: var(--zeipf-blue-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.125em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-kicker > span {
  width: 30px;
  height: 2px;
  background: var(--zeipf-green);
}

.hero-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.2rem, 6.25vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.072em;
  line-height: 0.97;
}

.hero-copy h1 em {
  position: relative;
  color: var(--zeipf-green);
  font-style: normal;
}

.hero-copy h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.04em;
  left: 0.1em;
  height: 0.13em;
  background: url("data:image/svg+xml,%3Csvg width='300' height='20' viewBox='0 0 300 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 15C72 2 205 3 297 12' stroke='%2316a36a' stroke-width='6' stroke-linecap='round' fill='none' opacity='.28'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-lead {
  max-width: 570px;
  margin: 1.75rem 0 1.8rem;
  color: var(--zeipf-ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.hero-proof {
  max-width: 580px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(9, 47, 63, 0.12);
}

.hero-proof div {
  display: grid;
  gap: 0.12rem;
}

.hero-proof strong {
  color: var(--zeipf-navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-proof span {
  color: var(--zeipf-ink-soft);
  font-size: 0.68rem;
}

.hero-media {
  position: relative;
  align-self: end;
  min-height: 630px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 0 0 6%;
  overflow: hidden;
  background: var(--zeipf-navy);
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-bottom: 0;
  border-radius: 240px 240px 30px 30px;
  box-shadow: var(--zeipf-shadow-lg);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 31, 43, 0.36));
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  color: var(--zeipf-ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(9, 47, 63, 0.18);
  backdrop-filter: blur(14px);
  text-decoration: none;
}

.hero-float-card-top {
  top: 18%;
  right: -4%;
  min-width: 245px;
}

.hero-float-card-bottom {
  bottom: 12%;
  left: -5%;
}

a.hero-float-card:hover {
  color: var(--zeipf-ink);
  transform: translateY(-4px);
}

.hero-float-card small,
.hero-float-card strong {
  display: block;
  line-height: 1.4;
}

.hero-float-card small {
  color: var(--zeipf-ink-soft);
  font-size: 0.62rem;
}

.hero-float-card strong {
  font-size: 0.8rem;
  font-weight: 800;
}

.float-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--zeipf-gradient);
  border-radius: 12px;
}

.float-arrow {
  margin-left: auto;
  color: var(--zeipf-green);
  font-size: 0.7rem;
}

.pulse-ring {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  display: grid;
  place-items: center;
  background: rgba(22, 163, 106, 0.12);
  border-radius: 50%;
}

.pulse-ring span {
  width: 11px;
  height: 11px;
  background: var(--zeipf-green);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(22, 163, 106, 0.18);
}

.quick-access-wrap {
  position: relative;
  z-index: 3;
  transform: translateY(42px);
}

.quick-access {
  display: grid;
  grid-template-columns: 1.12fr repeat(3, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--zeipf-line);
  border-radius: var(--zeipf-radius);
  box-shadow: var(--zeipf-shadow-lg);
}

.quick-access-intro,
.quick-card {
  min-height: 118px;
  padding: 1.35rem 1.4rem;
}

.quick-access-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: var(--zeipf-navy);
}

.quick-access-intro span {
  color: var(--zeipf-green-bright);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quick-access-intro strong {
  max-width: 220px;
  margin-top: 0.35rem;
  font-size: 1.05rem;
  line-height: 1.4;
}

.quick-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  color: var(--zeipf-ink);
  border-left: 1px solid var(--zeipf-line);
  text-decoration: none;
}

.quick-card:hover {
  color: var(--zeipf-ink);
  background: #f7fbf9;
}

.quick-card > i {
  color: #9aaba4;
  font-size: 0.65rem;
}

.quick-card strong,
.quick-card small {
  display: block;
}

.quick-card strong {
  color: var(--zeipf-navy);
  font-size: 0.78rem;
  line-height: 1.4;
}

.quick-card small {
  margin-top: 0.2rem;
  color: var(--zeipf-ink-soft);
  font-size: 0.61rem;
  line-height: 1.4;
}

.quick-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--zeipf-blue);
  background: rgba(8, 118, 185, 0.1);
  border-radius: 12px;
}

.quick-icon-green {
  color: var(--zeipf-green);
  background: rgba(22, 163, 106, 0.1);
}

.quick-icon-gold {
  color: #b77b05;
  background: rgba(243, 182, 63, 0.16);
}

/* Home sections */
.home-section {
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
}

.benefits-section {
  padding-top: clamp(8.5rem, 12vw, 11rem);
  background: #fff;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.3rem, 4vw, 3.5rem);
}

.section-header h2,
.faq-intro h2,
.impact-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.25vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.section-header > p {
  margin: 0;
  color: var(--zeipf-ink-soft);
  font-size: 0.95rem;
}

.section-kicker {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--zeipf-green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker-light {
  color: var(--zeipf-green-bright);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.benefit-card {
  position: relative;
  min-height: 315px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 1.2rem 1.4rem;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--zeipf-ink);
  background: var(--zeipf-surface);
  border: 1px solid var(--zeipf-line);
  border-radius: var(--zeipf-radius);
  text-decoration: none;
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(22, 163, 106, 0.13), transparent 68%);
  border-radius: 50%;
  transition: transform 350ms ease;
}

.benefit-card:hover {
  color: var(--zeipf-ink);
  border-color: rgba(22, 163, 106, 0.25);
  box-shadow: var(--zeipf-shadow);
  transform: translateY(-5px);
}

.benefit-card:hover::after {
  transform: scale(1.2);
}

.benefit-card-featured {
  background: #e9f6ee;
}

.benefit-card-dark {
  color: #fff;
  background: var(--zeipf-navy);
  border-color: var(--zeipf-navy);
}

.benefit-card-dark:hover {
  color: #fff;
  border-color: var(--zeipf-navy);
}

.benefit-number {
  position: absolute;
  top: 1.35rem;
  right: 1.6rem;
  color: rgba(9, 47, 63, 0.22);
  font-size: 0.75rem;
  font-weight: 800;
}

.benefit-card-dark .benefit-number {
  color: rgba(255, 255, 255, 0.28);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--zeipf-green-dark);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(9, 47, 63, 0.07);
}

.benefit-card-dark .benefit-icon {
  color: var(--zeipf-green-bright);
  background: rgba(255, 255, 255, 0.1);
}

.benefit-card > div:nth-of-type(2) {
  grid-column: 1 / 3;
  align-self: end;
}

.card-kicker {
  color: var(--zeipf-green-dark);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.benefit-card-dark .card-kicker {
  color: var(--zeipf-green-bright);
}

.benefit-card h3 {
  margin: 0.4rem 0 0.6rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
}

.benefit-card-dark h3 {
  color: #fff;
}

.benefit-card p {
  max-width: 460px;
  margin: 0;
  color: var(--zeipf-ink-soft);
  font-size: 0.84rem;
}

.benefit-card-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.circle-link {
  width: 46px;
  height: 46px;
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--zeipf-green);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.benefit-card:hover .circle-link {
  background: var(--zeipf-green-dark);
  transform: rotate(-35deg);
}

/* Impact */
.impact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(8, 118, 185, 0.28), transparent 32%),
    var(--zeipf-navy-deep);
}

.impact-section::before,
.impact-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(110, 231, 167, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.impact-section::before {
  top: -340px;
  right: -200px;
  width: 750px;
  height: 750px;
}

.impact-section::after {
  top: -210px;
  right: -70px;
  width: 500px;
  height: 500px;
}

.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.impact-copy h2 {
  color: #fff;
}

.impact-copy p {
  max-width: 500px;
  margin: 1.4rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.impact-stat,
.impact-statement {
  min-height: 190px;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.impact-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.impact-stat strong {
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.impact-stat sup {
  color: var(--zeipf-green-bright);
  font-size: 0.42em;
  vertical-align: top;
}

.impact-stat > span {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.impact-statement {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.impact-statement > i {
  color: var(--zeipf-green-bright);
  font-size: 1.2rem;
}

.impact-statement p {
  margin: 0.8rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.65;
}

.impact-statement a {
  color: var(--zeipf-green-bright);
  font-size: 0.68rem;
  font-weight: 750;
  text-decoration: none;
}

/* News */
.news-section-modern {
  background: #fff;
}

.section-header-centered {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.modern-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.modern-news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--zeipf-line);
  border-radius: var(--zeipf-radius);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.modern-news-card:hover {
  box-shadow: var(--zeipf-shadow);
  transform: translateY(-5px);
}

.news-image {
  position: relative;
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  background: var(--zeipf-surface);
}

.news-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.modern-news-card:hover .news-image img {
  transform: scale(1.045);
}

.news-arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(9, 47, 63, 0.88);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, background 180ms ease;
}

.modern-news-card:hover .news-arrow {
  background: var(--zeipf-green);
  transform: rotate(-35deg);
}

.news-content {
  padding: 1.45rem;
}

.news-category {
  color: var(--zeipf-green-dark);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-content h3 {
  margin: 0.6rem 0 1.2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.4;
}

.news-content h3 a {
  color: var(--zeipf-navy);
  text-decoration: none;
}

.news-content h3 a:hover {
  color: var(--zeipf-green-dark);
}

.news-read {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--zeipf-ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
  text-decoration: none;
}

.news-empty {
  grid-column: 1 / -1;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: var(--zeipf-surface);
  border: 1px dashed #bfd3ca;
  border-radius: var(--zeipf-radius);
}

.news-empty > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: var(--zeipf-green);
  background: #fff;
  border-radius: 18px;
}

.news-empty h3 {
  margin: 0;
}

.news-empty p {
  margin: 0.7rem auto 1rem;
  color: var(--zeipf-ink-soft);
}

/* FAQ */
.faq-section {
  background: var(--zeipf-surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: 150px;
}

.faq-intro p {
  margin: 1.2rem 0 1.6rem;
  color: var(--zeipf-ink-soft);
}

.faq-list {
  border-top: 1px solid #cfdcd6;
}

.faq-list details {
  border-bottom: 1px solid #cfdcd6;
}

.faq-list summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--zeipf-navy);
  cursor: pointer;
  font-size: clamp(0.98rem, 1.5vw, 1.18rem);
  font-weight: 750;
  list-style: none;
}

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

.summary-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid #bdcec6;
  border-radius: 50%;
}

.summary-icon::before,
.summary-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--zeipf-navy);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.summary-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .summary-icon {
  color: #fff;
  background: var(--zeipf-green);
  border-color: var(--zeipf-green);
}

.faq-list details[open] .summary-icon::before,
.faq-list details[open] .summary-icon::after {
  background: #fff;
}

.faq-list details[open] .summary-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 660px;
  margin: -0.4rem 0 1.7rem;
  padding-right: 4rem;
  color: var(--zeipf-ink-soft);
  font-size: 0.88rem;
}

/* Home CTA */
.home-cta {
  padding: 0 0 clamp(5rem, 8vw, 7rem);
  background: var(--zeipf-surface);
}

.home-cta-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(2.3rem, 5vw, 4.5rem);
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(8, 118, 185, 0.38), transparent 35%),
    var(--zeipf-navy);
  border-radius: var(--zeipf-radius-lg);
}

.home-cta-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -280px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(110, 231, 167, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(110, 231, 167, 0.035);
  pointer-events: none;
}

.home-cta-panel > * {
  position: relative;
  z-index: 1;
}

.home-cta-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
}

.home-cta-panel p {
  max-width: 610px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.home-cta-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) 0 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--zeipf-navy-deep);
}

.footer-orbit {
  position: absolute;
  border: 1px solid rgba(110, 231, 167, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.footer-orbit-one {
  top: -300px;
  left: -250px;
  width: 650px;
  height: 650px;
}

.footer-orbit-two {
  right: -180px;
  bottom: -270px;
  width: 540px;
  height: 540px;
}

.site-footer .wrap {
  position: relative;
  z-index: 1;
}

.footer-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-kicker {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--zeipf-green-bright);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-intro h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  font-weight: 800;
  line-height: 1.05;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.footer-brand img {
  width: 255px;
  height: auto;
}

.footer-brand p {
  max-width: 390px;
  margin: 1.25rem 0 1.3rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.site-footer h3 {
  margin: 0 0 1.1rem;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 0.5rem 0;
  padding: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--zeipf-green-bright);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--zeipf-green-bright) !important;
  font-weight: 750;
}

.footer-whatsapp i {
  font-size: 1.15rem;
}

.footer-address address {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-style: normal;
  line-height: 1.8;
}

.footer-address > a {
  display: block;
  margin: 0.35rem 0;
}

.footer-btm {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.66rem;
}

.footer-btm p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-dot {
  width: 4px;
  height: 4px;
  background: var(--zeipf-green);
  border-radius: 50%;
}

.scroll-to-top {
  position: fixed;
  z-index: 1040;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--zeipf-green);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(9, 47, 63, 0.23);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease,
    background 180ms ease;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--zeipf-navy);
}

/* Shared improvements for existing interior pages */
body:not(.home-page) {
  background:
    radial-gradient(circle at 8% 8%, rgba(22, 163, 106, 0.05), transparent 22rem),
    var(--zeipf-surface);
}

body:not(.home-page) .content-title,
body:not(.home-page) .section-title h2,
body:not(.home-page) .page-title h1,
body:not(.home-page) .title-color {
  color: var(--zeipf-navy);
  font-weight: 800;
  letter-spacing: -0.045em;
}

body:not(.home-page) .page-title,
body:not(.home-page) .section-title {
  position: relative;
}

body:not(.home-page) .card,
body:not(.home-page) .service-item,
body:not(.home-page) .blog-item,
body:not(.home-page) .portfolio-item,
body:not(.home-page) .news-listing {
  border: 1px solid var(--zeipf-line);
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(9, 47, 63, 0.06);
}

body:not(.home-page) .card:hover,
body:not(.home-page) .service-item:hover,
body:not(.home-page) .portfolio-item:hover,
body:not(.home-page) .news-listing:hover {
  box-shadow: var(--zeipf-shadow);
}

body:not(.home-page) .form-control {
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #ccd9d3;
  border-radius: 12px;
  box-shadow: none;
}

body:not(.home-page) .form-control:focus {
  border-color: var(--zeipf-green);
  box-shadow: 0 0 0 4px rgba(22, 163, 106, 0.1);
}

body:not(.home-page) table {
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
}

/* ---------------------------------------------------------
   Portal actions
   --------------------------------------------------------- */
.btn-tenant-portal {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  color: var(--zeipf-navy);
  background: #fff;
  border: 1px solid #cbdad4;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.btn-tenant-portal i {
  color: var(--zeipf-blue);
  font-size: 0.66rem;
}

.btn-tenant-portal:hover {
  color: #fff;
  background: var(--zeipf-navy);
  border-color: var(--zeipf-navy);
  transform: translateY(-2px);
}

.btn-tenant-portal:hover i {
  color: var(--zeipf-green-bright);
}

/* ---------------------------------------------------------
   Homepage picture stories
   --------------------------------------------------------- */
.stories-section {
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 9rem) 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(22, 163, 106, 0.08), transparent 24rem),
    #f7faf8;
}

.stories-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.stories-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--zeipf-navy);
  font-size: clamp(2.3rem, 4.7vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.story-controls {
  flex: 0 0 auto;
  display: flex;
  gap: 0.6rem;
}

.story-control {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--zeipf-navy);
  background: #fff;
  border: 1px solid var(--zeipf-line);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(9, 47, 63, 0.07);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.story-control:hover {
  color: #fff;
  background: var(--zeipf-green);
  transform: translateY(-2px);
}

.story-slider {
  position: relative;
}

.story-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(43vw, 560px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0 0 1.4rem;
  scroll-snap-type: none;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.story-track::-webkit-scrollbar {
  display: none;
}

.story-slide {
  position: relative;
  height: clamp(390px, 43vw, 560px);
  overflow: hidden;
  background: var(--zeipf-navy);
  border-radius: var(--zeipf-radius);
  box-shadow: 0 18px 50px rgba(9, 47, 63, 0.11);
  scroll-snap-align: start;
  isolation: isolate;
}

.story-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 31, 43, 0.92));
}

.story-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-slide:hover img {
  transform: scale(1.045);
}

.story-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  color: #fff;
}

.story-overlay span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--zeipf-green-bright);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-overlay h3 {
  max-width: 420px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.story-progress {
  height: 3px;
  overflow: hidden;
  background: #dce7e2;
  border-radius: 999px;
}

.story-progress span {
  width: 20%;
  height: 100%;
  display: block;
  background: var(--zeipf-gradient);
  border-radius: inherit;
  transition: width 80ms linear;
}

.stories-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.4rem;
}

.stories-footer p {
  margin: 0;
  color: var(--zeipf-ink-soft);
  font-size: 0.8rem;
}

/* ---------------------------------------------------------
   Interior page foundations
   --------------------------------------------------------- */
.interior-page {
  --interior-card-radius: 22px;
  background:
    radial-gradient(circle at 7% 3%, rgba(22, 163, 106, 0.065), transparent 27rem),
    #f5f9f7 !important;
}

.interior-page .container {
  width: min(calc(100% - 36px), 1180px);
}

.interior-page .page-title {
  min-height: 310px;
  display: grid;
  place-items: center;
  padding: clamp(4rem, 8vw, 6.5rem) 0 !important;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(6, 31, 43, 0.9), rgba(9, 47, 63, 0.58)),
    url("../images/bg/home-2.jpg") center 54% / cover no-repeat !important;
  text-align: center;
}

.interior-page .page-title .block {
  max-width: 760px;
  margin-inline: auto;
}

.interior-page .page-title h1 {
  margin: 0 0 0.8rem !important;
  color: #fff !important;
  font-size: clamp(2.5rem, 5vw, 4.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.06em !important;
  line-height: 1 !important;
  text-transform: none !important;
  text-shadow: none !important;
}

.interior-page .page-title .list-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.interior-page .page-title .list-inline-item {
  margin: 0;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.67rem;
}

.interior-page .page-title .list-inline a {
  color: var(--zeipf-green-bright) !important;
  font-weight: 750;
  text-decoration: none;
}

.interior-page .section-title,
.interior-page .content-title,
.interior-page .section-heading {
  color: var(--zeipf-navy) !important;
  font-family: var(--zeipf-font) !important;
  font-size: clamp(2rem, 4vw, 3.45rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.055em !important;
  line-height: 1.08 !important;
  text-transform: none !important;
}

.interior-page .section-title::after,
.interior-page .content-title::after {
  width: 42px !important;
  height: 3px !important;
  margin-top: 0.85rem !important;
  background: var(--zeipf-gradient) !important;
  border-radius: 999px !important;
}

.interior-page .lead {
  color: var(--zeipf-ink-soft) !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
}

/* Document, form, circular and newsletter cards */
.interior-page .document-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 !important;
}

.interior-page .document-section .row > [class*="col-"] {
  display: flex;
}

.interior-page .document-item {
  position: relative;
  width: 100%;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 1.3rem !important;
  padding: 1.65rem !important;
  background: #fff !important;
  border: 1px solid var(--zeipf-line) !important;
  border-radius: var(--interior-card-radius) !important;
  box-shadow: 0 12px 36px rgba(9, 47, 63, 0.07) !important;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease !important;
}

.interior-page .document-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--zeipf-gradient);
  opacity: 0;
  transition: opacity 220ms ease;
}

.interior-page .document-item::after {
  content: "PDF";
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  padding: 0.28rem 0.5rem;
  color: var(--zeipf-ink-soft);
  background: var(--zeipf-surface);
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.interior-page .document-item:hover {
  border-color: rgba(22, 163, 106, 0.28) !important;
  box-shadow: 0 22px 52px rgba(9, 47, 63, 0.12) !important;
  transform: translateY(-6px) !important;
}

.interior-page .document-item:hover::before {
  opacity: 1;
}

.interior-page .document-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 0 1.25rem !important;
  color: var(--zeipf-blue) !important;
  background: var(--zeipf-surface-blue);
  border-radius: 16px;
  font-size: 1.45rem !important;
}

.interior-page .document-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.interior-page .document-info h5 {
  max-width: 88%;
  margin: 0 0 0.5rem !important;
  color: var(--zeipf-navy) !important;
  font-size: 1rem !important;
  font-weight: 750 !important;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.interior-page .document-info p {
  margin: 0 0 1.1rem !important;
  color: var(--zeipf-ink-soft) !important;
  font-size: 0.72rem !important;
  line-height: 1.6;
}

.interior-page .document-info a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.56rem 0.78rem;
  color: var(--zeipf-green-dark) !important;
  background: #eef8f2;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none !important;
}

.interior-page .document-info a::after {
  content: "\f019";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.interior-page .document-info a:hover {
  color: #fff !important;
  background: var(--zeipf-green);
}

/* People, executive and board cards */
.interior-page .executive-committee-page .section.team {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 !important;
  background: transparent !important;
}

.interior-page .executive-committee-page .section-title {
  margin-bottom: 0 !important;
}

.interior-page .executive-committee-page .section-title::before {
  content: "People & leadership";
  display: block;
  margin-bottom: 0.7rem;
  color: var(--zeipf-green-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.interior-page .executive-committee-page .section-title span.h2 {
  color: var(--zeipf-navy) !important;
  font-size: clamp(2rem, 4vw, 3.45rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.055em !important;
  text-transform: none !important;
}

.interior-page .team-item-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 8px;
  background: #fff !important;
  border: 1px solid var(--zeipf-line);
  border-radius: 24px !important;
  box-shadow: 0 12px 36px rgba(9, 47, 63, 0.07) !important;
  transition: transform 220ms ease, box-shadow 220ms ease !important;
}

.interior-page .team-item-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 10px;
  height: 10px;
  background: var(--zeipf-green);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 106, 0.14);
}

.interior-page .team-item-wrap:hover {
  box-shadow: 0 24px 56px rgba(9, 47, 63, 0.14) !important;
  transform: translateY(-7px) !important;
}

.interior-page .team-item-wrap img {
  width: 100% !important;
  height: 320px !important;
  display: block;
  object-fit: cover !important;
  object-position: top center !important;
  background: #edf3f0;
  border-radius: 17px 17px 8px 8px;
  filter: saturate(0.92);
  transition: filter 220ms ease, transform 400ms ease !important;
}

.interior-page .team-item-wrap:hover img {
  filter: saturate(1.05);
  transform: scale(1.018);
}

.interior-page .team-item-content,
.interior-page .team-item-wrap:hover .team-item-content {
  min-height: 110px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.15rem 1rem 1rem !important;
  color: var(--zeipf-ink) !important;
  background: #fff !important;
  text-align: left !important;
}

.interior-page .team-item-content h4,
.interior-page .team-item-wrap:hover .team-item-content h4 {
  margin: 0 0 0.35rem !important;
  color: var(--zeipf-navy) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em;
  text-shadow: none !important;
}

.interior-page .team-item-content p,
.interior-page .team-item-wrap:hover .team-item-content p {
  display: inline-flex;
  margin: 0 !important;
  padding: 0.32rem 0.58rem;
  color: var(--zeipf-green-dark) !important;
  background: #eef8f2;
  border-radius: 999px;
  font-size: 0.64rem !important;
  font-weight: 750;
  text-shadow: none !important;
}

/* Principal officer feature */
.interior-page .about-info {
  padding: clamp(4.5rem, 8vw, 7rem) 0 !important;
}

.interior-page .profile-section {
  position: relative;
  overflow: hidden;
  gap: clamp(2rem, 6vw, 5rem) !important;
  padding: clamp(2rem, 5vw, 4.5rem) !important;
  background:
    radial-gradient(circle at 95% 0, rgba(8, 118, 185, 0.1), transparent 20rem),
    #fff !important;
  border: 1px solid var(--zeipf-line);
  border-radius: 30px !important;
  box-shadow: 0 22px 65px rgba(9, 47, 63, 0.1) !important;
}

.interior-page .profile-section::before {
  content: "Leadership";
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  color: rgba(9, 47, 63, 0.08);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
  pointer-events: none;
}

.interior-page .profile-picture-container {
  position: relative;
  z-index: 1;
}

.interior-page .profile-picture {
  width: 280px !important;
  height: 340px !important;
  max-width: none !important;
  border: 8px solid #fff !important;
  border-radius: 150px 150px 26px 26px !important;
  box-shadow: 0 20px 50px rgba(9, 47, 63, 0.17) !important;
  outline: 1px solid var(--zeipf-line);
}

.interior-page .profile-picture:hover {
  transform: translateY(-4px) !important;
}

.interior-page .profile-caption {
  max-width: 280px;
  margin: 1rem auto 0 !important;
  color: var(--zeipf-ink-soft) !important;
  font-size: 0.72rem !important;
  line-height: 1.6;
}

.interior-page .profile-summary {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.interior-page .profile-summary::before {
  content: "Principal Officer";
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.65rem;
  color: var(--zeipf-green-dark);
  background: #eef8f2;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.interior-page .profile-summary h3 {
  margin: 0 0 1.25rem !important;
  color: var(--zeipf-navy) !important;
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.interior-page .profile-summary p {
  color: var(--zeipf-ink-soft) !important;
  font-size: 0.88rem !important;
}

/* Vision and values cards */
.interior-page .vision-values-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 !important;
  background: transparent !important;
}

.interior-page .vision-values-section .content-title {
  margin-bottom: 1rem !important;
}

.interior-page .vision-values-section .about-item > h3 {
  display: inline-flex;
  margin-top: 1.5rem !important;
  padding: 0.35rem 0.65rem;
  color: var(--zeipf-green-dark) !important;
  background: #eaf7ef;
  border-radius: 999px;
  font-size: 0.64rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em;
}

.interior-page .vision-values-section .about-item > p {
  max-width: 820px;
  margin: 0.55rem 0 1.2rem;
  color: var(--zeipf-ink-soft) !important;
  font-size: 0.92rem !important;
}

.interior-page .vision-values-section .row.text-center > [class*="col-"] p {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 1.25rem;
  color: var(--zeipf-ink) !important;
  background: #fff;
  border: 1px solid var(--zeipf-line);
  border-radius: 16px;
  box-shadow: 0 9px 28px rgba(9, 47, 63, 0.05);
  font-size: 0.78rem !important;
}

.interior-page .vision-values-section .card {
  position: relative;
  min-height: 185px;
  overflow: hidden;
  color: var(--zeipf-ink) !important;
  background: #fff !important;
  border: 1px solid var(--zeipf-line) !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 36px rgba(9, 47, 63, 0.065) !important;
}

.interior-page .vision-values-section .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--zeipf-green);
}

.interior-page .vision-values-section .row:last-child > div:nth-child(2) .card::before {
  background: var(--zeipf-blue);
}

.interior-page .vision-values-section .row:last-child > div:nth-child(3) .card::before {
  background: var(--zeipf-gold);
}

.interior-page .vision-values-section .row:last-child > div:nth-child(4) .card::before {
  background: #8b6fc0;
}

.interior-page .vision-values-section .row:last-child > div:nth-child(5) .card::before {
  background: var(--zeipf-navy);
}

.interior-page .vision-values-section .card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem !important;
}

.interior-page .vision-values-section .card-title {
  color: var(--zeipf-navy) !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
}

.interior-page .vision-values-section .card-text {
  color: var(--zeipf-ink-soft) !important;
  font-size: 0.75rem !important;
}

/* Benefits accordions */
.interior-page .accordion .card {
  overflow: hidden;
  margin-bottom: 0.8rem !important;
  background: #fff !important;
  border: 1px solid var(--zeipf-line) !important;
  border-radius: 17px !important;
  box-shadow: 0 8px 26px rgba(9, 47, 63, 0.045) !important;
}

.interior-page .accordion .card:hover {
  border-color: rgba(22, 163, 106, 0.25) !important;
  box-shadow: 0 14px 34px rgba(9, 47, 63, 0.085) !important;
  transform: none !important;
}

.interior-page .accordion .card-header {
  padding: 0 !important;
  background: #fff !important;
  border: 0 !important;
}

.interior-page .accordion .btn-link {
  min-height: 72px;
  padding: 1rem 1.15rem 1rem 1.35rem !important;
  color: var(--zeipf-navy) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 0.88rem !important;
  font-weight: 750 !important;
  line-height: 1.45;
  text-align: left;
  text-decoration: none !important;
  white-space: normal;
}

.interior-page .accordion .btn-link > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  margin-left: 1rem !important;
  color: var(--zeipf-green-dark);
  background: #eef8f2;
  border-radius: 50%;
}

.interior-page .accordion .btn-link[aria-expanded="true"] {
  color: var(--zeipf-green-dark) !important;
}

.interior-page .accordion .card-body {
  padding: 1.25rem 1.4rem 1.45rem !important;
  color: var(--zeipf-ink-soft) !important;
  background: #f7faf8 !important;
  border-top: 1px solid var(--zeipf-line);
  border-radius: 0 !important;
}

.interior-page .accordion .card-body .lead,
.interior-page .accordion .card-body li {
  color: var(--zeipf-ink-soft) !important;
  font-size: 0.82rem !important;
  line-height: 1.78;
}

/* Governance and election cards */
.interior-page .governance {
  padding: clamp(2rem, 5vw, 4rem) 0 !important;
}

.interior-page .governance .card {
  overflow: hidden;
  background: #fff !important;
  border: 1px solid var(--zeipf-line) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 30px rgba(9, 47, 63, 0.06) !important;
}

.interior-page .governance .card::before {
  content: "";
  width: 34px;
  height: 3px;
  display: block;
  margin: 1rem auto 0;
  background: var(--zeipf-gradient);
  border-radius: 999px;
}

.interior-page .governance .card-title {
  color: var(--zeipf-navy) !important;
  font-weight: 800 !important;
}

.interior-page .governance .card-text {
  color: var(--zeipf-ink-soft) !important;
  font-size: 0.7rem !important;
}

.interior-page .final-governance-notes {
  width: min(calc(100% - 36px), 960px);
  margin: 1rem auto 4rem !important;
  padding: 1.6rem 1.8rem !important;
  background: var(--zeipf-navy);
  border-radius: 20px;
  box-shadow: var(--zeipf-shadow);
}

.interior-page .final-governance-notes li {
  color: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  font-size: 0.76rem;
}

.interior-page .election-title {
  padding: clamp(3.5rem, 7vw, 6rem) 0 !important;
  background:
    radial-gradient(circle at 80% 10%, rgba(8, 118, 185, 0.42), transparent 28%),
    var(--zeipf-navy) !important;
}

.interior-page .election-title h1 {
  color: #fff !important;
  font-size: clamp(2.4rem, 5vw, 4.4rem) !important;
  letter-spacing: -0.055em;
  text-shadow: none !important;
}

.interior-page .election-title p {
  color: rgba(255, 255, 255, 0.68);
}

.interior-page .timeline-step {
  padding: 1.35rem 1.5rem !important;
  background: #fff !important;
  border: 1px solid var(--zeipf-line) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 30px rgba(9, 47, 63, 0.06) !important;
}

.interior-page .timeline-step h5 {
  color: var(--zeipf-navy) !important;
  font-weight: 800 !important;
}

.interior-page .timeline-step p {
  color: var(--zeipf-ink-soft) !important;
  font-size: 0.78rem;
}

.interior-page .list-group-item {
  padding: 0.85rem 1rem;
  color: var(--zeipf-ink-soft);
  background: #f8fbf9;
  border-color: var(--zeipf-line);
  font-size: 0.82rem;
}

/* Properties and image gallery cards */
.interior-page .property-listing-section,
.interior-page .gallery-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 !important;
}

.interior-page .property-info {
  overflow: hidden;
  margin-bottom: 1.4rem !important;
  padding: 8px 8px 1.2rem !important;
  background: #fff !important;
  border: 1px solid var(--zeipf-line);
  border-radius: 22px !important;
  box-shadow: 0 12px 36px rgba(9, 47, 63, 0.07) !important;
}

.interior-page .property-info:hover {
  border-color: rgba(22, 163, 106, 0.3);
  box-shadow: 0 24px 55px rgba(9, 47, 63, 0.12) !important;
  transform: translateY(-7px) !important;
}

.interior-page .property-info img {
  width: 100% !important;
  height: 250px !important;
  display: block;
  object-fit: cover;
  border-radius: 15px !important;
}

.interior-page .property-info:hover img {
  transform: scale(1.025) !important;
}

.interior-page .property-info h4 {
  margin: 1.1rem 0 0.35rem !important;
  padding: 0 0.85rem;
  color: var(--zeipf-navy) !important;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
}

.interior-page .property-info p {
  margin: 0 !important;
  padding: 0 0.85rem;
  color: var(--zeipf-ink-soft) !important;
  font-size: 0.73rem;
}

.interior-page .gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--zeipf-navy);
  border: 7px solid #fff;
  border-radius: 22px !important;
  box-shadow: 0 12px 36px rgba(9, 47, 63, 0.09) !important;
}

.interior-page .gallery-item:hover {
  box-shadow: 0 25px 55px rgba(9, 47, 63, 0.16) !important;
  transform: translateY(-7px) !important;
}

.interior-page .gallery-img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
  border-radius: 15px !important;
  transition: transform 450ms ease !important;
}

.interior-page .gallery-item:hover .gallery-img {
  transform: scale(1.04);
}

.interior-page .gallery-info {
  padding: 1.4rem 1.1rem 1rem !important;
  background: linear-gradient(transparent, rgba(6, 31, 43, 0.92)) !important;
  border-radius: 0 0 15px 15px !important;
  text-align: left !important;
}

.interior-page .gallery-info h5 {
  color: #fff !important;
  font-size: 0.84rem !important;
  font-weight: 750 !important;
}

/* Partners */
.interior-page .partners-section {
  padding: 2rem 0 clamp(4.5rem, 8vw, 7rem);
}

.interior-page .partners-section > h2 {
  margin: 0 0 1.6rem;
  color: var(--zeipf-navy);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.interior-page .filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem !important;
}

.interior-page .filter-btns .btn {
  margin: 0 !important;
  padding: 0.65rem 0.95rem !important;
  color: var(--zeipf-ink-soft) !important;
  background: #fff !important;
  border: 1px solid var(--zeipf-line) !important;
  border-radius: 999px !important;
  font-size: 0.7rem !important;
  font-weight: 750 !important;
}

.interior-page .filter-btns .btn.active,
.interior-page .filter-btns .btn:hover {
  color: #fff !important;
  background: var(--zeipf-navy) !important;
  border-color: var(--zeipf-navy) !important;
}

.interior-page .partner-card {
  position: relative;
  min-height: 175px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin: 0.6rem !important;
  padding: 1.5rem !important;
  background: #fff !important;
  border: 1px solid var(--zeipf-line) !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 32px rgba(9, 47, 63, 0.06) !important;
}

.interior-page .partner-card::before {
  content: "\f1ad";
  position: absolute;
  top: 1.2rem;
  left: 1.4rem;
  color: rgba(8, 118, 185, 0.18);
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: 900;
}

.interior-page .partner-card::after {
  content: "Partner";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.27rem 0.5rem;
  color: var(--zeipf-green-dark);
  background: #eef8f2;
  border-radius: 999px;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.interior-page .partner-card:hover {
  border-color: rgba(22, 163, 106, 0.28) !important;
  box-shadow: 0 22px 48px rgba(9, 47, 63, 0.12) !important;
}

.interior-page .partner-card h5 {
  color: var(--zeipf-navy) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  line-height: 1.4;
}

.interior-page .partner-card .hidden-link,
.interior-page .partner-card:hover .hidden-link {
  display: inline-flex !important;
  margin: 0.4rem 0 0 !important;
  color: var(--zeipf-green-dark) !important;
  font-size: 0.65rem;
  font-weight: 750;
}

/* News listing */
.interior-page .news-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 !important;
}

.interior-page .news-listing {
  min-height: 128px;
  gap: 1.1rem !important;
  margin-bottom: 0.8rem !important;
  padding: 10px !important;
  background: #fff !important;
  border: 1px solid var(--zeipf-line) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 28px rgba(9, 47, 63, 0.05) !important;
}

.interior-page .news-listing:hover {
  border-color: rgba(22, 163, 106, 0.28) !important;
  box-shadow: 0 17px 40px rgba(9, 47, 63, 0.1) !important;
  transform: translateX(5px) !important;
}

.interior-page .news-listing img {
  width: 160px !important;
  height: 108px !important;
  border-radius: 12px !important;
}

.interior-page .news-title {
  padding-right: 1rem;
  font-size: 1rem !important;
  font-weight: 750 !important;
  line-height: 1.45;
}

.interior-page .news-title a {
  color: var(--zeipf-navy) !important;
  text-decoration: none !important;
}

/* Long-form content cards */
.interior-page .contact-card,
.interior-page .mortgage-section article,
.interior-page .bg-dark-blue,
.interior-page .article-card {
  background: #fff !important;
  border: 1px solid var(--zeipf-line) !important;
  border-radius: 24px !important;
  box-shadow: 0 14px 42px rgba(9, 47, 63, 0.07) !important;
}

.interior-page .contact-card {
  position: relative;
  overflow: hidden;
}

.interior-page .contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--zeipf-gradient);
}

.interior-page .mortgage-section article {
  padding: clamp(1.6rem, 4vw, 3rem) !important;
}

.interior-page .mortgage-section article > h2 {
  color: var(--zeipf-navy) !important;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.interior-page .mortgage-section article h4,
.interior-page .mortgage-section article h5 {
  margin-top: 1.8rem;
  color: var(--zeipf-green-dark) !important;
  font-weight: 800;
}

.interior-page .bg-dark-blue {
  padding: clamp(1.5rem, 4vw, 2.4rem) !important;
  color: var(--zeipf-ink) !important;
  background:
    radial-gradient(circle at 100% 0, rgba(8, 118, 185, 0.09), transparent 18rem),
    #fff !important;
}

.interior-page .bg-dark-blue h3,
.interior-page .bg-dark-blue h5,
.interior-page .bg-dark-blue h6,
.interior-page .bg-dark-blue p,
.interior-page .bg-dark-blue li,
.interior-page .bg-dark-blue blockquote,
.interior-page .bg-dark-blue address,
.interior-page .bg-dark-blue a {
  color: inherit !important;
}

.interior-page .slim-image {
  padding: 7px;
  background: #fff;
  border: 1px solid var(--zeipf-line);
  border-radius: 18px !important;
  box-shadow: 0 12px 35px rgba(9, 47, 63, 0.08) !important;
}

/* Pagination */
.interior-page .pagination {
  gap: 0.38rem;
  margin-top: 1.5rem;
}

.interior-page .page-link {
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  margin: 0 !important;
  padding: 0.5rem 0.7rem;
  color: var(--zeipf-navy) !important;
  background: #fff !important;
  border: 1px solid var(--zeipf-line) !important;
  border-radius: 11px !important;
  font-size: 0.7rem;
  font-weight: 750;
}

.interior-page .page-item.active .page-link,
.interior-page .page-link:hover {
  color: #fff !important;
  background: var(--zeipf-green) !important;
  border-color: var(--zeipf-green) !important;
}

/* Contact page composition */
.page-contact-zeipf .contact-card {
  padding: clamp(1.5rem, 3vw, 2.4rem) !important;
}

.page-contact-zeipf .contact-card h2 {
  color: var(--zeipf-navy) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em;
}

.page-contact-zeipf .row.g-4 > .col-lg-6:nth-child(2) .contact-card {
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 100% 0, rgba(8, 118, 185, 0.38), transparent 18rem),
    var(--zeipf-navy) !important;
  border-color: var(--zeipf-navy) !important;
}

.page-contact-zeipf .row.g-4 > .col-lg-6:nth-child(2) .contact-card::before {
  background: var(--zeipf-green-bright);
}

.page-contact-zeipf .row.g-4 > .col-lg-6:nth-child(2) .contact-card h2,
.page-contact-zeipf .row.g-4 > .col-lg-6:nth-child(2) .contact-card h5,
.page-contact-zeipf .row.g-4 > .col-lg-6:nth-child(2) .contact-card strong {
  color: #fff !important;
}

.page-contact-zeipf .row.g-4 > .col-lg-6:nth-child(2) .contact-card p,
.page-contact-zeipf .row.g-4 > .col-lg-6:nth-child(2) .contact-card li {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.77rem;
}

.page-contact-zeipf .row.g-4 > .col-lg-6:nth-child(2) .contact-card a {
  color: var(--zeipf-green-bright) !important;
}

.page-contact-zeipf .map-container {
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 24px !important;
  box-shadow: 0 18px 50px rgba(9, 47, 63, 0.1) !important;
}

/* Empty-state, career and tender cards */
.interior-page .careers-section {
  position: relative;
  overflow: hidden;
  max-width: 850px;
  margin: 0 auto clamp(3rem, 7vw, 6rem);
  padding: clamp(2rem, 5vw, 4rem) !important;
  background:
    radial-gradient(circle at 100% 0, rgba(22, 163, 106, 0.12), transparent 20rem),
    #fff !important;
  border: 1px solid var(--zeipf-line);
  border-radius: 26px !important;
  box-shadow: 0 18px 52px rgba(9, 47, 63, 0.09) !important;
}

.interior-page .careers-section h2 {
  margin: 0 0 0.8rem;
  color: var(--zeipf-navy) !important;
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.055em;
}

.interior-page .careers-section p {
  max-width: 650px;
  color: var(--zeipf-ink-soft) !important;
  font-size: 0.88rem;
}

.interior-page .careers-section .btn {
  margin-top: 0.8rem;
  padding: 0.75rem 1.15rem;
  color: #fff !important;
  background: var(--zeipf-green) !important;
  border: 0;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

/* News article and general project cards */
.interior-page .article-card {
  overflow: hidden;
}

.interior-page .article-card > img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 0 !important;
}

.interior-page .article-content {
  padding: clamp(1.5rem, 5vw, 3.5rem) !important;
}

.interior-page .article-content h1 {
  color: var(--zeipf-navy) !important;
  font-size: clamp(2rem, 4.2vw, 3.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.06em !important;
  line-height: 1.08;
}

.interior-page .article-content p,
.interior-page .article-content li {
  color: var(--zeipf-ink-soft);
  font-size: 0.9rem;
}

.interior-page .projects-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.interior-page .project-info {
  height: 100%;
  overflow: hidden;
  padding: 8px 8px 1.3rem !important;
  background: #fff !important;
  border: 1px solid var(--zeipf-line);
  border-radius: 22px !important;
  box-shadow: 0 12px 36px rgba(9, 47, 63, 0.07) !important;
}

.interior-page .project-info img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 15px;
}

.interior-page .project-info h4,
.interior-page .project-info p,
.interior-page .project-info .btn {
  margin-right: 0.8rem;
  margin-left: 0.8rem;
}

.interior-page .project-info h4 {
  color: var(--zeipf-navy) !important;
  font-weight: 800;
}

.interior-page .project-info p {
  color: var(--zeipf-ink-soft) !important;
  font-size: 0.75rem;
}

/* Investment information layouts */
.page-investments-zeipf .section.bg-light-green {
  padding: clamp(4.5rem, 8vw, 7rem) 0 !important;
  background: transparent !important;
}

.page-investments-zeipf .row.align-items-start > .col-lg-6:first-child {
  padding: clamp(1.5rem, 4vw, 2.4rem) !important;
  background: #fff;
  border: 1px solid var(--zeipf-line);
  border-radius: 24px;
  box-shadow: 0 14px 42px rgba(9, 47, 63, 0.07);
}

.page-investments-zeipf .row.align-items-start > .col-lg-6:first-child h2 {
  color: var(--zeipf-navy) !important;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.page-investments-zeipf .row.align-items-start > .col-lg-6:first-child p,
.page-investments-zeipf .row.align-items-start > .col-lg-6:first-child li {
  color: var(--zeipf-ink-soft);
  font-size: 0.82rem;
}

.page-investments-zesapf .page-title .block::before {
  content: "Investment portfolio";
  display: block;
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.page-investments-zesapf .section.team {
  padding: clamp(4.5rem, 8vw, 7rem) 0 !important;
}

.page-investments-zesapf .section.team > .container > .container {
  padding: clamp(1.6rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--zeipf-line);
  border-radius: 24px;
  box-shadow: 0 14px 42px rgba(9, 47, 63, 0.07);
}

.page-investments-zesapf .section.team h2 {
  color: var(--zeipf-navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.page-investments-zesapf .section.team p,
.page-investments-zesapf .section.team li {
  color: var(--zeipf-ink-soft);
  font-size: 0.84rem;
}

/* Motion */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal-delay,
.motion-ready .reveal-delay-1 {
  transition-delay: 100ms;
}

.motion-ready .reveal-delay-2 {
  transition-delay: 180ms;
}

.motion-ready .reveal-delay-3 {
  transition-delay: 260ms;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1160px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .mainnav .wrap {
    min-height: 74px;
    flex-wrap: wrap;
  }

  .mainnav .brand img {
    height: 48px;
  }

  .nav-collapse {
    position: fixed;
    z-index: 1055;
    top: 108px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    overflow-y: auto;
    padding: 1rem max(20px, calc((100vw - var(--site-width)) / 2));
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-header.scroll-active .nav-collapse {
    top: 108px;
  }

  .nav-collapse.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle[aria-expanded="true"] + .nav-collapse {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    display: block;
  }

  .nav-list > li {
    border-bottom: 1px solid var(--zeipf-line);
  }

  .nav-list > li > a {
    min-height: 54px;
    justify-content: space-between;
    padding: 0.75rem 0.25rem;
    font-size: 0.9rem;
  }

  .nav-list > li > a::after {
    display: none;
  }

  .nav-panel,
  .nav-panel-wide {
    position: static;
    min-width: 0;
    display: none;
    padding: 0.2rem 0 0.8rem 0.7rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    columns: 1;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-list > li:hover > .nav-panel,
  .nav-list > li:focus-within > .nav-panel {
    display: none;
  }

  .nav-list > li.open > .nav-panel {
    display: block;
  }

  .nav-panel a {
    padding: 0.55rem 0.75rem;
  }

  .nav-actions {
    padding: 1.2rem 0 2rem;
  }

  .nav-contact {
    width: 48px;
    height: 48px;
  }

  .nav-portal {
    min-height: 48px;
  }

  .btn-tenant-portal {
    min-height: 48px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 6.4vw, 5rem);
  }

  .hero-media {
    min-height: 560px;
  }

  .hero-float-card-top {
    right: -1%;
  }

  .hero-float-card-bottom {
    left: -3%;
  }

  .quick-access {
    grid-template-columns: 1fr repeat(3, 1fr);
  }

  .quick-access-intro,
  .quick-card {
    padding-inline: 1rem;
  }

  .quick-card {
    grid-template-columns: auto 1fr;
  }

  .quick-card > i {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
    gap: 2rem;
  }
}

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

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .hero-media {
    width: min(100%, 570px);
    min-height: 600px;
    margin-inline: auto;
  }

  .quick-access-wrap {
    transform: translateY(34px);
  }

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

  .quick-access-intro {
    grid-row: span 2;
  }

  .quick-card:last-child {
    grid-column: 2;
  }

  .section-header,
  .faq-layout,
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-header {
    align-items: start;
  }

  .section-header > p {
    max-width: 620px;
  }

  .faq-intro {
    position: static;
  }

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

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

  .home-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-intro {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-address {
    grid-column: 2 / -1;
  }

  .story-track {
    grid-auto-columns: min(72vw, 520px);
  }

  .interior-page .profile-section {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell,
  .site-header .wrap,
  .site-footer .wrap {
    width: min(calc(100% - 28px), var(--site-width));
  }

  .topbar-note {
    display: none;
  }

  .topbar .wrap {
    min-height: 32px;
    justify-content: center;
  }

  .topbar-links {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .topbar-links a {
    font-size: 0.62rem;
  }

  .nav-collapse,
  .site-header.scroll-active .nav-collapse {
    top: 106px;
  }

  .mainnav .brand img,
  .site-header.scroll-active .mainnav .brand img {
    height: 42px;
  }

  .nav-toggle-label {
    display: none;
  }

  .nav-toggle {
    width: 43px;
    height: 43px;
    justify-content: center;
    padding: 0;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 48px 1fr;
  }

  .nav-actions .btn-tenant-portal,
  .nav-actions .nav-portal {
    width: 100%;
  }

  .nav-actions .nav-portal {
    grid-column: 1 / -1;
  }

  .home-hero {
    padding-top: 3.5rem;
  }

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

  .hero-kicker {
    align-items: flex-start;
    font-size: 0.6rem;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-proof {
    gap: 0.7rem;
  }

  .hero-proof span {
    font-size: 0.58rem;
  }

  .hero-media {
    min-height: 475px;
  }

  .hero-image-wrap {
    left: 0;
    border-width: 6px;
    border-bottom: 0;
    border-radius: 180px 180px 24px 24px;
  }

  .hero-float-card {
    padding: 0.75rem;
  }

  .hero-float-card-top {
    top: 12%;
    right: -2%;
    min-width: 205px;
  }

  .hero-float-card-bottom {
    bottom: 8%;
    left: -2%;
  }

  .hero-float-card strong {
    font-size: 0.7rem;
  }

  .quick-access-wrap {
    width: 100%;
    transform: translateY(24px);
  }

  .quick-access {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .quick-access-intro {
    min-height: 100px;
    grid-row: auto;
  }

  .quick-card,
  .quick-card:last-child {
    min-height: 88px;
    grid-column: auto;
    border-top: 1px solid var(--zeipf-line);
    border-left: 0;
  }

  .stories-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .stories-heading h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .story-track {
    grid-auto-columns: 88vw;
  }

  .story-slide,
  .story-slide:nth-child(even) {
    height: 440px;
    margin-top: 0;
  }

  .stories-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .benefits-section {
    padding-top: 6.5rem;
  }

  .home-section {
    padding-block: 5rem;
  }

  .section-header h2,
  .faq-intro h2,
  .impact-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .benefit-grid,
  .modern-news-grid,
  .impact-stats {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 290px;
  }

  .impact-stat,
  .impact-statement {
    min-height: 155px;
  }

  .section-header-centered {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    min-height: 78px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .home-cta-panel {
    padding: 2rem 1.3rem;
    border-radius: var(--zeipf-radius);
  }

  .home-cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-address {
    grid-column: 1 / -1;
  }

  .interior-page .container {
    width: min(calc(100% - 24px), 1180px);
  }

  .interior-page .page-title {
    min-height: 250px;
  }

  .interior-page .document-item {
    min-height: 225px;
  }

  .interior-page .team-item-wrap img {
    height: 340px !important;
  }

  .interior-page .profile-section {
    padding: 1.25rem !important;
    border-radius: 22px !important;
  }

  .interior-page .profile-picture {
    width: 230px !important;
    height: 285px !important;
  }

  .interior-page .profile-caption {
    max-width: 240px;
  }

  .interior-page .news-listing {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .interior-page .news-listing img {
    width: 100% !important;
    height: 190px !important;
  }

  .interior-page .partner-card {
    min-height: 160px;
    flex-basis: 100% !important;
  }

  .footer-btm {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem 0;
  }
}

/* ---------------------------------------------------------
   Partner directory
   --------------------------------------------------------- */
.page-partners .partner-hero {
  padding: clamp(5rem, 9vw, 8rem) 0 2.5rem;
}

.page-partners .partner-hero .eyebrow,
.page-articles-listing .news-archive-heading .eyebrow {
  margin: 0 0 0.8rem;
  color: var(--zeipf-green-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-partners .partner-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.page-partners .partner-heading h1,
.page-articles-listing .news-archive-heading h1 {
  margin: 0;
  color: var(--zeipf-navy);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.page-partners .partner-heading p {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: var(--zeipf-ink-soft);
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.page-partners .partner-count {
  flex: 0 0 auto;
  padding: 0.75rem 1rem;
  color: var(--zeipf-ink-soft);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--zeipf-line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.page-partners .partner-count strong {
  color: var(--zeipf-green-dark);
  font-size: 0.9rem;
}

.page-partners .partners-section {
  margin: 0;
  padding: 0 0 clamp(5rem, 9vw, 8rem);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.page-partners .filter-btns {
  justify-content: flex-start;
  margin: 0 0 2rem !important;
}

.page-partners .partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.page-partners .partner-card {
  min-width: 0;
  min-height: 285px;
  display: flex !important;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0 !important;
  padding: 1.4rem !important;
  color: inherit;
  text-decoration: none;
  transform: none;
  opacity: 1;
  animation: none;
}

.page-partners .partner-card[hidden] {
  display: none !important;
}

.page-partners .partner-card::before,
.page-partners .partner-card::after {
  content: none !important;
}

.page-partners .partner-mark {
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: auto;
}

.page-partners .partner-mark img {
  max-width: 178px;
  max-height: 76px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.page-partners .partner-mark-square img {
  width: 72px;
  height: 72px;
  border-radius: 15px;
}

.page-partners .partner-monogram {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--zeipf-green), var(--zeipf-green-dark));
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(22, 163, 106, 0.2);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.page-partners .partner-monogram-blue {
  background: linear-gradient(145deg, #0876b9, var(--zeipf-navy));
  box-shadow: 0 14px 28px rgba(8, 118, 185, 0.18);
}

.page-partners .partner-monogram-gold {
  color: var(--zeipf-navy);
  background: linear-gradient(145deg, #ffe08a, #f1b93a);
  box-shadow: 0 14px 28px rgba(241, 185, 58, 0.2);
}

.page-partners .partner-type {
  margin-bottom: 0.55rem;
  color: var(--zeipf-green-dark);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-partners .partner-card h3 {
  min-height: 2.8em;
  margin: 0;
  color: var(--zeipf-navy);
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.page-partners .partner-visit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  color: var(--zeipf-ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
}

.page-partners .partner-card:hover .partner-visit {
  color: var(--zeipf-green-dark);
}

.page-partners .partner-card:hover {
  transform: translateY(-5px);
}

.page-partners .partner-empty {
  padding: 2rem;
  text-align: center;
  color: var(--zeipf-ink-soft);
}

/* ---------------------------------------------------------
   News archive
   --------------------------------------------------------- */
.page-articles-listing .news-section {
  padding: clamp(5rem, 9vw, 8rem) 0 !important;
}

.page-articles-listing .news-archive-heading {
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.page-articles-listing .news-archive-heading p:last-child {
  max-width: 640px;
  margin: 1.25rem auto 0;
  color: var(--zeipf-ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.page-articles-listing .news-archive {
  max-width: 1040px;
  display: grid;
  gap: 0.9rem;
  margin: 0 auto;
}

.page-articles-listing .news-listing {
  min-height: 160px;
  display: grid !important;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 9px !important;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.page-articles-listing .news-listing:hover {
  transform: translateX(5px) !important;
}

.page-articles-listing .news-thumb {
  display: block;
  min-height: 140px;
  overflow: hidden;
  border-radius: 12px;
}

.page-articles-listing .news-listing .news-thumb img {
  width: 100% !important;
  height: 100% !important;
  min-height: 140px;
  display: block;
  object-fit: cover;
  border-radius: 12px !important;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-articles-listing .news-listing:hover .news-thumb img {
  transform: scale(1.045);
}

.page-articles-listing .news-listing-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 1rem clamp(1.25rem, 3vw, 2.2rem);
}

.page-articles-listing .news-category {
  margin-bottom: 0.48rem;
  color: var(--zeipf-green-dark);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-articles-listing .news-title {
  margin: 0;
  padding: 0;
  font-size: clamp(1rem, 2vw, 1.22rem) !important;
}

.page-articles-listing .news-read {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  color: var(--zeipf-ink-soft);
  font-size: 0.65rem;
  font-weight: 750;
  text-decoration: none;
}

.page-articles-listing .news-read:hover {
  color: var(--zeipf-green-dark);
}

.page-articles-listing .news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 2.5rem;
}

.page-articles-listing .news-pagination a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--zeipf-navy);
  background: #fff;
  border: 1px solid var(--zeipf-line);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.page-articles-listing .news-pagination a:hover,
.page-articles-listing .news-pagination a.active {
  color: #fff;
  background: var(--zeipf-navy);
  border-color: var(--zeipf-navy);
}

.page-articles-listing .news-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--zeipf-line);
  border-radius: 24px;
}

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

@media (max-width: 640px) {
  .page-partners .partner-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-partners .partner-count {
    align-self: flex-start;
  }

  .page-partners .partner-grid {
    grid-template-columns: 1fr;
  }

  .page-partners .partner-card {
    min-height: 260px;
  }

  .page-articles-listing .news-listing {
    grid-template-columns: 1fr;
  }

  .page-articles-listing .news-thumb {
    height: 190px;
  }

  .page-articles-listing .news-listing-content {
    padding: 1.25rem 0.65rem 1rem;
  }
}

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

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
