:root {
  --navy: #0a2540;
  --navy-2: #163253;
  --indigo: #635bff;
  --indigo-soft: #7a73ff;
  --white: #ffffff;
  --cloud: #f6f9fc;
  --mist: #eef4fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --border: rgba(10, 37, 64, 0.08);
  --border-strong: rgba(10, 37, 64, 0.14);
  --text: #0a2540;
  --text-soft: #425466;
  --text-muted: #7f91a7;
  --cyan: #00d4aa;
  --green: #09825d;
  --orange: #ff8d48;
  --pink: #ff4f6d;
  --shadow-sm: 0 12px 24px rgba(10, 37, 64, 0.05);
  --shadow-md: 0 20px 48px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 32px 72px rgba(10, 37, 64, 0.12);
  --shadow-indigo: 0 20px 50px rgba(99, 91, 255, 0.18);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-full: 999px;
  --container: 1440px;
  --header-height: 84px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(99, 91, 255, 0.08), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(0, 212, 170, 0.06), transparent 24%),
    var(--cloud);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 95px,
    rgba(10, 37, 64, 0.04) 95px,
    rgba(10, 37, 64, 0.04) 96px
  );
  opacity: 0.45;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(246, 249, 252, 0.04), rgba(246, 249, 252, 0.62));
  pointer-events: none;
  z-index: -1;
}

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

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

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

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

.section {
  padding: 120px 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.88));
}

.anchor-offset {
  display: block;
  position: relative;
  top: calc(var(--header-height) * -1);
  visibility: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
}

.eyebrow i,
.eyebrow .lucide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(99, 91, 255, 0.16);
  color: var(--indigo);
  font-size: 14px;
  flex: 0 0 auto;
}

.eyebrow .lucide {
  stroke-width: 2.1;
}

.eyebrow-label {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 37, 64, 0.06);
  box-shadow: 0 12px 28px rgba(10, 37, 64, 0.06);
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}

.hero-copy .eyebrow-label {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 14px;
    color: var(--text-soft);
    line-height: 1;
    white-space: nowrap;

    background: none;
    border: none;
    box-shadow: none;
  }

.fa-arrow-up {
  transform: rotate(45deg);
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(0, 212, 170, 0.12);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.96);
}

.eyebrow-light i,
.eyebrow-light .lucide {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
}

.eyebrow-light .eyebrow-label {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.96);
}

.breadcrumbs {
  display: flex;
  margin-bottom: 14px;
}

.breadcrumbs-list {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 14px;
  list-style: none;
}

.breadcrumbs-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.breadcrumbs-item a {
  color: var(--text-soft);
  transition: color 0.24s var(--ease);
}

.breadcrumbs-item a:hover {
  color: var(--indigo);
}

.breadcrumbs-item span[aria-current="page"] {
  color: var(--navy);
}

.breadcrumbs-item i {
  color: rgba(10, 37, 64, 0.34);
  font-size: 10px;
}

.grants-head > .breadcrumbs:first-child {
  margin-top: 0;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-head-left {
  max-width: 620px;
  margin: 0 0 40px;
  text-align: left;
}

.section-intro {
  max-width: 640px;
}

.section-head h2,
.section-intro h2,
.final-shell h2,
.hero-title {
  margin: 18px 0 18px;
  font-size: clamp(2.9rem, 5vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.section-head h2,
.section-intro h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.section-head h3,
.solution-copy h3 {
  margin: 16px 0 16px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-head p,
.section-intro p,
.solution-copy p,
.final-shell p,
.hero-text {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background-color 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

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

.btn-sm {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-lg {
  min-height: 58px;
  padding: 0 30px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-soft));
  color: var(--white);
  box-shadow: var(--shadow-indigo);
}

.btn-primary:hover {
  box-shadow: 0 26px 60px rgba(99, 91, 255, 0.24);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(10, 37, 64, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.btn-ghost:hover {
  border-color: rgba(99, 91, 255, 0.28);
  color: var(--indigo);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo em {
  color: var(--indigo);
  font-style: normal;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--indigo), #90a1ff);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px rgba(99, 91, 255, 0.25);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 18px 0;
  transition:
    padding 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.site-header.is-scrolled {
  padding: 12px 0;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  min-height: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background-color 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    backdrop-filter 0.28s var(--ease);
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 38px rgba(10, 37, 64, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--indigo);
  transition: transform 0.28s var(--ease);
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle,
.mobile-close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
}

.mobile-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-panel,
.mobile-backdrop {
  display: none;
}

.client-toast-stack {
  position: fixed;
  top: 104px;
  right: 24px;
  z-index: 70;
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.client-toast {
  width: min(420px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.96), rgba(255, 255, 255, 0.94));
  box-shadow: 0 18px 42px rgba(10, 37, 64, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease);
}

.client-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.client-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--indigo);
  font-size: 18px;
}

.client-toast__copy strong,
.client-toast__copy p {
  margin: 0;
}

.client-toast__copy strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.client-toast__copy p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  width: min(460px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.cookie-consent.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.cookie-consent__dialog {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, rgba(245, 248, 255, 0.96), rgba(255, 255, 255, 0.94));
  box-shadow: 0 22px 60px rgba(10, 37, 64, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cookie-consent__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 14px;
  transition: transform 0.24s var(--ease), color 0.24s var(--ease), border-color 0.24s var(--ease);
}

.cookie-consent__close:hover {
  transform: translateY(-1px);
  color: var(--indigo);
  border-color: rgba(99, 91, 255, 0.18);
}

.cookie-consent__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(99, 91, 255, 0.18), rgba(99, 91, 255, 0.1));
  color: var(--indigo);
  font-size: 22px;
}

.cookie-consent__copy {
  display: grid;
  gap: 8px;
  padding-right: 28px;
}

.cookie-consent__copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cookie-consent__copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.68;
}

.cookie-consent__copy a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--indigo);
  font-size: 0.9rem;
  font-weight: 700;
}

.cookie-consent__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 4px;
}

.cookie-consent__button {
  min-height: 46px;
  padding-inline: 18px;
  border-radius: 16px;
}

.evaluation-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}

.evaluation-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.evaluation-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.36);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.evaluation-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: grid;
  gap: 24px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(10, 37, 64, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.evaluation-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  transition: transform 0.24s var(--ease), color 0.24s var(--ease), border-color 0.24s var(--ease);
}

.evaluation-modal__close:hover {
  transform: translateY(-2px);
  color: var(--indigo);
  border-color: rgba(99, 91, 255, 0.16);
}

.evaluation-modal__head {
  display: grid;
  gap: 12px;
  max-width: 620px;
}

.evaluation-modal__head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.evaluation-modal__head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.78;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 41;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.36);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  display: grid;
  gap: 22px;
  padding: 28px;
  max-height: min(860px, calc(100dvh - 56px));
  overflow-y: auto;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(10, 37, 64, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  scrollbar-width: thin;
}

.booking-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.24s var(--ease), color 0.24s var(--ease), border-color 0.24s var(--ease);
}

.booking-modal__close:hover {
  transform: translateY(-2px);
  color: var(--indigo);
  border-color: rgba(99, 91, 255, 0.16);
}

.booking-modal__head {
  display: grid;
  gap: 10px;
  max-width: 620px;
  padding-right: 40px;
}

.booking-modal__head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.booking-modal__head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.72;
}

.booking-modal__expert {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(239, 244, 252, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(99, 91, 255, 0.12);
}

.booking-modal__expert-avatar {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(10, 37, 64, 0.12);
}

.booking-modal__expert-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.booking-modal__expert-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-modal__expert-badge,
.booking-modal__expert-duration {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.booking-modal__expert-badge {
  background: rgba(99, 91, 255, 0.12);
  color: var(--indigo);
}

.booking-modal__expert-duration {
  background: rgba(10, 37, 64, 0.06);
  color: var(--text-soft);
}

.booking-modal__expert-copy h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.booking-modal__expert-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.booking-modal__expert-price {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.booking-modal__expert-price strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.booking-modal__expert-price span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.booking-form {
  display: grid;
  gap: 18px;
}

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

.booking-field {
  display: grid;
  gap: 9px;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-field span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), background-color 0.24s var(--ease);
}

.booking-field textarea {
  min-height: 148px;
  padding: 16px 18px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: rgba(99, 91, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.08);
  background: rgba(255, 255, 255, 1);
}

.booking-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.booking-form__note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.booking-form__note span {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.booking-form__success {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(99, 91, 255, 0.12);
  background: rgba(99, 91, 255, 0.08);
}

.booking-form__success strong,
.booking-form__success p {
  margin: 0;
}

.booking-form__success strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.booking-form__success p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.evaluation-form {
  display: grid;
  gap: 20px;
}

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

.evaluation-field {
  display: grid;
  gap: 9px;
}

.evaluation-field--full {
  grid-column: 1 / -1;
}

.evaluation-field span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.evaluation-field input,
.evaluation-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), background-color 0.24s var(--ease);
}

.evaluation-field textarea {
  min-height: 148px;
  padding: 16px 18px;
  resize: vertical;
}

.evaluation-field input:focus,
.evaluation-field textarea:focus {
  outline: none;
  border-color: rgba(99, 91, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.08);
  background: rgba(255, 255, 255, 1);
}

.evaluation-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.evaluation-form__note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.evaluation-form__note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.evaluation-form__note i,
.evaluation-form__success i {
  color: var(--indigo);
}

.evaluation-form__success {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(99, 91, 255, 0.08);
  border: 1px solid rgba(99, 91, 255, 0.12);
}

.evaluation-form__success strong,
.evaluation-form__success p {
  margin: 0;
}

.evaluation-form__success strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 14px;
}

