:root {
  --green-950: #033b35;
  --green-900: #064e45;
  --green-800: #0f766e;
  --green-700: #13867d;
  --green-100: #dceee9;
  --gold-700: #b97618;
  --gold-600: #ca8c20;
  --gold-500: #dc9d2d;
  --gold-200: #f3d48a;
  --gold-100: #fbe5ae;
  --cream: #f8f6ef;
  --cream-2: #fffcf4;
  --white: #ffffff;
  --ink: #12312d;
  --muted: #637973;
  --line: rgba(18, 49, 45, 0.12);
  --shadow-soft: 0 18px 48px rgba(3, 59, 53, 0.11);
  --shadow-premium: 0 30px 90px rgba(3, 59, 53, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(220, 157, 45, 0.14), transparent 32rem),
    var(--cream);
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-top: 10px;
  pointer-events: none;
  transition: padding 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 0;
  background: rgba(248, 246, 239, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(3, 59, 53, 0.08);
}

.topbar,
.nav-shell {
  pointer-events: auto;
}

.topbar {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto 8px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .topbar {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.nav-shell {
  width: min(1140px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  padding: 13px 16px 13px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(3, 59, 53, 0.18);
  backdrop-filter: blur(20px);
  transition: min-height 220ms ease, box-shadow 220ms ease, border-radius 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  min-height: 66px;
  box-shadow: none;
}

.brand img {
  width: 132px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-800), var(--gold-500));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent),
    linear-gradient(135deg, var(--green-900), var(--green-800));
  box-shadow: 0 16px 34px rgba(6, 78, 69, 0.25);
}

.button-secondary {
  color: #2f2207;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-500));
  box-shadow: 0 16px 32px rgba(202, 140, 32, 0.28);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.button svg,
.nav-cta svg,
.menu-toggle svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--white);
  background: var(--green-900);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
}

.hero-media,
.hero-overlay,
.hero-pulse {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/optimized/hero-research.webp");
  background-size: cover;
  background-position: center right;
  transform: scale(1.03);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 246, 239, 0.9) 0%, rgba(236, 242, 235, 0.74) 44%, rgba(6, 78, 69, 0.16) 100%),
    linear-gradient(180deg, rgba(6, 78, 69, 0.08), rgba(3, 59, 53, 0.18));
}

.hero-pulse {
  z-index: 2;
  pointer-events: none;
}

.hero-pulse-one {
  inset: auto auto 12% 7%;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(6, 78, 69, 0.12);
  border-radius: 50%;
}

.hero-pulse-two {
  inset: 22% 8% auto auto;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(220, 157, 45, 0.24);
  border-radius: 50%;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.58fr);
  gap: 72px;
  align-items: center;
  padding-top: 20px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(6, 78, 69, 0.12);
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(3, 59, 53, 0.08);
}

.section-kicker.light {
  color: var(--gold-100);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(43px, 5.7vw, 68px);
  line-height: 1;
  font-weight: 800;
}

.hero-copy {
  max-width: 690px;
  margin: 18px 0 0;
  color: #415d57;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-panel {
  position: relative;
  margin-top: 72px;
  padding: 26px;
  border: 1px solid rgba(6, 78, 69, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 252, 244, 0.88)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 90px rgba(3, 59, 53, 0.18);
  backdrop-filter: blur(14px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(6, 78, 69, 0.08);
  border-radius: 20px;
  pointer-events: none;
}

.hero-panel-brand {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  color: var(--green-900);
}

.hero-panel-brand img {
  width: 168px;
}

.hero-panel-brand span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-stats {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-stats div {
  padding: 18px 20px;
  border: 1px solid rgba(6, 78, 69, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 78, 69, 0.08), rgba(220, 157, 45, 0.08)),
    var(--white);
}

.hero-stats strong {
  color: var(--green-900);
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-panel-note {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 18px;
  padding: 17px;
  border-radius: var(--radius);
  color: var(--green-900);
  background:
    linear-gradient(135deg, rgba(251, 229, 174, 0.98), rgba(220, 157, 45, 0.58));
  box-shadow: inset 0 0 0 1px rgba(202, 140, 32, 0.2);
}

.hero-panel-note svg {
  width: 20px;
  height: 20px;
}

.hero-panel-note p {
  margin: 0;
  color: #45615b;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.intro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(220, 157, 45, 0.2), transparent 22rem),
    linear-gradient(180deg, var(--cream-2), var(--cream));
  color: var(--ink);
}

.intro-section::after,
.programs::before,
.faq-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 78, 69, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 78, 69, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, #000 0%, transparent 65%);
}

.intro-section::after {
  right: -140px;
  top: -180px;
  width: 560px;
  height: 560px;
}

.split-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
  gap: 84px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.confidence-content h2,
.faq-grid h2,
.contact-grid h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.03;
  font-weight: 800;
}

