:root {
  --bg: #f8f1ea;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --ink: #1e1813;
  --muted: #6c5a4d;
  --line: rgba(20, 20, 20, 0.08);
  --green: #184c38;
  --green-dark: #103527;
  --green-soft: #e7f0ea;
  --sand: #f3d5c5;
  --peach: #f3d5c5;
  --brown: #6e4a35;
  --shadow: 0 30px 80px rgba(18, 22, 19, 0.08);
  --radius-xl: 38px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fffaf8 0%, var(--bg) 42%, #f2e5d9 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
}

body::before {
  top: 90px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(24, 76, 56, 0.14);
}

body::after {
  right: -40px;
  bottom: 80px;
  width: 260px;
  height: 260px;
  background: rgba(243, 213, 197, 0.82);
}

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

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 16px 38px rgba(18, 22, 19, 0.06);
  animation: slide-down 0.8s ease both;
}

.site-topbar {
  color: #ffffff;
  background: linear-gradient(90deg, #0f4a2f 0%, #17663f 45%, #0f4a2f 100%);
  border-bottom: 3px solid #9ad450;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-topbar-inner {
  max-width: none;
  min-height: 38px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 96px);
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-marquee {
  flex: 1 1 auto;
  min-width: 240px;
  overflow: hidden;
}

.topbar-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  min-width: max-content;
  white-space: nowrap;
  animation: greenpath-marquee 18s linear infinite;
}

.topbar-marquee-track span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 999px;
  background: #b8e454;
  box-shadow: 0 0 0 4px rgba(184, 228, 84, 0.18);
}

.topbar-actions {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex: 0 0 auto;
  margin-left: auto;
}

.topbar-link,
.topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  min-height: 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  transition: background 0.2s ease, color 0.2s ease;
}

.topbar-link {
  gap: 8px;
  padding: 0 14px;
}

.topbar-icon {
  width: 40px;
  font-size: 1rem;
}

.topbar-socials {
  display: inline-flex;
  align-items: stretch;
}

.topbar-login {
  font-size: 1.12rem;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.topbar-link:hover,
.topbar-icon:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.site-nav {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  min-height: 104px;
  padding: 18px clamp(24px, 6vw, 112px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  background: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 260px;
  min-width: 0;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}

.brand-logo-only {
  gap: 0;
}

.brand-logo-only .brand-mark {
  width: 230px;
  height: 64px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.brand-logo-only:hover .brand-mark {
  transform: none;
  box-shadow: none;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--brown) 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(24, 76, 56, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.04);
  box-shadow: 0 18px 36px rgba(24, 76, 56, 0.28);
}

.brand-mark-image {
  background: linear-gradient(135deg, rgba(24, 76, 56, 0.14) 0%, rgba(243, 213, 197, 0.82) 100%);
  padding: 6px;
}

.brand-logo-only .brand-mark-image {
  background: transparent;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-logo-only .brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(-50%);
}

.brand small {
  display: block;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 30px;
  font-weight: 700;
  color: #1f2a23;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease;
}

.nav-mobile-login {
  display: none;
}

.nav-mobile-tracker {
  display: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-links .nav-apply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-left: 10px;
  padding: 0 34px;
  border-radius: 999px;
  color: #ffffff;
  background: #145c38;
  box-shadow: 0 16px 34px rgba(20, 92, 56, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-links .nav-apply-link::after {
  display: none;
}

.nav-links .nav-apply-link:hover,
.nav-links .nav-apply-link.active {
  color: #ffffff;
  background: #0f4a2f;
}

.nav-links .nav-apply-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(20, 92, 56, 0.26);
}

@keyframes greenpath-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 12px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--ink);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

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

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

.btn-ui {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-ui:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-ui.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.16);
}

.btn-ui.primary:hover {
  box-shadow: 0 22px 42px rgba(20, 20, 20, 0.2);
}

.btn-ui.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-panel,
.section-panel,
.media-panel,
.cta-band,
.page-hero {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.hero-panel {
  overflow: hidden;
  padding: 46px 0 38px;
  position: relative;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: linear-gradient(90deg, #fbfdf9 0%, #eef8ef 100%);
}

.section-full-bleed,
.section.section-full-bleed {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: 2%;
  bottom: -90px;
  width: 48%;
  height: 240px;
  background: radial-gradient(circle, rgba(68, 196, 120, 0.36) 0%, rgba(68, 196, 120, 0.12) 38%, rgba(68, 196, 120, 0) 72%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-grid,
.split-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
}

.hero-grid {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(8px, 2.2vw, 36px) 0 clamp(18px, 4vw, 72px);
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero-copy h1 {
  margin: 0;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: 0;
  animation: rise-in 0.95s ease both;
}

.hero-copy p,
.page-hero-copy p,
.section-copy p,
.card p,
.info-card p,
.stat-card p,
.process-card p,
.footer-copy p,
.faq-item p,
.media-note {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy p {
  max-width: 62ch;
  animation: rise-in 1.1s ease both;
}

.hero-copy .hero-lead {
  max-width: 620px;
  margin: 0;
  color: #332b25;
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  line-height: 1.45;
}

.hero-copy .hero-support-copy {
  max-width: 690px;
  margin: 0;
  color: #536256;
  font-size: 1.03rem;
  line-height: 1.72;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  min-height: 100%;
  padding: 0;
  justify-content: center;
  gap: 22px;
}

.hero-tagline-wrap {
  overflow: hidden;
}

.hero-tagline {
  margin: -4px 0 0;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 800;
  color: var(--brown);
  letter-spacing: 0;
  animation: hero-tagline-glow 3.4s ease-in-out infinite;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
  animation: rise-in 1.2s ease both;
}

.hero-highlights {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-shelf {
  margin-top: 0;
  min-height: 82px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.05);
  font-weight: 700;
  color: #2f2f2a;
  transition: transform 0.25s ease, background 0.25s ease;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(29, 143, 85, 0.1);
  color: #1b5133;
  backdrop-filter: blur(6px);
}

.pill:hover {
  transform: translateY(-2px);
  background: rgba(29, 143, 85, 0.14);
}

.video-shell,
.media-card,
.image-stack {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 10px);
  min-height: 320px;
  background: linear-gradient(180deg, #0d0d0d 0%, #25312b 100%);
  isolation: isolate;
}

.video-shell {
  min-height: clamp(420px, 38vw, 620px);
  border-radius: 38px;
  border: 0;
  background: #edf2e9;
  box-shadow: 0 24px 60px rgba(24, 76, 56, 0.12);
  transform: translateX(24px);
}

.video-shell::after,
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 14, 0.03) 0%, rgba(12, 18, 14, 0.16) 100%);
  z-index: 1;
}

.video-shell > *,
.media-card > * {
  position: relative;
  z-index: 1;
}

.video-shell video,
.video-shell img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.video-shell > img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-shell .floating-card,
.video-shell .video-overlay {
  z-index: 2;
}

.video-shell:hover video,
.video-shell:hover img,
.media-card:hover img {
  transform: scale(1.04);
}

.video-overlay {
  position: absolute;
  inset: auto 28px 28px 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.video-caption,
.floating-card,
.metric-bubble,
.overlay-note,
.small-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(16, 18, 16, 0.12);
}

.video-caption {
  max-width: 290px;
  padding: 18px;
  border-radius: 22px;
}

.floating-card,
.overlay-note,
.small-card,
.metric-bubble {
  position: absolute;
  border-radius: 22px;
  padding: 18px;
}

.floating-card {
  top: 24px;
  right: 24px;
  max-width: 290px;
  animation: drift 6s ease-in-out infinite;
}

.floating-card.bottom-left {
  top: auto;
  right: auto;
  bottom: 18px;
  left: 18px;
  animation: none;
}

.metric-bubble {
  top: 18px;
  right: 18px;
  max-width: 220px;
}

.metric-bubble.centered {
  top: auto;
  right: auto;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.loan-quick-list {
  position: absolute;
  right: 20px;
  bottom: 18px;
  min-width: 300px;
  max-width: 360px;
  padding: 18px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 36px rgba(16, 18, 16, 0.14);
}

.loan-quick-list ul {
  margin: 12px 0 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 8px;
}

.loan-quick-list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #365643;
  letter-spacing: 0;
}

.loan-quick-list a {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.loan-quick-list a:hover {
  color: var(--green-dark);
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px 24px;
}

.section-panel,
.cta-band,
.page-hero {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.section-panel::before,
.cta-band::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(29, 143, 85, 0.1) 0%, rgba(29, 143, 85, 0) 70%);
  pointer-events: none;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head h2,
.section-copy h2,
.footer-copy h2,
.page-section h2 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 14px 0;
}

.section-title-sm {
  font-size: clamp(1.45rem, 2vw, 2.05rem) !important;
}

.cards-grid,
.info-grid,
.process-grid,
.insight-grid,
.footer-grid,
.metrics-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

.card,
.info-card,
.process-card,
.insight-card,
.stat-card,
.faq-item,
.footer-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 20, 20, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.03);
}

.card:hover,
.info-card:hover,
.process-card:hover,
.insight-card:hover,
.stat-card:hover,
.faq-item:hover,
.footer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(18, 22, 19, 0.09);
  border-color: rgba(29, 143, 85, 0.16);
}

.card h3,
.info-card h3,
.process-card h3,
.insight-card h3,
.stat-card h3,
.footer-card h3,
.faq-item h3 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  margin: 0 0 12px;
  letter-spacing: 0;
}

.card-mini-image {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(20, 20, 20, 0.06);
}

.service-feature-grid {
  gap: 20px;
}

.service-feature-card {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 248, 243, 0.92) 100%);
}

.service-feature-media {
  margin: -4px -4px 18px;
  border-radius: 22px;
  overflow: hidden;
  min-height: 180px;
  background: #dce8dd;
}

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

.loan-type-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 248, 241, 0.94) 100%);
}

.loan-type-media {
  margin: -28px -28px 18px;
  height: 220px;
  overflow: hidden;
  background: rgba(24, 76, 56, 0.08);
}

.loan-type-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loan-type-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -46px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 214, 85, 0.24) 0%, rgba(162, 214, 85, 0) 72%);
  pointer-events: none;
}

.loan-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(29, 143, 85, 0.1);
  color: var(--accent-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.loan-type-fit {
  display: grid;
  gap: 6px;
  margin: 18px 0 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 143, 85, 0.12);
}

.loan-type-fit strong {
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--foreground);
}

.loan-type-fit span {
  color: var(--muted);
}

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

.loan-type-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.loan-type-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #b4dc56 100%);
  box-shadow: 0 0 0 5px rgba(162, 214, 85, 0.12);
}

.loan-type-note {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(25, 53, 39, 0.96) 0%, rgba(35, 82, 57, 0.94) 100%);
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.loan-type-note p {
  margin: 0;
  max-width: 760px;
}

.loan-type-note strong {
  color: #fff;
}

.service-feature-image {
  height: 180px;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  object-position: center;
}

.service-feature-card:nth-child(1) .service-feature-image {
  object-position: center 32%;
}

.service-feature-card:nth-child(2) .service-feature-image {
  object-position: center 38%;
}

.service-feature-card:nth-child(3) .service-feature-image {
  object-position: center 24%;
}

.service-feature-card h3 {
  font-size: clamp(1.25rem, 1.5vw, 1.55rem);
  margin-bottom: 10px;
}

.service-feature-card p {
  max-width: 28ch;
}

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

.why-choose-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.why-choose-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(239, 245, 240, 0.96) 100%);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 14px 30px rgba(18, 22, 19, 0.06);
}

.why-choose-point-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(29, 143, 85, 0.14) 0%, rgba(184, 228, 84, 0.2) 100%);
  color: var(--accent-700);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.why-choose-point h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.why-choose-point p {
  margin: 0;
  color: var(--muted);
  max-width: none;
}

.why-choose-point:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.gp-azure-section {
  position: relative;
}

.gp-azure-shell {
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 245, 239, 0.98) 100%);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

.gp-products-full {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.gp-home-shell,
.gp-products-shell {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
}

.gp-products-shell {
  padding: clamp(44px, 6vw, 86px) clamp(20px, 7vw, 132px);
  border: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(126, 207, 79, 0.12) 0%, rgba(126, 207, 79, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf5 100%);
}

.gp-products-shell::before {
  display: none;
}

.gp-products-shell .gp-azure-head,
.gp-products-shell .gp-news-grid {
  width: min(100%, 1240px);
  margin-left: auto;
  margin-right: auto;
}

.gp-page-hero {
  width: 100%;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 7vw, 120px);
  background:
    radial-gradient(circle at 82% 18%, rgba(126, 207, 79, 0.28) 0%, rgba(126, 207, 79, 0) 30%),
    linear-gradient(120deg, #fbfdf9 0%, #eef8ef 58%, #ffffff 100%);
}

.gp-page-hero-inner {
  width: min(100%, 1060px);
  margin: 0 auto;
  text-align: center;
}

.gp-page-hero h1 {
  max-width: 900px;
  margin: 18px auto 18px;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.gp-page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #536256;
  font-size: clamp(1.04rem, 1.3vw, 1.25rem);
  line-height: 1.65;
}

.gp-regulatory-note {
  width: min(100%, 860px);
  margin: 28px auto 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  color: #264334;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 112, 67, 0.16);
  box-shadow: 0 12px 30px rgba(24, 63, 43, 0.07);
}

.gp-regulatory-note > i {
  color: #18814b;
  font-size: 1.45rem;
}

.gp-regulatory-note strong,
.gp-regulatory-note span {
  display: block;
}

.gp-regulatory-note strong {
  margin-bottom: 3px;
  color: #173d2a;
  font-size: 0.93rem;
}

.gp-regulatory-note span {
  color: #56665a;
  font-size: 0.84rem;
  line-height: 1.5;
}

.gp-regulatory-note a {
  color: #147343;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .gp-regulatory-note {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 16px;
  }

  .gp-regulatory-note a {
    grid-column: 2;
    white-space: normal;
  }
}

.gp-loans-front {
  width: 100%;
  max-width: none;
  padding: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(126, 207, 79, 0.16) 0%, rgba(126, 207, 79, 0) 30%),
    linear-gradient(180deg, #ffffff 0%, #f3faf2 100%);
}

.gp-loans-shell {
  width: 100%;
  padding: clamp(46px, 6vw, 88px) clamp(20px, 7vw, 132px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gp-loans-shell::before {
  display: none;
}

.gp-loans-head {
  width: min(100%, 1240px);
  margin: 0 auto 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
}

.gp-loans-head h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.gp-loans-head p {
  max-width: 440px;
  margin: 0;
  color: #58655b;
  font-size: 1.02rem;
  line-height: 1.65;
}

.gp-loans-grid {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gp-loan-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 247, 0.98) 100%);
  border: 1px solid rgba(24, 76, 56, 0.08);
  box-shadow: 0 18px 42px rgba(16, 24, 18, 0.06);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gp-loan-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(126, 207, 79, 0.24) 0%, rgba(126, 207, 79, 0) 70%);
  pointer-events: none;
}

.gp-loan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 76, 56, 0.18);
  box-shadow: 0 28px 58px rgba(16, 24, 18, 0.1);
}

.gp-loan-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.gp-loan-card p {
  flex: 1;
  margin: 0;
  color: #5d675f;
  line-height: 1.62;
}

.gp-loan-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #184c38 0%, #7fcf4f 100%);
  box-shadow: 0 16px 30px rgba(24, 76, 56, 0.2);
  font-size: 1.4rem;
}

.gp-loan-card-featured {
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 16%, rgba(139, 217, 77, 0.62) 0%, rgba(139, 217, 77, 0) 40%),
    linear-gradient(145deg, #0e1512 0%, #17432e 52%, #78c84d 100%);
  border: 0;
  box-shadow: 0 28px 70px rgba(19, 64, 43, 0.24);
}

.gp-loan-card-featured p,
.gp-loan-card-featured .gp-link-arrow {
  color: rgba(255, 255, 255, 0.92);
}

.gp-loan-card-featured .gp-loan-icon {
  color: #17432e;
  background: rgba(255, 255, 255, 0.9);
}

.gp-home-full {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.gp-azure-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.gp-azure-head h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 10px 0 0;
}

.gp-azure-head p {
  margin: 12px 0 0;
  max-width: 62ch;
}

.gp-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.gp-tab {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--foreground);
  font-weight: 600;
}

.gp-tab.active {
  background: linear-gradient(135deg, var(--green) 0%, var(--brown) 100%);
  border-color: transparent;
  color: #fff;
}

.gp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(24, 76, 56, 0.08);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.gp-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--foreground);
}

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

.gp-news-feature,
.gp-news-card,
.gp-product-card,
.gp-role-card,
.gp-next-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.gp-news-feature {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  padding: 30px;
  background:
    radial-gradient(circle at 90% 24%, rgba(139, 217, 77, 0.88) 0%, rgba(139, 217, 77, 0.28) 28%, rgba(139, 217, 77, 0) 48%),
    radial-gradient(circle at 14% 96%, rgba(28, 147, 140, 0.44) 0%, rgba(28, 147, 140, 0) 42%),
    linear-gradient(145deg, #0e1512 0%, #17432e 52%, #78c84d 100%);
  color: #f6fff2;
  overflow: hidden;
  position: relative;
  border: 0;
  box-shadow: 0 28px 70px rgba(19, 64, 43, 0.24);
}

.gp-news-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0 58%, rgba(255, 255, 255, 0.12) 58% 59%, transparent 59%),
    linear-gradient(160deg, transparent 0 72%, rgba(255, 255, 255, 0.10) 72% 73%, transparent 73%);
  pointer-events: none;
}

.gp-news-feature::after {
  content: "";
  position: absolute;
  left: -34%;
  bottom: -58%;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(166, 231, 103, 0.42) 0%, rgba(166, 231, 103, 0.18) 42%, rgba(166, 231, 103, 0) 70%);
  pointer-events: none;
}

.gp-news-feature .gp-chip {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.16);
  color: #e8ffd9;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.gp-news-feature h3,
.gp-news-feature p,
.gp-news-feature .gp-link-arrow {
  color: inherit;
  position: relative;
  z-index: 1;
}

.gp-news-feature h3 {
  max-width: 26ch;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.14;
}

.gp-news-feature p {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
}

.gp-news-feature .gp-link-arrow {
  width: fit-content;
  color: #ffffff;
}

.gp-news-card {
  overflow: hidden;
}

.gp-news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gp-news-card-body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.gp-solutions-full {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background:
    linear-gradient(120deg, #fbfdf9 0%, #eef8ef 45%, #ffffff 100%);
}

.gp-solution-layout {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(48px, 6vw, 92px) clamp(20px, 6vw, 116px);
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  gap: clamp(34px, 4.5vw, 72px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.62) 54%, rgba(232, 246, 232, 0.72) 100%);
}

.gp-solution-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(132deg, rgba(24, 76, 56, 0.06) 0 18%, transparent 18% 100%),
    linear-gradient(318deg, rgba(126, 207, 79, 0.12) 0 16%, transparent 16% 100%);
  pointer-events: none;
}

.gp-solution-layout > * {
  position: relative;
  z-index: 1;
}

.gp-solution-feature {
  min-width: 0;
  padding: 0;
}

.gp-solution-feature .eyebrow {
  background: rgba(24, 76, 56, 0.1);
  color: #113828;
}