.evaluation-form__success p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 176px 0 132px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.62) 38%, rgba(246, 249, 252, 0.88) 100%),
    url("/images/image.png") center top / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(99, 91, 255, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy .eyebrow {
  margin-bottom: 14px;
}

.hero-title span {
  display: block;
  color: var(--indigo);
}

.hero-text {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 36px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  width: min(980px, 100%);
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 0;
  padding: 16px 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(10, 37, 64, 0.07);
  backdrop-filter: blur(16px);
  text-align: left;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(10, 37, 64, 0.1);
  border-color: rgba(99, 91, 255, 0.2);
}

.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(10, 37, 64, 0.04);
  flex-shrink: 0;
}

.metric-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.metric-card strong {
  display: block;
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.55rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.metric-card span {

  line-height: 1.35;
  color: var(--text-soft);
  font-weight: 600;
}

.shortcut-cluster {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.shortcut-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(10, 37, 64, 0.08);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.04);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    color 0.28s var(--ease);
}

.shortcut-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 91, 255, 0.26);
  color: var(--indigo);
}

.hero-icon,
.ecosystem-icon,
.benefit-icon,
.package-icon,
.ai-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(99, 91, 255, 0.1);
  color: var(--indigo);
  flex-shrink: 0;
}

.expert-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
}

.ecosystem-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.ecosystem-headline {
  max-width: 760px;
  margin-bottom: 34px;
}

.ecosystem-headline h2 {
  font-size: clamp(2.15rem, 3vw, 3rem);
  line-height: 1.06;
}

.ecosystem-headline p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.account-shell,
.resource-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: start;
}

.resource-column,
.faq-column {
  display: grid;
  gap: 26px;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

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

.faq-intro h2 {
  margin: 18px 0 18px;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.faq-intro h2 span {
  color: var(--indigo);
}

.faq-intro p {
  margin: 0;
  max-width: 420px;
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--text-soft);
}

.faq-panel {
  display: grid;
  gap: 26px;
}

.faq-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.1);
}

.faq-tab {
  position: relative;
  padding: 0 0 16px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-align: center;
  cursor: pointer;
  transition: color 0.28s var(--ease);
}

.faq-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--indigo), var(--indigo-soft));
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.faq-tab.is-active {
  color: var(--navy);
}

.faq-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.grants-page {
  overflow: clip;
}

.error-page {
  overflow: clip;
}

.error-hero {
  min-height: 100vh;
  padding-top: 132px;
  padding-bottom: 64px;
  display: grid;
  align-items: center;
}

.error-shell {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.error-visual {
  width: min(920px, 100%);
}

.error-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.error-copy {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.error-kicker {
  color: var(--indigo);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.error-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4.2vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.error-copy p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.error-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.grants-hero {
  padding-top: 156px;
  padding-bottom: 40px;
}

.grants-head {
  max-width: 920px;
  margin: 0 auto;
}

.grants-head .eyebrow {
  justify-content: center;
}

.grants-head h1 {
  margin: 18px 0;
  font-size: clamp(3.1rem, 6.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 800;
  color: var(--navy);
}

.grants-head p {
  max-width: 720px;
  margin-inline: auto;
}

.grants-inline-metrics {
  max-width: 720px;
  margin: 34px auto 0;
}

.grants-catalog-section {
  padding-top: 32px;
}

.grants-catalog-shell {
  display: grid;
  gap: 28px;
  padding: 28px;
  border-radius: 34px;
  min-width: 0;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.96), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), var(--shadow-sm);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: stretch;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.contact-card,
.contact-form-panel {
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), var(--shadow-sm);
}

.contact-card {
  display: grid;
  gap: 16px;
  align-content: space-between;
  min-height: 100%;
  padding: 22px 24px;
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(99, 91, 255, 0.16), rgba(99, 91, 255, 0.08));
  color: var(--indigo);
  box-shadow: 0 16px 32px rgba(99, 91, 255, 0.14);
}

.contact-card-icon i,
.contact-card-icon .lucide {
  width: 22px;
  height: 22px;
  font-size: 20px;
  stroke-width: 2.2;
}

.contact-card-copy {
  display: grid;
  gap: 10px;
}

.contact-card-copy h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.contact-card-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-card-value {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: clamp(1.12rem, 1.7vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.contact-form-panel {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.contact-form-head {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.contact-form-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.contact-form-head p {
  max-width: 640px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.contact-context-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.08);
  border: 1px solid rgba(99, 91, 255, 0.14);
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-context-pill strong {
  font-weight: 800;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.contact-field label span {
  color: var(--indigo);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  padding: 17px 18px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-family: inherit;
  font-size: 0.96rem;
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(76, 94, 123, 0.72);
}

.contact-field textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(99, 91, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.08);
  transform: translateY(-1px);
}

.contact-form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 2px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.contact-methods div {
  display: grid;
  gap: 4px;
}

.contact-methods span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-methods strong {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.grants-catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.grants-catalog-copy {
  max-width: 760px;
  min-width: 0;
}

.grants-catalog-copy h2 {
  margin: 18px 0 16px;
  font-size: clamp(2.25rem, 3.8vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--navy);
  overflow-wrap: anywhere;
}

.grants-catalog-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.grants-catalog-actions {
  display: flex;
  justify-content: flex-end;
  align-self: start;
  min-width: 0;
}

.grant-page-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.grant-page-filters {
  flex: 1 1 auto;
  min-width: 0;
}

.grants-page-note {
  max-width: 360px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
  overflow-wrap: anywhere;
}

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

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

.grant-grid-catalog .grant-card {
  min-height: 100%;
}

@media (max-width: 1180px) {
  .grants-head {
    max-width: 860px;
  }

  .grants-head h1 {
    font-size: clamp(2.85rem, 5.8vw, 4.8rem);
  }

  .grants-catalog-head,
  .grant-page-toolbar {
    flex-direction: column;
    align-items: start;
  }

  .grants-catalog-copy,
  .grants-catalog-copy p,
  .grants-page-note {
    max-width: none;
  }

  .grants-page-note {
    text-align: left;
  }

  .grants-catalog-actions {
    justify-content: flex-start;
  }

  .grant-page-filters {
    width: 100%;
  }

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

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

.services-grid-page .service-card {
  min-height: 100%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.92));
  border: 1px solid rgba(10, 37, 64, 0.06);
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.06);
}

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

.experts-grid-page .expert-story-card {
  min-height: 100%;
}



.proof-card {
  padding: 16px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(10, 37, 64, 0.07);
  box-shadow: var(--shadow-sm);
}

.proof-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
}

.proof-card span,
.intro-point span,
.benefit-card p,
.ecosystem-list li,
.grant-card p,
.account-feature span,
.package-card p,
.process-step p,
.article-body p,
.faq-content p,
.footer-brand p {
  color: var(--text-soft);
  font-size: 14px;
}

.intro-point strong,
.benefit-card h3,
.ecosystem-panel h3,
.ai-card h4,
.account-feature strong,
.expert-card-body h3,
.package-card h3,
.process-step h3,
.article-body h3,
.footer-column h3,
.footer-contact h3 {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.ecosystem-panel,
.benefit-card,
.ai-card,
.expert-card,
.package-card,
.article-card,
.faq-item {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.ecosystem-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--indigo);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ecosystem-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  min-height: 100%;
  background: rgba(240, 245, 250, 0.9);
  border-color: rgba(255, 255, 255, 0.92);
}

.ecosystem-panel-featured {
  background: linear-gradient(180deg, rgba(240, 245, 250, 0.94), rgba(233, 239, 245, 0.9));
}

.ecosystem-visual {
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
}

.ecosystem-window {
  height: 100%;
  min-height: 240px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 37, 64, 0.06);
  box-shadow: 0 18px 36px rgba(10, 37, 64, 0.06);
}

.ecosystem-window-split {
  display: flex;
  flex-direction: column;
}

.ecosystem-window-top,
.ecosystem-window-title,
.ecosystem-line-top {
  display: flex;
  align-items: center;
}

.ecosystem-window-top {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ecosystem-window-title {
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.ecosystem-window-icon,
.ecosystem-window-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 37, 64, 0.05);
  color: var(--navy);
  flex-shrink: 0;
}

.ecosystem-window-arrow {
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: transparent;
}

.ecosystem-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 138px;
  margin-top: 14px;
}

.ecosystem-chart span {
  display: block;
  height: var(--bar);
  min-height: 42px;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(180deg, rgba(99, 91, 255, 0.25), rgba(64, 98, 255, 0.92));
}

.ecosystem-chart-legend,
.ecosystem-bars-labels {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.ecosystem-copy {
  display: grid;
  gap: 8px;
  padding: 0 4px 4px;
}

.ecosystem-copy-top {
  padding-top: 2px;
}

.ecosystem-copy h3 {
  margin: 0;
  font-size: clamp(1.45rem, 1.9vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.ecosystem-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.ecosystem-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex: 1;
  margin-top: 10px;
}

.ecosystem-bars-group {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex: 1;
  min-height: 132px;
}

.ecosystem-bars-group span {
  display: block;
  width: 54px;
  max-width: 100%;
  height: var(--bar);
  min-height: 64px;
  border-radius: 14px 14px 10px 10px;
  background: var(--tone);
}

.ecosystem-score {
  display: grid;
  gap: 4px;
  align-self: flex-end;
  padding-bottom: 6px;
}

.ecosystem-score strong {
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.ecosystem-score span {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.ecosystem-bars-labels {
  grid-template-columns: repeat(3, minmax(0, 51px)) 1fr;
  justify-content: start;
  text-align: center;
}

.ecosystem-bars-labels span:last-child {
  text-align: right;
}

.ecosystem-line-top {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.ecosystem-line-top strong {
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.ecosystem-line-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.08);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 700;
}

.ecosystem-line-chart {
  margin-top: 4px;
  min-height: 132px;
}

.ecosystem-line-chart svg {
  width: 100%;
  height: 100%;
}

.ecosystem-line-chart path {
  fill: none;
  stroke: #4062ff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ecosystem-line-chart path.fill {
  fill: rgba(64, 98, 255, 0.12);
  stroke: none;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.benefit-card {
  padding: 26px;
}

.infinite-pill-bands {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.infinite-pill-row {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}

.infinite-pill-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: infinite-pill-scroll 32s linear infinite;
}

.infinite-pill-row-reverse .infinite-pill-track {
  animation-direction: reverse;
  animation-duration: 36s;
}

.infinite-pill {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.86);
  color: var(--text-soft);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.benefit-icon {
  margin-bottom: 18px;
}

.solution-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.solution-link:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 91, 255, 0.22);
  box-shadow: 0 18px 36px rgba(10, 37, 64, 0.08);
}

.solution-links::-webkit-scrollbar {
  height: 8px;
}

.solution-links::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.2);
}

.solution-stack {
  display: grid;
  gap: 28px;
}

.solution-panel {
  /* padding: 38px; */
  animation: panel-fade 0.38s var(--ease);
}

.solution-panel-split,
.solution-block-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 36px;
  align-items: start;
}

.solution-panel-split > *,
.solution-block-head > *,
.solution-panel-stacked > *,
.solution-stage > * {
  min-width: 0;
}

.solution-panel-stacked {
  display: grid;
  gap: 28px;
}

.solution-stage,
.resource-column,
.faq-column,
.account-side,
.experts-side,
.ecosystem-stage {
  position: relative;
  min-width: 0;
}

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

@keyframes infinite-pill-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.solution-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 560px;
  min-width: 0;
}

