/* ==========================================================================
   DESIGN TOKENS & GLOBAL VARIABLE SETTINGS
   ========================================================================== */
:root {
  --midnight-green: #0C2B15;
  --logo-green: #144622;
  --green-500: #197A56;
  --green-400: #21BF61;
  --accent-200: #96F878;
  --accent-300: #71DC68;
  --neutral-100: #f2edea;
  --neutral-200: #F1EEEA;
  --neutral-300: #DFD7CD;
  --neutral-400: #C4B5A4;
  --black: #212427;
  --white: #ffffff;
  --gray-200: #F2F2F2;
  --gray-300: #D4D4D4;
  --gray-400: #adb6b1;
  --gray-500: #696969;
  --gray-700: #323232;

  --font-sans: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Fraunces", "Palatino Linotype", Palatino, Georgia, serif;
  --font-headline: "Fraunces", Cambria, "Times New Roman", serif;

  --nav-h: 76px;
  --radius-btn: 24px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --page-max: 1280px;
  --page-gutter: 48px;
  --shadow-soft: 0 20px 60px rgba(12, 43, 21, 0.08);
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 24px;
  }
}

/* ==========================================================================
   RESET & BASE STYLING
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.visual-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.stack {
  display: grid;
  gap: 20px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

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

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

@media (max-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* List utilities */
.list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
}

.list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-200);
}

.section--dark .list li {
  color: rgba(255, 255, 255, 0.78);
}

/* ==========================================================================
   PREMIUM GLASSMORPHIC FLOATING NAVIGATION BAR
   ========================================================================== */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 200;
  height: auto;
  background: transparent;
  display: flex;
  align-items: flex-start;
  padding: 0;
  transition: top 0.3s, background 0.3s, box-shadow 0.3s, padding 0.3s;
  pointer-events: none;
}

.nav.is-scrolled {
  top: 10px;
  background: transparent;
  padding: 0;
  height: auto;
  align-items: flex-start;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  margin: 0 auto;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  border: 1px solid rgba(12, 43, 21, 0.05);
}

.nav.is-scrolled .nav__inner {
  padding: 6px 12px;
  box-shadow: 0 10px 22px rgba(12, 43, 21, 0.10);
  background: rgba(255, 255, 255, 0.94);
}

.nav__logo-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border-radius: 0;
  padding: 8px;
  box-shadow: none;
  transition: gap 0.3s ease, padding 0.3s ease;
}

.nav.is-scrolled .nav__logo-pill {
  gap: 8px;
  padding: 6px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  color: var(--midnight-green);
}

.nav__logo img {
  display: block;
  width: auto;
  height: 20px;
  transition: height 0.3s ease;
}

.nav.is-scrolled .nav__logo img {
  height: 16px;
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav__mobile-toggle svg rect {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  transform-origin: 9px 7px;
}

.nav__mobile-toggle.is-open svg rect:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__mobile-toggle.is-open svg rect:nth-child(2) {
  opacity: 0;
}

.nav__mobile-toggle.is-open svg rect:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav__right-pill {
  display: flex;
  align-items: center;
  gap: 28px;
  background: transparent;
  padding: 8px 10px 8px 26px;
  transition: gap 0.3s ease, padding 0.3s ease;
}

.nav.is-scrolled .nav__right-pill {
  gap: 18px;
  padding: 4px 8px 4px 18px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  transition: gap 0.3s ease;
}

.nav.is-scrolled .nav__links {
  gap: 18px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--midnight-green);
}

.nav__btn {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent-200);
  color: var(--black);
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  border: none;
  transition: padding 0.3s ease, background 0.2s ease, transform 0.1s ease;
  display: inline-block;
  white-space: nowrap;
}

.nav.is-scrolled .nav__btn {
  padding: 8px 18px;
}

.nav__btn:hover {
  background: var(--accent-300);
}

.nav__btn:active {
  transform: scale(0.98);
}

@media (max-width: 960px) {
  .nav__links {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 66px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(12, 43, 21, 0.15);
    border: 1px solid rgba(12, 43, 21, 0.08);
    gap: 18px;
    align-items: stretch;
    pointer-events: auto;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links .nav__link {
    font-size: 15px;
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav__links .nav__link:last-child {
    border-bottom: none;
  }

  .nav__right-pill {
    padding: 8px;
    gap: 12px;
  }

  .nav__mobile-toggle {
    display: block;
  }

  .nav.is-scrolled .nav__links {
    top: 58px;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn--primary {
  background: var(--accent-200);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--accent-300);
}

.btn--secondary {
  border-color: rgba(12, 43, 21, 0.18);
  color: var(--midnight-green);
  background: transparent;
}

.btn--secondary:hover {
  border-color: rgba(12, 43, 21, 0.35);
  background: rgba(12, 43, 21, 0.04);
}

.btn-lime {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent-200);
  color: var(--black);
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: none;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 12px rgba(12, 43, 21, 0.05);
}

.btn-lime:hover {
  background: var(--accent-300);
  transform: translateY(-1.5px);
  box-shadow: 0 8px 24px rgba(150, 248, 120, 0.25);
}

.btn-lime:active {
  transform: translateY(0) scale(0.97);
}

.btn-outline {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--midnight-green);
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--midnight-green);
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-align: center;
}

