:root {
  --brand-white: #ffffff;
  --brand-off-white: #e2ded8;
  --brand-pale-stone: #d3ccbf;
  --brand-taupe: #a8a095;
  --brand-sand: #d8c5a4;
  --brand-gold-light: #f0dfbf;
  --brand-gold-deep: #cdb58a;
  --gold-base-bg: linear-gradient(135deg, var(--brand-gold-deep) 0%, var(--brand-sand) 48%, var(--brand-gold-light) 100%);
  --gold-soft-base-bg: linear-gradient(135deg, rgba(216, 197, 164, 0.12) 0%, rgba(216, 197, 164, 0.2) 58%, rgba(240, 223, 191, 0.28) 100%);
  --gold-sheen-bg: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 24%, rgba(255, 255, 255, 0.78) 50%, rgba(255, 255, 255, 0.22) 76%, transparent 100%);
  --brand-charcoal: #4a4540;
}

@keyframes gold-shine {
  0%,
  26% {
    opacity: 0;
    transform: translateX(-170%) skewX(-18deg);
  }

  38% {
    opacity: 0.72;
  }

  58% {
    opacity: 0.72;
  }

  72%,
  100% {
    opacity: 0;
    transform: translateX(320%) skewX(-18deg);
  }
}

html {
  scroll-behavior: smooth;
}

.homepage {
  font-family: var(--font-inter-tight), sans-serif;
  color: var(--brand-charcoal);
  background: var(--brand-white);
}

.homepage a {
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 40px), 1290px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px;
  border: 1px solid rgba(74, 69, 64, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(74, 69, 64, 0.08);
  backdrop-filter: blur(24px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-charcoal);
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo-wrap {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--brand-charcoal);
  box-shadow: 0 10px 28px rgba(74, 69, 64, 0.22);
}

.brand-logo {
  display: block;
  width: 33px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  color: var(--brand-charcoal);
  font-size: 0.98rem;
  font-weight: 650;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-inline: auto;
}

.site-nav a {
  color: rgba(74, 69, 64, 0.7);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: 180ms ease;
}

.site-nav a:hover {
  color: var(--brand-charcoal);
  background: rgba(216, 197, 164, 0.52);
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: var(--brand-off-white);
}

.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-charcoal);
}

.homepage-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: min(420px, 100%);
  height: 100vh;
  overflow-y: auto;
  border-radius: 28px 0 0 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: -24px 0 80px rgba(74, 69, 64, 0.16);
  transform: translateX(100%);
  transition: transform 0.32s ease;
  backdrop-filter: blur(24px);
}

.homepage-mobile-menu.show-sidebar {
  transform: translateX(0);
}

.mobile-menu-inner {
  padding: 22px;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mobile-menu-close {
  position: relative;
  display: flex;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--brand-off-white);
}

.mobile-menu-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-charcoal);
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-nav {
  display: grid;
  gap: 8px;
  margin-top: 42px;
}

.mobile-menu-nav a {
  display: block;
  border-radius: 18px;
  color: var(--brand-charcoal);
  padding: 16px 18px;
  font-size: 1.1rem;
  font-weight: 560;
}

.mobile-menu-nav a:hover {
  background: var(--brand-off-white);
}

.btn-md {
  padding: 13px 22px;
}

.btn-xl {
  padding: 17px 28px;
}

.ai-hero-section {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: var(--brand-white);
}

.ai-hero-scene {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100vh;
  align-items: center;
  padding: 148px 0 72px;
}

.ai-hero-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 43.93%, var(--brand-white) 100%);
}

.ai-hero-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  max-width: none;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.ai-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 40px), 1290px);
  max-width: 1290px !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ai-hero-badge {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 20px;
  border: 1px solid rgba(216, 197, 164, 0.8);
  border-radius: 999px;
  background: var(--gold-base-bg);
  color: var(--brand-charcoal);
  padding: 9px 18px;
  font-size: 0.86rem;
  font-weight: 650;
}

.ai-hero-badge::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% 0;
  z-index: 0;
  width: 64%;
  background: var(--gold-sheen-bg);
  opacity: 0;
  transform: translateX(-170%) skewX(-18deg);
  animation: gold-shine 4.2s linear infinite;
}

.ai-hero-content h1 {
  max-width: 1160px;
  margin: 0 0 18px;
  color: var(--brand-charcoal);
  font-size: clamp(3rem, 7.4vw, 7.1rem);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 0.95;
}