.section-copy p,
.section-heading p,
.confidence-content p,
.faq-intro,
.contact-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.confidence-content p,
.contact-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.mini-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(6, 78, 69, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
}

.mini-proof svg {
  width: 15px;
  height: 15px;
  color: var(--gold-600);
}

.logo-panel {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 52px;
  border: 1px solid rgba(6, 78, 69, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 244, 0.9));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(6, 78, 69, 0.08), transparent 32rem),
    var(--cream);
}

.services::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 50%;
  width: min(900px, 82vw);
  height: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 157, 45, 0.16), transparent 64%);
  pointer-events: none;
}

.services .section-heading {
  position: relative;
}

.services .section-heading h2 {
  color: var(--ink);
}

.services .section-heading p {
  color: var(--muted);
}
.hero-stats span {
  color: var(--muted);
}

.hero-panel-note {
  color: var(--green-900);
  background:
    linear-gradient(135deg, rgba(251, 229, 174, 0.98), rgba(220, 157, 45, 0.58));
  box-shadow: inset 0 0 0 1px rgba(202, 140, 32, 0.2);
}

.hero-panel-note p {
  color: #45615b;
}

.intro-section .section-copy p {
  color: var(--muted);
}

.services {
  background:
    radial-gradient(circle at 50% 0%, rgba(6, 78, 69, 0.08), transparent 32rem),
    var(--cream);
}

.services .section-heading h2 {
  color: var(--ink);
}

.services .section-heading p {
  color: var(--muted);
}

.hero-stats strong {
  display: block;
  font-size: 27px;
  line-height: 1;
}

.logo-panel-bg {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(6, 78, 69, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(220, 157, 45, 0.28), transparent 12rem),
    linear-gradient(135deg, rgba(6, 78, 69, 0.06), transparent);
}

.logo-panel img {
  position: relative;
  width: min(300px, 100%);
  z-index: 1;
}

.floating-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(6, 78, 69, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
  box-shadow: 0 16px 36px rgba(3, 59, 53, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.floating-note svg {
  width: 20px;
  height: 20px;
  color: var(--gold-600);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--green-950) 0, var(--green-950) 390px, var(--cream) 390px);
}

.services::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 50%;
  width: min(900px, 82vw);
  height: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 157, 45, 0.14), transparent 64%);
  pointer-events: none;
}

.services .section-heading {
  position: relative;
}

.services .section-heading h2 {
  color: var(--white);
}

.services .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  isolation: isolate;
  min-height: 380px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(18, 49, 45, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 255, 255, 0.98)),
    var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--green-800), var(--gold-500));
  z-index: -1;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(220, 157, 45, 0.14);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 157, 45, 0.5);
  box-shadow: 0 32px 70px rgba(3, 59, 53, 0.16);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(220, 157, 45, 0.16));
  box-shadow:
    inset 0 0 0 1px rgba(202, 140, 32, 0.28),
    0 14px 30px rgba(6, 78, 69, 0.08);
}

.service-icon svg {
  width: 34px;
  height: 34px;
  color: var(--green-900);
  stroke-width: 1.9;
}

.service-card h3,
.process-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.service-card p,
.process-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  min-height: 40px;
  margin-top: auto;
  padding: 0 15px 0 17px;
  color: var(--white);
  border-radius: 999px;
  background: var(--green-900);
  box-shadow: 0 12px 24px rgba(6, 78, 69, 0.18);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.service-card a:hover {
  transform: translateX(3px);
  background: var(--green-800);
}

.service-card a svg {
  width: 15px;
  height: 15px;
}

.featured-card {
  transform: translateY(-18px);
}

.featured-card:hover {
  transform: translateY(-26px);
}

.congress-service {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(220, 157, 45, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--cream), var(--cream-2));
}

.congress-service::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(6, 78, 69, 0.08);
  pointer-events: none;
}

.congress-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: 54px;
}