.btn-outline:hover {
  background: var(--midnight-green);
  color: var(--white);
  transform: translateY(-1.5px);
  box-shadow: 0 8px 20px rgba(12, 43, 21, 0.15);
}

.btn-outline:active {
  transform: translateY(0) scale(0.97);
}

.btn-outline-dark {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 30px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-align: center;
}

.btn-outline-dark:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  transform: translateY(-1.5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-outline-dark:active {
  transform: translateY(0) scale(0.97);
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
/* Cinematic full-bleed hero */
.hero {
  background: #ccedc7;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero>.wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.22) 0%, transparent 30%),
    linear-gradient(to top, rgba(255, 255, 255, 0.22) 0%, transparent 30%),
    linear-gradient(to right, rgba(255, 255, 255, 0.52) 0%, transparent 62%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 860px;
}

.hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--midnight-green);
  margin-bottom: 28px;
}

.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 500;
  line-height: 1.02;
  color: var(--midnight-green);
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.hero__sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 640px;
  margin-bottom: 12px;
}

.hero__sub2 {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-500);
  max-width: 600px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}

.hero__creds {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(12, 43, 21, 0.46);
}

@media (max-width: 768px) {
  .hero__content {
    padding: 120px 0 64px;
  }

  .hero__h1 {
    font-size: clamp(40px, 10vw, 64px);
  }

  .hero__sub {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding: 100px 0 56px;
  }
}

/* Page Hero for Subpages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 84px;
  background: linear-gradient(135deg, #f2f8ee 0%, #f8f6f2 45%, #ffffff 100%);
}

.page-hero--dark {
  background: linear-gradient(145deg, #08140d 0%, #0f2417 60%, #153723 100%);
  color: var(--white);
  padding: 156px 0 96px;
}

.page-hero--dark .eyebrow,
.page-hero--dark .lead {
  color: rgba(255, 255, 255, 0.74);
}

.page-hero--dark .btn--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.page-hero--dark .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.46);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-500);
}

.page-hero--dark .eyebrow {
  color: var(--accent-200);
}

/* Typography elements */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  letter-spacing: -0.025em;
  color: var(--midnight-green);
  margin: 0;
}

.page-hero--dark h1,
.page-hero--dark h2,
.page-hero--dark h3,
.section--dark h2,
.section--dark h3,
.section--dark .section__eyebrow,
.section--dark p,
.section--dark li {
  color: var(--white);
}

h1 {
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.05;
  max-width: 1200px;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

h3 {
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.18;
}

.lead {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 700px;
}

.page-hero--dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero__actions,
.section__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* Metrics row on Subpage Hero */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.metric-strip__item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 43, 21, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.page-hero--dark .metric-strip__item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.metric-strip__value {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
  color: var(--midnight-green);
}

.page-hero--dark .metric-strip__value {
  color: var(--white);
}

.metric-strip__label {
  font-size: 13px;
  color: var(--gray-500);
}

.page-hero--dark .metric-strip__label {
  color: rgba(255, 255, 255, 0.5);
}

/* Dedicated Trust & Credibility Bar (Dark Transition) */
.trust-bar {
  background: var(--midnight-green);
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-bar__item:first-child {
  padding-left: 0;
  border-left: none;
}

.trust-bar__value {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--accent-200);
  line-height: 1;
}

.trust-bar__label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 290px;
}