.gp-solution-feature h2 {
  max-width: 780px;
  margin: 18px 0 18px;
  font-size: clamp(2.35rem, 4.35vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.gp-solution-feature > p {
  max-width: 760px;
  color: #536256;
  font-size: clamp(1.02rem, 1.1vw, 1.18rem);
  line-height: 1.72;
}

.gp-solution-feature .gp-tab-row {
  gap: 12px;
  margin: 26px 0 28px;
}

.gp-solution-feature .gp-tab {
  min-height: 46px;
  padding: 0 19px;
  border-color: rgba(24, 76, 56, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: #1f2a23;
  box-shadow: 0 12px 24px rgba(16, 24, 18, 0.05);
}

.gp-solution-feature .gp-tab.active {
  background: #184c38;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(24, 76, 56, 0.2);
}

.gp-solution-media .media-card,
.gp-role-feature,
.gp-story-feature {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.12);
}

.gp-solution-media {
  min-width: 0;
}

.gp-solution-media .media-card {
  min-height: clamp(520px, 42vw, 680px);
  background: #13251c;
}

.gp-solution-media .media-card::after {
  background:
    linear-gradient(180deg, rgba(12, 18, 14, 0.02) 0%, rgba(12, 18, 14, 0.08) 48%, rgba(12, 18, 14, 0.68) 100%);
}

.gp-solution-media .media-card img {
  object-position: center 34%;
}

.gp-solution-media .small-card,
.gp-solution-media .overlay-note {
  max-width: 285px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.7);
}

.gp-solution-media .small-card {
  top: 30px;
  left: 30px;
}

.gp-solution-media .overlay-note {
  right: 30px;
  bottom: 30px;
}

.gp-solution-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gp-solution-card {
  min-width: 0;
  border-radius: 28px;
  padding: 14px 14px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 247, 0.96) 100%);
  border: 1px solid rgba(24, 76, 56, 0.08);
  box-shadow: 0 18px 38px rgba(16, 24, 18, 0.06);
}

.gp-solution-card .service-feature-media {
  min-height: 0;
  height: clamp(138px, 10vw, 178px);
  margin: 0 0 18px;
  border-radius: 22px;
}

.gp-solution-card .service-feature-image {
  width: 100%;
  height: 100%;
  transform: scale(1.01);
}

.gp-solution-card .page-link-meta {
  color: #6f6257;
}

.gp-solution-card h3 {
  font-size: clamp(1.25rem, 1.75vw, 1.85rem);
  line-height: 1.08;
}

.gp-solution-card p {
  max-width: none;
  color: #5e6a61;
  font-size: 0.98rem;
  line-height: 1.55;
}

.gp-product-grid {
  gap: 18px;
}

.gp-product-card {
  padding: 24px;
  border-radius: 26px;
}

.gp-role-grid {
  gap: 18px;
}

.gp-role-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gp-role-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
}

.gp-story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.gp-story-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(110, 74, 53, 0.1);
  color: var(--brown);
  font-weight: 700;
}

.gp-story-layout {
  align-items: stretch;
}

.gp-story-feature {
  position: relative;
  background: #f8fbfe;
}

.gp-story-feature img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gp-story-feature-copy {
  padding: 24px;
}

.gp-next-grid {
  gap: 18px;
}

.gp-next-card {
  border-radius: 26px;
}

.why-choose-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(239, 245, 240, 0.95) 100%);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 16px 32px rgba(18, 22, 19, 0.07);
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: "";
  position: absolute;
  inset: auto -20px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(29, 143, 85, 0.16) 0%, rgba(29, 143, 85, 0) 72%);
}

.why-choose-card .icon-badge {
  margin-bottom: 14px;
}

.why-choose-card .page-link-meta {
  margin-bottom: 10px;
}

.why-choose-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.55vw, 1.6rem);
}

.why-choose-card p {
  max-width: 28ch;
  margin-bottom: 0;
}

.twin-pillars-grid {
  gap: 20px;
}

.pillar-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(245, 248, 243, 0.94) 100%);
  border-radius: 28px;
}

.pillar-card .page-link-meta {
  margin-bottom: 10px;
}

.pillar-card h3 {
  font-size: clamp(1.3rem, 1.6vw, 1.65rem);
}

.pillar-card > p:first-of-type {
  margin-bottom: 14px;
}

.pillar-audience {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  font-size: 0.98rem;
  color: rgba(20, 20, 20, 0.72);
}

.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 1.25rem;
  margin-bottom: 18px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.card:hover .icon-badge,
.info-card:hover .icon-badge,
.process-card:hover .icon-badge {
  transform: translateY(-3px) rotate(-6deg);
  background: rgba(29, 143, 85, 0.2);
}

.split-grid.reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.media-panel {
  min-height: 530px;
  overflow: hidden;
}

.media-card {
  min-height: 530px;
}

.overlay-note {
  bottom: 28px;
  right: 26px;
  max-width: 220px;
}

.small-card {
  top: 24px;
  left: 24px;
  max-width: 210px;
}

.metric-number {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  letter-spacing: 0;
  margin: 0;
  line-height: 0.95;
}

.process-card {
  position: relative;
}

.process-grid.flow-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-card.flow-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
}

.step-badge {
  width: 62px;
  min-width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ink) 0%, #2c4336 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.14);
}

.step-number {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
}

.step-icon {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.flow-card h3 {
  margin-bottom: 10px;
}

.flow-intro {
  margin-bottom: 18px;
  max-width: 58ch;
}

.process-step {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--green-dark);
}

.news-shell {
  display: grid;
  gap: 18px;
}

.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.news-list {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.news-feature,
.news-stack-item {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(20, 20, 20, 0.06);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.news-feature:hover,
.news-stack-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(18, 22, 19, 0.09);
  border-color: rgba(29, 143, 85, 0.16);
}

.news-feature img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.news-body {
  padding: 24px;
}

.news-date {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.news-body h3,
.news-stack-item h3 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0 0 12px;
}

.news-stack {
  display: grid;
  gap: 18px;
}

.news-stack-item {
  padding: 22px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 700;
}

.calculator-band {
  overflow: hidden;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.calculator-panel,
.calculator-summary {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(20, 20, 20, 0.08);
}

.calculator-panel {
  background: rgba(255, 255, 255, 0.86);
}

.calculator-summary {
  background: linear-gradient(180deg, rgba(10, 17, 12, 0.98) 0%, rgba(19, 34, 24, 0.96) 100%);
  color: #f7f5ef;
}

.calculator-summary .eyebrow {
  background: rgba(214, 243, 223, 0.16);
  color: #d6f3df;
}

.calculator-summary-head p,
.calculator-summary .stat-card p {
  color: rgba(247, 245, 239, 0.76);
}

.calculator-input-group {
  margin-bottom: 22px;
}

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

.calculator-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.calculator-label-row strong {
  font-weight: 800;
  color: var(--green-dark);
}

.calculator-range {
  width: 100%;
  margin-bottom: 14px;
  accent-color: var(--green);
}

.calculator-panel .form-control {
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: #fbfbf8;
  font-weight: 700;
}

.calculator-highlight {
  padding: 22px 24px;
  margin: 18px 0 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(214, 243, 223, 0.16) 0%, rgba(214, 243, 223, 0.06) 100%);
  border: 1px solid rgba(214, 243, 223, 0.12);
}

.calculator-highlight-label {
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(247, 245, 239, 0.72);
  font-weight: 800;
}

.calculator-highlight-value {
  margin-top: 8px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 800;
}

.calculator-results-grid {
  display: grid;
  gap: 14px;
}

.calculator-summary .stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.calculator-summary .metric-number {
  color: #ffffff;
}

.calculator-note {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 245, 239, 0.76);
}

.calculator-kibo {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.calculator-kibo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.calculator-kibo-form,
.calculator-kibo-summary {
  border-radius: 32px;
  overflow: hidden;
}

.calculator-kibo-form {
  padding: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f4 100%);
  border: 1px solid rgba(18, 32, 20, 0.08);
  box-shadow: 0 24px 54px rgba(16, 24, 18, 0.08);
}

.calculator-kibo-summary {
  padding: 32px;
  background: linear-gradient(180deg, #0d2617 0%, #163823 100%);
  color: #f5f5ef;
  box-shadow: 0 28px 60px rgba(10, 18, 12, 0.2);
}

.calculator-kibo-form h2,
.calculator-kibo-summary h3 {
  margin: 0 0 24px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.kibo-field {
  padding: 24px 0;
  border-bottom: 1px solid rgba(18, 32, 20, 0.08);
}

.kibo-field:first-of-type {
  padding-top: 8px;
}

.kibo-field:last-of-type {
  border-bottom: 0;
}

.kibo-field-head,
.kibo-toggle-head,
.kibo-cost-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.kibo-field-head {
  margin-bottom: 14px;
}

.kibo-field-head label,
.kibo-toggle-head h3,
.kibo-extra-costs h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: #111712;
  letter-spacing: 0;
}

.kibo-field-head strong {
  font-size: 1rem;
  font-weight: 800;
  color: #1a6b43;
}

.kibo-number {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(18, 32, 20, 0.1);
  background: #f7f8f4;
  color: #101410;
  font-size: 1.04rem;
  font-weight: 700;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kibo-number:focus {
  border-color: rgba(29, 143, 85, 0.35);
  box-shadow: 0 0 0 4px rgba(29, 143, 85, 0.1);
  background: #ffffff;
}

.kibo-number.small {
  width: 112px;
  min-height: 52px;
  text-align: right;
  border-radius: 16px;
  font-size: 0.98rem;
}

.kibo-range {
  width: 100%;
  margin-top: 16px;
  accent-color: #2a9d62;
}

.kibo-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: #6c756d;
  font-size: 0.88rem;
  font-weight: 700;
}

.kibo-extra-costs,
.kibo-toggle-block {
  margin-top: 22px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f6f7f2 0%, #eff3eb 100%);
  border: 1px solid rgba(18, 32, 20, 0.08);
}

.kibo-extra-costs h3 {
  margin-bottom: 18px;
}

.kibo-cost-item + .kibo-cost-item {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 32, 20, 0.08);
}

.kibo-cost-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.kibo-cost-item span {
  color: #687067;
  font-size: 0.92rem;
  font-weight: 600;
}

.kibo-toggle-btn,
.kibo-download-btn {
  border: 0;
  cursor: pointer;
}

.kibo-toggle-btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #102417;
  color: #f6f5ef;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.kibo-toggle-btn:hover {
  transform: translateY(-1px);
  background: #183822;
}

.kibo-chip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.kibo-term-chip {
  padding: 14px 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(18, 32, 20, 0.08);
  text-align: center;
}

.kibo-term-chip strong,
.kibo-term-chip span {
  display: block;
}

.kibo-term-chip strong {
  font-size: 0.94rem;
  margin-bottom: 6px;
}

.kibo-term-chip span {
  color: #5f685f;
  font-size: 0.88rem;
  font-weight: 700;
}

.kibo-term-chip.active {
  background: linear-gradient(180deg, #dff2e5 0%, #f4fbf6 100%);
  border-color: rgba(29, 143, 85, 0.24);
}

.kibo-summary-top {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kibo-summary-caption {
  color: rgba(245, 245, 239, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kibo-big-amount {
  margin-top: 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 800;
}

.kibo-summary-sub {
  margin-top: 10px;
  color: rgba(245, 245, 239, 0.78);
  font-size: 1rem;
}

.kibo-insurance-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.kibo-insurance-line > div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kibo-insurance-line span {
  display: block;
  color: rgba(245, 245, 239, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.kibo-insurance-line strong {
  font-size: 1.24rem;
  line-height: 1.1;
}

.kibo-breakdown {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kibo-breakdown h3 {
  margin-bottom: 16px;
}

.kibo-breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kibo-breakdown-row:first-of-type {
  border-top: 0;
}

.kibo-breakdown-row span {
  color: rgba(245, 245, 239, 0.74);
}

.kibo-breakdown-row strong {
  font-size: 1rem;
}

.kibo-total-row {
  margin-top: 6px;
  padding-top: 16px;
}

.kibo-total-row span,
.kibo-total-row strong {
  color: #ffffff;
  font-weight: 800;
}

.kibo-effective-rate {
  margin-top: 22px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(44, 156, 96, 0.2) 0%, rgba(24, 55, 35, 0.28) 100%);
  border: 1px solid rgba(132, 209, 162, 0.2);
}

.kibo-effective-value {
  margin: 10px 0 10px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

.kibo-effective-rate p {
  margin: 0;
  color: rgba(245, 245, 239, 0.76);
}

.kibo-download-btn {
  width: 100%;
  margin-top: 22px;
  min-height: 58px;
  background: #f4f5ef;
  color: #0d1d12;
  box-shadow: none;
}

.kibo-download-btn:hover {
  background: #ffffff;
}

.kibo-schedule {
  margin-top: 18px;
}

.kibo-hint {
  margin: 16px 0 0;
  color: #677068;
}

.kibo-schedule-table-wrap {
  max-height: 360px;
  overflow: auto;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(18, 32, 20, 0.08);
}

.kibo-schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.kibo-schedule-table th,
.kibo-schedule-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(18, 32, 20, 0.06);
}

.kibo-schedule-table th {
  position: sticky;
  top: 0;
  background: #f4f7f1;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #516055;
}

.kibo-schedule-table tbody tr:nth-child(even) {
  background: rgba(244, 247, 241, 0.7);
}

.training-showcase {
  overflow: hidden;
  border-radius: 0;
  padding: 28px 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

.training-showcase .news-header {
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.slider-arrow:hover {
  transform: translateY(-2px);
  background: rgba(29, 143, 85, 0.12);
  border-color: rgba(29, 143, 85, 0.22);
}

.training-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 22vw, 290px);
  gap: 18px;
  overflow-x: auto;
  padding:
    0
    max(24px, calc((100vw - var(--container)) / 2))
    10px
    max(24px, calc((100vw - var(--container)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  touch-action: pan-x;
}

.training-carousel::-webkit-scrollbar {
  display: none;
}

.training-card {
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 20, 20, 0.08);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.training-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(18, 22, 19, 0.12);
  border-color: rgba(29, 143, 85, 0.2);
}

.training-card-top {
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, var(--card-tint, #eaf6f0) 0%, rgba(255, 255, 255, 0.74) 100%);
}

.training-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.training-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.78);
}

.training-chip-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(29, 143, 85, 0.72);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.5);
  margin-left: auto;
}

.training-card h3 {
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 10px;
}

.training-card p {
  margin: 0;
  max-width: 30ch;
  color: rgba(20, 20, 20, 0.72);
}

.training-card-media {
  position: relative;
  margin: 0 18px 18px;
  border-radius: 22px;
  overflow: hidden;
  flex: 1;
  min-height: 240px;
  background: rgba(10, 18, 12, 0.06);
}

.training-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.55s ease;
}

.training-card:hover .training-card-media img {
  transform: scale(1);
}

.training-glass-btn {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
  color: rgba(20, 20, 20, 0.88);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.training-glass-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 14px 24px rgba(18, 22, 19, 0.12);
}

.training-glass-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: rgba(20, 20, 20, 0.9);
}

.about-page {
  background:
    radial-gradient(circle at top left, #fcfaf4 0%, #f2ede2 42%, #ebe4d5 100%);
}

.about-hero {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.about-hero-panel {
  min-height: 560px;
  padding: 54px;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(29, 143, 85, 0.12) 0, rgba(29, 143, 85, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(248, 243, 234, 0.92) 100%);
  border-top: 1px solid rgba(20, 20, 20, 0.06);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
}

.training-page-hero {
  width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  padding: 42px max(24px, calc((100vw - var(--container)) / 2));
  background:
    radial-gradient(circle at 18% 14%, rgba(29, 143, 85, 0.12) 0, rgba(29, 143, 85, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 243, 234, 0.94) 100%);
}

.about-hero-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -30px;
  top: -30px;
  border-radius: 999px;
  background: rgba(213, 233, 198, 0.7);
  filter: blur(8px);
}

.about-hero-copy {
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.about-hero-copy h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  margin: 12px 0 18px;
  max-width: 11ch;
}

.about-hero-copy p {
  max-width: 48ch;
  color: rgba(20, 20, 20, 0.68);
  font-size: 1.05rem;
  margin-bottom: 26px;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-collage {
  position: relative;
  min-height: 420px;
}

.about-collage-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 48px rgba(20, 20, 20, 0.08);
  will-change: transform;
}

.about-collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.about-collage-large {
  width: 240px;
  height: 310px;
  left: 110px;
  top: 88px;
  transform: rotate(-7deg);
  animation: about-float-large 7s ease-in-out infinite;
}

.about-collage-top {
  width: 170px;
  height: 190px;
  left: 0;
  top: 38px;
  animation: about-float-small 6s ease-in-out infinite;
}

.about-collage-bottom {
  width: 160px;
  height: 190px;
  right: 26px;
  top: 0;
  animation: about-float-badge 6.8s ease-in-out infinite;
}

.about-collage-badge {
  position: absolute;
  left: 30px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #163f2b;
  color: #f7fbf2;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(22, 63, 43, 0.22);
  animation: about-badge-pulse 4.6s ease-in-out infinite;
}

.about-collage-badge span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #b8e454;
  color: #163f2b;
}

.about-marquee {
  margin-top: 0;
  background: linear-gradient(180deg, #234f35 0%, #173927 100%);
  color: #f6faf2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.about-marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  padding: 16px 0;
  animation: about-marquee 28s linear infinite;
}

.about-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.about-marquee-track span::before {
  content: "*";
  color: #b8e454;
  font-size: 1.2rem;
  line-height: 1;
}

.page-section.about-feature-section,
.page-section.about-dark-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.page-section.about-feature-section {
  background: linear-gradient(180deg, #f7f3ea 0%, #f2ede2 100%);
}

.page-section.about-dark-section {
  background: linear-gradient(180deg, #1d4a32 0%, #163523 100%);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 52px max(0px, calc((100vw - var(--container)) / 2)) 20px;
}

.about-story-media {
  position: relative;
  min-height: 470px;
}

.about-story-image {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(20, 20, 20, 0.08);
  will-change: transform;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.about-story-image-main {
  inset: 0 110px 120px 0;
  animation: about-float-small 6.6s ease-in-out infinite;
}

.about-story-image-alt {
  inset: 210px 0 0 84px;
  animation: about-float-large 7.4s ease-in-out infinite;
}

.about-story-seal {
  position: absolute;
  left: 42%;
  top: 43%;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1e4c32;
  color: #cbef6d;
  border: 8px solid #eef3e4;
  font-size: 1.4rem;
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.14);
  animation: about-seal-spin 9s linear infinite;
}

.about-story-copy p {
  color: rgba(20, 20, 20, 0.68);
  max-width: 56ch;
}

.about-progress-list {
  display: grid;
  gap: 18px;
  margin: 26px 0 30px;
}

.about-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-progress-head strong {
  color: #234f35;
}

.about-progress-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(35, 79, 53, 0.1);
  overflow: visible;
  position: relative;
}

.about-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #28593d 0%, #b8e454 100%);
  position: relative;
  width: 0;
  transition: width 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-progress-row.is-visible .about-progress-bar span {
  width: var(--target-width, 0%);
}

.about-progress-bar span::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #d8ef97;
  border: 3px solid #f3efe7;
  box-shadow: 0 0 0 1px rgba(35, 79, 53, 0.12);
}

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 18px max(0px, calc((100vw - var(--container)) / 2)) 0;
  padding-bottom: 44px;
}

.about-stat {
  padding: 18px 10px;
  text-align: center;
  position: relative;
}

.about-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(20, 20, 20, 0.08);
}

.about-stat strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.about-stat span {
  color: rgba(20, 20, 20, 0.58);
}

.about-services {
  background:
    radial-gradient(circle at top right, rgba(184, 228, 84, 0.14) 0%, rgba(184, 228, 84, 0) 22%),
    linear-gradient(180deg, #1e4d34 0%, #173a28 100%);
  color: #f4f8f0;
  border-radius: 0;
  padding: 48px max(24px, calc((100vw - var(--container)) / 2));
}

.about-services .eyebrow,
.about-services h2,
.about-services p,
.about-services h3 {
  color: inherit;
}

.about-services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.about-services-head .btn-ui.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.about-dark-label {
  background: rgba(255, 255, 255, 0.92);
  color: #000;
}

.about-services-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1fr;
  gap: 18px;
}

.about-service-card {
  min-height: 220px;
  border-radius: 26px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.about-service-card-image {
  display: grid;
  gap: 16px;
  align-content: start;
}

.about-service-card-image img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  border-radius: 18px;
  filter: grayscale(0.15);
}

.about-service-card-highlight {
  background: linear-gradient(180deg, #b8e454 0%, #a6d73f 100%);
  color: #173927;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-service-card-highlight p,
.about-service-card-highlight h3 {
  color: #173927;
}

.about-service-card-highlight a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

@keyframes about-float-large {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }
  50% {
    transform: translateY(-14px) rotate(-5deg);
  }
}

@keyframes about-float-small {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes about-float-badge {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes about-badge-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 30px rgba(22, 63, 43, 0.22);
  }
  50% {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 24px 36px rgba(22, 63, 43, 0.28);
  }
}

@keyframes about-seal-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-collage-large,
  .about-collage-top,
  .about-collage-bottom,
  .about-collage-badge,
  .about-story-image-main,
  .about-story-image-alt,
  .about-story-seal {
    animation: none;
  }

  .about-progress-bar span {
    transition: none;
  }
}

.impact-page {
  background:
    radial-gradient(circle at top left, #fbfaf4 0%, #f1ece0 44%, #e8e1d4 100%);
}

.impact-page-hero {
  width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  padding: 48px max(24px, calc((100vw - var(--container)) / 2));
  background:
    radial-gradient(circle at 82% 18%, rgba(29, 143, 85, 0.12) 0%, rgba(29, 143, 85, 0) 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(245, 240, 231, 0.95) 100%);
}

.impact-hero-grid {
  align-items: stretch;
}

.impact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.impact-hero-copy p {
  max-width: 58ch;
}

.impact-hero-media {
  position: relative;
  min-height: 100%;
}

.impact-hero-card {
  min-height: 520px;
}

.impact-hero-stat {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 220px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 18px 34px rgba(18, 22, 19, 0.12);
}

.impact-hero-stat strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.impact-hero-stat span {
  color: rgba(20, 20, 20, 0.68);
}

.impact-capabilities-section {
  padding-top: 34px;
}

.impact-capabilities-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}

.impact-capabilities-note {
  margin: 0;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.03);
}

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

.impact-service-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 247, 241, 0.95) 100%);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 16px 30px rgba(18, 22, 19, 0.06);
  min-height: 100%;
}