.solution-actions {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.inline-metrics {
  display: flex;
  gap: 14px;
  margin: 26px 0;
  flex-wrap: wrap;
}

.inline-metrics div {
  min-width: 112px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(10, 37, 64, 0.04);
}

.inline-metrics strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
}

.inline-metrics span {
  color: var(--text-muted);
  font-size: 12px;
}

.filter-pills,
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pills {
  margin: 0 0 28px;
}

.filter-pill,
.service-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.filter-pill {
  cursor: pointer;
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
}

.filter-pill.is-active {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-soft));
  border-color: transparent;
  color: var(--white);
}

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

.grant-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 252, 0.92));
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), opacity 0.28s var(--ease);
  min-width: 0;
}

.grant-card:hover,
.ai-card:hover,
.expert-card:hover,
.package-card:hover,
.article-card:hover,
.faq-item:hover,
.benefit-card:hover,
.ecosystem-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(10, 37, 64, 0.12);
}

.grant-card.is-hidden {
  display: none;
}

.grant-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.grant-category {
  color: var(--indigo);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.grant-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.grant-badge.success { background: rgba(0, 212, 170, 0.12); color: var(--green); }
.grant-badge.warning { background: rgba(255, 141, 72, 0.16); color: #c95a11; }
.grant-badge.info { background: rgba(99, 91, 255, 0.12); color: var(--indigo); }

.grant-card h4,
.article-body h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.grant-card p,
.grant-meta span {
  overflow-wrap: anywhere;
}

.grant-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--indigo);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.grant-card-link i,
.grant-card-link .lucide {
  width: 16px;
  height: 16px;
  font-size: 14px;
}

.grant-detail-page .grants-inline-metrics,
.service-detail-page .grants-inline-metrics {
  max-width: 920px;
}

.grant-detail-page .grants-inline-metrics,
.service-detail-page .grants-inline-metrics {
  align-items: stretch;
}

.grant-detail-page .grants-inline-metrics div,
.service-detail-page .grants-inline-metrics div {
  min-width: 0;
}

.grant-detail-page .grants-inline-metrics strong,
.service-detail-page .grants-inline-metrics strong {
  overflow-wrap: anywhere;
}

.grant-detail-page .grants-inline-metrics span,
.service-detail-page .grants-inline-metrics span {
  line-height: 1.5;
}

.grant-detail-shell,
.service-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.grant-detail-summary,
.service-detail-summary {
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.grant-detail-summary-card,
.service-detail-summary-card,
.grant-detail-card,
.service-detail-card {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), var(--shadow-sm);
}

.grant-detail-summary-card,
.service-detail-summary-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.grant-detail-summary-card h2,
.service-detail-summary-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.grant-detail-summary-card > p,
.service-detail-summary-card > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

.grant-detail-meta {
  margin-top: 0;
}

.grant-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.grant-detail-content,
.service-detail-content {
  display: grid;
  gap: 18px;
}

.grant-detail-card,
.service-detail-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.grant-detail-card h3,
.service-detail-card h3 {
  margin: 0;
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--navy);
}

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

.grant-detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.grant-detail-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--indigo);
}

.grant-detail-step-list {
  display: grid;
  gap: 12px;
}

.grant-detail-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(10, 37, 64, 0.06);
}

.grant-detail-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-soft));
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(99, 91, 255, 0.2);
}

.grant-detail-step span {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  color: var(--indigo);
  font-size: 20px;
}

.service-detail-icon.ic1,
.service-detail-icon.ic6,
.service-detail-icon.ic7 { background: rgba(99, 91, 255, 0.1); }
.service-detail-icon.ic2,
.service-detail-icon.ic10 { background: rgba(255, 141, 72, 0.12); }
.service-detail-icon.ic3,
.service-detail-icon.ic9 { background: rgba(0, 212, 170, 0.11); }
.service-detail-icon.ic4,
.service-detail-icon.ic8 { background: rgba(10, 37, 64, 0.08); }
.service-detail-icon.ic5 { background: rgba(83, 140, 255, 0.12); }

.service-detail-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.blog-detail-summary {
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.blog-detail-summary-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), var(--shadow-sm);
}

.blog-detail-media {
  border-radius: 24px;
  overflow: hidden;
}

.blog-detail-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.blog-detail-meta i {
  color: var(--indigo);
}

.blog-detail-summary-card > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.blog-detail-content {
  display: grid;
  gap: 18px;
}

.blog-detail-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.82;
}

.blog-detail-head {
  max-width: 920px;
}

.blog-article-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 10px;
}

.blog-article-meta span,
.blog-sidebar-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.blog-article-meta i,
.blog-sidebar-meta i {
  color: var(--indigo);
}

.blog-article-section {
  padding-top: 34px;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(300px, 0.74fr);
  gap: 28px;
  align-items: start;
}

.blog-article-main,
.blog-sidebar-card {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), var(--shadow-sm);
}

.blog-article-main {
  overflow: hidden;
}

.blog-article-cover {
  position: relative;
  padding: 18px 18px 0;
}

.blog-article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

.blog-article-body {
  display: grid;
  gap: 28px;
  padding: 28px;
}

.blog-article-lead {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.9;
}

.blog-article-section-block {
  display: grid;
  gap: 12px;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.blog-article-section-block h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.blog-article-section-block p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}


.blog-article-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 18px;
}

.blog-sidebar-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.blog-sidebar-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.blog-sidebar-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.78;
}

.blog-sidebar-toc {
  display: grid;
  gap: 10px;
}

.blog-sidebar-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 37, 64, 0.06);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), color 0.24s var(--ease);
}

.blog-sidebar-toc a:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 91, 255, 0.18);
  color: var(--indigo);
}

.blog-sidebar-toc a.is-active {
  background: rgba(99, 91, 255, 0.1);
  border-color: rgba(99, 91, 255, 0.16);
  color: var(--indigo);
}

