: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: "Inter", 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;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 245, 0.86);
  border-bottom: 1px solid rgba(20, 20, 20, 0.04);
  animation: slide-down 0.8s ease both;
}

.site-nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: transform 0.25s ease;
}

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

.brand-logo-only .brand-mark {
  width: 148px;
  height: 42px;
  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;
}

.brand small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: #2f2f2a;
}

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

.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-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.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: 12px 18px 0;
  position: relative;
  border-radius: 0;
  background: #f4f7f2;
}

.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 {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: stretch;
}

.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.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero-copy h1 {
  margin: 18px 0 18px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.68rem, 2.75vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  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 {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 10px 0 28px;
  justify-content: flex-start;
  gap: 18px;
}

.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.02em;
  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: 330px;
  border-radius: 34px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: #ebe9e5;
}

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

.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:hover video,
.video-shell:hover img,
.media-card:hover img {
  transform: scale(1.04);
}

.video-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  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: 18px;
  right: 18px;
  max-width: 236px;
  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.02em;
}

.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: "Inter", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  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: "Inter", sans-serif;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.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.08em;
  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.08em;
  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: 100%;
  margin: 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-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.04em;
  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.04em;
}

.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:
    linear-gradient(180deg, rgba(24, 76, 56, 0.98) 0%, rgba(110, 74, 53, 0.96) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
  color: #ecf6ff;
  overflow: hidden;
  position: relative;
}

.gp-news-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 55%, rgba(255, 255, 255, 0.08) 55% 56%, transparent 56%),
    linear-gradient(160deg, transparent 0 65%, rgba(243, 213, 197, 0.14) 65% 66%, transparent 66%);
  pointer-events: none;
}

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

.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-solution-layout {
  align-items: stretch;
}

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

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

.gp-solution-stack {
  gap: 18px;
}

.gp-solution-card {
  border-radius: 24px;
}

.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: "Inter", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  letter-spacing: -0.045em;
  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.08em;
}

.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: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  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: "Inter", sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  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.14em;
  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.06em;
  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.04em;
}

.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.02em;
}

.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.1em;
  text-transform: uppercase;
}

.kibo-big-amount {
  margin-top: 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  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.05em;
  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.08em;
  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.08em;
  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.04em;
  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.01em;
  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.06em;
  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.05em;
  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.05em;
  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.05em;
}

.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-nav {
    gap: 18px;
    padding: 16px 20px;
  }

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

  .hero-panel {
    padding: 16px 20px 0;
  }

  .hero-copy {
    padding: 12px 0 0 12px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
  }

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

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

  .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.04em;
}

.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.12em;
  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;
}

.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-nav {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

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

  .nav-links {
    order: 4;
    width: 100%;
    display: none;
  }

  .nav-actions {
    order: 5;
    width: 100%;
    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-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;
  }

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

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

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

  .brand-logo-only .brand-mark {
    width: 132px;
    height: 38px;
  }

  .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-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-actions {
    gap: 10px;
  }

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

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

  .hero-copy {
    gap: 14px;
  }

  .brand-logo-only .brand-mark {
    width: 118px;
    height: 34px;
  }

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

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    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-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;
  }
}