.impact-service-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
}

.impact-process-shell {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(249, 246, 239, 0.95) 100%);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: var(--shadow);
}

.impact-process-head {
  max-width: 780px;
  margin-bottom: 26px;
}

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

.impact-process-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 20, 20, 0.06);
}

.impact-process-card h3 {
  margin: 14px 0 10px;
}

.impact-sectors-grid {
  align-items: stretch;
}

.impact-sector-media {
  min-height: 520px;
}

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

.impact-results-section {
  padding-bottom: 36px;
}

.impact-results-shell {
  border-radius: 36px;
  padding: 36px;
  color: #f4f8f0;
  background:
    radial-gradient(circle at top right, rgba(184, 228, 84, 0.14) 0%, rgba(184, 228, 84, 0) 22%),
    linear-gradient(180deg, #1e4d34 0%, #173a28 100%);
  box-shadow: 0 24px 52px rgba(22, 45, 31, 0.18);
}

.impact-results-copy h2,
.impact-results-copy p {
  color: inherit;
}

.impact-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.impact-result-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.impact-result-card strong {
  display: block;
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.impact-result-card span {
  color: rgba(244, 248, 240, 0.82);
}

.impact-results-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1199.98px) {
  .site-topbar-inner {
    padding: 0 20px;
    gap: 12px;
  }

  .site-nav {
    gap: 18px;
    min-height: 86px;
    padding: 16px 28px;
  }

  .brand {
    flex-basis: 206px;
  }

  .brand-logo-only .brand-mark {
    width: 188px;
    height: 52px;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.95rem;
  }

  .nav-links .nav-apply-link {
    min-height: 48px;
    margin-left: 2px;
    padding: 0 22px;
  }

  .nav-actions .btn-ui {
    min-height: 48px;
    padding: 0 20px;
  }

  .hero-panel {
    padding: 34px 0 32px;
  }

  .hero-grid {
    padding: 0 12px 0 20px;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 30px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.35rem, 4vw, 3.7rem);
  }

  .hero-copy p {
    max-width: 54ch;
  }

  .video-shell,
  .media-card {
    min-height: 460px;
  }

  .video-shell {
    min-height: 430px;
    transform: translateX(10px);
  }

  .about-hero-panel {
    gap: 28px;
    min-height: 500px;
  }

  .about-collage-large {
    left: 92px;
  }

  .about-story {
    gap: 24px;
  }

  .about-story-media {
    min-height: 420px;
  }

  .about-story-image-main {
    inset: 0 84px 104px 0;
  }

  .about-story-image-alt {
    inset: 190px 0 0 64px;
  }

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

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

@keyframes about-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.training-slide {
  position: relative;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: #eef4ef;
  border: 1px solid rgba(20, 20, 20, 0.08);
  scroll-snap-align: start;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.training-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.55s ease;
}

.training-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 12, 0.18) 0%, rgba(10, 18, 12, 0.68) 100%);
}

.training-slide:hover img {
  transform: scale(1.01);
}

.training-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(18, 22, 19, 0.14);
  border-color: rgba(29, 143, 85, 0.2);
}

.training-slide-dark {
  background: #03140b;
}

.training-slide-soft::after {
  background: linear-gradient(180deg, rgba(238, 244, 239, 0.18) 0%, rgba(238, 244, 239, 0.88) 100%);
}

.training-slide-soft .training-slide-content {
  color: var(--ink);
}

.training-slide-soft .training-slide-content p {
  color: rgba(20, 20, 20, 0.72);
}

.training-slide-content {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 1;
  color: #fff;
}

.training-slide-content h3 {
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1.04;
  margin: 0 0 12px;
  letter-spacing: 0;
}

.training-slide-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  max-width: 22ch;
  margin-bottom: 18px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: center;
}

.insight-card {
  display: block;
  position: relative;
  min-height: 100%;
}

.insight-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(29, 143, 85, 0.16) 0%, rgba(29, 143, 85, 0.08) 100%);
  color: var(--green-dark);
  font-size: 1.15rem;
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 700;
  color: var(--green-dark);
}

.page-links-band {
  padding-top: 42px;
  padding-bottom: 42px;
}

.page-links-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 26px;
}

.page-links-note {
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(29, 143, 85, 0.12) 0%, rgba(29, 143, 85, 0.05) 100%);
  border: 1px solid rgba(29, 143, 85, 0.1);
  color: var(--ink);
}

.page-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.page-link-card {
  padding: 26px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-link-card h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.page-link-card p {
  max-width: 28ch;
}

.page-link-meta {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-link-card .insight-link {
  margin-top: auto;
  padding-top: 22px;
}

.footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.footer-panel {
  width: 100%;
  border-radius: 0;
  background: #141414;
  color: #f8f5ee;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.footer-panel::before {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(29, 143, 85, 0.38) 0%, rgba(29, 143, 85, 0) 72%);
}

.footer-panel .footer-copy p,
.footer-panel a,
.footer-panel li,
.footer-panel .meta {
  color: rgba(248, 245, 238, 0.7);
}

.footer-panel .footer-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.footer-panel .footer-card:hover {
  border-color: rgba(29, 143, 85, 0.28);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.footer-panel .footer-card h3 {
  color: #f6f1e8;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-panel .footer-links li,
.footer-panel .footer-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(248, 245, 238, 0.82);
}

.footer-panel .footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-panel .footer-links a:hover {
  color: #d6f3df;
  transform: translateX(4px);
}

.footer-panel .footer-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(176, 229, 196, 0.1) 100%);
}

.footer-panel .footer-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(29, 143, 85, 0.15) 100%);
}

.footer-panel .footer-card:nth-child(3) .footer-links li,
.footer-panel .footer-card:nth-child(3) .footer-links a {
  color: #f4fbf6;
}

.meta {
  margin-top: 28px;
  font-size: 0.9rem;
}

.footer-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badge {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 245, 238, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-legal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  margin: 0;
  color: rgba(248, 245, 238, 0.64);
  font-size: 0.92rem;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 18px;
}

.footer-legal a {
  color: rgba(248, 245, 238, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #d6f3df;
}

.footer-legal a + a {
  position: relative;
}

.footer-legal a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 1px;
  height: 14px;
  transform: translateY(-50%);
  background: rgba(248, 245, 238, 0.28);
}

/* Public legal pages */
.gp-legal-hero {
  width: 100%;
  background: linear-gradient(135deg, #31ae1f 0%, #3ab927 58%, #279819 100%);
  color: #ffffff;
}

.gp-legal-hero-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 28px);
}

.gp-legal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.gp-legal-breadcrumb a {
  color: #ffffff;
}

.gp-legal-breadcrumb i {
  font-size: 0.75rem;
}

.gp-legal-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.2rem, 6.6vw, 5.6rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.gp-legal-page {
  width: 100%;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 42px);
  background: #ffffff;
}

.gp-legal-document {
  width: min(100%, 980px);
  margin: 0 auto;
  color: #1f2621;
}

.gp-legal-intro {
  margin-bottom: 26px;
}

.gp-legal-label {
  margin: 0 0 18px;
  color: #1f2621;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.gp-legal-intro h2,
.gp-legal-document section h2 {
  margin: 0 0 18px;
  color: #1f2621;
  font-size: clamp(1.1rem, 1.35vw, 1.32rem);
  line-height: 1.32;
  font-weight: 900;
  text-transform: uppercase;
}

.gp-legal-updated {
  width: fit-content;
  margin: -4px 0 26px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eef8ef;
  color: #195f37;
  font-size: 0.88rem;
  font-weight: 800;
}

.gp-legal-document p,
.gp-legal-document li {
  color: #151b18;
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.72;
}

.gp-legal-document p {
  margin: 0 0 22px;
}

.gp-legal-document ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 1.35rem;
}

.gp-legal-document section {
  padding-top: 24px;
  margin-top: 8px;
}

.gp-legal-document section + section {
  border-top: 1px solid #e5ece6;
}

.gp-legal-document a {
  color: #195f37;
  font-weight: 900;
}

.gp-legal-contents {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0 24px;
  margin: 24px 0;
  border-top: 1px solid #cfe4d4;
  border-bottom: 1px solid #cfe4d4;
}

.gp-legal-contents strong {
  color: #195f37;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.gp-legal-contents div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gp-legal-contents a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef8ef;
  color: #195f37;
  font-size: 0.88rem;
  font-weight: 900;
}

.gp-legal-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 24px;
}

.gp-legal-contact div {
  min-height: 110px;
  padding: 18px;
  border-radius: 4px;
  background: #f2faf2;
  border: 1px solid #d9ecdd;
}

.gp-legal-contact span {
  display: block;
  margin-bottom: 8px;
  color: #5d6a61;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gp-legal-contact a,
.gp-legal-contact strong {
  display: inline-block;
  color: #1f2621;
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 900;
}

.gp-legal-related {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 34px);
  margin-top: 44px;
  border-radius: 4px;
  background: linear-gradient(135deg, #eef8ef 0%, #ffffff 100%);
  border: 1px solid #cfe4d4;
}

.gp-legal-related span {
  display: inline-block;
  margin-bottom: 8px;
  color: #195f37;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gp-legal-related h2 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.16;
}

@media (max-width: 767.98px) {
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-legal nav {
    justify-content: flex-start;
  }

  .gp-legal-hero-inner {
    max-width: 100%;
    padding: 46px 20px 54px;
    overflow: hidden;
  }

  .gp-legal-hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11.5vw, 3.25rem);
    overflow-wrap: anywhere;
  }

  .gp-legal-page {
    max-width: 100vw;
    padding: 32px 18px 48px;
    overflow: hidden;
  }

  .gp-legal-document {
    width: 100%;
    max-width: calc(100vw - 36px);
    min-width: 0;
  }

  .gp-legal-document h2,
  .gp-legal-document p,
  .gp-legal-document li,
  .gp-legal-contact a,
  .gp-legal-contact strong {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .gp-legal-contents {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
    overflow: hidden;
  }

  .gp-legal-contents div {
    gap: 8px;
  }

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

  .gp-legal-related {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 0;
    margin-left: -18px;
    margin-right: -18px;
  }
}

/* Search landing hierarchy and expanded footer navigation. */
.hero-copy .hero-brand-title {
  max-width: 620px;
  margin: 0;
  color: #173f2c;
  font-size: clamp(1.75rem, 2.6vw, 2.8rem);
  line-height: 1.08;
  font-weight: 900;
}

.footer-grid {
  grid-template-columns: minmax(280px, 1.65fr) repeat(3, minmax(150px, 1fr));
}

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

@media (max-width: 767.98px) {
  .hero-copy .hero-brand-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

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

.page-hero {
  margin-top: 0;
  border-radius: 0;
}

.page-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px 24px;
}

.page-section .split-grid,
.page-hero-grid {
  align-items: start;
}