.legal-page-meta {
  margin-top: 6px;
}

.legal-article-main .blog-article-body {
  gap: 22px;
}

.blog-sidebar-meta {
  display: grid;
  gap: 10px;
}

.related-grants-section {
  padding-top: 28px;
}

.grant-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin-top: 18px;
}

.grant-meta span,
.article-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.grant-meta i,
.article-date i {
  color: var(--indigo);
}

.ai-grid {
  display: grid;
  gap: 18px;
}

.service-card,
.ai-card {
  padding: 28px;
  min-height: 100%;
}

.ai-card-featured,
.package-card-featured {
  background: linear-gradient(180deg, rgba(99, 91, 255, 0.12), rgba(255, 255, 255, 0.96));
}

.service-catalog {
  display: grid;
  gap: 26px;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), var(--shadow-sm);
  min-width: 0;
}

.service-catalog-head {
  padding-bottom: 8px;
}

.service-catalog-head .solution-copy {
  max-width: 720px;
}

.service-catalog-head .solution-copy h3 {
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.service-catalog-head .solution-copy p {
  max-width: 660px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.service-catalog-head .solution-actions {
  justify-content: flex-end;
  align-self: start;
}

.service-filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: fit-content;
  /* max-width: 100%;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 37, 64, 0.06);
  box-shadow: 0 12px 26px rgba(10, 37, 64, 0.05); */
}

.service-catalog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.service-slider-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.service-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(10, 37, 64, 0.05);
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), color 0.24s var(--ease);
}

.service-nav-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 91, 255, 0.2);
  color: var(--indigo);
}

.service-nav-btn:disabled {
  opacity: 0.34;
  pointer-events: none;
}

.service-slider {
  overflow: hidden;
  min-width: 0;
}

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

.service-slider-track {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  min-width: 0;
}

.service-slider.is-ready .service-slider-track {
  display: flex;
  gap: 0;
}

.service-slider-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 37, 64, 0.05);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), opacity 0.28s var(--ease);
  min-width: 0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(10, 37, 64, 0.1);
}

.service-card h4,
.service-card p,
.service-card-link {
  overflow-wrap: anywhere;
}

.service-card.is-hidden {
  display: none;
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 18px;
  font-size: 18px;
  color: var(--indigo);
}

.service-card h4 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0 0 20px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.04);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  transition: background-color 0.24s var(--ease), color 0.24s var(--ease);
}

.service-card-link:hover {
  background: rgba(99, 91, 255, 0.1);
  color: var(--indigo);
}

.service-card-link i {
  font-size: 12px;
  transition: transform 0.24s var(--ease);
}

.service-card-link:hover i {
  transform: translateX(3px);
}

.service-card-icon.ic1,
.service-card-icon.ic6,
.service-card-icon.ic7 { background: rgba(99, 91, 255, 0.1); }
.service-card-icon.ic2,
.service-card-icon.ic10 { background: rgba(255, 141, 72, 0.12); }
.service-card-icon.ic3,
.service-card-icon.ic9 { background: rgba(0, 212, 170, 0.11); }
.service-card-icon.ic4,
.service-card-icon.ic8 { background: rgba(10, 37, 64, 0.08); }
.service-card-icon.ic5 { background: rgba(83, 140, 255, 0.12); }

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  font-size: 14px;
}

.package-card li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 2px;
  font: var(--fa-font-solid);
  color: var(--indigo);
  font-size: 12px;
}

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

.account-showcase-shell {
  display: grid;
  gap: 34px;
}

.account-showcase-shell .section-intro {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.account-showcase-shell .section-intro .eyebrow {
  margin: 0 auto;
}

.account-showcase-shell .section-intro p {
  max-width: 760px;
  margin: 0 auto;
}

.account-showcase {
  display: grid;
  grid-template-columns: minmax(480px, 0.9fr) minmax(0, 1.1fr);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 37, 64, 0.07);
  box-shadow: var(--shadow-lg);
}

.account-tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  align-content: start;
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.94), rgba(239, 244, 249, 0.9));
  border-right: 1px solid rgba(10, 37, 64, 0.08);
}

.account-tab {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: start;
  gap: 0;
  min-height: 190px;
  padding: 0;
  border: 1px solid rgba(10, 37, 64, 0.07);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
  box-shadow: 0 16px 30px rgba(10, 37, 64, 0.05);
  transition:
    transform 0.28s var(--ease),
    background-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.account-tab:hover,
.account-tab.is-active {
  background: rgba(255, 255, 255, 0.98);
}

.account-tab.is-active {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  box-shadow:
    var(--shadow-md),
    inset 0 0 0 2px rgba(99, 91, 255, 0.14);
}

.account-tab-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 28px;
  color: var(--indigo);
  font-size: 28px;
}

.account-tab-copy {
  display: grid;
  gap: 10px;
  padding: 28px 24px 28px 0;
}

.account-tab-copy strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.account-tab-copy small {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.account-preview-frame {
  position: relative;
  min-height: 100%;
  aspect-ratio: 1.405 / 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.94));
}

.account-preview-panel {
  position: absolute;
  inset: 0;
  padding: 22px 0 0 22px;
  opacity: 0;
  transform: translateX(26px) scale(0.985);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.account-preview-panel.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.account-preview-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px 0 0 0;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-bottom: none;
}

.expert-card-body span,
.package-card p,
.article-tag {
  color: var(--text-muted);
  font-size: 13px;
}

.expert-grid,
.package-grid,
.article-grid {
  display: grid;
  gap: 16px;
}

.expert-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.experts-side .section-intro {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.experts-side .section-intro .eyebrow {
  margin: 0 auto;
}

.experts-side .section-intro h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.experts-side .section-intro p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.expert-story-card,
.expert-visual-card {
  display: grid;
  gap: 18px;
  min-height: 250px;
  padding: 24px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 37, 64, 0.06);
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.06);
}

.expert-visual-card {
  padding: 0;
}

.expert-visual-card {
  border: 1px solid rgba(10, 37, 64, 0.06);
}

.expert-story-card-wide {
  min-height: 220px;
}

.expert-card-top,
.expert-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.expert-badge,
.expert-availability {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.expert-badge {
  background: rgba(99, 91, 255, 0.1);
  color: var(--indigo);
}

.expert-availability {
  background: rgba(10, 37, 64, 0.06);
  color: rgba(10, 37, 64, 0.72);
}

.expert-card-copy {
  display: grid;
  gap: 8px;
}

.expert-profile-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.expert-profile-copy {
  display: grid;
  gap: 4px;
}

.expert-avatar-photo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 10px 18px rgba(10, 37, 64, 0.08);
}

.expert-name {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.15rem, 1.5vw, 1.7rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.expert-role {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

.expert-description {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.expert-card-meta {
  display: grid;
  gap: 4px;
}

.expert-card-meta strong {
  display: block;
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.expert-card-meta span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

.expert-visual-surface {
  padding: 10px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 86%, rgba(10, 37, 64, 0.18), rgba(10, 37, 64, 0) 42%),
    radial-gradient(circle at 78% 20%, rgba(99, 91, 255, 0.22), rgba(99, 91, 255, 0) 28%),
    radial-gradient(circle at 22% 18%, rgba(81, 169, 255, 0.18), rgba(81, 169, 255, 0) 24%),
    linear-gradient(180deg, rgba(240, 247, 255, 0.98) 0%, rgba(227, 239, 255, 0.94) 36%, rgba(206, 226, 255, 0.96) 72%, rgba(232, 242, 255, 0.98) 100%);
  overflow: hidden;
  position: relative;
}

.expert-visual-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.52), transparent 20%),
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.38), transparent 24%),
    radial-gradient(circle at 52% 42%, rgba(99, 91, 255, 0.14), transparent 20%);
  pointer-events: none;
}

.expert-visual-copy,
.expert-visual-metrics {
  position: relative;
  z-index: 1;
}

.expert-visual-copy {
  height: 100%;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.expert-visual-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.08);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.expert-visual-copy h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.expert-visual-copy p {
  margin: 0;
  color: rgba(10, 37, 64, 0.78);
  font-size: 0.94rem;
  line-height: 1.55;
}

.expert-visual-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 12px 12px;
}

.expert-visual-metrics div {
  min-width: 132px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 20px rgba(10, 37, 64, 0.06);
}

.expert-visual-metrics strong {
  display: block;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.expert-visual-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(10, 37, 64, 0.66);
  font-size: 12px;
  line-height: 1.4;
}

.expert-story-card .btn.btn-sm {
  min-width: 104px;
  min-height: 42px;
  padding: 0 18px;
}

.expert-card-bottom .btn {
  box-shadow: none;
}

.expert-actions,
.resource-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.experts-side .expert-actions {
  justify-content: center;
}

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

.package-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
}

.package-card .btn {
  margin-top: auto;
}

.process-shell {
  margin-top: 72px;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(99, 91, 255, 0.18), rgba(99, 91, 255, 0.6), rgba(0, 212, 170, 0.2));
}