.trust-bar__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 40px 0 32px;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-bar__logo-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-bar__logo-list {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar__logo-item {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.trust-bar__logo-item:hover {
  color: var(--black);
  background: var(--accent-200);
  border-color: var(--accent-200);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 40px 0;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-bar__item {
    padding-left: 0;
    border-left: none;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-bar__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .trust-bar__logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .trust-bar__logo-list {
    gap: 20px 24px;
  }

  .trust-bar__logo-item {
    font-size: 12px;
  }

  .trust-bar__divider {
    margin: 32px 0 24px;
  }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.sec {
  padding: 112px 0;
}

.sec--cream {
  background: var(--neutral-200);
}

.sec--green {
  background: #E3FDDB;
}

.sec--dark {
  background: var(--midnight-green);
}

.sec--white {
  background: var(--white);
}

.section {
  padding: 90px 0;
}

.section--alt {
  background: var(--neutral-100);
}

.section--dark {
  background: var(--midnight-green);
}

.sec-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 28px;
}

.sec-tag--light {
  color: rgba(150, 248, 120, 0.85);
}

.sec-h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 400;
  color: var(--midnight-green);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.sec-h2--light {
  color: var(--white);
}

.sec-h2--xl {
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.sec-body {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--gray-700);
}

.sec-body--light {
  color: rgba(255, 255, 255, 0.68);
}

.section__header {
  max-width: 760px;
  margin-bottom: 48px;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-500);
}

.section--dark .section__eyebrow {
  color: rgba(150, 248, 120, 0.88);
}

.section__intro {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 700px;
}

.section--dark .section__intro {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   WHAT FLOGES DOES SPLIT LAYOUT
   ========================================================================== */
.intro-sec {
  background: var(--neutral-100);
  border-bottom: 1px solid var(--neutral-300);
  overflow: hidden;
}

.intro-sec__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.intro-sec__text-col {
  padding: 88px 72px 88px max(var(--page-gutter), calc((100vw - var(--page-max)) / 2 + var(--page-gutter)));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-sec__img-col {
  overflow: hidden;
  position: relative;
}

.intro-sec__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-sec__img-col:hover img {
  transform: scale(1.03);
}

.intro-sec__inner {
  max-width: 560px;
}

.intro-sec__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 28px;
  display: block;
}

.intro-sec__text {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.62;
  color: var(--midnight-green);
  letter-spacing: -0.01em;
}

.intro-sec__body {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  font-family: var(--font-sans);
  margin-bottom: 24px;
}

/* ==========================================================================
   BOTTLENECKS GRAPHIC SECTION (CINEMATIC)
   ========================================================================== */
.sec--bn-bcg {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Photographic background with strong overlay */
.sec--bn-bcg .bn__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sec--bn-bcg .bn__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.08);
  transition: transform 12s ease-out;
}

.sec--bn-bcg.is-visible .bn__bg img {
  transform: scale(1.0);
}

.sec--bn-bcg .bn__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 32, 26, 0.9);
}

.bn__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0;
}

.bn__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}

.bn__left {
  position: sticky;
  top: calc(var(--nav-h) + 60px);
}

.bn__left-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-200);
  display: block;
  margin-bottom: 24px;
  opacity: 0.8;
}

.bn__left .sec-h2 {
  color: var(--white);
  font-size: clamp(38px, 4.5vw, 64px);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.05;
}

.bn__left-rule {
  width: 0;
  height: 2px;
  background: var(--accent-200);
  display: block;
  margin-top: 40px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.sec--bn-bcg.is-visible .bn__left-rule {
  width: 56px;
}

.bn__left-note {
  margin-top: 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.7;
  font-style: italic;
  max-width: 260px;
}

/* Stat strip in left col */
.bn__stat-strip {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bn__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bn__stat-n {
  font-family: var(--font-headline);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.bn__stat-n .accent {
  color: var(--accent-200);
}

.bn__stat-l {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.bn__right {
  padding-top: 6px;
}

.bn__intro {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-200);
  margin-bottom: 36px;
  opacity: 0.75;
}

.bn__list {
  display: grid;
  gap: 0;
}

.bn__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.bn__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: var(--accent-200);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bn__item:hover::after {
  transform: scaleX(1);
}

.bn__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bn__item-idx {
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 400;
  color: rgba(150, 248, 120, 0.5);
  letter-spacing: 0.06em;
}

.bn__dot {
  display: none;
}

.bn__item-text {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  letter-spacing: 0.01em;
  transition: color 0.25s;
}

.bn__item:hover .bn__item-text {
  color: var(--white);
}

.bn__close {
  margin-top: 48px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  line-height: 1.75;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   PROBLEM STATEMENT LAYOUT
   ========================================================================== */
.prob-stmt {
  background: var(--white);
  overflow: hidden;
}

.prob-stmt__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.prob-stmt__text-col {
  padding: 112px 72px 112px max(var(--page-gutter), calc((100vw - var(--page-max)) / 2 + var(--page-gutter)));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 860px) {
  .intro-sec__split {
    grid-template-columns: 1fr;
  }

  .intro-sec__text-col {
    padding: 64px var(--page-gutter);
  }

  .intro-sec__img-col {
    height: 300px;
    order: -1;
  }

  .prob-stmt__split {
    grid-template-columns: 1fr;
  }

  .prob-stmt__text-col {
    padding: 64px var(--page-gutter);
  }

  .prob-stmt__img-col {
    height: 260px;
  }
}

.prob-stmt__img-col {
  overflow: hidden;
  position: relative;
}

.prob-stmt__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.prob-stmt__inner {
  max-width: 520px;
}

.prob-stmt__tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 36px;
}

.prob-stmt__h2 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.4vw, 76px);
  font-weight: 400;
  color: var(--midnight-green);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 40px;
}

.prob-stmt__body {
  font-size: 19px;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 640px;
}

.prob-stmt__body+.prob-stmt__body {
  margin-top: 18px;
}

/* ==========================================================================
   IMMERSIVE CARDS & AMBIENT VALUE SECTIONS
   ========================================================================== */
.sec--va-dark {
  background: #0a1a0f;
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

.sec--va-dark::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(150, 248, 120, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.va__hdr {
  margin-bottom: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 36px;
  position: relative;
  z-index: 1;
}

.va__hdr .sec-h2 {
  margin-top: 0;
  max-width: 540px;
  color: var(--white);
}

.va__hdr-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  max-width: 220px;
  text-align: right;
  line-height: 1.65;
  flex-shrink: 0;
}

.va__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* Card image overlay box */
.va__item {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: default;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.va__item-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.va__item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease-out;
}

.va__item:hover .va__item-photo img {
  transform: scale(1.03);
}

.va__item-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
      rgba(10, 26, 15, 0.97) 0%,
      rgba(10, 26, 15, 0.72) 45%,
      rgba(10, 26, 15, 0.22) 100%);
  transition: background 0.4s;
}