@keyframes drift {
  0%,
  100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-tagline-glow {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.92;
    text-shadow: 0 0 0 rgba(110, 74, 53, 0);
  }
  50% {
    transform: translateY(-2px);
    opacity: 1;
    text-shadow: 0 10px 24px rgba(110, 74, 53, 0.16);
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

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

.reveal-on-scroll.reveal-left {
  transform: translateX(-36px);
}

.reveal-on-scroll.reveal-right {
  transform: translateX(36px);
}

.reveal-on-scroll.reveal-left.is-visible,
.reveal-on-scroll.reveal-right.is-visible {
  transform: translateX(0);
}

.hero-copy > * {
  animation: rise-in 0.85s ease both;
}

@media (max-width: 991.98px) {
  .site-topbar-inner {
    min-height: auto;
    padding: 8px 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-marquee {
    order: 2;
    flex-basis: 100%;
    min-width: 0;
  }

  .topbar-actions {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-link,
  .topbar-icon {
    min-height: 34px;
    border-left-color: rgba(255, 255, 255, 0.18);
  }

  .topbar-link {
    padding: 0 10px;
  }

  .topbar-icon {
    width: 34px;
  }

  .site-nav {
    min-height: 72px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .brand {
    flex: 0 0 auto;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    order: 4;
    width: 100%;
    flex: none;
    white-space: normal;
    display: none;
  }

  .nav-actions {
    order: 5;
    width: 100%;
    flex: none;
    white-space: normal;
    display: none;
  }

  .site-nav.is-open .nav-links,
  .site-nav.is-open .nav-actions {
    display: flex;
  }

  .site-nav.is-open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0 8px;
  }

  .site-nav.is-open .nav-links .nav-apply-link {
    width: 100%;
    margin-left: 0;
  }

  .site-nav.is-open .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 6px;
  }

  .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .page-hero-grid,
  .cta-band,
  .gp-news-grid,
  .loan-type-grid,
  .cards-grid,
  .info-grid,
  .why-choose-grid,
  .why-choose-points,
  .impact-capabilities-head,
  .process-grid,
  .process-grid.flow-grid,
  .insight-grid,
  .page-links-head,
  .gp-azure-head,
  .footer-grid,
  .metrics-grid,
  .news-list {
    grid-template-columns: 1fr;
  }

  .video-shell,
  .media-card {
    min-height: 420px;
  }

  .video-shell {
    transform: none;
  }

  .hero-panel {
    padding: 22px 24px 0;
  }

  .hero-grid {
    padding: 0;
  }

  .hero-copy {
    padding: 0;
    gap: 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-logo-only .brand-mark {
    width: 150px;
    height: 42px;
  }

  .hero-copy p {
    max-width: none;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn-ui {
    flex: 1 1 220px;
  }

  .site-nav.is-open .nav-actions .btn-ui {
    width: 100%;
  }

  .hero-highlights {
    gap: 10px;
  }

  .training-carousel {
    grid-auto-columns: minmax(300px, 72%);
  }

  .loan-type-media {
    height: 200px;
  }

  .about-hero-panel,
  .about-story,
  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .training-page-hero {
    padding: 32px 24px;
  }

  .about-collage {
    min-height: 380px;
  }

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

  .about-services-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .impact-page-hero {
    padding: 32px 24px;
  }

  .impact-hero-card,
  .impact-sector-media {
    min-height: 420px;
  }

  .impact-client-grid {
    grid-template-columns: 1fr;
  }

  .gp-azure-head,
  .gp-tab-row,
  .gp-story-chips {
    align-items: flex-start;
  }

  .about-story {
    padding-top: 42px;
  }

  .about-stat-row {
    margin-left: max(24px, calc((100vw - var(--container)) / 2));
    margin-right: max(24px, calc((100vw - var(--container)) / 2));
  }

  .service-feature-card p,
  .why-choose-card p,
  .why-choose-point p {
    max-width: none;
  }

  .calculator-layout,
  .calculator-duo,
  .calculator-kibo-grid,
  .kibo-insurance-line {
    grid-template-columns: 1fr;
  }

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

  .loan-type-note {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .loan-quick-list {
    left: 20px;
    right: 20px;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .site-topbar-inner,
  .site-nav,
  .hero,
  .section,
  .page-section,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-panel,
  .section-panel,
  .cta-band,
  .page-hero,
  .footer-panel {
    padding: 22px;
    border-radius: 0;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.92rem;
  }

  .nav-links .nav-apply-link {
    min-height: 48px;
    padding: 0 22px;
  }

  .nav-actions {
    gap: 10px;
  }

  .topbar-actions {
    width: 100%;
  }

  .topbar-phone span {
    display: inline;
  }

  .nav-actions .btn-ui,
  .hero-actions .btn-ui {
    width: 100%;
  }

  .video-shell,
  .media-card {
    min-height: 340px;
  }

  .video-shell {
    min-height: 330px;
  }

  .floating-card {
    top: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
  }

  .video-overlay {
    inset: auto 16px 16px 16px;
  }

  .hero-copy {
    gap: 14px;
  }

  .brand-logo-only .brand-mark {
    width: 138px;
    height: 40px;
  }

  .loan-type-media {
    margin: -22px -22px 16px;
    height: 180px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.02;
  }

  .hero-copy p,
  .page-hero-copy p,
  .section-copy p,
  .card p,
  .info-card p,
  .stat-card p,
  .process-card p,
  .footer-copy p,
  .faq-item p,
  .media-note {
    font-size: 0.98rem;
  }

  .service-feature-media,
  .service-feature-image {
    height: 210px;
    min-height: 210px;
  }

  .calculator-kibo-form,
  .calculator-kibo-summary {
    padding: 24px;
    border-radius: 24px;
  }

  .kibo-extra-costs,
  .kibo-toggle-block,
  .kibo-breakdown,
  .kibo-effective-rate {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-shelf {
    min-height: 0;
  }

  .training-carousel {
    grid-auto-columns: 88%;
    gap: 14px;
  }

  .about-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .impact-page-hero {
    padding: 24px 16px;
  }

  .page-section.about-feature-section,
  .page-section.about-dark-section {
    padding-left: 0;
    padding-right: 0;
  }

  .about-hero-panel,
  .about-services {
    padding: 24px;
    border-radius: 0;
  }

  .impact-process-shell,
  .impact-results-shell {
    padding: 24px;
    border-radius: 28px;
  }

  .impact-hero-stat {
    position: static;
    margin: 16px;
    max-width: none;
  }

  .training-page-hero {
    padding: 24px 16px;
  }

  .about-hero-actions .btn-ui {
    width: 100%;
  }

  .about-hero-copy h1 {
    max-width: none;
  }

  .about-collage {
    min-height: 320px;
  }

  .about-collage-large {
    width: 180px;
    height: 238px;
    left: 72px;
    top: 72px;
  }

  .about-collage-top {
    width: 128px;
    height: 148px;
  }

  .about-collage-bottom {
    width: 126px;
    height: 148px;
    right: 8px;
  }

  .about-story {
    gap: 22px;
    padding-top: 34px;
  }

  .about-story-media {
    min-height: 360px;
  }

  .about-story-image-main {
    inset: 0 64px 90px 0;
  }

  .about-story-image-alt {
    inset: 160px 0 0 40px;
  }

  .about-story-seal {
    width: 62px;
    height: 62px;
    font-size: 1.1rem;
  }

  .about-stat-row {
    grid-template-columns: 1fr;
    margin-left: 24px;
    margin-right: 24px;
  }

  .impact-capabilities-grid,
  .impact-process-grid,
  .impact-results-grid {
    grid-template-columns: 1fr;
  }

  .about-stat:not(:last-child)::after {
    display: none;
  }

  .about-marquee-track {
    gap: 24px;
    animation-duration: 22s;
  }

  .why-choose-card,
  .service-feature-card {
    padding: 20px;
  }

  .floating-card,
  .overlay-note,
  .small-card,
  .loan-quick-list {
    position: static;
    margin: 14px;
  }

  .video-overlay {
    position: static;
    padding: 14px;
    display: block;
  }

  .kibo-chip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .site-topbar-inner {
    padding: 8px 12px;
  }

  .topbar-link {
    font-size: 0.78rem;
  }

  .topbar-socials .topbar-icon {
    width: 30px;
  }

  .site-nav {
    padding: 14px 12px;
  }

  .hero-panel,
  .section-panel,
  .cta-band,
  .page-hero,
  .footer-panel,
  .about-hero-panel,
  .about-services {
    padding: 18px;
  }

  .impact-page-hero {
    padding: 18px 12px;
  }

  .impact-process-shell,
  .impact-results-shell,
  .impact-service-card {
    padding: 18px;
  }

  .training-page-hero {
    padding: 18px 12px;
  }

  .pill {
    width: 100%;
    justify-content: center;
  }

  .service-feature-media,
  .service-feature-image {
    height: 180px;
    min-height: 180px;
  }

  .about-collage {
    min-height: 280px;
  }

  .about-collage-large {
    width: 150px;
    height: 200px;
    left: 54px;
    top: 64px;
  }

  .about-collage-top {
    width: 104px;
    height: 122px;
  }

  .about-collage-bottom {
    width: 104px;
    height: 122px;
  }

  .about-collage-badge {
    left: 12px;
    bottom: 8px;
    font-size: 0.82rem;
  }

  .about-story-media {
    min-height: 300px;
  }

  .about-story-image-main {
    inset: 0 42px 74px 0;
  }

  .about-story-image-alt {
    inset: 132px 0 0 24px;
  }

  .about-story-seal {
    width: 54px;
    height: 54px;
    border-width: 6px;
  }

  .about-stat-row {
    margin-left: 18px;
    margin-right: 18px;
    padding-bottom: 30px;
  }
}

@media (max-width: 1199.98px) {
  .gp-loans-shell {
    padding: 46px 28px;
  }

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

  .gp-solution-layout {
    padding: 46px 28px;
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.85fr);
    gap: 30px;
  }

  .gp-solution-feature h2 {
    font-size: clamp(2.15rem, 4vw, 3.6rem);
  }

  .gp-solution-card {
    padding: 12px 12px 18px;
  }
}

@media (max-width: 991.98px) {
  .gp-loans-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gp-solution-layout {
    padding: 42px 24px;
  }

  .gp-solution-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gp-solution-media .media-card {
    min-height: 460px;
  }
}

@media (max-width: 767.98px) {
  .gp-page-hero {
    padding: 44px 16px;
  }

  .gp-loans-shell {
    padding: 36px 16px;
  }

  .gp-loans-grid {
    grid-template-columns: 1fr;
  }

  .gp-loan-card {
    min-height: auto;
  }

  .section.gp-solutions-full {
    padding-left: 0;
    padding-right: 0;
  }

  .gp-solution-layout {
    padding: 34px 16px;
  }

  .gp-solution-feature h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .gp-solution-feature .gp-tab-row {
    margin-bottom: 22px;
  }

  .gp-solution-feature .gp-tab {
    flex: 1 1 auto;
    justify-content: center;
  }

  .gp-solution-stack {
    grid-template-columns: 1fr;
  }

  .gp-solution-card .service-feature-media {
    height: 200px;
  }

  .gp-solution-media .media-card {
    min-height: 380px;
    border-radius: 28px;
  }
}

.gp-loan-detail-hero {
  width: 100%;
  padding: clamp(34px, 5vw, 72px) clamp(16px, 6vw, 112px);
  background:
    linear-gradient(135deg, #f8fbf7 0%, #ffffff 44%, #edf8ec 100%);
  border-bottom: 1px solid rgba(24, 76, 56, 0.08);
}

.gp-loan-detail-hero-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.52fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
}

.gp-loan-detail-copy {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 250, 244, 0.95) 100%);
  border: 1px solid rgba(24, 76, 56, 0.08);
  box-shadow: 0 26px 70px rgba(20, 36, 25, 0.08);
}

.gp-back-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  margin-bottom: 26px;
  border-radius: 999px;
  color: #184c38;
  background: rgba(24, 76, 56, 0.08);
  border: 1px solid rgba(24, 76, 56, 0.12);
  font-weight: 800;
  text-decoration: none;
}

.gp-back-chip:hover {
  color: #0f2f22;
  background: rgba(127, 207, 79, 0.18);
}

.gp-loan-detail-copy h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.gp-loan-detail-copy p {
  max-width: 740px;
  margin: 0;
  color: #536256;
  font-size: clamp(1.02rem, 1.4vw, 1.24rem);
  line-height: 1.72;
}

.gp-loan-cta-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 34px;
  color: #ffffff;
  background:
    linear-gradient(145deg, #0e1512 0%, #173d2a 52%, #75c94d 100%);
  box-shadow: 0 30px 80px rgba(21, 72, 45, 0.24);
  overflow: hidden;
}

.gp-loan-cta-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 22px;
  color: #17432e;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.8rem;
}

.gp-loan-cta-card h2 {
  max-width: 360px;
  margin: 28px 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.gp-loan-cta-card p {
  max-width: 390px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.gp-loan-cta-btn {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: #173d2a;
  background: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.gp-loan-cta-btn:hover {
  color: #0e1512;
  transform: translateY(-2px);
}

.gp-loan-detail-section,
.gp-loan-requirements {
  width: 100%;
  padding: clamp(36px, 5vw, 76px) clamp(16px, 6vw, 112px);
  background: #ffffff;
}

.gp-loan-detail-grid,
.gp-loan-requirements-grid {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.gp-loan-target-card,
.gp-requirement-panel {
  border: 1px solid rgba(24, 76, 56, 0.09);
  border-radius: 28px;
  background: #fbfdfb;
  box-shadow: 0 20px 52px rgba(16, 24, 18, 0.06);
}

.gp-loan-target-card {
  padding: clamp(24px, 4vw, 44px);
}

.gp-loan-target-card h2,
.gp-requirement-panel h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.gp-loan-target-card p {
  margin: 0;
  color: #536256;
  font-size: 1.06rem;
  line-height: 1.75;
}

.gp-loan-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gp-loan-fact {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4faf3 100%);
  border: 1px solid rgba(24, 76, 56, 0.09);
}

.gp-loan-fact span {
  color: #6c7a70;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.gp-loan-fact strong {
  color: #182019;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.gp-loan-requirements {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5faf4 100%);
}

.gp-requirement-panel {
  padding: clamp(22px, 3vw, 34px);
}

.gp-requirement-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.gp-requirement-head > i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #184c38 0%, #7fcf4f 100%);
  box-shadow: 0 16px 32px rgba(24, 76, 56, 0.18);
  font-size: 1.35rem;
}

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

.gp-check-list li {
  position: relative;
  padding: 13px 14px 13px 44px;
  border-radius: 16px;
  color: #536256;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 76, 56, 0.07);
  line-height: 1.48;
}

.gp-check-list li::before {
  content: "\F26A";
  position: absolute;
  left: 14px;
  top: 13px;
  font-family: "bootstrap-icons";
  color: #1d8f55;
  font-weight: 400;
}

.gp-loan-next-band {
  width: min(calc(100% - 32px), 1240px);
  margin: clamp(30px, 5vw, 70px) auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #101914 0%, #17432e 62%, #7fcf4f 100%);
  box-shadow: 0 28px 80px rgba(21, 72, 45, 0.2);
}

.gp-loan-next-band h2 {
  max-width: 760px;
  margin: 8px 0 10px;
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.gp-loan-next-band p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.62;
}

.gp-loan-next-band .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.gp-loans-related {
  padding-top: 22px;
}

@media (max-width: 991.98px) {
  .gp-loan-detail-hero-inner,
  .gp-loan-detail-grid,
  .gp-loan-requirements-grid {
    grid-template-columns: 1fr;
  }

  .gp-loan-detail-copy,
  .gp-loan-cta-card {
    min-height: auto;
  }

  .gp-loan-cta-card {
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .gp-loan-detail-hero,
  .gp-loan-detail-section,
  .gp-loan-requirements {
    padding-left: 14px;
    padding-right: 14px;
  }

  .gp-loan-detail-copy,
  .gp-loan-cta-card,
  .gp-loan-target-card,
  .gp-requirement-panel,
  .gp-loan-next-band {
    border-radius: 22px;
  }

  .gp-loan-facts {
    grid-template-columns: 1fr;
  }

  .gp-loan-fact {
    min-height: 138px;
  }

  .gp-loan-next-band {
    width: calc(100% - 28px);
    align-items: flex-start;
    flex-direction: column;
  }

  .gp-loan-next-band .btn-ui {
    width: 100%;
  }
}

.gp-loan-detail-hero {
  padding: 54px clamp(18px, 5vw, 92px);
  background: linear-gradient(180deg, #ffffff 0%, #f5faf4 100%);
}

.gp-loan-detail-hero-inner {
  width: min(100%, 1320px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.gp-loan-detail-copy {
  min-height: 350px;
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(20, 36, 25, 0.06);
}

.gp-loan-detail-copy h1 {
  font-size: 4.75rem;
  line-height: 0.98;
}

.gp-loan-detail-copy p {
  font-size: 1.08rem;
}

.gp-loan-cta-card {
  min-height: 350px;
  border-radius: 24px;
}

.gp-loan-cta-card h2 {
  font-size: 2.35rem;
}

.gp-loan-detail-section {
  padding-top: 54px;
  padding-bottom: 48px;
}

.gp-loan-detail-grid {
  width: min(100%, 1320px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.gp-loan-target-card,
.gp-loan-fact {
  border-radius: 20px;
}

.gp-loan-target-card h2 {
  font-size: 2.4rem;
}

.gp-loan-fact {
  min-height: 150px;
}

.gp-loan-fact strong {
  font-size: 1.25rem;
}

.gp-loan-accordion-band {
  width: 100%;
  padding: 34px clamp(16px, 5vw, 92px) 74px;
  background: #ffffff;
}

.gp-loan-accordion-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 44px clamp(26px, 5vw, 64px);
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #38b429 0%, #28a620 100%);
  box-shadow: 0 30px 72px rgba(36, 141, 35, 0.18);
}

.gp-product-accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.58);
}

.gp-product-accordion:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.gp-product-accordion summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.gp-product-accordion summary::-webkit-details-marker {
  display: none;
}

.gp-product-accordion summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.gp-product-accordion[open] summary::after {
  content: "-";
}

.gp-product-accordion-body {
  max-width: 980px;
  padding: 0 0 32px;
  color: rgba(255, 255, 255, 0.96);
}

.gp-product-accordion-body p {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.gp-product-accordion-body ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.gp-product-accordion-body li {
  padding-left: 4px;
  font-size: 1.03rem;
  line-height: 1.55;
}

.gp-product-accordion-columns {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.gp-product-accordion-columns h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: 0;
}

.gp-loan-faq-section {
  width: 100%;
  padding: 72px clamp(16px, 5vw, 92px) 86px;
  background: #f0f1f0;
}

.gp-loan-faq-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.gp-loan-faq-head {
  text-align: center;
  margin-bottom: 28px;
}

.gp-loan-faq-head h2 {
  margin: 8px 0 0;
  color: #20262a;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.gp-loan-faq-list {
  border-top: 1px solid rgba(21, 38, 28, 0.12);
  border-bottom: 1px solid rgba(21, 38, 28, 0.12);
}

.gp-loan-faq-item {
  border-bottom: 1px solid rgba(21, 38, 28, 0.12);
}

.gp-loan-faq-item:last-child {
  border-bottom: 0;
}

.gp-loan-faq-item summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  color: #1f5b32;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0;
}

.gp-loan-faq-item summary::-webkit-details-marker {
  display: none;
}

.gp-loan-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #1f5b32;
  font-size: 2rem;
  line-height: 1;
}

.gp-loan-faq-item[open] summary::after {
  content: "-";
}

.gp-loan-faq-item p {
  max-width: 880px;
  margin: -8px 0 28px;
  color: #30373a;
  font-size: 1.02rem;
  line-height: 1.65;
}

.section.gp-impact-goals-section,
.gp-impact-goals-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

.gp-impact-goals-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 76px clamp(18px, 5vw, 88px) 94px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: visible;
}

.gp-impact-goals-shell::before {
  display: none;
}

.gp-impact-goals-head {
  margin-bottom: 32px;
  text-align: center;
}

.gp-impact-goals-head h2 {
  margin: 10px 0 0;
  color: #122033;
  font-size: 2.35rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.gp-impact-goals-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

.gp-impact-goal-card {
  min-height: 142px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  border: 1px solid transparent;
  border-radius: 16px;
}

.gp-impact-goal-card h3 {
  margin: 0;
  color: #1d2736;
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0;
}

.gp-impact-goal-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(18, 22, 19, 0.1);
  font-size: 1.65rem;
}

.gp-impact-goal-card-rose {
  background: #fff2f2;
}

.gp-impact-goal-card-rose .gp-impact-goal-icon {
  color: #ef2f2f;
}

.gp-impact-goal-card-blue {
  background: #edf5ff;
  border-color: #55bd90;
  box-shadow: inset 0 0 0 1px rgba(42, 148, 104, 0.26);
}

.gp-impact-goal-card-blue .gp-impact-goal-icon {
  color: #2f65ee;
}

.gp-impact-goal-card-green {
  background: #edfdf3;
}

.gp-impact-goal-card-green .gp-impact-goal-icon {
  color: #16a653;
}

.gp-impact-goal-card-violet {
  background: #faf3ff;
}

.gp-impact-goal-card-violet .gp-impact-goal-icon {
  color: #9146ff;
}

.gp-transform-cta {
  margin-top: 70px;
  padding: 64px clamp(24px, 5vw, 90px);
  border-radius: 18px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, #2c9a68 0%, #0c6039 100%);
  box-shadow: 0 30px 72px rgba(15, 96, 57, 0.18);
}

.gp-transform-cta h2 {
  margin: 0 0 18px;
  font-size: 2.45rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.gp-transform-cta p {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  line-height: 1.7;
}

.gp-transform-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.gp-transform-btn {
  min-width: 220px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gp-transform-btn:hover {
  transform: translateY(-2px);
}

.gp-transform-btn-light {
  color: #1d7a4d;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(5, 38, 22, 0.18);
}

.gp-transform-btn-outline {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.09);
}

@media (max-width: 991.98px) {
  .gp-loan-detail-copy h1 {
    font-size: 3.35rem;
  }

  .gp-product-accordion-columns {
    grid-template-columns: 1fr;
  }

  .gp-product-accordion summary {
    min-height: 78px;
    font-size: 1.65rem;
  }

  .gp-impact-goals-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .gp-loan-detail-hero {
    padding: 28px 14px;
  }

  .gp-loan-detail-copy h1 {
    font-size: 2.45rem;
  }

  .gp-loan-cta-card h2,
  .gp-loan-target-card h2,
  .gp-loan-faq-head h2 {
    font-size: 1.8rem;
  }

  .gp-loan-accordion-shell {
    padding: 26px 18px;
    border-radius: 20px;
  }

  .gp-product-accordion summary,
  .gp-loan-faq-item summary {
    font-size: 1.22rem;
  }

  .gp-loan-faq-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .gp-impact-goals-section {
    padding: 0;
  }

  .gp-impact-goals-shell {
    padding: 46px 0 60px;
  }

  .gp-impact-goals-head {
    padding: 0 16px;
  }

  .gp-impact-goals-head h2,
  .gp-transform-cta h2 {
    font-size: 1.85rem;
  }

  .gp-impact-goal-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 16px;
    border-radius: 0;
  }

  .gp-impact-goal-icon {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }

  .gp-transform-cta {
    margin-top: 42px;
    border-radius: 0;
    padding: 38px 18px;
  }

  .gp-transform-actions,
  .gp-transform-btn {
    width: 100%;
  }
}

/* Compact banking scale inspired by CRDB-style product pages. */
:root {
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1180px;
}

body {
  font-size: 15px;
  line-height: 1.55;
}

.site-nav {
  min-height: 86px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-links {
  gap: 22px;
  font-size: 0.94rem;
}

.brand-logo-only .brand-mark {
  width: 205px;
  height: 56px;
}

.eyebrow {
  padding: 7px 13px;
  font-size: 0.74rem;
  letter-spacing: 0;
}

.btn-ui {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero-panel {
  padding: 34px 0 30px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.02fr);
  gap: clamp(24px, 4vw, 58px);
  padding-left: clamp(18px, 4vw, 60px);
}

.hero-copy {
  max-width: 640px;
  gap: 16px;
}

.hero-copy .hero-lead {
  max-width: 560px;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.48;
}

.hero-copy .hero-support-copy,
.hero-copy p,
.page-hero-copy p,
.section-copy p,
.card p,
.info-card p,
.stat-card p,
.process-card p,
.footer-copy p,
.faq-item p,
.media-note {
  font-size: 0.95rem;
  line-height: 1.62;
}

.hero-actions,
.inline-actions {
  gap: 11px;
}

.video-shell {
  min-height: clamp(340px, 32vw, 510px);
  border-radius: 24px;
  transform: translateX(12px);
}

.floating-card,
.overlay-note,
.small-card,
.metric-bubble {
  border-radius: 16px;
  padding: 15px;
}

.section,
.page-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.section-panel,
.cta-band,
.page-hero {
  padding: 26px;
  border-radius: 20px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 22px;
}

.section-head h2,
.section-copy h2,
.footer-copy h2,
.page-section h2,
.gp-loans-head h2,
.gp-impact-goals-head h2 {
  font-size: clamp(1.42rem, 2vw, 2.12rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.cards-grid,
.info-grid,
.process-grid,
.insight-grid,
.footer-grid,
.metrics-grid,
.gp-loans-grid,
.gp-news-grid {
  gap: 16px;
}

.card,
.info-card,
.process-card,
.insight-card,
.stat-card,
.faq-item,
.footer-card,
.gp-loan-card,
.gp-news-feature,
.gp-news-card {
  padding: 22px;
  border-radius: 16px;
}

.card:hover,
.info-card:hover,
.process-card:hover,
.insight-card:hover,
.stat-card:hover,
.faq-item:hover,
.footer-card:hover,
.gp-loan-card:hover {
  transform: translateY(-3px);
}

.card h3,
.info-card h3,
.process-card h3,
.insight-card h3,
.stat-card h3,
.footer-card h3,
.faq-item h3,
.gp-loan-card h3,
.gp-news-feature h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.gp-products-shell,
.gp-loans-shell {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 18px;
}

.gp-loans-front {
  padding-top: 22px;
  padding-bottom: 22px;
}

.gp-loans-head {
  margin-bottom: 22px;
}

.gp-loans-head p,
.gp-loan-card p,
.gp-news-feature p,
.gp-news-card p,
.gp-impact-goal-card h3 {
  font-size: 0.96rem;
  line-height: 1.55;
}

.gp-loan-card {
  min-height: 260px;
}

.gp-loan-icon,
.insight-icon {
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
}

.gp-impact-goals-shell {
  padding: 58px clamp(18px, 5vw, 80px) 72px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.gp-impact-goals-grid {
  gap: 20px;
}

.gp-impact-goal-card {
  min-height: 122px;
  grid-template-columns: 66px minmax(0, 1fr);
  padding: 24px 28px;
  border-radius: 14px;
}

.gp-impact-goal-icon {
  width: 56px;
  height: 56px;
  font-size: 1.35rem;
}

.gp-transform-cta {
  margin-top: 52px;
  padding: 50px clamp(22px, 4vw, 70px);
  border-radius: 14px;
}

.gp-transform-cta h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
}

.gp-transform-cta p {
  font-size: 1rem;
}

.gp-loan-detail-hero {
  padding-top: 38px;
  padding-bottom: 38px;
}

.gp-loan-detail-copy,
.gp-loan-cta-card {
  min-height: 300px;
  border-radius: 18px;
}

.gp-loan-detail-copy h1 {
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  line-height: 1.04;
}

.gp-loan-detail-copy p {
  font-size: 0.98rem;
}

.gp-loan-cta-card h2,
.gp-loan-target-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.gp-loan-detail-section {
  padding-top: 38px;
  padding-bottom: 38px;
}

.gp-loan-fact {
  min-height: 126px;
}

.gp-loan-fact strong {
  font-size: 1.08rem;
}

.gp-loan-accordion-band {
  padding-top: 28px;
  padding-bottom: 54px;
}

.gp-loan-accordion-shell {
  padding: 34px clamp(22px, 4vw, 48px);
  border-radius: 18px;
}

.gp-product-accordion summary {
  min-height: 76px;
  font-size: 1.48rem;
}

.gp-product-accordion-body p,
.gp-product-accordion-body li {
  font-size: 0.96rem;
}

.gp-loan-faq-section {
  padding-top: 54px;
  padding-bottom: 64px;
}

.gp-loan-faq-head h2 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.gp-loan-faq-item summary {
  min-height: 66px;
  font-size: 1.08rem;
}

@media (max-width: 991.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-right: 20px;
    gap: 26px;
  }

  .video-shell {
    transform: none;
  }

  .gp-loan-card {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 14.5px;
  }

  .site-nav {
    min-height: 76px;
  }

  .brand-logo-only .brand-mark {
    width: 172px;
    height: 48px;
  }

  .section,
  .page-section,
  .footer {
    padding-left: 0;
    padding-right: 0;
  }

  .section-panel,
  .cta-band,
  .page-hero,
  .footer-panel {
    padding: 18px 16px;
  }

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

  .hero-copy .hero-support-copy {
    font-size: 0.92rem;
  }

  .gp-products-shell,
  .gp-loans-shell {
    padding: 24px 16px;
    border-radius: 0;
  }

  .gp-impact-goals-shell {
    padding: 42px 0 52px;
    border-radius: 0;
    box-shadow: none;
  }

  .gp-impact-goals-head {
    padding: 0 16px;
  }

  .gp-impact-goal-card {
    min-height: 106px;
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 18px 16px;
    border-radius: 0;
  }

  .gp-transform-cta {
    margin-top: 34px;
    padding: 36px 16px;
  }

  .gp-product-accordion summary {
    min-height: 66px;
    font-size: 1.2rem;
  }
}

/* CRDB-style product page refinement: calmer type, tighter modules, clearer sections. */
body,
button,
input,
select,
textarea,
.site-header,
.site-topbar,
.site-nav,
.hero,
.section,
.page-section,
.footer {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

body {
  font-size: 14.75px;
  line-height: 1.58;
  background: #f7f5f2;
}

body::before,
body::after {
  display: none;
}

.site-topbar {
  min-height: 38px;
  font-size: 0.82rem;
}

.site-nav {
  min-height: 76px;
  padding: 10px clamp(18px, 5vw, 76px);
}

.brand-logo-only .brand-mark {
  width: 186px;
  height: 50px;
}

.nav-links {
  gap: 20px;
  font-size: 0.91rem;
}

.nav-link,
.topbar-link,
.topbar-social,
.topbar-login,
.btn-ui,
.gp-link-arrow,
.gp-loan-cta-btn {
  font-weight: 700;
}

.page-shell {
  background: #f7f5f2;
}

.hero-panel {
  padding: 26px 0 24px;
}

.hero-grid {
  width: min(100%, 1220px);
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(22px, 3.5vw, 48px);
  padding-left: clamp(18px, 4vw, 52px);
  padding-right: clamp(16px, 3vw, 34px);
}

.hero-copy {
  max-width: 590px;
  gap: 14px;
}

.hero-copy .hero-lead {
  max-width: 520px;
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  line-height: 1.36;
  font-weight: 700;
}

.hero-copy .hero-support-copy {
  max-width: 570px;
  font-size: 0.95rem;
  line-height: 1.62;
}

.video-shell {
  min-height: clamp(310px, 30vw, 460px);
  border-radius: 18px;
}

.floating-card,
.overlay-note,
.small-card,
.metric-bubble {
  border-radius: 12px;
  padding: 14px;
  font-size: 0.92rem;
}

.section,
.page-section {
  width: 100%;
  padding: clamp(34px, 5vw, 66px) clamp(16px, 5vw, 76px);
}

.section-panel,
.cta-band,
.page-hero,
.footer-panel {
  width: min(100%, 1220px);
  border-radius: 14px;
  padding: clamp(24px, 3.8vw, 46px);
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2,
.section-copy h2,
.footer-copy h2,
.page-section h2,
.hero-copy h1,
.page-hero-copy h1,
.about-hero-copy h1,
.impact-hero-copy h1,
.gp-loans-head h2,
.gp-impact-goals-head h2,
.gp-page-hero h1 {
  font-size: clamp(1.65rem, 2.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.section-copy p,
.page-section p,
.gp-page-hero p,
.gp-loans-head p,
.card p,
.info-card p,
.process-card p,
.insight-card p,
.gp-loan-card p,
.gp-news-card p,
.gp-news-feature p {
  font-size: 0.95rem;
  line-height: 1.62;
}

.cards-grid,
.info-grid,
.process-grid,
.insight-grid,
.footer-grid,
.metrics-grid,
.gp-loans-grid,
.gp-news-grid {
  gap: 14px;
}

.card,
.info-card,
.process-card,
.insight-card,
.stat-card,
.faq-item,
.footer-card,
.gp-loan-card,
.gp-news-feature,
.gp-news-card {
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(18, 22, 19, 0.05);
}

.card h3,
.info-card h3,
.process-card h3,
.insight-card h3,
.stat-card h3,
.footer-card h3,
.faq-item h3,
.gp-loan-card h3,
.gp-news-feature h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.gp-news-feature h3 {
  max-width: 26ch;
  font-size: clamp(1.28rem, 1.65vw, 1.62rem);
  line-height: 1.14;
}

.gp-loans-front,
.gp-impact-goals-section {
  background: #ffffff;
}

.gp-loans-shell {
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 74px);
}

.gp-loans-head {
  width: min(100%, 1180px);
  margin-bottom: 22px;
}

.gp-loans-grid {
  width: min(100%, 1180px);
}

.gp-loan-card {
  min-height: 230px;
  gap: 12px;
}

.gp-loan-card::after {
  display: none;
}

.gp-impact-goals-shell {
  width: 100%;
  max-width: none;
  padding: clamp(44px, 6vw, 72px) clamp(18px, 6vw, 92px);
}

.gp-impact-goals-head {
  margin-bottom: 28px;
}

.gp-impact-goals-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  gap: 16px;
}

.gp-impact-goal-card {
  min-height: 108px;
  grid-template-columns: 56px minmax(0, 1fr);
  padding: 20px 22px;
  border-radius: 12px;
}

.gp-impact-goal-card h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.gp-impact-goal-icon {
  width: 48px;
  height: 48px;
  font-size: 1.18rem;
}

.gp-transform-cta {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
  padding: clamp(34px, 5vw, 52px);
  border-radius: 12px;
}

.gp-transform-cta h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
}

.gp-loan-detail-hero {
  padding: clamp(30px, 4vw, 48px) clamp(16px, 5vw, 78px);
}

.gp-loan-detail-hero-inner {
  width: min(100%, 1180px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 18px;
}

.gp-loan-detail-copy,
.gp-loan-cta-card {
  min-height: auto;
  border-radius: 16px;
  padding: clamp(24px, 3.5vw, 38px);
}

.gp-loan-detail-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1.05;
}

.gp-loan-detail-copy p,
.gp-loan-target-card p {
  font-size: 0.98rem;
  line-height: 1.64;
}

.gp-loan-cta-card h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.gp-loan-detail-section {
  padding: clamp(30px, 4vw, 52px) clamp(16px, 5vw, 78px);
}

.gp-loan-detail-grid {
  width: min(100%, 1180px);
  gap: 16px;
}

.gp-loan-target-card,
.gp-loan-fact {
  border-radius: 14px;
}

.gp-loan-target-card h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.gp-loan-fact {
  min-height: 118px;
  padding: 18px;
}

.gp-loan-fact strong {
  font-size: 1.05rem;
}

.gp-loan-accordion-band {
  padding: 26px clamp(16px, 5vw, 78px) 52px;
}

.gp-loan-accordion-shell {
  width: min(100%, 1180px);
  padding: clamp(24px, 4vw, 40px);
  border-radius: 14px;
}

.gp-product-accordion summary {
  min-height: 68px;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.gp-product-accordion summary::after {
  font-size: 1.55rem;
}

.gp-product-accordion-body {
  padding-bottom: 24px;
}

.gp-product-accordion-body p,
.gp-product-accordion-body li {
  font-size: 0.95rem;
  line-height: 1.56;
}

.gp-loan-faq-section {
  padding: clamp(38px, 5vw, 62px) clamp(16px, 5vw, 78px);
  background: #eeeeee;
}

.gp-loan-faq-head h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.gp-loan-faq-item summary {
  min-height: 60px;
  font-size: 1rem;
}

.gp-loan-next-band {
  width: min(calc(100% - 32px), 1180px);
  border-radius: 14px;
  padding: clamp(26px, 4vw, 42px);
}

.gp-loan-next-band h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.site-header {
  animation-duration: 0.45s;
}

.hero-copy > * {
  animation-duration: 0.5s;
}

.hero-copy p {
  animation-duration: 0.55s;
}

.hero-actions {
  animation-duration: 0.6s;
}

.reveal-on-scroll {
  transition-duration: 0.48s;
}

@media (min-width: 1200px) {
  .hero-panel {
    padding: 30px 0 28px;
  }

  .hero-grid {
    width: min(calc(100% - 80px), 1480px);
    grid-template-columns: minmax(430px, 0.82fr) minmax(620px, 1.18fr);
    gap: clamp(44px, 5vw, 82px);
    padding: 0;
  }

  .hero-copy {
    max-width: 620px;
    justify-self: start;
  }

  .video-shell {
    width: 100%;
    min-height: clamp(370px, 27vw, 500px);
    max-height: 500px;
    border-radius: 22px;
    transform: none;
  }

  .video-shell .floating-card {
    top: 20px;
    right: 20px;
    width: min(250px, calc(100% - 40px));
    max-width: 250px;
    padding: 15px 16px;
    text-align: left;
  }

  .video-shell .floating-card strong {
    font-size: 0.94rem;
  }

  .video-shell .floating-card p {
    font-size: 0.84rem;
    line-height: 1.5;
  }
}

@media (max-width: 991.98px) {
  .hero-grid,
  .gp-loan-detail-hero-inner,
  .gp-loan-detail-grid {
    grid-template-columns: 1fr;
  }

  .gp-loans-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gp-product-accordion-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }

  .site-nav {
    min-height: 68px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-logo-only .brand-mark {
    width: 150px;
    height: 42px;
  }

  .hero-panel {
    padding-top: 18px;
  }

  .hero-grid {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .video-shell {
    min-height: 275px;
    border-radius: 0;
  }

  .video-shell .floating-card {
    position: absolute;
    top: auto;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 13px 14px;
  }

  .video-shell .floating-card strong {
    font-size: 0.9rem;
  }

  .video-shell .floating-card p {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .section,
  .page-section,
  .gp-loans-shell,
  .gp-impact-goals-shell,
  .gp-loan-detail-hero,
  .gp-loan-detail-section,
  .gp-loan-accordion-band,
  .gp-loan-faq-section {
    padding-left: 0;
    padding-right: 0;
  }

  .section-head,
  .gp-loans-head,
  .gp-impact-goals-head,
  .gp-loans-grid,
  .gp-impact-goals-grid,
  .gp-loan-detail-hero-inner,
  .gp-loan-detail-grid,
  .gp-loan-faq-shell {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-panel,
  .cta-band,
  .page-hero,
  .footer-panel,
  .gp-loan-detail-copy,
  .gp-loan-cta-card,
  .gp-loan-target-card,
  .gp-loan-fact,
  .gp-loan-accordion-shell,
  .gp-loan-faq-item,
  .gp-transform-cta {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .gp-loans-grid,
  .gp-impact-goals-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gp-loan-card,
  .gp-impact-goal-card {
    border-radius: 0;
  }

  .gp-impact-goal-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px 14px;
  }

  .gp-product-accordion summary {
    min-height: 62px;
    font-size: 1.14rem;
  }

  .gp-loan-next-band {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}

/* Full-width landing sections: bands fill the screen, content remains aligned. */
.section,
.page-section,
.footer,
.gp-azure-section,
.gp-products-full,
.gp-loans-front,
.gp-impact-goals-section,
.gp-solutions-full,
.gp-home-full,
.section-full-bleed {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.section-panel,
.footer-panel,
.cta-band,
.page-hero,
.gp-azure-shell,
.gp-products-shell,
.gp-loans-shell,
.gp-home-shell,
.gp-impact-goals-shell,
.training-showcase,
.page-links-band {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
}

.section-panel,
.gp-azure-shell,
.gp-products-shell,
.gp-loans-shell,
.gp-home-shell,
.gp-impact-goals-shell,
.training-showcase,
.page-links-band,
.page-hero,
.cta-band {
  padding-left: clamp(16px, 5vw, 84px);
  padding-right: clamp(16px, 5vw, 84px);
}

.section-panel > *,
.footer-panel > *,
.gp-products-shell .gp-azure-head,
.gp-products-shell .gp-news-grid,
.gp-loans-head,
.gp-loans-grid,
.gp-impact-goals-head,
.gp-impact-goals-grid,
.gp-transform-cta,
.gp-page-hero-inner,
.page-hero-grid,
.gp-solution-layout,
.news-shell {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
}

.footer-panel {
  padding-left: clamp(16px, 5vw, 84px);
  padding-right: clamp(16px, 5vw, 84px);
}

.footer-panel > .footer-cta-row,
.footer-panel > .footer-grid {
  width: min(100%, 1180px);
}

.gp-impact-goals-shell {
  background: #ffffff;
}

.gp-products-shell,
.gp-loans-shell,
.gp-home-shell,
.gp-azure-shell,
.training-showcase,
.page-links-band {
  background-clip: border-box;
}

@media (max-width: 767.98px) {
  .section-panel,
  .footer-panel,
  .cta-band,
  .page-hero,
  .gp-azure-shell,
  .gp-products-shell,
  .gp-loans-shell,
  .gp-home-shell,
  .gp-impact-goals-shell,
  .training-showcase,
  .page-links-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .gp-impact-goals-shell,
  .gp-loans-shell,
  .gp-products-shell,
  .gp-home-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .section-panel > *,
  .footer-panel > *,
  .gp-products-shell .gp-azure-head,
  .gp-products-shell .gp-news-grid,
  .gp-home-shell > *,
  .training-showcase > *,
  .page-links-band > *,
  .news-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .gp-products-shell .gp-azure-head,
  .gp-products-shell .gp-news-grid,
  .gp-home-shell > *,
  .training-showcase > *,
  .page-links-band > *,
  .news-shell,
  .footer-panel > * {
    width: 100%;
  }

  .gp-products-shell .gp-azure-head,
  .gp-products-shell .gp-news-grid,
  .gp-home-shell > *,
  .training-showcase > *,
  .page-links-band > *,
  .news-shell {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* Public enquiry and loan calculator pages. */
.enquiry-page,
.loan-calculator-page {
  width: 100%;
  background: #f7f5f2;
}

.enquiry-hero-band,
.calculator-hero-band {
  width: 100%;
  padding: clamp(36px, 6vw, 74px) clamp(16px, 5vw, 84px);
  background:
    radial-gradient(circle at 16% 20%, rgba(126, 207, 79, 0.16) 0%, rgba(126, 207, 79, 0) 32%),
    linear-gradient(120deg, #ffffff 0%, #eef8ef 56%, #ffffff 100%);
}

.enquiry-hero-inner,
.calculator-hero-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.enquiry-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.74fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.enquiry-hero-copy h1,
.calculator-hero-inner h1 {
  max-width: 720px;
  margin: 12px 0 14px;
  color: #1e1813;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.enquiry-hero-copy p,
.calculator-hero-inner p {
  max-width: 700px;
  color: #536256;
  font-size: 1rem;
  line-height: 1.64;
}

.enquiry-hero-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  background: #102018;
  box-shadow: 0 18px 54px rgba(18, 34, 24, 0.12);
}

.enquiry-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.enquiry-hero-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(16, 32, 24, 0) 0%, rgba(16, 32, 24, 0.88) 100%);
}

.enquiry-floating-note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 18px;
  border-radius: 14px;
  color: #173d2a;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.16);
}

.enquiry-floating-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.enquiry-floating-note p {
  margin: 0;
  color: #425144;
  line-height: 1.5;
}

.enquiry-form-band,
.calculator-form-band {
  width: 100%;
  padding: clamp(36px, 5vw, 68px) clamp(16px, 5vw, 84px);
  background: #ffffff;
}

.enquiry-form-shell,
.calculator-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.enquiry-form-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.enquiry-form-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.enquiry-form-head p {
  color: #59665d;
  line-height: 1.62;
}

.enquiry-form-card,
.calculator-card,
.calculator-result-card {
  border: 1px solid rgba(24, 76, 56, 0.1);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(18, 22, 19, 0.06);
}

.enquiry-form-card {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 14px;
}

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

.landing-form-field label,
.calculator-field label {
  display: block;
  margin-bottom: 8px;
  color: #28352c;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.landing-form-field label {
  text-transform: uppercase;
}

.calculator-field label span {
  color: #b42318;
}

.landing-form-field input,
.landing-form-field select,
.landing-form-field textarea,
.calculator-field select,
.calculator-money-input input,
.calculator-rate-input input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d8e0dc;
  border-radius: 6px;
  background: #ffffff;
  color: #172019;
  outline: none;
  padding: 12px 14px;
  font-weight: 500;
}

.landing-form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.landing-form-field input:focus,
.landing-form-field select:focus,
.landing-form-field textarea:focus,
.calculator-field select:focus,
.calculator-money-input input:focus,
.calculator-rate-input input:focus {
  border-color: #1d8f55;
  box-shadow: 0 0 0 4px rgba(29, 143, 85, 0.12);
}

.landing-form-error {
  margin-top: 6px;
  color: #b42318;
  font-size: 0.85rem;
  font-weight: 700;
}

.landing-status-banner {
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(29, 143, 85, 0.12);
  color: #14532d;
  padding: 16px 18px;
  font-weight: 700;
}

.landing-consent-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #546052;
  font-size: 0.95rem;
  line-height: 1.5;
}

.landing-consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.enquiry-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.calculator-hero-inner {
  text-align: left;
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.calculator-card {
  display: grid;
  gap: 34px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 0;
}

.calculator-field {
  display: grid;
  gap: 8px;
}

.calculator-money-input,
.calculator-rate-input {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
}

.calculator-money-input span,
.calculator-rate-input span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid #d8e0dc;
  border-right: 0;
  border-radius: 6px 0 0 6px;
  background: #f7f9f8;
  color: #172019;
  font-weight: 700;
}

.calculator-money-input input,
.calculator-rate-input input {
  border-radius: 0 6px 6px 0;
  font-variant-numeric: tabular-nums;
  appearance: textfield;
  -moz-appearance: textfield;
}

.calculator-money-input input::-webkit-outer-spin-button,
.calculator-money-input input::-webkit-inner-spin-button,
.calculator-rate-input input::-webkit-outer-spin-button,
.calculator-rate-input input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.calculator-help {
  margin: 0;
  color: #657068;
  font-size: 0.86rem;
  line-height: 1.5;
}

.calculator-duration-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.calculator-duration-row strong {
  color: #173d2a;
  white-space: nowrap;
}

.calculator-range {
  width: 100%;
  accent-color: #28a620;
}

.calculator-result-card {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  border-top: 5px solid #28a620;
}

.calculator-result-card > div:first-child {
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, #38b429 0%, #28a620 100%);
}

.calculator-result-card > div:first-child .eyebrow {
  color: #173d2a;
  background: rgba(255, 255, 255, 0.82);
}

.calculator-result-card p {
  margin: 14px 0 18px;
  color: inherit;
  font-weight: 700;
}

.calculator-result-card strong {
  display: block;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
}

.calculator-result-card small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.calculator-product-note {
  border: 1px solid #e1e8e4;
  border-radius: 12px;
  padding: 20px;
  background: #f8fbf7;
}

.calculator-product-note h3 {
  margin: 0 0 10px;
  color: #173d2a;
  font-size: 1.25rem;
}

.calculator-product-note p {
  margin: 0 0 16px;
  color: #58655b;
  font-weight: 400;
}

.calculator-product-note dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.calculator-product-note dl div {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 12px;
}

.calculator-product-note dt {
  color: #637168;
  font-weight: 700;
}

.calculator-product-note dd {
  margin: 0;
  color: #1f271f;
  font-weight: 700;
}

.calculator-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calculator-actions .btn-ui {
  width: 100%;
  min-height: 50px;
  border-radius: 6px;
  border: 1px solid #28a620;
  box-shadow: none;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.calculator-actions .btn-ui.primary {
  color: #ffffff;
  background: #28a620;
}

.calculator-actions .btn-ui.primary:hover,
.calculator-actions .btn-ui.primary:focus-visible {
  color: #218a1c;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.calculator-actions .btn-ui.secondary {
  color: #218a1c;
  background: #ffffff;
  border-color: #e4ebe6;
}

.calculator-actions .btn-ui.secondary:hover,
.calculator-actions .btn-ui.secondary:focus-visible {
  color: #218a1c;
  background: #f7fff5;
  border-color: #28a620;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .enquiry-hero-inner,
  .calculator-shell {
    grid-template-columns: 1fr;
  }

  .calculator-result-card {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .enquiry-hero-band,
  .calculator-hero-band,
  .enquiry-form-band,
  .calculator-form-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .enquiry-grid,
  .calculator-actions {
    grid-template-columns: 1fr;
  }

  .enquiry-hero-card,
  .enquiry-hero-card img {
    min-height: 280px;
    border-radius: 0;
  }

  .enquiry-form-card,
  .calculator-card,
  .calculator-result-card {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .calculator-duration-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* Global CRDB-style landing buttons. */
.btn-ui,
.nav-links .nav-apply-link,
.gp-loan-cta-btn,
.gp-transform-btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid #28a620;
  box-shadow: none;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.btn-ui:hover,
.btn-ui:focus-visible,
.nav-links .nav-apply-link:hover,
.nav-links .nav-apply-link:focus-visible,
.gp-loan-cta-btn:hover,
.gp-loan-cta-btn:focus-visible,
.gp-transform-btn:hover,
.gp-transform-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-ui.primary,
.nav-links .nav-apply-link,
.gp-loan-cta-btn,
.gp-transform-btn-light {
  color: #ffffff;
  background: #28a620;
  border-color: #28a620;
}

.btn-ui.primary:hover,
.btn-ui.primary:focus-visible,
.nav-links .nav-apply-link:hover,
.nav-links .nav-apply-link:focus-visible,
.nav-links .nav-apply-link.active,
.gp-loan-cta-btn:hover,
.gp-loan-cta-btn:focus-visible,
.gp-transform-btn-light:hover,
.gp-transform-btn-light:focus-visible {
  color: #218a1c;
  background: #ffffff;
  border-color: #ffffff;
}

.btn-ui.secondary {
  color: #218a1c;
  background: #ffffff;
  border-color: #e4ebe6;
}

.gp-transform-btn-outline {
  color: #218a1c;
  background: #ffffff;
  border-color: #e4ebe6;
}

.gp-transform-btn-outline:hover,
.gp-transform-btn-outline:focus-visible {
  color: #218a1c;
  background: #f7fff5;
  border-color: #28a620;
}

.btn-ui.secondary:hover,
.btn-ui.secondary:focus-visible {
  color: #218a1c;
  background: #f7fff5;
  border-color: #28a620;
}

.hero-actions .btn-ui,
.inline-actions .btn-ui,
.enquiry-submit-row .btn-ui,
.application-step-actions .btn-ui,
.application-submit-row .btn-ui {
  border-radius: 6px;
}

.calculator-actions .btn-ui {
  border-radius: 6px;
}

/* Contact support page. */
.gp-contact-hero {
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.gp-contact-support-section,
.gp-contact-faq-section {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #ffffff;
}

.gp-contact-support-section {
  padding: clamp(34px, 5vw, 72px) clamp(16px, 5vw, 84px);
}

.gp-contact-support-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.gp-contact-image-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: #173d2a;
  box-shadow: 0 22px 54px rgba(18, 22, 19, 0.12);
}

.gp-contact-image-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.gp-contact-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 22, 19, 0.14) 0%, rgba(18, 22, 19, 0.76) 100%),
    linear-gradient(90deg, rgba(18, 22, 19, 0.28) 0%, rgba(18, 22, 19, 0) 58%);
}

.gp-contact-image-copy {
  position: absolute;
  inset: auto 24px 26px;
  z-index: 1;
  color: #ffffff;
}

.gp-contact-image-copy span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #a8d34a;
  font-size: 0.78rem;
  font-weight: 900;
}

.gp-contact-image-copy h2 {
  max-width: 260px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.gp-contact-image-copy p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  line-height: 1.55;
}

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

.gp-contact-support-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  min-height: 180px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 8px;
  background: #f0f8ef;
  border: 1px solid rgba(40, 166, 32, 0.08);
}

.gp-contact-support-card i {
  color: #28a620;
  font-size: 1.9rem;
  line-height: 1;
}

.gp-contact-support-card h3 {
  margin: 0 0 10px;
  color: #1f271f;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.gp-contact-support-card p {
  margin: 0 0 16px;
  color: #414b43;
  line-height: 1.55;
}

.gp-contact-support-card strong,
.gp-contact-support-card a {
  color: #1f271f;
  font-weight: 900;
}

.gp-contact-support-card > div > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #19623d;
}

.gp-contact-support-card > div > a:hover,
.gp-contact-support-card > div > a:focus-visible {
  color: #28a620;
}

.gp-contact-faq-section {
  padding: clamp(28px, 5vw, 70px) clamp(16px, 5vw, 84px) clamp(52px, 6vw, 92px);
}

.gp-contact-faq-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: stretch;
}

.gp-contact-faq-aside {
  min-height: 520px;
  padding: 28px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(40, 166, 32, 0.06) 0 5px, transparent 5px 15px),
    repeating-linear-gradient(90deg, rgba(40, 166, 32, 0.05) 0 5px, transparent 5px 15px),
    #f0f8ef;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gp-contact-faq-aside span {
  display: block;
  margin-bottom: 18px;
  color: #173d2a;
  font-weight: 500;
}

.gp-contact-faq-aside h2 {
  margin: 0;
  color: #103527;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.gp-contact-faq-aside a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: #173d2a;
  font-weight: 700;
}

.gp-contact-faq-aside a i {
  font-size: 1.5rem;
}

.gp-contact-faq-list {
  border-top: 1px solid #c6d9ca;
}

.gp-contact-faq-item {
  border-bottom: 1px solid #c6d9ca;
}

.gp-contact-faq-item summary {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  color: #195f37;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.gp-contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.gp-contact-faq-item summary::after {
  content: "+";
  justify-self: end;
  color: #195f37;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.gp-contact-faq-item[open] summary::after {
  content: "-";
}

.gp-contact-faq-answer {
  padding: 0 52px 26px 0;
  color: #1f271f;
  line-height: 1.7;
}

.gp-contact-faq-answer p {
  margin: 0 0 14px;
}

.gp-contact-faq-answer ul {
  margin: 0;
  padding-left: 1.2rem;
}

.gp-contact-faq-answer li + li {
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  .gp-contact-support-shell,
  .gp-contact-faq-shell {
    grid-template-columns: 1fr;
  }

  .gp-contact-image-card,
  .gp-contact-image-card img {
    min-height: 320px;
  }

  .gp-contact-faq-aside {
    min-height: 240px;
  }
}

@media (max-width: 767.98px) {
  .gp-contact-support-section,
  .gp-contact-faq-section {
    padding-left: 0;
    padding-right: 0;
  }

  .gp-contact-support-shell,
  .gp-contact-faq-shell {
    width: 100%;
    gap: 14px;
  }

  .gp-contact-image-card,
  .gp-contact-support-card,
  .gp-contact-faq-aside {
    border-radius: 0;
  }

  .gp-contact-card-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gp-contact-support-card {
    min-height: auto;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(40, 166, 32, 0.12);
  }

  .gp-contact-faq-list {
    padding: 0 16px;
  }

  .gp-contact-faq-answer {
    padding-right: 0;
  }
}

/* Impact story and training area polish. */
.section.gp-azure-section > .gp-story-layout {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 72px) clamp(16px, 4vw, 42px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.gp-story-layout .section-copy {
  min-width: 0;
}

.gp-story-layout .section-copy h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.08;
}

.gp-story-layout .section-copy p {
  max-width: 760px;
}

.gp-story-layout .metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gp-story-layout .stat-card {
  min-height: 116px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(18, 22, 19, 0.06);
}

.gp-story-media-panel {
  min-width: 0;
}

.gp-story-media-card {
  min-height: clamp(430px, 42vw, 560px);
  border-radius: 22px;
  background: linear-gradient(180deg, #eef8ef 0%, #173d2a 100%);
  box-shadow: 0 24px 58px rgba(18, 22, 19, 0.14);
}

.gp-story-media-card::after {
  background:
    linear-gradient(180deg, rgba(12, 18, 14, 0) 48%, rgba(12, 18, 14, 0.42) 100%),
    linear-gradient(90deg, rgba(12, 18, 14, 0.08) 0%, rgba(12, 18, 14, 0) 52%);
}

.gp-story-media-card img {
  object-position: center top;
}

.gp-story-media-card .metric-bubble {
  width: min(245px, 78%);
  max-width: none;
  bottom: 22px;
  border-radius: 12px;
  padding: 16px 18px;
}

.gp-story-media-card .metric-number {
  margin: 6px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 0.98;
}

.training-showcase {
  padding: clamp(34px, 5vw, 68px) clamp(16px, 5vw, 84px);
  background: linear-gradient(180deg, #ffffff 0%, #f4faf3 100%);
}

.training-showcase .news-header,
.training-carousel {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.training-showcase .news-header {
  align-items: flex-end;
}

.training-showcase .slider-controls {
  display: none;
}

.training-carousel {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: initial;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding-top: 4px;
  padding-bottom: 0;
  scroll-snap-type: none;
  scrollbar-width: auto;
  touch-action: auto;
}

.training-card {
  min-height: auto;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(18, 22, 19, 0.06);
  scroll-snap-align: unset;
}

.training-card:hover {
  transform: translateY(-4px);
}

.training-card-top {
  min-height: 224px;
  padding: 22px 20px 18px;
}

.training-card-meta {
  flex-wrap: wrap;
}

.training-card h3 {
  font-size: 1.2rem;
  line-height: 1.18;
}

.training-card p {
  max-width: none;
  font-size: 0.92rem;
}

.training-card-media {
  flex: none;
  min-height: 0;
  height: 210px;
  margin: 0 16px 16px;
  border-radius: 10px;
}

@media (max-width: 1199.98px) {
  .training-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .section.gp-azure-section > .gp-story-layout {
    grid-template-columns: 1fr;
  }

  .gp-story-media-card {
    min-height: 460px;
  }
}

@media (max-width: 767.98px) {
  .section.gp-azure-section > .gp-story-layout {
    width: 100%;
    padding: 32px 14px;
  }

  .gp-story-layout .metrics-grid,
  .training-carousel {
    grid-template-columns: 1fr;
  }

  .gp-story-media-card {
    min-height: 420px;
    border-radius: 14px;
  }

  .training-showcase {
    padding: 34px 14px;
  }

  .training-showcase .news-header,
  .training-carousel {
    width: 100%;
  }

  .training-card-media {
    height: 230px;
  }
}

/* Mobile polish pass for compact phones. Keep this at the end of the file. */
@media (max-width: 767.98px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    box-shadow: 0 10px 28px rgba(18, 22, 19, 0.08);
    animation: none;
  }

  .site-topbar {
    display: none;
  }

  .site-nav {
    min-height: 76px;
    padding: 12px 16px;
    gap: 14px;
  }

  .brand-logo-only .brand-mark {
    width: 154px;
    height: 48px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(18, 22, 19, 0.06);
  }

  .site-nav.is-open .nav-links {
    gap: 0;
    padding: 12px 0 4px;
    border-top: 1px solid rgba(24, 76, 56, 0.1);
  }

  .site-nav.is-open .nav-links a {
    width: 100%;
    padding: 10px 0;
  }

  .site-nav.is-open .nav-links .nav-mobile-login {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    padding: 12px 0;
    color: #145c38;
    border-top: 1px solid rgba(24, 76, 56, 0.1);
  }

  .site-nav.is-open .nav-links .nav-mobile-tracker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    padding: 12px 0;
    color: #145c38;
    border-top: 1px solid rgba(24, 76, 56, 0.1);
  }

  .site-nav.is-open .nav-links .nav-mobile-tracker::after {
    display: none;
  }

  .site-nav.is-open .nav-links .nav-mobile-login::after {
    display: none;
  }

  .site-nav.is-open .nav-links .nav-apply-link {
    min-height: 46px;
    margin-top: 8px;
    padding: 0 18px;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.reveal-left,
  .reveal-on-scroll.reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-copy > *,
  .hero-copy p,
  .hero-actions,
  .floating-card {
    animation: none;
  }

  .hero-actions,
  .inline-actions,
  .gp-transform-actions {
    gap: 10px;
  }

  .hero-actions .btn-ui,
  .inline-actions .btn-ui,
  .gp-transform-btn,
  .gp-loan-cta-btn {
    width: 100%;
    min-height: 52px;
  }

  .gp-loans-front {
    background: linear-gradient(180deg, #ffffff 0%, #f3faf2 100%);
  }

  .gp-loans-shell {
    padding: 36px 0 46px;
  }

  .gp-loans-head {
    width: 100%;
    gap: 12px;
    margin-bottom: 18px;
    padding: 0 16px;
  }

  .gp-loans-head h2 {
    max-width: 100%;
    font-size: 1.72rem;
    line-height: 1.14;
  }

  .gp-loans-head p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .gp-loans-grid {
    width: 100%;
    padding: 0 12px;
    gap: 14px;
  }

  .gp-loan-card {
    min-height: auto;
    border-radius: 14px;
    padding: 22px 20px;
    background: #ffffff;
    border: 1px solid rgba(24, 76, 56, 0.08);
    box-shadow: 0 12px 28px rgba(18, 22, 19, 0.06);
  }

  .gp-loan-card.gp-loan-card-featured {
    color: #ffffff;
    background:
      radial-gradient(circle at 88% 16%, rgba(139, 217, 77, 0.62) 0%, rgba(139, 217, 77, 0) 42%),
      linear-gradient(145deg, #0e1512 0%, #17432e 54%, #78c84d 100%);
    border-color: transparent;
    box-shadow: 0 18px 42px rgba(19, 64, 43, 0.2);
  }

  .gp-loan-card.gp-loan-card-featured h3,
  .gp-loan-card.gp-loan-card-featured p,
  .gp-loan-card.gp-loan-card-featured .gp-link-arrow {
    color: rgba(255, 255, 255, 0.94);
  }

  .gp-loan-card.gp-loan-card-featured .gp-loan-icon {
    color: #17432e;
    background: rgba(255, 255, 255, 0.9);
  }

  .gp-loan-card h3 {
    font-size: 1.18rem;
    line-height: 1.18;
  }

  .gp-loan-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .gp-impact-goals-section,
  .gp-impact-goals-shell {
    background: linear-gradient(180deg, #ffffff 0%, #f4faf3 100%);
  }

  .gp-impact-goals-shell {
    padding: 38px 0 calc(50px + env(safe-area-inset-bottom));
  }

  .gp-impact-goals-head {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 16px;
  }

  .gp-impact-goals-head h2 {
    font-size: 1.76rem;
    line-height: 1.14;
  }

  .gp-impact-goals-grid {
    width: 100%;
    padding: 0 12px;
    gap: 14px;
  }

  .gp-impact-goal-card {
    min-height: 110px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 18px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(24, 76, 56, 0.08);
    box-shadow: 0 12px 28px rgba(18, 22, 19, 0.06);
  }

  .gp-impact-goal-card h3 {
    font-size: 1rem;
    line-height: 1.36;
  }

  .gp-impact-goal-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }

  .gp-transform-cta {
    width: 100%;
    margin-top: 34px;
    padding: 40px 16px calc(54px + env(safe-area-inset-bottom));
    border-radius: 0;
  }

  .gp-transform-cta h2 {
    font-size: 1.72rem;
    line-height: 1.16;
  }

  .gp-transform-cta p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .footer {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-panel {
    padding: 32px 16px calc(44px + env(safe-area-inset-bottom));
  }
}

/* Public application tracking */
.loan-tracker-page {
  background: #f4f7f4;
  min-height: 70vh;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 88px) clamp(54px, 7vw, 96px);
}

.loan-tracker-hero,
.loan-tracker-result,
.tracker-assurance-grid {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.loan-tracker-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(34px, 5vw, 68px);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(9, 43, 28, 0.98), rgba(22, 101, 63, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(177, 224, 91, 0.32), transparent 35%);
  box-shadow: 0 24px 60px rgba(18, 76, 48, 0.16);
}

.tracker-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #bce781;
}

.loan-tracker-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

.loan-tracker-hero-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: #dce9df;
  font-size: 1rem;
  line-height: 1.72;
}

.loan-tracker-search {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: #17221b;
  box-shadow: 0 18px 45px rgba(5, 34, 20, 0.2);
}

.loan-tracker-search > label {
  display: block;
  margin-bottom: 10px;
  color: #26352b;
  font-size: 0.86rem;
  font-weight: 800;
}

.tracker-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.tracker-input-wrap {
  position: relative;
}

.tracker-input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #3c7455;
  font-size: 1.1rem;
}

.tracker-input-wrap input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px 0 46px;
  border: 1px solid #cfdad2;
  border-radius: 7px;
  outline: 0;
  color: #17221b;
  background: #fbfdfb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tracker-input-wrap input:focus {
  border-color: #20a947;
  box-shadow: 0 0 0 4px rgba(32, 169, 71, 0.12);
}

.tracker-input-row button {
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid #20aa35;
  border-radius: 7px;
  background: #20aa35;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tracker-input-row button:hover {
  background: #ffffff;
  color: #168c2b;
  transform: translateY(-1px);
}

.tracker-input-row button i {
  margin-left: 7px;
}

.tracker-form-help,
.tracker-form-error {
  margin: 11px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.tracker-form-help {
  color: #6b786f;
}

.tracker-form-error {
  color: #b42318;
  font-weight: 700;
}

.loan-tracker-result {
  margin-top: 34px;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid #dfe7e1;
  border-top: 5px solid #20aa35;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(25, 58, 38, 0.09);
  animation: tracker-result-in 0.55s ease both;
}

.tracker-result-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e1e8e3;
}

.tracker-result-heading .tracker-kicker {
  display: block;
  margin: 18px 0 5px;
  color: #38754f;
}

.tracker-result-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: 0;
  color: #14231a;
}

.tracker-result-heading p {
  margin: 8px 0 0;
  color: #68766d;
}

.tracker-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1c6c43;
  font-size: 0.82rem;
  font-weight: 800;
}

.tracker-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #e7f7eb;
  color: #13743c;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.tracker-status-pill.is-rejected {
  background: #fff0f0;
  color: #b42318;
}

.tracker-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 38px;
}

.tracker-step {
  position: relative;
  min-width: 0;
  text-align: center;
}

.tracker-step::before,
.tracker-step::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 50%;
  height: 2px;
  background: #dce4de;
  z-index: 0;
}

.tracker-step::before { left: 0; }
.tracker-step::after { right: 0; }
.tracker-step:first-child::before,
.tracker-step:last-child::after { display: none; }
.tracker-step.is-complete::before,
.tracker-step.is-complete::after,
.tracker-step.is-current::before { background: #51b96e; }

.tracker-step-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border: 2px solid #d8e1da;
  border-radius: 50%;
  background: #ffffff;
  color: #89958d;
  font-weight: 800;
  box-shadow: 0 0 0 6px #ffffff;
}

.tracker-step.is-complete .tracker-step-marker,
.tracker-step.is-current .tracker-step-marker {
  border-color: #20aa4b;
  background: #20aa4b;
  color: #ffffff;
}

.tracker-step.is-current .tracker-step-marker {
  box-shadow: 0 0 0 6px #ffffff, 0 0 0 10px rgba(32, 170, 75, 0.13);
}

.tracker-step.is-rejected .tracker-step-marker {
  border-color: #d92d20;
  background: #d92d20;
}

.tracker-step-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 190px;
  margin: 17px auto 0;
  padding: 0 8px;
}

.tracker-step-copy strong {
  color: #25332a;
  font-size: 0.83rem;
  line-height: 1.35;
}

.tracker-step-copy span {
  color: #78847c;
  font-size: 0.73rem;
  line-height: 1.45;
}

.tracker-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #e1e8e3;
}

.tracker-detail-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid #e0e8e2;
  border-radius: 7px;
  background: #f8faf8;
}

.tracker-detail-grid span,
.tracker-detail-grid strong {
  display: block;
}

.tracker-detail-grid span {
  margin-bottom: 8px;
  color: #6e7c73;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tracker-detail-grid strong {
  overflow-wrap: anywhere;
  color: #1e2c23;
  font-size: 0.92rem;
  line-height: 1.5;
}

.tracker-next-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid #cce7d2;
  border-radius: 7px;
  background: #edf9f0;
}