.process-step {
  position: relative;
  padding: 76px 18px 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(10, 37, 64, 0.06);
  box-shadow: var(--shadow-sm);
}

.process-step strong {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-soft));
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(99, 91, 255, 0.22);
}

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

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

.articles-grid-page .article-card {
  min-height: 100%;
}

.article-card {
  overflow: hidden;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.06);
}

.article-media {
  overflow: hidden;
  height: clamp(220px, 25vw, 300px);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.12), rgba(0, 212, 170, 0.08));
}

.article-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.article-body {
  display: grid;
  justify-items: start;
  gap: 16px;
  padding: 22px 18px 16px;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.08);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 700;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.resource-head {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.resource-head .eyebrow {
  margin: 0 auto 16px;
}

.resource-head h2 span {
  color: var(--indigo);
}

.resource-head p {
  max-width: 720px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.article-author,
.article-date {
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 700;
}

.article-divider {
  width: 1px;
  height: 24px;
  background: rgba(10, 37, 64, 0.12);
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--indigo);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.article-link .lucide,
.article-link i {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.article-excerpt {
  margin: -6px 0 2px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.article-card:hover .article-media img {
  transform: scale(1.035);
}

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

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.faq-item.is-open {
  border-color: rgba(99, 91, 255, 0.18);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-trigger i {
  color: var(--text-muted);
  transition: transform 0.28s var(--ease), color 0.28s var(--ease);
}

.faq-item.is-open .faq-trigger i {
  color: var(--indigo);
  transform: rotate(180deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.32s var(--ease);
}

.faq-content p {
  min-height: 0;
  margin: 0;
  padding: 0 24px 0;
}

.faq-item.is-open .faq-content {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-content p {
  padding-bottom: 24px;
}

.final-cta {
  position: relative;
  padding: 118px 0 126px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 249, 255, 0.82)),
    url("/images/image.png") center top / cover no-repeat;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0.72;
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(248, 250, 255, 0.72) 68%, rgba(248, 250, 255, 0.94));
  pointer-events: none;
}

.final-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  color: var(--text);
  border: 0;
}

.final-shell h2 {
  max-width: 1060px;
  margin: 0 auto 20px;
  color: var(--navy);
  font-size: clamp(2.85rem, 5.5vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.final-shell p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  line-height: 1.7;
}

.final-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.final-actions {
  margin: 34px 0 0;
}

.final-eyebrow {
  margin: 0 auto 22px;
}

.final-cta .btn.btn-primary {
  box-shadow: 0 18px 34px rgba(99, 91, 255, 0.22);
}

.final-cta .btn.btn-dark {
  box-shadow: 0 18px 34px rgba(10, 37, 64, 0.16);
}

.final-cta .btn.btn-lg {
  min-height: 58px;
  padding: 0 28px;
}

.site-footer {
  padding: 72px 0 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 255, 0.98)),
    linear-gradient(90deg, rgba(99, 91, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 140px 140px;
  color: var(--text-soft);
  border-top: 1px solid rgba(10, 37, 64, 0.06);
}

.site-footer .logo,
.site-footer .footer-contact h3,
.site-footer .footer-column h3 {
  color: var(--navy);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.footer-social,
.footer-legal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 37, 64, 0.08);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.05);
  transition:
    background-color 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(99, 91, 255, 0.12);
  border-color: rgba(99, 91, 255, 0.18);
  color: var(--indigo);
}

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

.footer-column a,
.footer-contact a,
.footer-legal a {
  display: block;
  color: var(--text-soft);
  font-size: 14px;
  transition: color 0.28s var(--ease), transform 0.28s var(--ease);
}

.footer-column a,
.footer-contact a {
  margin-bottom: 11px;
}

.footer-column a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--indigo);
}

.footer-contact i {
  width: 16px;
  margin-right: 8px;
  color: var(--indigo);
}

.footer-contact .btn {
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-admin-link {
  display: inline-flex;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-radius: 50%;
  background: rgba(10, 37, 64, 0.12);
  opacity: 0.22;
  vertical-align: middle;
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease),
    background-color 0.2s var(--ease);
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  opacity: 0.72;
  transform: scale(1.08);
  background: rgba(99, 91, 255, 0.56);
}

.sticky-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 26;
  transform: translateY(140%);
  transition: transform 0.3s var(--ease);
}