.congress-copy h2 {
  max-width: 640px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.congress-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.congress-highlights {
  display: grid;
  gap: 12px;
  margin: 30px 0 34px;
}

.congress-highlights span {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(6, 78, 69, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(3, 59, 53, 0.06);
}

.congress-highlights svg,
.congress-note svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--gold-600);
}

.congress-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(18, 49, 45, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 239, 0.95)),
    var(--white);
  box-shadow: var(--shadow-premium);
}

.congress-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--green-800), var(--gold-500));
}

.congress-panel-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.congress-panel-header > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(6, 78, 69, 0.1), rgba(220, 157, 45, 0.16));
  color: var(--green-900);
}

.congress-panel-header svg {
  width: 28px;
  height: 28px;
}

.congress-panel-header p {
  margin: 0 0 8px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.congress-panel-header h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 25px;
  line-height: 1.18;
}

.congress-steps {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.congress-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(6, 78, 69, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.82);
}

.congress-steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--green-900);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.congress-steps p {
  margin: 0;
  color: #45615b;
  font-size: 14px;
  line-height: 1.58;
}

.congress-includes {
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 78, 69, 0.96), rgba(3, 59, 53, 0.96));
  color: var(--white);
}

.congress-includes h4 {
  margin: 0 0 16px;
  font-size: 18px;
}

.congress-includes ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.congress-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.congress-includes svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--gold-500);
}

.congress-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  padding: 17px;
  border: 1px solid rgba(202, 140, 32, 0.22);
  border-radius: var(--radius);
  background: rgba(251, 229, 174, 0.34);
}

.congress-note p {
  margin: 0;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.advisory-block {
  position: relative;
  margin-top: 58px;
  padding: 34px;
  border: 1px solid rgba(18, 49, 45, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 252, 244, 0.78));
  box-shadow: var(--shadow-soft);
}

.advisory-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 26px;
}

.advisory-heading .section-kicker {
  margin-bottom: 0;
}

.advisory-heading h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 32px;
  line-height: 1.12;
}

.advisory-list {
  display: grid;
  gap: 12px;
}

.advisory-list article {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: stretch;
  min-height: 74px;
  overflow: hidden;
  border: 1px solid rgba(18, 49, 45, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.advisory-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 157, 45, 0.42);
  box-shadow: 0 18px 38px rgba(3, 59, 53, 0.1);
}

.advisory-list span {
  position: relative;
  display: grid;
  place-items: center;
  padding-left: 8px;
  color: var(--green-950);
  background: rgba(15, 118, 110, 0.28);
  font-size: 18px;
  font-weight: 900;
}

.advisory-list span::after {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  width: 48px;
  height: 100%;
  background: inherit;
  clip-path: polygon(0 0, 50% 50%, 0 100%);
}

.advisory-list article:nth-child(even) span {
  background: rgba(15, 118, 110, 0.48);
}

.advisory-list p {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 24px 18px 46px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
}

.process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(220, 157, 45, 0.18), transparent 24rem),
    linear-gradient(180deg, #eef5f1, #e8f1ed);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 78, 69, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 78, 69, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.process .container {
  position: relative;
}

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

.process-card {
  position: relative;
  min-height: 320px;
  padding: 40px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(3, 59, 53, 0.17);
}

.process-card span {
  position: absolute;
  right: 28px;
  top: 18px;
  font-size: 86px;
  line-height: 1;
  font-weight: 800;
  opacity: 0.14;
}

.process-card.dark {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, var(--green-900), var(--green-950));
}

.process-card.gold {
  color: #342706;
  border: 1px solid rgba(202, 140, 32, 0.25);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent),
    linear-gradient(135deg, var(--gold-100), var(--gold-500));
}

.process-card.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.process-card.gold p {
  color: rgba(52, 39, 6, 0.72);
}

.confidence-band {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 28%, rgba(220, 157, 45, 0.12), transparent 22rem),
    linear-gradient(90deg, rgba(3, 59, 53, 0.99) 0%, rgba(3, 59, 53, 0.94) 46%, rgba(3, 59, 53, 0.54) 100%),
    url("assets/optimized/confidence-team.webp") right center / auto 118% no-repeat,
    var(--green-950);
}

.confidence-band::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  pointer-events: none;
}

.confidence-band::after {
  content: "";
  position: absolute;
  right: 42%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(220, 157, 45, 0.36), transparent);
}

.confidence-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.68fr);
  align-items: center;
  gap: 46px;
}

.confidence-content div {
  max-width: 760px;
}

.confidence-content .button {
  width: fit-content;
  margin-top: 28px;
}