.tracker-next-step > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: #ffffff;
  color: #168a3e;
  font-size: 1.2rem;
}

.tracker-next-step strong,
.tracker-next-step p {
  display: block;
  margin: 0;
}

.tracker-next-step strong { color: #17462c; }
.tracker-next-step p { margin-top: 4px; color: #587063; font-size: 0.84rem; line-height: 1.55; }
.tracker-next-step a { color: #12653a; font-size: 0.82rem; font-weight: 800; }
.tracker-next-step.is-rejected { border-color: #f4c7c3; background: #fff5f4; }
.tracker-next-step.is-rejected > i { color: #b42318; }

.tracker-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.tracker-assurance-grid article {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid #dde6df;
  border-radius: 8px;
  background: #ffffff;
}

.tracker-assurance-grid i {
  color: #1b9148;
  font-size: 1.35rem;
}

.tracker-assurance-grid h2 {
  margin: 0 0 7px;
  color: #1d2b22;
  font-size: 1rem;
}

.tracker-assurance-grid p {
  margin: 0;
  color: #68766d;
  font-size: 0.84rem;
  line-height: 1.6;
}

@keyframes tracker-result-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991.98px) {
  .loan-tracker-hero {
    grid-template-columns: 1fr;
  }

  .tracker-progress {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tracker-step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    min-height: 94px;
    text-align: left;
  }

  .tracker-step::before,
  .tracker-step::after {
    left: 21px;
    right: auto;
    width: 2px;
    height: 50%;
  }

  .tracker-step::before { top: 0; }
  .tracker-step::after { top: 42px; }
  .tracker-step:first-child::before,
  .tracker-step:last-child::after { display: none; }

  .tracker-step-marker {
    margin: 0;
  }

  .tracker-step-copy {
    max-width: none;
    margin: 2px 0 0;
    padding: 0 0 18px;
  }

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

  .tracker-assurance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .loan-tracker-page {
    padding: 0 0 54px;
  }

  .loan-tracker-hero {
    width: 100%;
    padding: 34px 18px;
    border-radius: 0;
    box-shadow: none;
  }

  .loan-tracker-hero-copy h1 {
    font-size: 2rem;
  }

  .loan-tracker-search {
    padding: 20px 16px;
  }

  .tracker-input-row {
    grid-template-columns: 1fr;
  }

  .loan-tracker-result {
    width: 100%;
    margin-top: 14px;
    padding: 28px 18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

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

  .tracker-status-pill {
    align-self: flex-start;
  }

  .tracker-detail-grid {
    grid-template-columns: 1fr;
  }

  .tracker-next-step {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tracker-next-step a {
    grid-column: 2;
  }

  .tracker-assurance-grid {
    width: 100%;
    gap: 0;
    margin-top: 14px;
  }

  .tracker-assurance-grid article {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loan-tracker-result {
    animation: none;
  }
}

@media (max-width: 380px) {
  .topbar-link {
    padding: 0 6px;
    font-size: 0.75rem;
  }

  .topbar-icon {
    width: 29px;
  }

  .brand-logo-only .brand-mark {
    width: 146px;
  }

  .gp-loans-head h2,
  .gp-impact-goals-head h2,
  .gp-transform-cta h2 {
    font-size: 1.58rem;
  }
}

/* Image-led loan showcase */
.gp-loan-showcase {
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(126, 207, 79, 0.15) 0%, rgba(126, 207, 79, 0) 28%),
    linear-gradient(135deg, #0b3525 0%, #124b32 56%, #0d3c2a 100%);
}

.gp-loan-showcase-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(54px, 6vw, 88px) clamp(20px, 4vw, 56px);
}

.gp-loan-showcase-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #b9e875;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gp-loan-showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  padding: 14px 4px 26px;
  margin: -14px -4px -26px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  outline: none;
  perspective: 1400px;
}

.gp-loan-showcase-track::-webkit-scrollbar {
  display: none;
}

.gp-loan-showcase-card {
  position: relative;
  min-width: 0;
  height: 410px;
  overflow: hidden;
  border-radius: 16px;
  background: #102a1e;
  box-shadow: 0 18px 42px rgba(3, 24, 15, 0.22);
  scroll-snap-align: start;
  isolation: isolate;
  opacity: 0;
  filter: saturate(0.84) brightness(0.82);
  transform: translateY(30px) scale(0.93);
  transform-origin: center bottom;
  transition:
    opacity 0.55s ease,
    filter 0.55s ease,
    box-shadow 0.55s ease,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  animation: gp-loan-card-rise 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--loan-delay, 0ms);
}

.gp-loan-showcase-track.is-carousel-ready .gp-loan-showcase-card {
  opacity: 0.76;
}

.gp-loan-showcase-card.is-visible-in-carousel {
  opacity: 0.88;
  filter: saturate(0.96) brightness(0.92);
  transform: translateY(10px) scale(0.965);
}

.gp-loan-showcase-card.is-active,
.gp-loan-showcase-card:hover,
.gp-loan-showcase-card:focus-within {
  z-index: 3;
  opacity: 1;
  filter: saturate(1.08) brightness(1);
  box-shadow: 0 30px 72px rgba(2, 18, 11, 0.38);
  transform: translateY(-12px) scale(1);
}

.gp-loan-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 15, 10, 0.03) 12%, rgba(4, 15, 10, 0.2) 45%, rgba(4, 15, 10, 0.95) 100%);
  transition: background 0.35s ease;
}

.gp-loan-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06) translateX(-6px);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s ease;
}