.va__item:hover .va__item-overlay {
  background: linear-gradient(to top,
      rgba(10, 26, 15, 0.98) 0%,
      rgba(10, 26, 15, 0.82) 52%,
      rgba(10, 26, 15, 0.38) 100%);
}

.va__item-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px 38px;
}

.va__num {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 400;
  color: var(--accent-200);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  opacity: 0.7;
}

.va__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.va__body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.6;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  opacity: 1;
}

.va__item:hover .va__body {
  max-height: 120px;
  opacity: 1;
}

.va__item-rule {
  width: 20px;
  height: 2px;
  background: var(--accent-200);
  display: block;
  margin-top: 16px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.va__item:hover .va__item-rule {
  width: 40px;
}

.va__item-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(150, 248, 120, 0.1);
  border: 1px solid rgba(150, 248, 120, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.va__item:hover .va__item-tag {
  background: rgba(150, 248, 120, 0.18);
  border-color: rgba(150, 248, 120, 0.5);
}

.va__item-tag svg {
  width: 14px;
  height: 14px;
  color: var(--accent-200);
}

.va__close {
  margin-top: 48px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .va__list {
    grid-template-columns: 1fr 1fr;
  }

  .va__item,
  .va__item:last-child {
    height: 260px;
    grid-column: auto !important;
  }

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

  .va__hdr-note {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .va__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .va__list {
    grid-template-columns: 1fr;
  }

  .va__item,
  .va__item:last-child {
    height: 280px;
    grid-column: auto !important;
  }

  .va__body {
    max-height: 80px;
    opacity: 1;
  }

  .sec--va-dark {
    padding: 80px 0;
  }
}

/* ==========================================================================
   THE METHOD (HORIZONTAL STEPS & TIMELINE)
   ========================================================================== */
.method__hdr {
  text-align: center;
  margin-bottom: 80px;
}

.method__hdr .sec-tag {
  display: block;
}

.method__hdr .sec-h2 {
  margin-top: 18px;
}

.method__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.method__steps::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gray-300);
}

.method__step {
  text-align: center;
  padding: 0 20px;
}

.method__num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--midnight-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  transition: background 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.method__step:hover .method__num {
  background: var(--green-500);
}

.method__verb {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--midnight-green);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.method__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--gray-700);
}

@media (max-width: 768px) {
  .method__steps {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }

  .method__steps::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .method__steps {
    grid-template-columns: 1fr;
    gap: 36px 0;
  }
}

/* ==========================================================================
   STANDARD CARDS & GRID COMPONENTS
   ========================================================================== */
.card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(12, 43, 21, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(12, 43, 21, 0.12);
}

.card--soft {
  background: var(--neutral-100);
  border-color: transparent;
  box-shadow: none;
}

.card--soft:hover {
  transform: none;
  box-shadow: none;
}

.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: var(--white);
}

.card--dark:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.card__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-500);
}

.card--dark .card__eyebrow {
  color: var(--accent-200);
}

.card__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}

.card__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
}

.card--dark .card__body {
  color: rgba(255, 255, 255, 0.7);
}

.card__body+.card__body {
  margin-top: 12px;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--midnight-green);
  transition: gap 0.2s ease;
}

.card__link:hover {
  gap: 12px;
}

.card--dark .card__link {
  color: var(--accent-200);
}

/* ==========================================================================
   FOCUS AREAS STYLING (LANE CARDS)
   ========================================================================== */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.focus-card {
  position: relative;
  padding: 48px 40px;
  background: var(--white);
  border: 1px solid rgba(12, 43, 21, 0.08);
  border-radius: var(--radius-lg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.focus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.focus-card:hover::before {
  transform: scaleX(1);
}

.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(12, 43, 21, 0.08);
  border-color: rgba(12, 43, 21, 0.15);
}

.focus-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(12, 43, 21, 0.04);
  color: var(--midnight-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.focus-card__icon svg {
  width: 24px;
  height: 24px;
}

.focus-card:hover .focus-card__icon {
  background: var(--midnight-green);
  color: var(--accent-200);
  transform: scale(1.05);
}

.focus-card__lane {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 16px;
  display: block;
}

.focus-card__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.18;
  color: var(--midnight-green);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.focus-card__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 32px;
  flex-grow: 1;
}

.focus-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--midnight-green);
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}