.ai-hero-content p {
  max-width: 700px;
  margin: 0;
  color: rgba(74, 69, 64, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.68;
}

.ai-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-taupe);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.audience-card h2,
.cta-box h2 {
  margin: 0;
  color: var(--brand-charcoal);
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 860px;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.94;
  font-weight: 680;
}

.hero-lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(74, 69, 64, 0.86);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.42;
}

.hero-support,
.section-heading p,
.service-card p,
.process-card p,
.audience-list,
.care-note p,
.cta-box p,
.footer-section p {
  color: rgba(74, 69, 64, 0.68);
  line-height: 1.7;
}

.hero-support {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

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

.hero-actions.centered {
  justify-content: center;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(74, 69, 64, 0.1);
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(216, 197, 164, 0.55), rgba(226, 222, 216, 0.32)),
    var(--brand-off-white);
  box-shadow: 0 24px 90px rgba(74, 69, 64, 0.12);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: rgba(74, 69, 64, 0.7);
  font-size: 0.9rem;
}

.panel-topline strong {
  color: var(--brand-charcoal);
}

.hero-flow {
  display: grid;
  gap: 10px;
}

.hero-flow div,
.deliverables div,
.care-stack div {
  border: 1px solid rgba(74, 69, 64, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--brand-charcoal);
  padding: 16px 18px;
  font-weight: 560;
}

.care-note {
  margin-top: 20px;
  border-radius: 22px;
  background: var(--brand-charcoal);
  padding: 22px;
}

.care-note span {
  color: var(--brand-sand);
  font-weight: 650;
}

.care-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-block {
  padding: 108px 0;
}

.section-muted {
  background: var(--brand-off-white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.audience-card h2,
.cta-box h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  line-height: 1.02;
  font-weight: 650;
}

.section-heading p {
  margin: 18px 0 0;
  font-size: 1.08rem;
}

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

.service-card,
.process-card,
.audience-card,
.audience-list,
.cta-box,
.faq-item {
  border: 1px solid rgba(74, 69, 64, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(74, 69, 64, 0.06);
}

.service-card {
  min-height: 270px;
  padding: 26px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover,
.faq-item:hover {
  border-color: rgba(216, 197, 164, 0.72);
  box-shadow: 0 24px 64px rgba(74, 69, 64, 0.09);
}

.card-index,
.process-card span {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--gold-base-bg);
  color: var(--brand-charcoal);
  font-weight: 700;
}

.card-index::before,
.process-card span::before {
  content: "";
  position: absolute;
  inset: -25% auto -25% 0;
  z-index: 0;
  width: 68%;
  background: var(--gold-sheen-bg);
  opacity: 0;
  transform: translateX(-170%) skewX(-18deg);
  animation: gold-shine 4.2s linear infinite;
}

.service-card h3,
.process-card h3 {
  margin: 0;
  color: var(--brand-charcoal);
  font-size: 1.32rem;
  line-height: 1.25;
}

.service-card p,
.process-card p {
  margin: 14px 0 0;
}

.split-section,
.care-grid,
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.deliverables,
.care-stack {
  display: grid;
  gap: 12px;
}

.deliverables div {
  background: var(--brand-off-white);
}

.section-dark {
  background: var(--brand-charcoal);
}

.section-dark .eyebrow,
.section-dark h2,
.section-dark p,
.section-dark li {
  color: var(--brand-white);
}

.section-dark .eyebrow {
  color: var(--brand-sand);
}

.audience-section {
  padding: clamp(76px, 8vw, 112px) 0;
}

.audience-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(216, 197, 164, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--brand-charcoal);
}

.audience-copy {
  max-width: 540px;
}

.audience-copy h2 {
  margin: 14px 0 0;
  color: var(--brand-white);
  font-size: clamp(2.25rem, 4.4vw, 4.45rem);
  line-height: 1.02;
  font-weight: 650;
}

.audience-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.7;
}

.audience-cta {
  margin-top: 34px;
}

.audience-list {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.76);
  padding: 0;
}

.audience-list p {
  margin: 0 0 22px;
  color: var(--brand-white);
  font-weight: 650;
}

.audience-list ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  position: relative;
  min-height: 28px;
  padding-left: 42px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.audience-list li::before,
.audience-list li::after {
  content: "";
  position: absolute;
}

.audience-list li::before {
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(216, 197, 164, 0.48);
  border-radius: 50%;
  background: var(--gold-soft-base-bg);
  backdrop-filter: blur(12px);
}