.gp-loan-showcase-card.is-visible-in-carousel img {
  transform: scale(1.035) translateX(0);
}

.gp-loan-showcase-card.is-active img {
  animation: gp-loan-image-pan 6.8s ease-in-out infinite alternate;
}

.gp-loan-showcase-card:hover img,
.gp-loan-showcase-card:focus-within img {
  animation: none;
  transform: scale(1.09);
}

.gp-loan-showcase-card:hover::after,
.gp-loan-showcase-card:focus-within::after {
  background:
    linear-gradient(180deg, rgba(4, 15, 10, 0.05) 5%, rgba(4, 15, 10, 0.32) 38%, rgba(4, 15, 10, 0.98) 100%);
}

.gp-loan-showcase-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 26px 24px 24px;
  color: #ffffff;
  transform: translateY(16px);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.gp-loan-showcase-card.is-active .gp-loan-showcase-overlay,
.gp-loan-showcase-card:hover .gp-loan-showcase-overlay,
.gp-loan-showcase-card:focus-within .gp-loan-showcase-overlay {
  transform: translateY(0);
}

.gp-loan-showcase-overlay h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.18;
  font-weight: 900;
}

.gp-loan-showcase-overlay p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  line-height: 1.48;
  transition: color 0.3s ease;
}

.gp-loan-showcase-overlay ul {
  display: grid;
  gap: 4px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.gp-loan-showcase-overlay li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 8px 2px 0;
  border-radius: 999px;
  background: #a8e85f;
}