.confidence-research {
  position: relative;
  min-height: 310px;
  max-width: 500px;
  justify-self: center;
  width: 100%;
  transform: translate(118px, 68px);
}

.confidence-research::before,
.confidence-research::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(220, 157, 45, 0.22);
  border-radius: 999px;
}

.confidence-research::before {
  inset: 18px 24px 30px 90px;
}

.confidence-research::after {
  right: 76px;
  top: 54px;
  width: 170px;
  height: 170px;
  border-color: rgba(255, 255, 255, 0.13);
}

.research-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  color: var(--gold-500);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.research-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.research-icon.microscope {
  left: 42px;
  top: 28px;
}

.research-icon.file {
  right: 44px;
  top: 118px;
}

.research-icon.chart {
  left: 118px;
  bottom: 22px;
}

.research-line {
  position: absolute;
  left: 88px;
  right: 86px;
  top: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 157, 45, 0.46), transparent);
  transform: rotate(-14deg);
}

.programs {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 4%, rgba(220, 157, 45, 0.18), transparent 22rem),
    var(--cream);
}

.programs .container {
  width: min(1280px, calc(100% - 40px));
}

.programs::before {
  left: -130px;
  top: 40px;
  width: 460px;
  height: 460px;
}

.program-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: auto;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
  line-height: 0;
}

.program-card::after {
  display: none;
}

.program-card img {
  width: 100%;
  height: auto;
  border-radius: inherit;
  transition: transform 260ms ease;
}

.program-card span {
  display: none;
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 72px rgba(3, 59, 53, 0.18);
}

.program-card:hover img {
  transform: scale(1.025);
}

.program-card:hover::after {
  opacity: 0;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(6, 78, 69, 0.06), transparent 24rem),
    linear-gradient(180deg, var(--white), var(--cream-2));
}

.faq-section::before {
  right: -150px;
  bottom: -120px;
  width: 520px;
  height: 520px;
  opacity: 0.9;
  background-image:
    linear-gradient(rgba(6, 78, 69, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 78, 69, 0.045) 1px, transparent 1px);
}

.faq-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1fr);
  gap: 78px;
  align-items: center;
}

.quote-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(6, 78, 69, 0.1);
  box-shadow: 0 28px 72px rgba(3, 59, 53, 0.16);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 1;
}

.quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 59, 53, 0.34));
  pointer-events: none;
}

.quote-card img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
}

.quote-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 18px;
  color: var(--green-950);
  border: 1px solid rgba(202, 140, 32, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(251, 229, 174, 0.88));
  box-shadow: 0 18px 40px rgba(3, 59, 53, 0.14);
  backdrop-filter: blur(10px);
  font-size: 19px;
  line-height: 1.28;
  font-weight: 800;
}

.quote-card svg {
  width: 24px;
  height: 24px;
  color: var(--gold-600);
}

.faq-content .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(6, 78, 69, 0.12);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.76);
}

.faq-content h2 {
  max-width: 620px;
  font-size: clamp(34px, 4.1vw, 48px);
  line-height: 1.08;
}

.faq-intro {
  max-width: 680px;
}

.accordion {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--cream-2));
  box-shadow: 0 12px 28px rgba(18, 49, 45, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

details:hover,
details[open] {
  border-color: rgba(202, 140, 32, 0.44);
  box-shadow: 0 20px 42px rgba(18, 49, 45, 0.09);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 18px 22px;
  color: var(--green-900);
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-900);
  background: var(--white);
  font-size: 20px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
  background: var(--gold-500);
  border-color: transparent;
}

details p {
  margin: 0;
  padding: 0 22px 24px;
  color: var(--muted);
  line-height: 1.76;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(220, 157, 45, 0.14), transparent 28rem),
    linear-gradient(135deg, var(--green-950), #022a26);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  pointer-events: none;
}

.contact-section .container {
  width: min(1280px, calc(100% - 40px));
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(480px, 540px) minmax(660px, 1fr);
  gap: 100px;
  align-items: center;
}

.contact-grid > div:first-child {
  max-width: 560px;
}

.contact-grid h2 span {
  display: block;
  white-space: nowrap;
}

.contact-main {
  margin-top: 26px;
}

.contact-actions {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 680px);
}