.focus-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.focus-card:hover .focus-card__link {
  color: var(--green-400);
  gap: 12px;
}

.focus-card:hover .focus-card__link svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .focus-card {
    padding: 36px 28px;
  }
}

/* ==========================================================================
   SERVICES GRID-FREE LIST & ROWS
   ========================================================================= */
.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1.5px solid var(--midnight-green);
  margin-top: 40px;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1.5fr 1.8fr 180px;
  gap: 32px;
  padding: 44px 24px;
  border-bottom: 1.5px solid rgba(12, 43, 21, 0.12);
  align-items: center;
  position: relative;
  transition: background 0.35s ease, padding 0.35s ease;
  cursor: pointer;
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-300);
  transform: scaleY(0);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row:hover {
  background: rgba(12, 43, 21, 0.02);
  padding-left: 36px;
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-row__num {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 500;
  color: var(--green-500);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.service-row:hover .service-row__num {
  opacity: 1;
}

.service-row__title-sec {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-row__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(12, 43, 21, 0.04);
  color: var(--midnight-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.service-row__icon svg {
  width: 20px;
  height: 20px;
}

.service-row:hover .service-row__icon {
  background: var(--midnight-green);
  color: var(--accent-200);
  transform: scale(1.05);
}

.service-row__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--midnight-green);
  letter-spacing: -0.015em;
}

.service-row__body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 480px;
}

.service-row__action {
  text-align: right;
}

.service-row__link {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(12, 43, 21, 0.15);
  color: var(--midnight-green);
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.service-row__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-row:hover .service-row__link {
  background: var(--midnight-green);
  border-color: var(--midnight-green);
  color: var(--accent-200);
  transform: scale(1.05);
}

.service-row:hover .service-row__link svg {
  transform: translateX(2px) scale(1.1);
}

@media (max-width: 1024px) {
  .service-row {
    grid-template-columns: 60px 1.2fr 1.5fr auto;
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .service-row {
    grid-template-columns: 50px 1fr auto;
    padding: 32px 16px;
    gap: 20px;
  }

  .service-row__body {
    grid-column: 2 / span 2;
    margin-top: 8px;
    max-width: 100%;
  }

  .service-row__action {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 540px) {
  .service-row {
    grid-template-columns: 1fr auto;
    padding: 24px 12px;
    gap: 16px;
  }

  .service-row__num {
    display: none;
  }

  .service-row__body {
    grid-column: 1 / span 2;
  }

  .service-row__action {
    grid-column: 2;
  }
}

/* ==========================================================================
   PROOF GRID & CASE CARDS
   ========================================================================== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

.proof-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 43, 21, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(12, 43, 21, 0.12);
}

.proof-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(12, 43, 21, 0.04);
  border: 1px solid rgba(12, 43, 21, 0.08);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--logo-green);
  text-transform: uppercase;
}

.proof-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.proof-card__section {
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}

.proof-card__sec-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-500);
  margin-bottom: 6px;
}

.proof-card__sec-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

.proof-card__sec-text strong {
  color: var(--midnight-green);
}

/* Immersive background proof details */
.proof-sec {
  background: var(--midnight-green);
  padding: 108px 0;
  position: relative;
  overflow: hidden;
}

.proof-sec__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.proof-sec__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.08;
  display: block;
}

.proof-sec>.wrap {
  position: relative;
  z-index: 1;
}

.proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.proof__tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(150, 248, 120, 0.82);
  margin-bottom: 32px;
}

.proof__h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.proof__body {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
}

.proof__quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  border-left: 3px solid var(--accent-200);
  padding-left: 28px;
  margin-bottom: 28px;
}

.proof__attr {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  padding-left: 31px;
  letter-spacing: 0.02em;
}

.proof__attr strong {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

/* Outcomes checklist grid */
.oc__hdr {
  margin-bottom: 52px;
}

.oc__hdr .sec-h2 {
  margin-top: 18px;
}

.oc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--neutral-300);
}

.oc__item {
  padding: 40px 44px;
  background: var(--white);
  border-top: 3px solid var(--accent-200);
}

.oc__text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--midnight-green);
  line-height: 1.58;
}

/* ==========================================================================
   ENGAGEMENT CARD SLITS (3 TIERS)
   ========================================================================== */
.eng3__feature-img {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.eng3__feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

.eng3__feature-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--neutral-200) 0%, transparent 100%);
}