.gp-loan-showcase-overlay a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 6px;
  color: #ffffff;
  background: #20a83c;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gp-loan-showcase-overlay a:hover,
.gp-loan-showcase-overlay a:focus-visible {
  color: #168832;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.gp-loan-showcase-overlay a i {
  transition: transform 0.2s ease;
}

.gp-loan-showcase-overlay a:hover i,
.gp-loan-showcase-overlay a:focus-visible i {
  transform: translateX(3px);
}

.gp-loan-showcase-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-top: 42px;
}

.gp-loan-showcase-summary {
  max-width: 760px;
}

.gp-loan-showcase-progress {
  position: relative;
  width: 100%;
  height: 3px;
  margin-bottom: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.gp-loan-showcase-progress span {
  position: relative;
  display: block;
  width: var(--loan-progress, 33.333%);
  height: 100%;
  background: #78d64b;
  transition: width 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.gp-loan-showcase-progress span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.66) 48%, transparent 100%);
  transform: translateX(-100%);
}

.gp-loan-showcase-track.is-autoplaying ~ .gp-loan-showcase-footer .gp-loan-showcase-progress span::after {
  animation: gp-loan-progress-glint 5.2s linear infinite;
}

.gp-loan-showcase-summary h2 {
  max-width: 620px;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
  line-height: 1.08;
}

.gp-loan-showcase-summary p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.6;
}

.gp-loan-showcase-controls {
  display: flex;
  gap: 12px;
}

.gp-loan-showcase-controls button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.gp-loan-showcase-controls button:hover,
.gp-loan-showcase-controls button:focus-visible {
  color: #123d2a;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.gp-loan-showcase-controls button:active {
  transform: translateY(0) scale(0.96);
}

@keyframes gp-loan-card-rise {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.9);
  }

  to {
    opacity: 0.76;
    transform: translateY(10px) scale(0.965);
  }
}

@keyframes gp-loan-image-pan {
  from {
    transform: scale(1.035) translateX(-5px);
  }

  to {
    transform: scale(1.08) translateX(5px);
  }
}

@keyframes gp-loan-progress-glint {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1100px) {
  .gp-loan-showcase-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }
}

@media (max-width: 820px) {
  .gp-loan-showcase-track {
    grid-auto-columns: minmax(260px, 72%);
  }
}

@media (max-width: 767.98px) {
  .gp-loan-showcase-shell {
    padding: 42px 16px 46px;
  }

  .gp-loan-showcase-track {
    grid-auto-columns: 86%;
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
  }

  .gp-loan-showcase-card,
  .gp-loan-showcase-card.is-visible-in-carousel,
  .gp-loan-showcase-card.is-active,
  .gp-loan-showcase-card:hover,
  .gp-loan-showcase-card:focus-within {
    height: 430px;
    border-radius: 12px;
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .gp-loan-showcase-overlay {
    padding: 24px 20px 20px;
    transform: none;
  }

  .gp-loan-showcase-overlay h3 {
    font-size: 1.22rem;
  }

  .gp-loan-showcase-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    margin-top: 28px;
  }

  .gp-loan-showcase-progress {
    margin-bottom: 20px;
  }

  .gp-loan-showcase-summary h2 {
    font-size: 1.42rem;
  }

  .gp-loan-showcase-summary p {
    display: none;
  }

  .gp-loan-showcase-controls button {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-loan-showcase-track {
    scroll-behavior: auto;
  }

  .gp-loan-showcase-card img,
  .gp-loan-showcase-overlay,
  .gp-loan-showcase-card,
  .gp-loan-showcase-progress span,
  .gp-loan-showcase-progress span::after,
  .gp-loan-showcase-controls button {
    animation: none !important;
    transition: none;
  }
}

@media (max-width: 767.98px) {
  .gp-legal-page {
    width: auto !important;
    max-width: 100vw !important;
    padding: 0 !important;
    min-width: 0 !important;
  }

  .gp-legal-document,
  .gp-legal-document section,
  .gp-legal-intro {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .gp-legal-document {
    width: calc(100vw - 96px) !important;
    max-width: calc(100vw - 96px) !important;
    margin-left: 18px !important;
    margin-right: 18px !important;
    padding: 32px 0 48px !important;
  }

  .gp-legal-document h2,
  .gp-legal-document p,
  .gp-legal-document li {
    max-width: 34ch !important;
  }

  .gp-legal-document h2,
  .gp-legal-document p,
  .gp-legal-document li,
  .gp-legal-document span,
  .gp-legal-document strong,
  .gp-legal-document a {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

/* Final mobile guard for SEO landing pages. Keep this as the last mobile block. */
@media (max-width: 767.98px) {
  .gp-page-hero,
  .gp-page-hero-inner,
  .gp-loans-front,
  .gp-loans-shell,
  .gp-loans-head,
  .gp-loans-grid,
  .gp-loan-card,
  .section-panel,
  .gp-home-shell {
    max-width: 100vw !important;
    min-width: 0 !important;
    overflow-x: hidden;
  }

  .gp-page-hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .gp-page-hero-inner {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .gp-loans-head,
  .gp-loans-grid {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .gp-loan-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .gp-page-hero h1,
  .gp-loans-head h2,
  .gp-page-hero p,
  .gp-loans-head p,
  .gp-loan-card h3,
  .gp-loan-card p {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .gp-page-hero h1 {
    font-size: clamp(1.82rem, 8.4vw, 2.25rem) !important;
    line-height: 1.12 !important;
  }

  .hero-actions.justify-content-center,
  .gp-page-hero .hero-actions {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
  }

  .hero-actions.justify-content-center .btn-ui,
  .gp-page-hero .hero-actions .btn-ui {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Loan product explorer inspired by the image-led cooperative banking pattern. */
.gp-loan-explorer {
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 14%, rgba(142, 207, 73, 0.18) 0%, rgba(142, 207, 73, 0) 28%),
    linear-gradient(135deg, #0b3324 0%, #145b3a 56%, #0d402c 100%);
}

.gp-loan-explorer-shell {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: clamp(56px, 6vw, 92px) clamp(22px, 5vw, 80px) clamp(64px, 7vw, 104px);
}

.gp-loan-explorer-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.gp-loan-explorer-head .eyebrow {
  color: #d9ffb5;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.gp-loan-explorer-head h2 {
  max-width: 760px;
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.gp-loan-explorer-head p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.gp-loan-picker-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
}

.gp-loan-picker-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.gp-loan-picker-arrow:hover,
.gp-loan-picker-arrow:focus-visible {
  color: #153f2b;
  background: #ffffff;
  transform: scale(1.06);
}

.gp-loan-picker-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 16px 4px 24px;
}

.gp-loan-picker-track::-webkit-scrollbar {
  display: none;
}

.gp-loan-picker-card {
  position: relative;
  height: 260px;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: #0a251a;
  text-align: left;
  opacity: 0.72;
  transform: translateY(8px) scale(0.97);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.gp-loan-picker-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.gp-loan-picker-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 21, 14, 0.04) 24%, rgba(5, 21, 14, 0.88) 100%);
}

.gp-loan-picker-label {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  display: grid;
  gap: 5px;
}

.gp-loan-picker-label small {
  color: #b9f07f;
  font-size: 0.72rem;
  font-weight: 900;
}

.gp-loan-picker-label strong {
  font-size: 1.04rem;
  line-height: 1.2;
}

.gp-loan-picker-card:hover,
.gp-loan-picker-card:focus-visible,
.gp-loan-picker-card.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateY(-7px) scale(1);
  border-color: #a6de62;
  box-shadow: 0 24px 44px rgba(1, 16, 10, 0.34);
}

.gp-loan-picker-card:hover img,
.gp-loan-picker-card:focus-visible img,
.gp-loan-picker-card.is-active img {
  transform: scale(1.1);
  filter: saturate(1.08);
}

.gp-loan-explorer-progress {
  width: calc(100% - 136px);
  height: 3px;
  margin: 0 auto 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.gp-loan-explorer-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: #91d04c;
}

.gp-loan-explorer-progress span.is-running {
  animation: gp-loan-explorer-progress 7s linear forwards;
}

.gp-loan-product-panels {
  width: calc(100% - 136px);
  margin: 0 auto;
}

.gp-loan-product-panel {
  display: none;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  color: #18241d;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(2, 20, 12, 0.28);
}

.gp-loan-product-panel.is-active {
  display: grid;
}

.gp-loan-product-panel.is-entering {
  animation: gp-loan-product-enter 0.68s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gp-loan-product-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #dce9df;
}

.gp-loan-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 18, 0.02) 38%, rgba(7, 26, 18, 0.76) 100%);
}

.gp-loan-product-media > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  animation: gp-loan-image-settle 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gp-loan-product-media-note {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.gp-loan-product-media-note span {
  color: #d1f6aa;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gp-loan-product-media-note strong {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.gp-loan-product-content {
  min-width: 0;
  padding: clamp(34px, 4.2vw, 64px);
}

.gp-loan-product-kicker {
  color: #1a6b43;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gp-loan-product-content > h3 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1;
}

.gp-loan-product-summary {
  max-width: 760px;
  margin: 0;
  color: #536157;
  font-size: 1.03rem;
  line-height: 1.76;
}

.gp-loan-product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 34px;
}

.gp-loan-product-actions .btn-ui {
  min-height: 48px;
  border-radius: 4px;
}

.gp-loan-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 2px;
  color: #17663f;
  font-size: 0.91rem;
  font-weight: 900;
  border-bottom: 1px solid #17663f;
}

.gp-loan-info {
  border-top: 1px solid #dfe7e1;
}

.gp-loan-info-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #dfe7e1;
}