.audience-list li::after {
  top: 8px;
  left: 8px;
  width: 9px;
  height: 5px;
  border-bottom: 1.5px solid var(--brand-sand);
  border-left: 1.5px solid var(--brand-sand);
  transform: rotate(-45deg);
}

.process-template-section {
  overflow: hidden;
  background: var(--brand-white);
}

.process-template-heading h2 {
  margin: 0;
  color: var(--brand-charcoal);
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  line-height: 1.02;
  font-weight: 650;
  letter-spacing: 0;
}

.process-template-heading p {
  margin-top: 26px;
  color: rgba(74, 69, 64, 0.68);
  line-height: 1.7;
}

.process-badge {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(216, 197, 164, 0.7);
  border-radius: 999px;
  background: var(--gold-base-bg);
  color: var(--brand-charcoal);
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 650;
}

.process-badge::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% 0;
  z-index: 0;
  width: 64%;
  background: var(--gold-sheen-bg);
  opacity: 0;
  transform: translateX(-170%) skewX(-18deg);
  animation: gold-shine 4.2s linear infinite;
}

.section-heading .process-badge,
.cta-box .process-badge {
  margin-bottom: 0;
}

.section-heading .process-badge + h2,
.audience-card .process-badge + h2,
.cta-box .process-badge + h2 {
  margin-top: 14px;
}

.process-timeline {
  margin-bottom: clamp(40px, 8vw, 120px);
}

.process-step {
  min-height: 380px;
}

.process-axis {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-dot {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  z-index: 2;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 197, 164, 0.7);
  border-radius: 50%;
  background: var(--gold-base-bg);
  color: var(--brand-charcoal);
  box-shadow: 0 18px 34px rgba(216, 197, 164, 0.26);
  font-size: 0.76rem;
  font-weight: 750;
}

.process-dot::before {
  content: "";
  position: absolute;
  inset: -25% auto -25% 0;
  z-index: 0;
  width: 68%;
  background: var(--gold-sheen-bg);
  opacity: 0;
  transform: translateX(-170%) skewX(-18deg);
  animation: gold-shine 4.2s linear infinite;
}

.process-line-shell {
  width: 4px;
  height: 344px;
  margin-top: 0;
  background: var(--brand-off-white);
}

.process-line-shell .step-line {
  display: block;
  width: 4px;
  height: 0;
}

.process-timeline-card {
  position: absolute;
  top: 0;
  width: min(370px, calc(50% - 74px));
  padding: 26px;
  border: 1px solid rgba(74, 69, 64, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(74, 69, 64, 0.08);
  backdrop-filter: blur(16px);
}

.process-timeline-card::before {
  content: "";
  position: absolute;
  top: 17px;
  width: 42px;
  height: 1px;
  background: rgba(74, 69, 64, 0.18);
}

.process-left {
  left: 0;
}

.process-left::before {
  right: -42px;
}

.process-right {
  right: 0;
}

.process-right::before {
  left: -42px;
}

.process-timeline-card p {
  margin: 0 0 12px;
  color: var(--brand-taupe);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.process-timeline-card h3 {
  max-width: 310px;
  margin: 0;
  color: var(--brand-charcoal);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: 0;
}

.process-timeline-card span {
  display: block;
  margin-top: 12px;
  color: rgba(74, 69, 64, 0.68);
  line-height: 1.65;
}

.process-step-final {
  min-height: 170px;
}

.care-stack div:nth-child(even) {
  background: var(--brand-pale-stone);
}

.faq-wrap {
  max-width: 980px;
}

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

.faq-item {
  overflow: hidden;
  background: var(--brand-white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 24px 26px;
  color: var(--brand-charcoal);
  font: inherit;
  font-size: 1.1rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.accordion-plus-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.accordion-plus-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--brand-charcoal);
}

.accordion-plus-icon span:last-child {
  transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
  padding: 0 26px 24px;
}

.faq-answer p {
  margin: 0;
  color: rgba(74, 69, 64, 0.68);
  line-height: 1.65;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 118px) 0;
  background: linear-gradient(180deg, var(--brand-white), var(--brand-off-white));
}

.cta-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cta-box p {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 1.1rem;
}

.cta-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(74, 69, 64, 0.74);
  font-size: 0.96rem;
  font-weight: 560;
}

.cta-benefits li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.cta-benefits span {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-base-bg);
}