.contact-actions a {
  display: grid;
  gap: 10px;
  min-height: 164px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-actions a:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 157, 45, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.contact-actions a.download-card {
  grid-column: auto;
  min-height: 164px;
  border-color: rgba(220, 157, 45, 0.3);
  background:
    linear-gradient(180deg, rgba(220, 157, 45, 0.14), rgba(255, 255, 255, 0.06));
}

.contact-actions a.download-card:hover {
  border-color: rgba(220, 157, 45, 0.62);
  background:
    linear-gradient(180deg, rgba(220, 157, 45, 0.2), rgba(255, 255, 255, 0.08));
}

.contact-actions svg {
  width: 30px;
  height: 30px;
  color: var(--gold-500);
}

.contact-actions span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.35;
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #022a26;
  color: rgba(255, 255, 255, 0.72);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
}

.footer-content img {
  width: 118px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-copy {
  justify-self: center;
  margin: 0;
  text-align: center;
}

.footer-credit {
  justify-self: end;
  margin: 0;
  text-align: right;
}

.footer-content a {
  color: var(--gold-100);
  font-weight: 800;
}

.footer-content a:hover {
  color: var(--gold-500);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, var(--green-900), var(--green-800));
  box-shadow: 0 18px 42px rgba(3, 59, 53, 0.26);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.scroll-top::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(220, 157, 45, 0.28), rgba(6, 78, 69, 0));
  z-index: -1;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.02);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    linear-gradient(135deg, var(--green-800), var(--green-900));
  box-shadow: 0 24px 52px rgba(3, 59, 53, 0.32);
}

.scroll-top svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.6;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .topbar {
    display: none;
  }

  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    border-radius: 24px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-shell.is-open .nav-links,
  .nav-shell.is-open .nav-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .nav-shell.is-open .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }

  .nav-shell.is-open .nav-links a {
    padding: 13px 4px;
    border-top: 1px solid var(--line);
  }

  .nav-shell.is-open .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 170px 0 86px;
  }

  .hero-layout,
  .split-grid,
  .service-grid,
  .congress-layout,
  .process-grid,
  .program-grid,
  .faq-grid,
  .contact-grid,
  .confidence-content {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 36px;
    padding-top: 0;
  }

  .hero-panel {
    max-width: 560px;
  }

  .contact-section .container {
    width: min(100% - 40px, 1140px);
  }

  .contact-grid > div:first-child {
    max-width: 680px;
  }

  .contact-actions {
    justify-self: stretch;
    width: 100%;
    max-width: 720px;
  }

  .service-grid {
    max-width: 660px;
    margin: 0 auto;
  }

  .featured-card,
  .featured-card:hover {
    transform: none;
  }

  .congress-layout {
    gap: 42px;
  }

  .congress-panel {
    max-width: 720px;
  }

  .advisory-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .confidence-content {
    align-items: start;
  }

  .confidence-research {
    min-height: 210px;
    max-width: 420px;
    justify-self: start;
    transform: none;
  }

  .confidence-band {
    background:
      linear-gradient(90deg, rgba(3, 59, 53, 0.99), rgba(3, 59, 53, 0.82)),
      url("assets/optimized/confidence-team.webp") right center / auto 100% no-repeat,
      var(--green-950);
  }
}

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