.eng3__body-wrap {
  padding-top: 72px;
  padding-bottom: 112px;
}

.eng3__hdr {
  margin-bottom: 56px;
  max-width: 640px;
}

.eng3__hdr .sec-h2 {
  margin-top: 18px;
}

.eng3__note {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 12px;
}

.eng3__list {
  display: grid;
  gap: 0;
}

.eng3__item {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--neutral-300);
  align-items: start;
}

.eng3__item:first-child {
  border-top: 1px solid var(--neutral-300);
}

.eng3__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.eng3__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--midnight-green);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.eng3__body {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.68;
  padding-top: 2px;
}

.eng3__cta {
  padding-top: 2px;
}

.eng3__link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--midnight-green);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: gap 0.2s;
}

.eng3__link:hover {
  gap: 14px;
}

.eng3__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.eng3__footer {
  margin-top: 36px;
  font-size: 15px;
  color: var(--gray-500);
  font-style: italic;
}

/* ==========================================================================
   WHY CHOOSE FLOGES (DRAMATIC SPLIT)
   ========================================================================== */
.sec--why {
  background: var(--white);
  overflow: hidden;
  padding: 0;
}

.why__split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 100vh;
  align-items: stretch;
}

.why__photo-col {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.why__photo-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 10s ease-out;
}

.sec--why.is-visible .why__photo-col img {
  transform: scale(1.0);
}

.why__photo-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(12, 43, 21, 0.84) 0%,
      rgba(12, 43, 21, 0.6) 60%,
      rgba(12, 43, 21, 0.78) 100%);
}

.why__photo-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 56px;
}

.why__photo-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-200);
  opacity: 0.8;
  margin-bottom: 20px;
  display: block;
}

.why__photo-h {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.why__photo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

.why__photo-stat {
  padding: 24px 28px 20px 0;
}

.why__photo-stat+.why__photo-stat {
  padding-left: 28px;
}

.why__ps-n {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.why__ps-n .acc {
  color: var(--accent-200);
}

.why__ps-l {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.why__content-col {
  padding: 100px 80px 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.why__hdr {
  margin-bottom: 52px;
  max-width: 580px;
  padding-bottom: 0;
  border-bottom: none;
}

.why__hdr .sec-tag {
  color: var(--green-500);
}

.why__hdr .sec-h2 {
  margin-top: 16px;
}

.why__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
}

.why__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--neutral-300);
  position: relative;
  background: transparent;
  transition: background 0.2s;
}

.why__item:last-child {
  border-bottom: 1px solid var(--neutral-300);
}

.why__item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-200);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why__item:hover::before {
  width: 100%;
}

.why__item-num {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 400;
  color: var(--neutral-300);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 2px;
  transition: color 0.3s;
}

.why__item:hover .why__item-num {
  color: var(--accent-300);
}

.why__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  padding-top: 4px;
  font-weight: 400;
}

/* ==========================================================================
   DATA & SECURITY TRUST SECTION
   ========================================================================== */
.trust-sec {
  background: var(--midnight-green);
  padding: 100px 0;
}

.trust-sec__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-sec__tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(150, 248, 120, 0.82);
  margin-bottom: 28px;
}

.trust-sec__h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.trust-sec__body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.trust-sec__right {
  display: grid;
  gap: 24px;
}

.trust-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.trust-item__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-200);
  margin-bottom: 8px;
}

.trust-item__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ==========================================================================
   EDITORIAL STATS STRIP BANNER
   ========================================================================== */
.editorial-banner {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.editorial-banner__bg {
  position: absolute;
  inset: 0;
}

.editorial-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.editorial-banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 43, 21, 0.94) 0%, rgba(12, 43, 21, 0.72) 52%, rgba(12, 43, 21, 0.44) 100%);
}

.editorial-banner__content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.editorial-banner__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-200);
  margin-bottom: 28px;
  display: block;
}

.editorial-banner__quote {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 600px;
  margin-bottom: 52px;
}

.editorial-banner__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 32px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__n {
  font-family: var(--font-serif);
  font-size: clamp(38px, 3.8vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.stat-item__l {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .editorial-banner__stats {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .stat-item {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    padding-right: 32px;
  }
}

@media (max-width: 480px) {
  .editorial-banner__stats {
    grid-template-columns: 1fr;
  }

  .stat-item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
}

/* ==========================================================================
   WHO WE WORK WITH (INDUSTRY SECTOR CARDS)
   ========================================================================== */
.ind__hdr {
  margin-bottom: 52px;
}

.ind__hdr .sec-h2 {
  margin-top: 18px;
}

.ind__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.ind-card {
  background: var(--neutral-200);
  border-top: 3px solid var(--midnight-green);
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.ind-card:hover {
  transform: translateY(-2px);
}

.ind-card__img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.ind-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.ind-card:hover .ind-card__img img {
  transform: scale(1.05);
}

.ind-card__body {
  padding: 28px;
}

.ind-card__name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--midnight-green);
  margin-bottom: 8px;
  line-height: 1.2;
}

.ind-card__detail {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.62;
}

@media (max-width: 1000px) {
  .ind__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .ind__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team__hdr {
  margin-bottom: 56px;
}

.team__hdr .sec-h2 {
  margin-top: 18px;
}

.team__sub {
  margin-top: 14px;
  font-size: 17px;
  color: var(--gray-700);
  max-width: 480px;
  line-height: 1.65;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--neutral-100);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 43, 21, 0.05);
}

.team-card__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--neutral-300);
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--midnight-green);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.team-card__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-500);
  margin-bottom: 14px;
}