.cta-benefits span::before {
  content: "";
  position: absolute;
  inset: -25% auto -25% 0;
  z-index: 0;
  width: 72%;
  background: var(--gold-sheen-bg);
  opacity: 0;
  transform: translateX(-170%) skewX(-18deg);
  animation: gold-shine 4.2s linear infinite;
}

.cta-benefits span::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--brand-charcoal);
  border-left: 2px solid var(--brand-charcoal);
  transform: translateY(-1px) rotate(-45deg);
}

.funding-section {
  position: relative;
  overflow: hidden;
  padding: 52px 0;
  background: #fff;
  color: var(--brand-charcoal);
}

.funding-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 44%;
  height: 10px;
  background: var(--gold-sheen-bg);
  opacity: 0;
  transform: translateX(-170%) skewX(-18deg);
  animation: gold-shine 4.2s linear infinite;
}

.funding-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 10px;
  background: var(--gold-base-bg);
}

.funding-box {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(26px, 4vw, 44px) 0;
}

.funding-logo-bar {
  display: block;
  width: 100%;
  height: auto;
}

.funding-content h2 {
  max-width: 560px;
  margin: 12px 0 0;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  line-height: 1.12;
}

.funding-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(74, 69, 64, 0.72);
  font-size: 0.96rem;
  line-height: 1.65;
}

.funding-content .funding-tags {
  color: var(--brand-charcoal);
  font-weight: 650;
}

.footer-section {
  padding: 70px 0 30px;
  background: var(--brand-charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.45fr) minmax(180px, 0.45fr);
  gap: 44px;
}

.footer-section .brand-mark,
.footer-section .brand-text,
.footer-section p,
.footer-section a {
  color: var(--brand-white);
}

.footer-section .brand-logo-wrap {
  background: var(--brand-charcoal);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.footer-section p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-title {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
  color: var(--brand-sand) !important;
  font-weight: 650;
}

.footer-section .footer-link {
  display: block;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-bottom {
  padding-top: 34px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.13);
}

.footer-bottom p {
  max-width: none;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .split-section,
  .care-grid,
  .audience-grid,
  .audience-panel,
  .funding-box {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    text-align: center;
  }

  .audience-copy {
    margin: 0 auto;
  }

  .audience-list {
    max-width: 660px;
    margin: 0 auto;
    text-align: left;
  }

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

  .process-timeline {
    max-width: 680px;
  }

  .process-step {
    min-height: 340px;
  }

  .process-timeline-card {
    top: 50%;
    left: 50%;
    right: auto;
    width: min(520px, calc(100% - 44px));
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
  }

  .process-timeline-card::before {
    display: none;
  }

  .process-line-shell {
    height: 304px;
  }

  .process-step-final {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 12px;
    width: calc(100% - 20px);
    padding: 10px;
    align-items: center;
    border-radius: 999px;
  }

  .brand-logo {
    width: 31px;
  }

  .brand-logo-wrap {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .ai-hero-scene {
    min-height: 100vh;
    padding: 132px 0 44px;
  }

  .ai-hero-content h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    line-height: 0.98;
  }

  .ai-hero-content p {
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .ai-hero-badge {
    min-height: 38px;
    margin-bottom: 16px;
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .ai-hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .ai-hero-actions li,
  .ai-hero-actions a {
    width: 100%;
  }

  .section-block {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

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

  .audience-panel {
    gap: 34px;
    padding: 30px 22px;
    border-radius: 22px;
  }

  .audience-copy h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .audience-copy p {
    font-size: 1rem;
  }

  .audience-cta {
    width: 100%;
  }

  .funding-box {
    gap: 26px;
    padding: 30px 0;
  }

  .funding-content h2 {
    font-size: 1.45rem;
  }

  .funding-content p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .process-template-heading {
    margin-bottom: 44px;
  }

  .process-step {
    min-height: 330px;
  }

  .process-axis {
    left: 18px;
    transform: none;
  }

  .process-timeline-card {
    left: 54px;
    width: calc(100% - 54px);
    transform: translateY(-50%);
    padding: 22px;
  }

  .process-step-final {
    min-height: 240px;
  }

  .service-card {
    min-height: auto;
  }

  .faq-question {
    align-items: flex-start;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-badge::before,
  .ai-hero-badge::before,
  .card-index::before,
  .process-card span::before,
  .process-dot::before,
  .cta-benefits span::before,
  .funding-section::before {
    animation: none;
  }
}