@media (max-width: 640px) {
  .container,
  .topbar,
  .nav-shell {
    width: min(100% - 28px, 1140px);
  }

  .section-pad {
    padding: 76px 0;
  }

  .nav-shell {
    min-height: 66px;
    padding: 12px;
  }

  .brand img {
    width: 112px;
  }

  .hero {
    padding: 132px 0 68px;
  }

  .hero-media {
    background-position: 78% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(248, 246, 239, 0.76) 0%, rgba(248, 246, 239, 0.6) 46%, rgba(6, 78, 69, 0.2) 100%),
      linear-gradient(90deg, rgba(248, 246, 239, 0.72), rgba(6, 78, 69, 0.08));
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-panel,
  .service-card,
  .congress-panel,
  .process-card,
  .contact-actions a {
    padding: 24px;
  }

  .hero-stats div {
    padding: 16px;
  }

  .split-grid,
  .congress-layout,
  .faq-grid,
  .contact-grid {
    gap: 42px;
  }

  .section-copy h2,
  .section-heading h2,
  .congress-copy h2,
  .confidence-content h2,
  .faq-grid h2,
  .contact-grid h2 {
    font-size: 34px;
  }

  .contact-grid h2 span {
    white-space: normal;
  }

  .congress-service::before {
    inset: 14px;
  }

  .congress-copy p {
    font-size: 16px;
  }

  .congress-highlights span {
    width: 100%;
    align-items: flex-start;
  }

  .congress-panel-header,
  .congress-steps article,
  .congress-note {
    grid-template-columns: 1fr;
  }

  .congress-panel-header > span {
    width: 52px;
    height: 52px;
  }

  .congress-panel-header h3 {
    font-size: 22px;
  }

  .congress-steps article,
  .congress-includes {
    padding: 18px;
  }

  .advisory-block {
    margin-top: 42px;
    padding: 18px;
  }

  .advisory-heading h3 {
    font-size: 26px;
  }

  .advisory-list article {
    grid-template-columns: 68px 1fr;
    min-height: 68px;
  }

  .advisory-list span {
    font-size: 15px;
  }

  .advisory-list span::after {
    right: -18px;
    width: 36px;
  }

  .advisory-list p {
    padding: 15px 16px 15px 32px;
    font-size: 16px;
    line-height: 1.34;
  }

  .faq-content h2 {
    font-size: 34px;
  }

  .quote-card img {
    aspect-ratio: 0.95;
  }

  .quote-card figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    font-size: 16px;
  }

  .logo-panel {
    min-height: 300px;
    padding: 34px;
  }

  .floating-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .services {
    background:
      linear-gradient(180deg, var(--green-950) 0, var(--green-950) 430px, var(--cream) 430px);
  }

  .process-card span {
    font-size: 70px;
  }

  .confidence-band {
    padding: 82px 0;
    background:
      radial-gradient(circle at 18% 18%, rgba(220, 157, 45, 0.12), transparent 18rem),
      var(--green-950);
  }

  .confidence-band::before,
  .contact-section::before {
    inset: 12px;
  }

  .program-card,
  .program-card img {
    min-height: 245px;
  }

  .confidence-research {
    min-height: 170px;
  }

  .research-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .research-icon svg {
    width: 27px;
    height: 27px;
  }

  .research-icon.microscope {
    left: 4px;
    top: 20px;
  }

  .research-icon.file {
    right: 18px;
    top: 68px;
  }

  .research-icon.chart {
    left: 100px;
    bottom: 8px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-content img {
    width: 104px;
    margin-bottom: 4px;
  }

  .footer-copy {
    justify-self: center;
    order: 3;
    max-width: 260px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    line-height: 1.35;
  }

  .footer-credit {
    justify-self: center;
    order: 2;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.35;
  }

  .footer-content a {
    color: var(--gold-500);
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }

  .scroll-top svg {
    width: 19px;
    height: 19px;
  }
}

.topbar {
  color: rgba(6, 78, 69, 0.92);
}

.hero {
  color: var(--ink);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 246, 239, 0.9) 0%, rgba(236, 242, 235, 0.74) 44%, rgba(6, 78, 69, 0.16) 100%),
    linear-gradient(180deg, rgba(6, 78, 69, 0.08), rgba(3, 59, 53, 0.18));
}

.hero-copy {
  color: #415d57;
}

.intro-section {
  background:
    radial-gradient(circle at 84% 14%, rgba(220, 157, 45, 0.2), transparent 22rem),
    linear-gradient(180deg, var(--cream-2), var(--cream));
  color: var(--ink);
}

.intro-section .section-copy p {
  color: var(--muted);
}

.mini-proof span {
  border-color: rgba(6, 78, 69, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-900);
}

.services {
  background:
    radial-gradient(circle at 50% 0%, rgba(6, 78, 69, 0.08), transparent 32rem),
    var(--cream);
}

.services .section-heading h2 {
  color: var(--ink);
}

.services .section-heading p {
  color: var(--muted);
}

.services .section-kicker {
  color: var(--green-800);
}

.hero-layout > .hero-panel {
  align-self: start;
  margin-top: 96px !important;
}

@media (max-width: 1020px) {
  .hero-layout > .hero-panel {
    margin-top: 28px !important;
  }
}

@media (max-width: 640px) {
  .hero-media {
    background-image: url("assets/optimized/hero-research-mobile.webp");
    background-position: 36% center;
    transform: scale(1.01);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(248, 246, 239, 0.56) 0%, rgba(248, 246, 239, 0.4) 46%, rgba(6, 78, 69, 0.22) 100%),
      linear-gradient(90deg, rgba(248, 246, 239, 0.52), rgba(6, 78, 69, 0.04));
  }

  .footer-copy {
    order: 2;
  }

  .footer-credit {
    order: 3;
  }
}