.team-card__bio {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray-700);
}

@media (max-width: 768px) {
  .team__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ & ACCORDIONS
   ========================================================================== */
.faq__hdr {
  margin-bottom: 48px;
}

.faq__hdr .sec-h2 {
  margin-top: 18px;
}

.faq__wrap {
  max-width: 720px;
}

.faq-row {
  border-top: 1px solid var(--gray-300);
}

.faq-row:last-child {
  border-bottom: 1px solid var(--gray-300);
}

.faq-row__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
}

.faq-row__q {
  font-size: 17px;
  font-weight: 600;
  color: var(--midnight-green);
  line-height: 1.4;
}

.faq-row__ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--midnight-green);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-row.is-open .faq-row__ico {
  transform: rotate(45deg);
}

.faq-row__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-row.is-open .faq-row__panel {
  max-height: 260px;
}

.faq-row__ans {
  padding: 0 0 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--gray-700);
  max-width: 580px;
}

/* ==========================================================================
   CLOSING CTA BAND & SECTION
   ========================================================================== */
.cta-section {
  background: var(--midnight-green);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(150, 248, 120, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
}

.cta-section__h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.12;
  max-width: 620px;
  margin: 0 auto 24px;
}

.cta-section__body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px;
  margin: 0 auto 48px;
}

.cta-section__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band {
  padding: 84px 0;
  background: linear-gradient(145deg, #0c2b15 0%, #143723 100%);
  color: var(--white);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-band__copy p {
  margin: 18px 0 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band__copy h2 {
  color: var(--white);
}

.cta-band--light {
  background: linear-gradient(180deg, #F3F7F2 0%, #E9EFE7 100%);
  border-top: 1px solid rgba(12, 43, 21, 0.08);
  border-bottom: 1px solid rgba(12, 43, 21, 0.08);
  color: var(--midnight-green);
}

.cta-band--light .cta-band__copy h2 {
  color: var(--midnight-green);
}

.cta-band--light .cta-band__copy p {
  color: var(--gray-700);
}

@media (max-width: 860px) {
  .cta-band__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-band .section__actions {
    justify-content: center;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 36px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 52px;
  gap: 40px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.footer__tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  max-width: 260px;
  line-height: 1.6;
}

.footer__cols {
  display: flex;
  gap: 60px;
}

.footer__col-hdr {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 16px;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer__col-link:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 26px;
  gap: 16px;
}

.footer__legal {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.26);
}

.footer__contact {
  font-size: 13px;
  font-weight: 400;
  color: var(--accent-200);
  transition: color 0.2s;
}

.footer__contact:hover {
  color: var(--accent-300);
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .footer__cols {
    gap: 32px;
    flex-wrap: wrap;
  }

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

/* ==========================================================================
   SCROLL REVEALS & KEYFRAME EFFECTS
   ========================================================================== */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.rv-d1 {
  transition-delay: 0.12s;
}

.rv-d2 {
  transition-delay: 0.24s;
}

.rv-d3 {
  transition-delay: 0.36s;
}

/* Staggers */
.bn__item {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s;
}

.sec--bn-bcg.is-visible .bn__item {
  opacity: 1;
  transform: translateX(0);
}

.bn__item:nth-child(1) {
  transition-delay: 0.15s;
}

.bn__item:nth-child(2) {
  transition-delay: 0.25s;
}

.bn__item:nth-child(3) {
  transition-delay: 0.35s;
}

.bn__item:nth-child(4) {
  transition-delay: 0.45s;
}

.bn__item:nth-child(5) {
  transition-delay: 0.55s;
}

.bn__item:nth-child(6) {
  transition-delay: 0.65s;
}

@media (max-width: 960px) {
  .bn__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .bn__left {
    position: static;
  }

  .bn__stat-strip {
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
  }

  .bn__inner {
    padding: 100px 0;
  }
}

@media (max-width: 540px) {
  .bn__inner {
    padding: 80px 0;
  }

  .bn__item-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .proof__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .why__split {
    grid-template-columns: 1fr;
  }

  .why__photo-col {
    min-height: 400px;
  }

  .why__content-col {
    padding: 64px var(--page-gutter);
  }
}

@media (max-width: 540px) {
  .why__photo-inner {
    padding: 40px var(--page-gutter);
  }

  .why__photo-stats {
    grid-template-columns: 1fr;
  }

  .why__photo-stat {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .why__photo-stat:last-child {
    border-bottom: none;
  }

  .why__photo-stat+.why__photo-stat {
    padding-left: 0;
  }
}

.why__item {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
}

.why__item.in {
  opacity: 1;
  transform: translateX(0);
}

.va__item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.va__item.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .rv,
  .bn__item,
  .why__item,
  .va__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   SERVICES REDESIGN (BCG CONSULTING STYLE UTILITIES)
   ========================================================================== */

/* 1. Page Hero Split */
.page-hero__split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.page-hero__image-col {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 43, 21, 0.08);
  aspect-ratio: 21/9;
}

.page-hero__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__image-col::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(150, 248, 120, 0.15) 0%, rgba(12, 43, 21, 0.05) 100%);
  pointer-events: none;
  z-index: 2;
}

/* 2. Lanes Comparative Grid */
.lanes-comparative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.lane-card {
  background: var(--white);
  border: 1px solid rgba(12, 43, 21, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 43, 21, 0.02);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.lane-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(12, 43, 21, 0.06);
}

.lane-card__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: var(--neutral-100);
}

.lane-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lane-card__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(150, 248, 120, 0.14) 0%, rgba(12, 43, 21, 0.04) 100%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.lane-card:hover .lane-card__image img {
  transform: scale(1.05);
}

.lane-card:hover .lane-card__image::after {
  background: linear-gradient(135deg, rgba(150, 248, 120, 0.18) 0%, rgba(12, 43, 21, 0.02) 100%);
}

.lane-card__content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: var(--neutral-100);
}

.lane-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 12px;
}