.sticky-cta .btn {
  width: 100%;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .infinite-pill-track {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }

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

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

  .grant-detail-shell {
    grid-template-columns: 1fr;
  }

  .grant-detail-summary {
    position: static;
  }

  .service-detail-shell {
    grid-template-columns: 1fr;
  }

  .service-detail-summary {
    position: static;
  }

  .blog-detail-shell {
    grid-template-columns: 1fr;
  }

  .blog-detail-summary {
    position: static;
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .blog-article-sidebar {
    position: static;
  }

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

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

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

  

  .grants-catalog-head,
  .grant-page-toolbar {
    flex-direction: column;
    align-items: start;
  }

  .grants-hero {
    padding-top: 148px;
    padding-bottom: 34px;
  }

  .error-hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 60px;
  }

  .error-visual {
    width: min(760px, 100%);
  }

  .error-copy h1 {
    font-size: clamp(2.15rem, 5.4vw, 3.25rem);
  }

  .error-copy p {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .grants-head {
    max-width: 760px;
  }

  .grants-head h1 {
    margin: 16px 0 14px;
    font-size: clamp(2.55rem, 6.6vw, 4rem);
    line-height: 0.98;
  }

  .grants-head p {
    max-width: 680px;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .grants-inline-metrics {
    max-width: 100%;
    margin-top: 28px;
  }

  .grant-detail-page .grants-inline-metrics,
  .service-detail-page .grants-inline-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .grant-detail-page .grants-inline-metrics div,
  .service-detail-page .grants-inline-metrics div {
    min-width: 0;
    padding: 14px;
    border-radius: 18px;
  }

  .grant-detail-page .grants-inline-metrics strong,
  .service-detail-page .grants-inline-metrics strong {
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.02;
  }

  .grant-detail-page .grants-inline-metrics span,
  .service-detail-page .grants-inline-metrics span {
    margin-top: 4px;
    font-size: 12px;
  }

  .grants-catalog-section {
    padding-top: 20px;
  }

  .grants-catalog-shell {
    gap: 24px;
    padding: 24px;
    border-radius: 30px;
  }

  .grants-catalog-copy h2 {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 4.2vw, 2.8rem);
  }

  .grants-catalog-copy p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .grants-catalog-actions {
    justify-content: flex-start;
  }

  .grants-catalog-actions,
  .grants-catalog-actions .btn {
    width: 100%;
  }

  .grants-catalog-actions .btn {
    justify-content: center;
    white-space: normal;
  }

  .grant-page-toolbar {
    gap: 14px;
  }

  .grant-page-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .grant-page-filters::-webkit-scrollbar {
    display: none;
  }

  .grant-page-filters .filter-pill {
    flex: 0 0 auto;
  }

  .grants-page-note {
    max-width: none;
    text-align: left;
  }

  .contact-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-methods {
    justify-content: flex-start;
  }

  .account-shell,
  .resource-shell,
  .solution-panel-split,
  .solution-block-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ecosystem-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .ecosystem-panel {
    gap: 16px;
    padding: 16px;
    border-radius: 26px;
  }

  .ecosystem-panel-featured {
    order: -1;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 22px;
    align-items: stretch;
  }

  .ecosystem-shell > .ecosystem-panel:not(.ecosystem-panel-featured) {
    min-height: 100%;
  }

  .ecosystem-panel-featured .ecosystem-copy {
    align-content: start;
    padding: 6px 6px 6px 2px;
  }

  .ecosystem-panel-featured .ecosystem-copy h3 {
    font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  }

  .ecosystem-panel-featured .ecosystem-copy p {
    max-width: 420px;
    font-size: 14px;
  }

  .ecosystem-visual {
    padding: 12px;
    border-radius: 22px;
  }

  .ecosystem-window {
    min-height: 220px;
    padding: 14px;
    border-radius: 18px;
  }

  .ecosystem-bars {
    gap: 10px;
  }

  .ecosystem-bars-group {
    gap: 8px;
    min-height: 118px;
  }

  .ecosystem-bars-group span {
    width: 44px;
  }

  .ecosystem-score strong,
  .ecosystem-line-top strong {
    font-size: 1.9rem;
  }

  .ecosystem-chart {
    min-height: 122px;
  }

  .infinite-pill-bands {
    margin-top: 24px;
  }

  .account-showcase {
    grid-template-columns: 1fr;
  }

  .account-tab-list {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  }

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

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

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

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

  .solution-actions {
    justify-content: flex-start;
  }

  .service-catalog-head .solution-actions {
    justify-content: flex-start;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

  .expert-editorial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .expert-visual-card {
    grid-column: auto;
    min-height: 280px;
  }

  .expert-story-card-wide {
    grid-column: auto;
  }

  .process-track::before {
    display: none;
  }
}

@media (max-width: 980px) {
  .solutions-section .section-head {
    max-width: 760px;
    margin-bottom: 36px;
  }

  .solutions-section .section-head h2 {
    font-size: clamp(2.35rem, 4.4vw, 3.2rem);
  }

  .solutions-section .section-head p {
    max-width: 700px;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .mobile-toggle,
  .mobile-close {
    display: inline-flex;
  }

  .mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 31;
    background: rgba(10, 37, 64, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s var(--ease);
  }

  .mobile-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 32;
    display: flex;
    flex-direction: column;
    width: min(380px, 100vw);
    height: 100vh;
    padding: 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    box-shadow: -24px 0 48px rgba(10, 37, 64, 0.12);
  }

  .mobile-panel.is-open {
    transform: translateX(0);
  }

  .mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
  }

  .mobile-close {
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
  }

  .mobile-links {
    display: grid;
    gap: 14px;
  }

  .mobile-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-cta-stack {
    display: grid;
    gap: 12px;
    margin-top: auto;
  }

  .hero {
    padding-top: 136px;
    background-position: center center;
  }

  .solution-stack {
    gap: 24px;
  }

  .solution-links {
    margin-bottom: 24px;
  }

  .solution-panel-split,
  .solution-block-head,
  .solution-panel-stacked {
    gap: 28px;
  }

  .solution-copy {
    max-width: none;
  }

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

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

  .expert-visual-card,
  .expert-story-card-wide {
    grid-column: auto;
  }

  .expert-visual-card {
    min-height: 280px;
  }

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

  .evaluation-modal {
    padding: 20px;
  }

  .booking-modal {
    padding: 20px;
    align-items: start;
  }

  .evaluation-modal__dialog {
    padding: 24px;
    border-radius: 28px;
  }

  .booking-modal__dialog {
    padding: 24px;
    border-radius: 28px;
    max-height: calc(100dvh - 40px);
  }

  .booking-modal__expert {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
  }

  .booking-modal__expert-price {
    justify-items: start;
    text-align: left;
  }

  .evaluation-form__grid {
    grid-template-columns: 1fr;
  }

  .booking-form__grid {
    grid-template-columns: 1fr;
  }

  .evaluation-field--full {
    grid-column: auto;
  }

  .booking-field--full {
    grid-column: auto;
  }

  .booking-form__note {
    gap: 8px 14px;
  }
}

@media (max-width: 1000px) and (min-width: 821px) {
  .expert-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .expert-visual-card,
  .expert-story-card-wide {
    grid-column: auto;
  }

  .expert-visual-card {
    min-height: 280px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .grants-hero {
    padding-top: 136px;
    padding-bottom: 30px;
  }

  .error-hero {
    padding-top: 120px;
    padding-bottom: 52px;
  }

  .error-shell {
    gap: 16px;
  }

  .error-visual {
    width: min(620px, 100%);
  }

  .error-copy {
    gap: 8px;
  }

  .error-kicker {
    font-size: 0.84rem;
  }

  .error-copy h1 {
    font-size: clamp(1.86rem, 8vw, 2.7rem);
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .error-copy p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .grants-head {
    max-width: 100%;
  }

  .grants-head h1 {
    font-size: clamp(2.2rem, 9vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  .grants-head p {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .grant-detail-page .grants-inline-metrics,
  .service-detail-page .grants-inline-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .grant-detail-page .grants-inline-metrics div,
  .service-detail-page .grants-inline-metrics div {
    padding: 13px 12px;
    border-radius: 16px;
  }

  .grant-detail-page .grants-inline-metrics strong,
  .service-detail-page .grants-inline-metrics strong {
    font-size: clamp(1.38rem, 4vw, 1.75rem);
  }

  .grant-detail-page .grants-inline-metrics span,
  .service-detail-page .grants-inline-metrics span {
    font-size: 11px;
    line-height: 1.45;
  }

  .grants-catalog-shell {
    padding: 24px;
    border-radius: 28px;
  }

  .grants-catalog-copy h2 {
    margin: 12px 0 10px;
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .grants-catalog-copy p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

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

  .contact-card,
  .contact-form-panel {
    border-radius: 28px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-form-panel {
    gap: 20px;
    padding: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .grant-grid-catalog {
    grid-template-columns: 1fr;
  }

  .grant-page-toolbar {
    gap: 12px;
  }

  .grants-page-note {
    font-size: 12px;
    line-height: 1.6;
  }

  .grant-detail-summary-card,
  .grant-detail-card,
  .service-detail-summary-card,
  .service-detail-card,
  .blog-detail-summary-card,
  .blog-detail-card {
    border-radius: 26px;
  }

  .grant-detail-summary-card,
  .grant-detail-card,
  .service-detail-summary-card,
  .service-detail-card,
  .blog-detail-summary-card,
  .blog-detail-card {
    padding: 20px;
  }

  .articles-grid-page {
    grid-template-columns: 1fr;
  }

  .services-grid-page {
    grid-template-columns: 1fr;
  }

  .blog-detail-media {
    border-radius: 20px;
  }

  .blog-article-main,
  .blog-sidebar-card {
    border-radius: 26px;
  }

  .blog-article-cover {
    padding: 16px 16px 0;
  }

  .blog-article-body {
    gap: 24px;
    padding: 24px;
  }

  .experts-grid-page {
    grid-template-columns: 1fr;
  }

  .experts-grid-page .expert-story-card-wide {
    grid-column: auto;
  }

  .contact-field-full {
    grid-column: auto;
  }

  .section {
    padding: 88px 0;
  }

  .evaluation-modal {
    padding: 16px;
  }

  .booking-modal {
    padding: 16px;
    align-items: start;
  }

  .evaluation-modal__dialog {
    gap: 20px;
    padding: 20px;
    border-radius: 24px;
  }

  .booking-modal__dialog {
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
    max-height: calc(100dvh - 32px);
  }

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

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

  .evaluation-form__footer .btn {
    width: 100%;
  }

  .booking-form__footer .btn {
    width: 100%;
  }

  .booking-modal__head {
    gap: 8px;
    padding-right: 34px;
  }

  .booking-modal__head p {
    line-height: 1.62;
  }

  .booking-modal__expert {
    padding: 16px;
    border-radius: 22px;
  }

  .booking-modal__expert-copy {
    gap: 4px;
  }

  .booking-modal__expert-price {
    gap: 2px;
  }

  .section-head,
  .section-head-left,
  .section-intro,
  .solution-copy,
  .faq-intro,
  .resource-head,
  .account-showcase-shell .section-intro,
  .experts-side .section-intro {
    max-width: none;
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-head .eyebrow,
  .section-head-left .eyebrow,
  .section-intro .eyebrow,
  .solution-copy .eyebrow,
  .faq-intro .eyebrow,
  .resource-head .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .section-head h2,
  .section-head h3,
  .section-head-left h2,
  .section-intro h2,
  .solution-copy h3,
  .faq-intro h2,
  .resource-head h2,
  .section-head p,
  .section-head-left p,
  .section-intro p,
  .solution-copy p,
  .faq-intro p,
  .resource-head p {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-bottom: 92px;
  }

  .hero-actions,
  .inline-metrics,
  .expert-actions,
  .resource-actions,
  .final-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .expert-actions .btn,
  .resource-actions .btn,
  .final-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .ecosystem-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ecosystem-panel,
  .ecosystem-panel-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
    order: initial;
    text-align: left;
    align-items: start;
  }

  .ecosystem-panel-featured {
    order: -1;
  }

  .ecosystem-copy,
  .ecosystem-copy-top {
    gap: 8px;
    padding: 0 2px 2px;
    justify-items: start;
  }

  .ecosystem-copy h3 {
    font-size: 1.45rem;
    line-height: 1.14;
    text-align: left;
  }

  .ecosystem-copy p {
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
  }

  .ecosystem-visual {
    padding: 10px;
    border-radius: 20px;
  }

  .ecosystem-window {
    min-height: 210px;
    padding: 14px;
    border-radius: 18px;
  }

  .ecosystem-window-title {
    font-size: 12px;
  }

  .ecosystem-window-icon,
  .ecosystem-window-arrow {
    width: 32px;
    height: 32px;
  }

  .ecosystem-bars-group span {
    width: 40px;
    min-height: 56px;
  }

  .ecosystem-score strong,
  .ecosystem-line-top strong {
    font-size: 1.7rem;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
  }

  .benefit-card {
    padding: 22px;
    border-radius: 24px;
    text-align: left;
  }

  .infinite-pill-bands {
    gap: 12px;
    margin-top: 20px;
  }

  .grant-grid,
  .article-grid,
  .expert-grid,
  .ai-grid,
  .account-features,
  .benefit-grid,
  .service-catalog-grid,
  .package-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .solution-stack {
    gap: 20px;
    width: 100%;
  }

  .solution-panel {
    /* padding: 24px; */
    border-radius: 26px;
    width: 100%;
    max-width: 100%;
  }

  .solution-panel-split,
  .solution-block-head,
  .solution-panel-stacked {
    gap: 22px;
  }

  .solution-copy h3 {
    font-size: 2.1rem;
  }

  .solution-copy p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .inline-metrics {
    gap: 10px;
    margin: 20px 0 22px;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
  }

  .inline-metrics div {
    min-width: 0;
    flex: 1 1 0;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .filter-pills {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-bottom: 22px;
  }

  .filter-pill {
    flex: 0 0 auto;
  }

  .service-catalog {
    padding: 22px;
    width: 100%;
    max-width: 100%;
  }

  .service-catalog-head .solution-copy h3 {
    font-size: 2.25rem;
  }

  .service-filter-pills {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .service-catalog-bar {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .service-slider-nav {
    justify-content: flex-end;
  }

  .service-slider-page {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .solution-links {
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .solution-link {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
  }

  .service-catalog-head .solution-actions .btn,
  .solution-copy > .btn {
    width: 100%;
  }

  .solutions-section .section-head {
    margin-bottom: 28px;
  }

  .solutions-section .section-head h2 {
    font-size: 2.2rem;
  }

  .service-catalog-head {
    padding-bottom: 0;
  }

  .service-catalog-head .solution-copy,
  .service-catalog-head .solution-actions {
    width: 100%;
  }

  .account-tab {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 90px;
    border-radius: 22px;
  }

  .account-tab-icon {
    padding-top: 18px;
    font-size: 22px;
  }

  .account-tab-copy {
    gap: 8px;
    padding: 18px 18px 18px 0;
  }

  .account-tab-copy strong {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .account-tab-copy small {
    font-size: 13px;
    line-height: 1.55;
  }

  .account-tab-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-tabs {
    padding-bottom: 0;
    gap: 0;
  }

  .faq-tab {
    text-align: left;
    padding: 14px 0;
  }

  .faq-tab::after {
    left: 0;
    right: auto;
    width: 96px;
    bottom: 0;
  }

  .expert-editorial-grid {
    grid-template-columns: 1fr;
  }

  .expert-visual-card {
    grid-column: auto;
    min-height: 420px;
  }

  .expert-story-card,
  .expert-visual-card {
    min-height: auto;
    border-radius: 28px;
    gap: 22px;
  }

  .expert-story-card .expert-quote {
    font-size: 1.3rem;
  }

  .expert-profile-row {
    gap: 12px;
  }

  .expert-avatar-photo {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .expert-person {
    gap: 14px;
  }

  .expert-avatar.expert-avatar-initials {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .service-detail-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 18px;
  }

  .service-detail-pill-row {
    gap: 6px;
  }

  .expert-person-copy strong {
    font-size: 1.35rem;
  }

  .expert-visual-copy {
    padding: 20px;
  }

  .expert-visual-copy h3 {
    font-size: 1.9rem;
  }

  .expert-visual-metrics {
    padding: 0 10px 10px;
  }

  .sticky-cta {
    display: block;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 750px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 80px 0;
  }

  .grant-detail-page .grants-inline-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .grant-detail-page .grants-inline-metrics div {
    min-width: 0;
    padding: 12px;
    border-radius: 16px;
  }

  .grant-detail-page .grants-inline-metrics strong {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
    line-height: 1.06;
  }

  .grant-detail-page .grants-inline-metrics span {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.4;
  }

  .ecosystem-shell {
    gap: 16px;
  }

  .ecosystem-panel,
  .ecosystem-panel-featured {
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
  }

  .ecosystem-copy,
  .ecosystem-copy-top {
    gap: 6px;
    padding: 0 2px 2px;
  }

  .ecosystem-copy h3 {
    font-size: 1.34rem;
    line-height: 1.16;
  }

  .ecosystem-copy p {
    font-size: 12px;
    line-height: 1.56;
  }

  .ecosystem-visual {
    padding: 8px;
    border-radius: 18px;
  }

  .ecosystem-window {
    min-height: 184px;
    padding: 12px;
    border-radius: 16px;
  }

  .ecosystem-window-top {
    margin-bottom: 10px;
  }

  .ecosystem-window-title {
    gap: 8px;
    font-size: 11px;
  }

  .ecosystem-window-icon,
  .ecosystem-window-arrow {
    width: 30px;
    height: 30px;
  }

  .ecosystem-chart {
    gap: 8px;
    min-height: 100px;
    margin-top: 10px;
  }

  .ecosystem-chart-legend,
  .ecosystem-bars-labels {
    gap: 8px;
    font-size: 10px;
  }

  .ecosystem-bars {
    gap: 8px;
    margin-top: 8px;
  }

  .ecosystem-bars-group {
    gap: 6px;
    min-height: 96px;
  }

  .ecosystem-bars-group span {
    width: 34px;
    min-height: 46px;
    border-radius: 12px 12px 8px 8px;
  }

  .ecosystem-score strong,
  .ecosystem-line-top strong {
    font-size: 1.42rem;
  }

  .ecosystem-score span {
    font-size: 11px;
  }

  .ecosystem-line-badge {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .ecosystem-line-chart {
    min-height: 112px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
  }

  .benefit-card {
    padding: 18px;
    border-radius: 20px;
  }

  .benefit-icon {
    margin-bottom: 14px;
  }

  .benefit-card h3 {
    font-size: 0.98rem;
  }

  .benefit-card p {
    font-size: 12px;
    line-height: 1.55;
  }

  .infinite-pill-bands {
    gap: 10px;
    margin-top: 18px;
  }

  .infinite-pill {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 15px;
    font-size: 0.76rem;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 72px;
  }

  .error-hero {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .error-shell {
    gap: 14px;
  }

  .error-visual {
    width: min(100%, 420px);
  }

  .error-kicker {
    font-size: 0.8rem;
  }

  .error-copy {
    gap: 8px;
  }

  .error-copy h1 {
    font-size: clamp(1.6rem, 9vw, 2.1rem);
  }

  .error-copy p {
    font-size: 12px;
    line-height: 1.56;
  }

  .error-actions {
    width: 100%;
    gap: 8px;
  }

  .error-actions .btn {
    width: 100%;
  }

  .breadcrumbs {
    margin-bottom: 12px;
  }

  .breadcrumbs-list {
    gap: 8px;
    padding: 8px 12px;
  }

  .breadcrumbs-item {
    gap: 8px;
    font-size: 12px;
  }

  .grants-head h1 {
    font-size: clamp(2.55rem, 13vw, 3.2rem);
  }

  .grants-inline-metrics {
    margin-top: 24px;
  }

  .grants-catalog-shell {
    padding: 20px;
    border-radius: 24px;
    overflow: hidden;
  }

  .grants-hero {
    padding-top: 128px;
    padding-bottom: 24px;
  }

  .grants-head h1 {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 10.5vw, 2.8rem);
    line-height: 1;
  }

  .grants-head p {
    font-size: 13px;
    line-height: 1.62;
  }

  .contact-card,
  .contact-form-panel {
    border-radius: 24px;
  }

  .contact-card {
    gap: 14px;
    padding: 18px;
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .contact-card-copy {
    gap: 8px;
  }

  .contact-card-copy h3,
  .contact-card-value {
    font-size: 1.18rem;
  }

  .contact-card-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  .contact-form-panel {
    gap: 18px;
    padding: 18px;
  }

  .contact-form-head {
    gap: 12px;
  }

  .contact-form-head h2 {
    font-size: clamp(1.55rem, 9vw, 2rem);
  }

  .contact-form-head p {
    font-size: 13px;
    line-height: 1.55;
  }

  .contact-field {
    gap: 8px;
  }

  .contact-field label {
    font-size: 0.92rem;
  }

  .contact-field input,
  .contact-field textarea {
    padding: 15px 16px;
    border-radius: 20px;
    font-size: 14px;
  }

  .contact-field textarea {
    min-height: 150px;
  }

  .contact-form-footer {
    gap: 16px;
  }

  .contact-form-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-methods {
    gap: 12px;
  }

  .contact-methods div {
    width: 100%;
  }

  .grants-catalog-copy h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.35rem);
  }

  .grant-page-toolbar {
    gap: 14px;
  }

  .grants-page-note {
    font-size: 12px;
    line-height: 1.6;
  }

  .grant-detail-page .grants-inline-metrics,
  .service-detail-page .grants-inline-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .grant-detail-page .grants-inline-metrics div,
  .service-detail-page .grants-inline-metrics div {
    padding: 11px 10px;
    border-radius: 14px;
  }

  .grant-detail-page .grants-inline-metrics strong,
  .service-detail-page .grants-inline-metrics strong {
    font-size: clamp(1.14rem, 5.6vw, 1.45rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .grant-detail-page .grants-inline-metrics span,
  .service-detail-page .grants-inline-metrics span {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.35;
  }

  .grant-top {
    gap: 10px;
    margin-bottom: 12px;
  }

  .grant-badge {
    min-height: 26px;
    padding: 0 10px;
    font-size: 11px;
  }

  .grant-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.28;
  }

  .grant-card p,
  .grant-meta span {
    font-size: 13px;
    line-height: 1.58;
  }

  .grant-page-filters {
    gap: 8px;
  }

  .grant-page-filters .filter-pill {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .grants-catalog-actions .btn {
    min-height: 50px;
    padding-inline: 16px;
    font-size: 14px;
    line-height: 1.3;
  }

  .ecosystem-shell {
    gap: 14px;
  }

  .ecosystem-panel,
  .ecosystem-panel-featured {
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
  }

  .ecosystem-panel-featured {
    order: -1;
  }

  .ecosystem-visual {
    padding: 8px;
    border-radius: 18px;
  }

  .ecosystem-window {
    min-height: 188px;
    padding: 12px;
    border-radius: 16px;
  }

  .ecosystem-copy h3 {
    font-size: 1.28rem;
  }

  .ecosystem-copy p {
    font-size: 12px;
    line-height: 1.55;
  }

  .ecosystem-label {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .ecosystem-chart {
    gap: 8px;
    min-height: 104px;
  }

  .ecosystem-chart-legend,
  .ecosystem-bars-labels {
    gap: 8px;
    font-size: 10px;
  }

  .ecosystem-bars {
    gap: 8px;
  }

  .ecosystem-bars-group {
    gap: 6px;
    min-height: 102px;
  }

  .ecosystem-bars-group span {
    width: 32px;
    min-height: 48px;
    border-radius: 12px 12px 8px 8px;
  }

  .ecosystem-score strong,
  .ecosystem-line-top strong {
    font-size: 1.45rem;
  }

  .ecosystem-line-badge {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-card {
    padding: 18px;
    border-radius: 20px;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 13px;
  }

  .infinite-pill {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 0.78rem;
  }

  .section-head,
  .section-head-left,
  .section-intro,
  .solution-copy,
  .faq-intro,
  .resource-head {
    text-align: center;
    align-items: center;
  }

  .section-head .eyebrow,
  .section-head-left .eyebrow,
  .section-intro .eyebrow,
  .solution-copy .eyebrow,
  .faq-intro .eyebrow,
  .resource-head .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .header-shell {
    padding: 0 14px;
    min-height: 58px;
  }

  .logo {
    font-size: 1.05rem;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .account-tab {
    grid-template-columns: 50px minmax(0, 1fr);
    border-radius: 18px;
  }

  .account-tab.is-active {
    transform: translateY(-2px);
    box-shadow:
      0 14px 28px rgba(10, 37, 64, 0.07),
      inset 0 0 0 1px rgba(99, 91, 255, 0.16);
  }

  .account-tab-icon {
    padding-top: 16px;
    font-size: 19px;
  }

  .account-tab-copy {
    gap: 6px;
    padding: 16px 16px 16px 0;
  }

  .account-tab-copy strong {
    font-size: 0.98rem;
  }

  .account-tab-copy small {
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  /* .solutions-section .section-head {
    margin-bottom: 22px;
  }

  .solutions-section .section-head h2 {
    font-size: 1.95rem;
  }

  .solutions-section .section-head p {
    font-size: 0.96rem;
    line-height: 1.7;
  } */

  .solution-stack {
    gap: 16px;
  }

  .solution-panel {
    /* padding: 20px; */
    border-radius: 22px;
  }

  .solution-copy,
  .solution-stage,
  .grant-grid,
  .service-catalog,
  .service-slider,
  .service-slider-track,
  .service-slider-page {
    width: 100%;
    max-width: 100%;
  }

  .solution-panel-split,
  .solution-block-head,
  .solution-panel-stacked {
    gap: 18px;
  }

  .inline-metrics {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
  }

  .inline-metrics div {
    min-width: 0;
    flex: 1 1 0;
    padding: 12px 10px;
  }

  .grant-card {
    padding: 18px;
    border-radius: 20px;
  }

  .evaluation-modal__dialog {
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
  }

  .booking-modal__dialog {
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    width: min(100%, calc(100vw - 20px));
    max-height: calc(100dvh - 20px);
  }

  .evaluation-modal__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .booking-modal__close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .evaluation-modal__head h2 {
    font-size: 1.8rem;
  }

  .booking-modal__head h2 {
    font-size: 1.46rem;
    line-height: 1.08;
  }

  .evaluation-modal__head p,
  .evaluation-field input,
  .evaluation-field textarea {
    font-size: 14px;
  }

  .booking-modal__head p,
  .booking-field input,
  .booking-field textarea {
    font-size: 14px;
  }

  .booking-modal__head {
    padding-right: 28px;
  }

  .booking-modal__head p {
    font-size: 13px;
  }

  .evaluation-field input {
    min-height: 54px;
  }

  .booking-field input {
    min-height: 54px;
  }

  .evaluation-field textarea {
    min-height: 132px;
  }

  .booking-field textarea {
    min-height: 116px;
  }

  .booking-modal__expert {
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
  }

  .booking-modal__expert-avatar {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .booking-modal__expert-copy h3 {
    font-size: 1.08rem;
    line-height: 1.08;
  }

  .booking-modal__expert-copy p {
    font-size: 14px;
    line-height: 1.45;
  }

  .booking-modal__expert-price strong {
    font-size: 0.98rem;
  }

  .booking-modal__expert-price span,
  .booking-form__note span,
  .booking-field span,
  .booking-form__success p {
    font-size: 12px;
  }

  .booking-field {
    gap: 6px;
  }

  .booking-field input,
  .booking-field textarea {
    padding-inline: 14px;
    border-radius: 16px;
  }

  .booking-form {
    gap: 14px;
  }

  .booking-form__grid {
    gap: 12px;
  }

  .booking-form__footer {
    gap: 12px;
  }

  .booking-form__note {
    display: none;
  }

  .booking-form__success {
    padding: 14px;
    border-radius: 16px;
  }

  .grant-card-link {
    margin-top: 14px;
    font-size: 13px;
  }

  .grant-detail-summary-card,
  .grant-detail-card,
  .service-detail-summary-card,
  .service-detail-card,
  .blog-detail-summary-card,
  .blog-detail-card {
    border-radius: 22px;
    padding: 18px;
  }

  .grant-detail-summary-card h2,
  .service-detail-summary-card h2 {
    font-size: clamp(1.45rem, 8vw, 1.85rem);
  }

  .grant-detail-summary-card > p,
  .service-detail-summary-card > p,
  .blog-detail-summary-card > p,
  .grant-detail-list li,
  .grant-detail-step span {
    font-size: 14px;
    line-height: 1.6;
  }

  .grant-detail-card h3,
  .service-detail-card h3 {
    font-size: 1.18rem;
  }

  .blog-detail-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .blog-article-meta {
    gap: 8px 14px;
  }

  .blog-article-main,
  .blog-sidebar-card {
    border-radius: 22px;
  }

  .blog-article-cover {
    padding: 14px 14px 0;
  }

  .blog-article-cover img {
    border-radius: 20px;
  }

  .blog-article-body {
    gap: 20px;
    padding: 20px;
  }

  .blog-article-lead,
  .blog-article-section-block p,
  .blog-sidebar-card p {
    font-size: 14px;
    line-height: 1.72;
  }

  .blog-article-section-block h2,
  .blog-sidebar-card h3 {
    font-size: 1.16rem;
  }

  .grant-detail-step {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .grant-detail-step strong {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 14px;
  }

  .service-detail-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 16px;
  }

  .blog-detail-media {
    border-radius: 18px;
  }

  .grant-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-catalog {
    padding: 18px;
    border-radius: 22px;
  }

  .service-catalog-bar {
    gap: 14px;
  }

  .filter-pills,
  .service-filter-pills,
  .solution-links {
    width: 100%;
    max-width: 100%;
  }

  .solution-links {
    gap: 8px;
    margin-bottom: 16px;
  }

  .solution-link {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 12px;
  }

  .service-slider-nav {
    justify-content: space-between;
  }

  .service-nav-btn {
    width: 42px;
    height: 42px;
  }

  .section-head h2,
  .section-intro h2,
  .solution-copy h3,
  .final-shell h2 {
    font-size: 2rem;
  }

  .hero-text,
  .section-head p,
  .section-intro p,
  .solution-copy p,
  .final-shell p {
    font-size: 1rem;
  }

.metric-card,
.ecosystem-panel,
.benefit-card,
.solution-panel,
.ai-card,
.expert-card,
.package-card,
.article-card,
.faq-item,
.final-shell {
  border-radius: 24px;
  }

  .client-toast-stack {
    top: auto;
    right: 16px;
    bottom: 18px;
    left: 16px;
  }

  .client-toast {
    width: 100%;
  }
}

.contact-form-alert,
.evaluation-form__alert,
.booking-form__alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-alert.is-success {
  background: rgba(64, 196, 140, 0.12);
  border-color: rgba(64, 196, 140, 0.18);
  color: #168163;
}

.contact-form-alert.is-danger,
.evaluation-form__alert,
.booking-form__alert {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.16);
  color: #b23838;
}

.contact-field-error {
  display: block;
  margin-top: 6px;
  color: #b23838;
  font-size: 12px;
  font-weight: 600;
}