.gp-loan-info-tabs button {
  position: relative;
  min-height: 58px;
  padding: 12px 10px;
  border: 0;
  color: #68756c;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 900;
}

.gp-loan-info-tabs button::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: #31a650;
  transition: transform 0.28s ease;
}

.gp-loan-info-tabs button:hover,
.gp-loan-info-tabs button:focus-visible,
.gp-loan-info-tabs button.is-active {
  color: #155b39;
}

.gp-loan-info-tabs button.is-active::after {
  transform: scaleX(1);
}

.gp-loan-info-panel {
  padding-top: 26px;
}

.gp-loan-info-panel.is-active {
  animation: gp-loan-info-enter 0.4s ease both;
}

.gp-loan-info-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gp-loan-info-panel h4 {
  margin: 0 0 12px;
  color: #183e2b;
  font-size: 0.94rem;
}

.gp-loan-info-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gp-loan-info-panel li {
  position: relative;
  padding-left: 20px;
  color: #5c685f;
  font-size: 0.87rem;
  line-height: 1.5;
}

.gp-loan-info-panel li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #62bd44;
}

.gp-loan-info-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
}

.gp-loan-info-facts div {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid #e6ece7;
}

.gp-loan-info-facts div:nth-child(2) {
  grid-row: span 2;
}

.gp-loan-info-facts dt {
  color: #69756c;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gp-loan-info-facts dd {
  margin: 0;
  color: #1d2921;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

@keyframes gp-loan-product-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gp-loan-image-settle {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes gp-loan-info-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gp-loan-explorer-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 991.98px) {
  .gp-loan-explorer-head {
    grid-template-columns: 1fr;
  }

  .gp-loan-product-panel {
    grid-template-columns: 1fr;
  }

  .gp-loan-product-media,
  .gp-loan-product-media > img {
    min-height: 380px;
    max-height: 440px;
  }
}

@media (max-width: 767.98px) {
  .gp-loan-explorer-shell {
    width: 100%;
    max-width: 100vw;
    padding: 44px 0 56px;
  }

  .gp-loan-explorer-head {
    gap: 16px;
    margin-bottom: 18px;
    padding: 0 16px;
  }

  .gp-loan-explorer-head h2 {
    font-size: 1.8rem;
    line-height: 1.12;
  }

  .gp-loan-explorer-head p {
    font-size: 0.93rem;
    line-height: 1.58;
  }

  .gp-loan-picker-row {
    display: block;
  }

  .gp-loan-picker-arrow {
    display: none;
  }

  .gp-loan-picker-track {
    grid-auto-columns: 68vw;
    gap: 12px;
    padding: 14px 16px 24px;
    scroll-padding-inline: 16px;
  }

  .gp-loan-picker-card {
    height: 220px;
  }

  .gp-loan-picker-card,
  .gp-loan-picker-card:hover,
  .gp-loan-picker-card:focus-visible,
  .gp-loan-picker-card.is-active {
    transform: none;
  }

  .gp-loan-explorer-progress,
  .gp-loan-product-panels {
    width: calc(100vw - 32px);
  }

  .gp-loan-explorer-progress {
    margin-bottom: 24px;
  }

  .gp-loan-product-panel,
  .gp-loan-product-panel.is-active {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }

  .gp-loan-product-media,
  .gp-loan-product-media > img {
    min-height: 280px;
    height: 280px;
  }

  .gp-loan-product-media-note {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .gp-loan-product-content {
    width: 100%;
    max-width: 100%;
    padding: 28px 18px 34px;
    overflow: hidden;
  }

  .gp-loan-product-content > h3 {
    font-size: 2rem;
  }

  .gp-loan-product-summary {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .gp-loan-product-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin: 24px 0 28px;
  }

  .gp-loan-product-actions .btn-ui,
  .gp-loan-detail-link {
    width: 100%;
    max-width: 100%;
  }

  .gp-loan-detail-link {
    justify-content: space-between;
  }

  .gp-loan-info-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gp-loan-info-tabs::-webkit-scrollbar {
    display: none;
  }

  .gp-loan-info-tabs button {
    flex: 0 0 auto;
    min-width: 142px;
  }

  .gp-loan-info-columns,
  .gp-loan-info-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .gp-loan-info-facts div:nth-child(2) {
    grid-row: auto;
  }
}

/* Refined social-enterprise hierarchy and readable loan CTA eyebrow. */
.gp-news-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding: clamp(28px, 3vw, 38px);
}

.gp-news-feature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.gp-news-feature-copy .gp-chip {
  margin: 0 0 2px;
}

.gp-news-feature-copy h3,
.gp-news-feature-copy p {
  margin: 0;
}

.gp-news-feature-copy h3 {
  max-width: 27ch;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.17;
}

.gp-news-feature-copy p {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.65;
}

.gp-news-feature-copy .gp-news-feature-impact {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.91rem;
}

.gp-news-feature > .gp-link-arrow {
  margin-top: auto;
  padding-top: 26px;
}

.gp-loan-next-band .eyebrow {
  min-height: 40px;
  padding: 8px 15px;
  color: #123e2a;
  background: #f4faef;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(6, 28, 18, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
}

@media (max-width: 767.98px) {
  .gp-news-feature {
    padding: 26px 22px;
  }

  .gp-news-feature-copy {
    gap: 16px;
  }

  .gp-news-feature-copy h3 {
    font-size: 1.4rem;
  }

  .gp-news-feature-copy p {
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-loan-picker-card,
  .gp-loan-picker-card img,
  .gp-loan-product-panel,
  .gp-loan-product-media > img,
  .gp-loan-info-panel,
  .gp-loan-explorer-progress span {
    animation: none !important;
    transition: none !important;
  }
}

.footer-panel > .footer-grid {
  grid-template-columns: minmax(280px, 1.65fr) repeat(3, minmax(150px, 1fr));
}

@media (max-width: 991.98px) {
  .footer-panel > .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .footer-panel > .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Coop-style loan detail composition. */
.gp-loan-explorer {
  color: #202a24;
  background: #f4f6f9;
}

.gp-loan-explorer-shell {
  width: min(100%, 1640px);
  padding-top: clamp(52px, 6vw, 88px);
}

.gp-loan-explorer-head .eyebrow {
  color: #175d3a;
  background: #e3eee7;
  border-color: #d7e6dc;
}

.gp-loan-explorer-head h2 {
  color: #175d3a;
}

.gp-loan-explorer-head p {
  color: #69766d;
}

.gp-loan-picker-arrow {
  color: #17663f;
  background: #ffffff;
  border-color: #cddbd1;
}

.gp-loan-picker-arrow:hover,
.gp-loan-picker-arrow:focus-visible {
  color: #ffffff;
  background: #1c8e3e;
}

.gp-loan-picker-track {
  padding-top: 10px;
}

.gp-loan-picker-card {
  height: 190px;
  border-color: #dbe4de;
  opacity: 0.78;
  box-shadow: 0 10px 24px rgba(24, 61, 40, 0.08);
}

.gp-loan-picker-card:hover,
.gp-loan-picker-card:focus-visible,
.gp-loan-picker-card.is-active {
  border-color: #2da24b;
  box-shadow: 0 20px 38px rgba(24, 83, 49, 0.18);
}

.gp-loan-explorer-progress {
  margin-bottom: clamp(54px, 6vw, 86px);
  background: #d5dfd8;
}

.gp-loan-explorer-progress span {
  background: #2eaa4f;
}

.gp-loan-product-panels {
  width: calc(100% - 80px);
}

.gp-loan-product-panel,
.gp-loan-product-panel.is-active {
  grid-template-columns: minmax(420px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: start;
  min-height: 0;
  overflow: visible;
  color: #242d27;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.gp-loan-product-media {
  min-height: clamp(540px, 44vw, 700px);
  height: clamp(540px, 44vw, 700px);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(30, 48, 37, 0.13);
}

.gp-loan-product-media::after {
  display: none;
}

.gp-loan-product-media > img {
  min-height: 100%;
  height: 100%;
}

.gp-loan-product-content {
  padding: clamp(8px, 1vw, 18px) 0 0;
}

.gp-loan-product-content > h3 {
  margin: 0 0 26px;
  color: #17663f;
  font-size: clamp(2.5rem, 4.3vw, 4.6rem);
  line-height: 1;
}

.gp-loan-product-summary {
  max-width: 790px;
  color: #707d8f;
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  line-height: 1.72;
}

.gp-loan-product-actions {
  gap: 16px;
  margin: 38px 0 44px;
}

.gp-loan-action-apply,
.gp-loan-action-calculate {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 900;
  transition: color 0.24s ease, background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.gp-loan-action-apply {
  color: #ffffff;
  background: #20933e;
  border: 2px solid #20933e;
}

.gp-loan-action-calculate {
  color: #17663f;
  background: transparent;
  border: 2px solid #17663f;
}

.gp-loan-action-apply:hover,
.gp-loan-action-apply:focus-visible {
  color: #17663f;
  background: #ffffff;
  transform: translateY(-2px);
}

.gp-loan-action-calculate:hover,
.gp-loan-action-calculate:focus-visible {
  color: #ffffff;
  background: #17663f;
  transform: translateY(-2px);
}

.gp-loan-accordion-list {
  border-top: 1px solid #d7dde2;
}

.gp-loan-explorer-accordion {
  border-bottom: 1px solid #d7dde2;
}

.gp-loan-explorer-accordion summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  color: #17663f;
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gp-loan-explorer-accordion summary::-webkit-details-marker {
  display: none;
}

.gp-loan-explorer-accordion summary i {
  color: #629779;
  transition: transform 0.25s ease;
}

.gp-loan-explorer-accordion[open] summary i {
  transform: rotate(180deg);
}

.gp-loan-explorer-accordion-body {
  padding: 4px 0 28px;
  animation: gp-loan-info-enter 0.35s ease both;
}

.gp-loan-explorer-accordion-body h4 {
  margin: 0 0 12px;
  color: #244b34;
  font-size: 0.92rem;
}

.gp-loan-explorer-accordion-body ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gp-loan-explorer-accordion-body li {
  position: relative;
  padding-left: 19px;
  color: #647067;
  font-size: 0.87rem;
  line-height: 1.5;
}

.gp-loan-explorer-accordion-body li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ebd4c;
}

.gp-loan-product-content > .gp-loan-detail-link {
  width: max-content;
  margin-top: 26px;
  color: #17663f;
}

@media (max-width: 991.98px) {
  .gp-loan-product-panel,
  .gp-loan-product-panel.is-active {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .gp-loan-product-media {
    min-height: 460px;
    height: 460px;
  }

  .gp-loan-product-content {
    padding-top: 0;
  }
}

@media (max-width: 767.98px) {
  .gp-loan-explorer-shell {
    padding-top: 42px;
  }

  .gp-loan-picker-card {
    height: 190px;
  }

  .gp-loan-explorer-progress {
    margin-bottom: 34px;
  }

  .gp-loan-product-panels {
    width: calc(100vw - 32px);
  }

  .gp-loan-product-panel,
  .gp-loan-product-panel.is-active {
    gap: 28px;
  }

  .gp-loan-product-media,
  .gp-loan-product-media > img {
    min-height: 320px;
    height: 320px;
    max-height: 320px;
    border-radius: 14px;
  }

  .gp-loan-product-content {
    padding: 0;
  }

  .gp-loan-product-content > h3 {
    margin-bottom: 18px;
    font-size: 2.25rem;
  }

  .gp-loan-product-summary {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .gp-loan-product-actions {
    display: grid;
    gap: 12px;
    margin: 28px 0 32px;
  }

  .gp-loan-action-apply,
  .gp-loan-action-calculate {
    width: 100%;
    min-height: 56px;
  }

  .gp-loan-explorer-accordion summary {
    min-height: 64px;
    font-size: 0.88rem;
  }

  .gp-loan-info-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .gp-loan-product-content > .gp-loan-detail-link {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 12px;
  }
}

/* Homepage loan reveal cards and balanced social-enterprise feature. */
.gp-loan-showcase-card {
  height: 440px;
  cursor: pointer;
  outline: none;
}

.gp-loan-showcase-card:focus-visible {
  box-shadow: 0 0 0 3px #b9e875, 0 30px 72px rgba(2, 18, 11, 0.38);
}

.gp-loan-showcase-card.is-active {
  transform: translateY(-4px) scale(0.985);
}

.gp-loan-showcase-card:hover,
.gp-loan-showcase-card:focus-visible,
.gp-loan-showcase-card:focus-within,
.gp-loan-showcase-card.is-expanded {
  z-index: 3;
  opacity: 1;
  filter: saturate(1.06) brightness(1);
  transform: translateY(-10px) scale(1);
}

.gp-loan-showcase-card::after {
  background: linear-gradient(180deg, rgba(4, 15, 10, 0.02) 24%, rgba(4, 15, 10, 0.18) 58%, rgba(4, 15, 10, 0.94) 100%);
}

.gp-loan-showcase-card:hover::after,
.gp-loan-showcase-card:focus-visible::after,
.gp-loan-showcase-card:focus-within::after,
.gp-loan-showcase-card.is-expanded::after {
  background: linear-gradient(180deg, rgba(4, 15, 10, 0.08) 4%, rgba(4, 15, 10, 0.46) 42%, rgba(4, 15, 10, 0.98) 100%);
}

.gp-loan-showcase-card.is-active img {
  animation: none;
}

.gp-loan-showcase-card:hover img,
.gp-loan-showcase-card:focus-visible img,
.gp-loan-showcase-card:focus-within img,
.gp-loan-showcase-card.is-expanded img {
  animation: none;
  transform: scale(1.1);
}

.gp-loan-showcase-overlay,
.gp-loan-showcase-card.is-active .gp-loan-showcase-overlay {
  padding: 28px 24px 24px;
  transform: translateY(0);
}

.gp-loan-showcase-overlay h3 {
  margin: 0;
  font-size: 1.36rem;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.gp-loan-showcase-details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(18px);
  transition:
    grid-template-rows 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease,
    transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.gp-loan-showcase-details-inner {
  min-height: 0;
  overflow: hidden;
}

.gp-loan-showcase-details p {
  margin-top: 12px;
}

.gp-loan-showcase-card:hover .gp-loan-showcase-details,
.gp-loan-showcase-card:focus-visible .gp-loan-showcase-details,
.gp-loan-showcase-card:focus-within .gp-loan-showcase-details,
.gp-loan-showcase-card.is-expanded .gp-loan-showcase-details {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.gp-products-shell {
  padding-top: clamp(54px, 6vw, 78px);
  padding-bottom: clamp(54px, 6vw, 78px);
}

.gp-products-shell .gp-azure-head {
  margin-bottom: 28px;
}

.gp-products-shell .gp-azure-head,
.gp-products-shell .gp-news-grid {
  width: min(100%, 1480px);
}

.gp-products-shell .gp-azure-head h2 {
  max-width: 1180px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1.06;
}

.gp-news-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 22px;
  align-items: stretch;
}

.gp-news-feature {
  min-height: 410px;
  padding: clamp(30px, 3vw, 42px);
  border-radius: 16px;
}

.gp-news-feature-copy {
  gap: 14px;
}

.gp-news-feature-copy h3 {
  max-width: 22ch;
  font-size: clamp(1.7rem, 2.35vw, 2.25rem);
  line-height: 1.12;
}

.gp-news-feature-copy p {
  max-width: 57ch;
  font-size: 0.96rem;
  line-height: 1.58;
}

.gp-news-feature-copy .gp-news-feature-impact {
  padding-top: 13px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.gp-news-feature > .gp-link-arrow {
  padding-top: 18px;
}

.gp-news-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gp-news-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-height: 0;
  padding: 28px;
  border: 1px solid rgba(23, 99, 62, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(18, 55, 37, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gp-news-card:hover {
  border-color: rgba(32, 168, 60, 0.35);
  box-shadow: 0 22px 46px rgba(18, 55, 37, 0.12);
  transform: translateY(-3px);
}

.gp-news-card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  color: #14743c;
  background: #eaf8ec;
  font-size: 1.25rem;
}

.gp-news-card-icon-people {
  color: #345fc3;
  background: #edf3ff;
}

.gp-news-card-copy {
  min-width: 0;
}

.gp-news-card .page-link-meta {
  margin-bottom: 9px;
  color: #6a5a50;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gp-news-card h3 {
  margin: 0 0 9px;
  font-size: 1.28rem;
  line-height: 1.22;
}

.gp-news-card p {
  margin: 0;
  color: #64584f;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .gp-news-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gp-news-feature {
    min-height: 390px;
  }
}

@media (max-width: 767.98px) {
  .gp-loan-showcase-card,
  .gp-loan-showcase-card.is-visible-in-carousel,
  .gp-loan-showcase-card.is-active,
  .gp-loan-showcase-card:hover,
  .gp-loan-showcase-card:focus-visible,
  .gp-loan-showcase-card:focus-within,
  .gp-loan-showcase-card.is-expanded {
    height: 410px;
    transform: none;
  }

  .gp-loan-showcase-overlay,
  .gp-loan-showcase-card.is-active .gp-loan-showcase-overlay {
    padding: 24px 20px 20px;
  }

  .gp-products-shell {
    padding: 42px 0;
  }

  .gp-products-shell .gp-azure-head,
  .gp-products-shell .gp-news-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gp-products-shell .gp-azure-head {
    margin-bottom: 22px;
  }

  .gp-products-shell .gp-azure-head h2 {
    font-size: 2rem;
  }

  .gp-news-feature {
    min-height: 0;
    padding: 28px 22px;
  }

  .gp-news-feature-copy h3 {
    font-size: 1.55rem;
  }

  .gp-news-stack {
    grid-template-rows: none;
  }

  .gp-news-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 18px;
  }

  .gp-news-card-icon {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-loan-showcase-details,
  .gp-news-card {
    transition: none;
  }
}

/* Plain section labels: typography only, without pill containers. */
.eyebrow,
.gp-chip,
.gp-solution-feature .eyebrow,
.calculator-summary .eyebrow,
.calculator-result-card > div:first-child .eyebrow,
.gp-loan-next-band .eyebrow,
.gp-loan-explorer-head .eyebrow,
.gp-news-feature .gp-chip,
.gp-news-feature-copy .gp-chip {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1.25;
}

.gp-loan-next-band .eyebrow,
.gp-news-feature .gp-chip,
.gp-news-feature-copy .gp-chip {
  color: #e7ffd7;
}

.calculator-result-card > div:first-child .eyebrow {
  color: #ffffff;
}