.lane-card__title {
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--midnight-green);
  margin-bottom: 16px;
  line-height: 1.2;
}

.lane-card__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.lane-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lane-card__list-item {
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lane-card__list-item svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--green-500);
}

/* 3. Services Slides Matrix */
.services-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(12, 43, 21, 0.08);
  border-left: 1px solid rgba(12, 43, 21, 0.08);
  margin-top: 48px;
}

.services-matrix__item {
  border-right: 1px solid rgba(12, 43, 21, 0.08);
  border-bottom: 1px solid rgba(12, 43, 21, 0.08);
  padding: 48px;
  background: var(--white);
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.services-matrix__item:hover {
  background: var(--neutral-100);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(12, 43, 21, 0.04);
  z-index: 2;
}

.services-matrix__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(150, 248, 120, 0.12);
  color: var(--midnight-green);
  border-radius: 12px;
  margin-bottom: 24px;
  transition: background 0.2s, color 0.2s;
}

.services-matrix__item:hover .services-matrix__icon {
  background: var(--midnight-green);
  color: var(--accent-200);
}

.services-matrix__title {
  font-size: 20px;
  color: var(--midnight-green);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.services-matrix__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
  flex-grow: 1;
}

.services-matrix__link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-500);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, text-decoration 0.2s;
}

.services-matrix__link svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-matrix__link:hover {
  color: var(--midnight-green) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.services-matrix__link:hover svg {
  transform: translateX(6px) !important;
}

.services-matrix__item:hover .services-matrix__link {
  color: var(--midnight-green);
}

.services-matrix__item:hover .services-matrix__link svg {
  transform: translateX(3px);
}

/* 4. Problems Matrix (2x2) */
.problems-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(12, 43, 21, 0.08);
  border-left: 1px solid rgba(12, 43, 21, 0.08);
  margin-top: 48px;
}

.problems-matrix__cell {
  border-right: 1px solid rgba(12, 43, 21, 0.08);
  border-bottom: 1px solid rgba(12, 43, 21, 0.08);
  padding: 48px;
  background: var(--white);
  transition: background 0.3s ease;
}

.problems-matrix__cell:hover {
  background: var(--neutral-100);
}

.problems-matrix__title {
  font-size: 20px;
  color: var(--midnight-green);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.problems-matrix__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .page-hero__image-col {
    max-width: 100%;
    aspect-ratio: 16/9;
  }

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

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lanes-comparative {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lane-card__content {
    padding: 32px;
  }

  .lane-card__image {
    height: 240px;
  }
}

@media (max-width: 680px) {
  .services-matrix {
    grid-template-columns: 1fr;
  }

  .services-matrix__item {
    padding: 36px;
  }

  .problems-matrix {
    grid-template-columns: 1fr;
  }

  .problems-matrix__cell {
    padding: 36px;
  }
}

/* Quote Card Component (used in Why Floges etc) */
.quote-card {
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-card__text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  color: var(--white) !important;
}

.quote-card__meta {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66) !important;
}

@media (max-width: 768px) {
  .quote-card {
    padding: 30px;
  }
}