/* ══════════════════════════════════════════════════════════════════════
   About page — корпоративний вигляд нового сайту (dev3.getgrant.ua/about/)
   перенесений на стару ПРОДівську тему `getgrants`.

   Нижче — правила `.ab-*` з astro-frontend/src/styles/main.css, узяті в
   вихідному порядку (щоб каскад лишився таким самим) і зсунуті під `.ab-page`.
   Префікс потрібен двічі: щоб не зачепити решту сайту і щоб перебити
   глобальні правила теми (bootstrap-reboot + main.css), які інакше
   з'їдають типографіку.
   ══════════════════════════════════════════════════════════════════════ */

.ab-page {
  /* Токени дизайн-системи нового сайту — у старій темі їх немає */
  --blue:         #0166b0;
  --blue-dark:    #0152A0;
  --navy:         #0D1B3E;
  --navy-deep:    #0B1D38;
  --white:        #ffffff;
  --surface:      #F8F9FB;
  --border:       #E8ECEF;
  --border-mid:   #D4D8DF;
  --text:         #1A202C;
  --text-body:    #374151;
  --text-muted:   #6B7280;
  --text-faint:   #9CA3AF;
  --text-blue:    #0166b0;
  --r-xs: 4px;  --r-sm: 6px;  --r-md: 10px;  --r-lg: 14px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 2px 6px rgba(0,0,0,.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,.07);
  --t: .16s ease;

  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Базовий кегль нового сайту — 15px/1.6. Стара тема дає 16px, і без цього
     рядка кожен успадкований текст їхав на піксель вище. */
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}

.ab-page *, .ab-page *::before, .ab-page *::after { box-sizing: border-box; }
.ab-page h1, .ab-page h2, .ab-page h3,
.ab-page h4, .ab-page h5, .ab-page h6, .ab-page p {
  margin: 0; padding: 0; font-family: inherit; text-transform: none;
  /* Тема тисне заголовкам line-height:1.3; новий сайт лишає успадковані 1.6,
     тож без цього рядка всі підзаголовки виходять на пів рядка тіснішими. */
  line-height: inherit;
}
.ab-page ul { margin: 0; padding: 0; list-style: none; }
.ab-page a { text-decoration: none; }
.ab-page img { max-width: 100%; }

.ab-page .ab-founder-section {
  padding: 5rem 0; background: #fff;
  border-top: 1px solid #EAECF0;
}
.ab-page .ab-founder-section-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
}
.ab-page .ab-founder-grid {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 5rem; align-items: start; margin-top: 2.5rem;
}
.ab-page .ab-founder-photos {
  display: flex; flex-direction: column; gap: 1rem;
}
.ab-page .ab-founder-main-photo {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(1,102,176,.1);
  position: relative;
}
.ab-page .ab-founder-main-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.ab-page .ab-founder-main-photo .ab-photo-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.95);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(1,102,176,.12);
}
.ab-page .ab-photo-badge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}
.ab-page .ab-photo-badge-text {
  font-size: 14px; font-weight: 700; color: #0D1B3E;
}
.ab-page .ab-photo-badge-sub {
  font-size: 12px; color: #6B7280; font-weight: 500;
}
.ab-page .ab-founder-photo-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.ab-page .ab-founder-photo-stat {
  background: #F5F6F8; border-radius: 14px;
  padding: 1rem 1.25rem; border: 1px solid #E8ECF2;
  text-align: center;
}
.ab-page .ab-founder-photo-stat-n {
  font-size: 26px; font-weight: 900; color: #0166b0; line-height: 1;
}
.ab-page .ab-founder-photo-stat-l {
  font-size: 13px; color: #6B7280; margin-top: 4px;
}
.ab-page .ab-founder-name-big {
  font-size: 36px; font-weight:800; color: #0D1B3E;
  letter-spacing: -.3px; line-height: 1.15; margin-bottom: .5rem;
}
.ab-page .ab-founder-title {
  font-size: 17px; font-weight: 600; color: #0166b0;
  margin-bottom: 1.75rem;
}
.ab-page .ab-founder-credentials {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem;
}
.ab-page .ab-cred-badge {
  display: flex; align-items: center; gap: 6px;
  background: #F3F5F8; color: #0166b0; border: 1px solid #BFDBFE;
  border-radius: 6px; padding: 5px 12px;
  font-size: 12px; font-weight: 700;
}
.ab-page .ab-founder-bio-text {
  font-size: 16px; color: #4B5563; line-height: 1.8;
  margin-bottom: 2rem;
}
.ab-page .ab-founder-bio-text p {
  margin-bottom: 1rem;
}
.ab-page .ab-founder-bio-text p:last-child {
  margin-bottom: 0;
}
.ab-page .ab-expertise-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem; margin-bottom: 2rem;
}
.ab-page .ab-expertise-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .9rem 1rem; border-radius: 12px;
  background: #F9FAFB; border: 1px solid #E8EEF7;
}
.ab-page .ab-expertise-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: #F3F5F8; color: #0166b0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ab-page .ab-expertise-item h5 {
  font-size: 14px; font-weight: 800; color: #0D1B3E;
  margin-bottom: 2px;
}
.ab-page .ab-expertise-item p {
  font-size: 13px; color: #6B7280; line-height: 1.4;
}
.ab-page .ab-founder-links {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.ab-page .ab-founder-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: #0166b0; color: #fff;
  border-radius: 10px; padding: 10px 18px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  cursor: pointer; border: none;  transition: background .15s;
}
.ab-page .ab-founder-link:hover {
  background: #0155a0;
}
.ab-page .ab-founder-link.ghost {
  background: #fff; color: #374151;
  border: 1.5px solid #D1D5DB;
}
.ab-page .ab-founder-link.ghost:hover {
  border-color: #0166b0; color: #0166b0;
}
@media(max-width:900px) {
.ab-page .ab-founder-grid {
  grid-template-columns: 1fr; gap: 2.5rem;
}
.ab-page .ab-founder-main-photo {
  aspect-ratio: 16/9; max-height: 380px;
}
.ab-page .ab-founder-name-big {
  font-size: 26px;
}
.ab-page .ab-expertise-grid {
  grid-template-columns: 1fr;
}
}
.ab-page .ab-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 5px; margin-bottom: 1.25rem;
}
.ab-page .ab-h1 {
  font-size: 42px; font-weight:800; color: #fff;
  line-height: 1.15; letter-spacing: -.5px; margin-bottom: 1.25rem;
}
.ab-page .ab-sub {
  font-size: 17px; color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: 2rem; max-width: 500px;
}
.ab-page .ab-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #0166b0;
  border: none; padding: 13px 24px; border-radius: 12px;
  font-size: 14px; font-weight:600; cursor: pointer;  transition: all .2s;
}
.ab-page .ab-btn-primary:hover {
  background: #F0F2F5;
}
.ab-page .ab-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.3); padding: 13px 24px; border-radius: 12px;
  font-size: 14px; font-weight: 700; cursor: pointer;  transition: all .2s;
}
.ab-page .ab-btn-ghost:hover {
  background: rgba(255,255,255,.22);
}
.ab-page .ab-stat-card {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px; padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
}
.ab-page .ab-stat-n {
  font-size: 32px; font-weight: 900; color: #fff; line-height: 1;
}
.ab-page .ab-stat-l {
  font-size: 14px; color: rgba(255,255,255,.7); margin-top: 4px;
}
.ab-page .ab-mission {
  padding: 5rem 0; background: #fff;
}
.ab-page .ab-mission-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.ab-page .ab-section-label {
  font-size: 12px; font-weight:700; text-transform: uppercase;
  letter-spacing: .1em; color: #0166b0; margin-bottom: .6rem;
}
.ab-page .ab-section-title {
  font-size: 34px; font-weight:800; color: #0D1B3E;
  line-height: 1.2; margin-bottom: 1.25rem; letter-spacing: -.3px;
}
.ab-page .ab-section-desc {
  font-size: 17px; color: #6B7280; line-height: 1.75;
}
.ab-page .ab-mission-quote {
  background: #F4F6F9; border-left: 4px solid #0166b0;
  border-radius: 0 16px 16px 0; padding: 2rem;
  margin-top: 2rem;
}
.ab-page .ab-mission-quote p {
  font-size: 16px; color: #374151; line-height: 1.75;
  font-style: italic; margin-bottom: 1.25rem;
}
.ab-page .ab-founder {
  display: flex; align-items: center; gap: 1rem;
}
.ab-page .ab-founder-photo {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  border: 3px solid #BFDBFE; flex-shrink: 0;
}
.ab-page .ab-founder-av {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #0166b0, #1877C8);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight:700; color: #fff; flex-shrink: 0;
}
.ab-page .ab-founder-name {
  font-size: 15px; font-weight: 800; color: #0D1B3E;
}
.ab-page .ab-founder-role {
  font-size: 13px; color: #6B7280; margin-top: 2px;
}
.ab-page .ab-mission-visual {
  background: #F5F6F8;
  border-radius: 14px; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.ab-page .ab-mission-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff; border-radius: 14px; padding: 1.25rem;
  border: 1px solid #E8ECF2;
}
.ab-page .ab-mission-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #F3F5F8; color: #0166b0;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ab-page .ab-mission-item h4 {
  font-size: 15px; font-weight: 800; color: #0D1B3E; margin-bottom: 3px;
}
.ab-page .ab-mission-item p {
  font-size: 14px; color: #6B7280; line-height: 1.55;
}
.ab-page .ab-why {
  padding: 5rem 0; background: #F9FAFB; border-top: 1px solid #E8ECF2; border-bottom: 1px solid #E8ECF2;
}
.ab-page .ab-why-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
}
.ab-page .ab-why-card h3 {
  font-size: 17px; font-weight: 800; color: #0D1B3E; margin-bottom: .6rem;
}
.ab-page .ab-why-card p {
  font-size: 15px; color: #6B7280; line-height: 1.65;
}
.ab-page .ab-services {
  padding: 5rem 0; background: #fff;
}
.ab-page .ab-services-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
}
.ab-page .ab-services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
.ab-page .ab-service-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; border-radius: 14px;
  border: 1.5px solid #EAECF0; background: #fff;
  transition: border-color .2s;
}
.ab-page .ab-service-item:hover {
  border-color: #BFDBFE; background: #FAFEFF;
}
.ab-page .ab-service-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #F3F5F8; color: #0166b0;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ab-page .ab-service-item h4 {
  font-size: 15px; font-weight: 800; color: #0D1B3E; margin-bottom: 3px;
}
.ab-page .ab-service-item p {
  font-size: 14px; color: #6B7280; line-height: 1.55;
}
.ab-page .ab-funding {
  padding: 4rem 0; background: #F4F6F9;
}
.ab-page .ab-funding-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
}
.ab-page .ab-funding-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2rem;
}
.ab-page .ab-funding-card {
  background: #fff; border-radius: 10px;
  padding: 1.5rem; border: 1px solid #E8ECF2; text-align: center;
  transition: box-shadow .2s;
}
.ab-page .ab-funding-card:hover {
  box-shadow: 0 4px 20px rgba(1,102,176,.1);
}
.ab-page .ab-funding-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: #F3F5F8; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.ab-page .ab-funding-card h4 {
  font-size: 15px; font-weight: 800; color: #0D1B3E; margin-bottom: .4rem;
}
.ab-page .ab-funding-card p {
  font-size: 14px; color: #6B7280; line-height: 1.55;
}
.ab-page .ab-cta-text h2 {
  font-size: 30px; font-weight:800; color: #fff; margin-bottom: .5rem;
}
.ab-page .ab-cta-text p {
  font-size: 16px; color: rgba(255,255,255,.75);
}
@media(max-width: 768px) {
.ab-page .ab-h1 {
  font-size: 28px;
}
.ab-page .ab-mission-inner {
  grid-template-columns: 1fr; gap: 2.5rem;
}
.ab-page .ab-services-grid {
  grid-template-columns: 1fr;
}
.ab-page .ab-funding-grid {
  grid-template-columns: 1fr 1fr;
}
}
.ab-page .ab-grant-history {
  margin-top: 2.5rem;
}
.ab-page .ab-grant-history-title {
  font-size: 16px; font-weight: 800; color: #0D1B3E; margin-bottom: 1rem;
}
.ab-page .ab-grant-table-wrap {
  overflow-x: auto; border-radius: 12px; border: 1px solid #EAECF0;
}
.ab-page .ab-grant-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.ab-page .ab-grant-table thead tr {
  background: #0166b0; color: #fff;
}
.ab-page .ab-grant-table thead th {
  padding: 10px 14px; text-align: left; font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
}
.ab-page .ab-grant-table tbody tr {
  border-bottom: 1px solid #F3F4F6; transition: background .12s;
}
.ab-page .ab-grant-table tbody tr:last-child {
  border-bottom: none;
}
.ab-page .ab-grant-table tbody tr:hover {
  background: #F5F6F8;
}
.ab-page .ab-gt-year {
  font-size: 13px; font-weight: 700; color: #0166b0; white-space: nowrap; padding: 10px 14px; vertical-align: top; min-width: 90px;
}
.ab-page .ab-gt-program {
  font-weight: 600; color: #1F2937; padding: 10px 14px; vertical-align: top;
}
.ab-page .ab-gt-result {
  color: #6B7280; padding: 10px 14px; vertical-align: top; line-height: 1.5;
}
.ab-page .ab-gt-badge {
  display: inline-block; background: #EDEEF1; color: #6B7280; font-weight: 700; font-size: 12px; padding: 1px 7px; border-radius: 8px;
}
.ab-page .ab-gt-highlight td {
  background: #F4F6F9;
}
.ab-page .ab-gt-highlight .ab-gt-year {
  color: #0155a0;
}
.ab-page .ab-gt-summary {
  display: flex; align-items: center; gap: 0; margin-top: 1.25rem; background: #fff; border: 1px solid #EAECF0; border-radius: 12px; overflow: hidden;
}
.ab-page .ab-gt-sum-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: .9rem .5rem; text-align: center;
}
.ab-page .ab-gt-sum-n {
  font-size: 20px; font-weight:700; color: #0166b0; line-height: 1;
}
.ab-page .ab-gt-sum-l {
  font-size: 12px; color: #6B7280; font-weight: 600; line-height: 1.3;
}
.ab-page .ab-gt-sum-sep {
  width: 1px; height: 36px; background: #EAECF0; flex-shrink: 0;
}
@media(max-width: 640px) {
.ab-page .ab-gt-summary {
  flex-wrap: wrap;
}
.ab-page .ab-gt-sum-item {
  flex: 1 1 45%;
}
.ab-page .ab-gt-sum-sep {
  display: none;
}
}
.ab-page .ab-traj-list {
  display: flex; flex-direction: column; gap: 0; margin-bottom: 1.25rem;
}
.ab-page .ab-traj-item {
  display: flex; gap: 14px; position: relative; padding-bottom: 1.1rem;
}
.ab-page .ab-traj-item:last-child {
  padding-bottom: 0;
}
.ab-page .ab-traj-item:not(:last-child) .ab-traj-dot::after {
  content: ''; position: absolute; left: 5px; top: 14px; bottom: 0; width: 1px; background: #E8ECF2;
}
.ab-page .ab-traj-dot {
  width: 11px; height: 11px; border-radius: 50%; background: #0166b0; flex-shrink: 0; margin-top: 4px; position: relative;
}
.ab-page .ab-traj-content {
  flex: 1;
}
.ab-page .ab-traj-label {
  display: inline-block; font-size: 12px; font-weight:700; color: #0166b0; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px;
}
.ab-page .ab-traj-content p {
  font-size: 14px; color: #4B5563; line-height: 1.6; margin: 0;
}
.ab-page .ab-traj-section {
  background: #fff; padding: 0; border-top: none;
}
.ab-page .ab-traj-section-inner {
  max-width: 1160px; margin: 0 auto;
}
.ab-page .ab-traj-inner-wrap {
  max-width: 1160px; margin: 2.5rem auto 0; padding: 2rem 0 0; border-top: 1px solid #EAECF0;
}
.ab-page .ab-traj-header {
  margin-bottom: 2rem;
}
.ab-page .ab-traj-section-title {
  font-size: 26px; font-weight:800; color: #0D1B3E; letter-spacing: -.4px; margin: 0;
}
.ab-page .ab-traj-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem;
}
.ab-page .ab-traj-grid .ab-traj-item {
  padding-bottom: 0; background: #fff; border-radius: 14px; border: 1px solid #E8ECF2; padding: 1.25rem 1.1rem;
}
.ab-page .ab-traj-grid .ab-traj-item .ab-traj-dot {
  display: none;
}
.ab-page .ab-traj-grid .ab-traj-item .ab-traj-content {
  flex: 1;
}
.ab-page .ab-traj-grid .ab-traj-item .ab-traj-label {
  font-size: 11px; color: #0166b0; font-weight:700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; display: block;
}
.ab-page .ab-traj-grid .ab-traj-item p {
  font-size: 14px; color: #374151; line-height: 1.65; margin: 0;
}
.ab-page .ab-traj-stats {
  display: flex; align-items: center; background: #fff; border-radius: 14px; border: 1px solid #E8ECF2; overflow: hidden;
}
.ab-page .ab-traj-stat {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 1.1rem .5rem; text-align: center;
}
.ab-page .ab-traj-stat-n {
  font-size: 24px; font-weight:700; color: #0166b0; line-height: 1;
}
.ab-page .ab-traj-stat-l {
  font-size: 13px; color: #6B7280; font-weight: 600;
}
.ab-page .ab-traj-stat-sep {
  width: 1px; height: 40px; background: #EAECF0; flex-shrink: 0;
}
@media(max-width: 900px) {
.ab-page .ab-traj-grid {
  grid-template-columns: repeat(2, 1fr);
}
}
@media(max-width: 600px) {
.ab-page .ab-traj-grid {
  grid-template-columns: 1fr;
}
.ab-page .ab-traj-stats {
  flex-wrap: wrap;
}
.ab-page .ab-traj-stat {
  flex: 1 1 45%;
}
.ab-page .ab-traj-stat-sep {
  display: none;
}
}
.ab-page .ab-traj-bullets {
  margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.ab-page .ab-traj-bullets li {
  font-size: 14px; color: #374151; line-height: 1.55; padding-left: 14px; position: relative;
}
.ab-page .ab-traj-bullets li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: #0166b0; flex-shrink: 0;
}
.ab-page .ab-hero,
.ab-page .ct-hero,
.ab-page .hp-hero,
.ab-page .rb-hero,
.ab-page .sv-hero,
.ab-page .pr-hero,
.ab-page .edu-hero,
.ab-page .cs-hero {
  background: #0260A6;
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  border-bottom: none;
}
.ab-page .ab-hero::before,
.ab-page .ct-hero::before,
.ab-page .hp-hero::before,
.ab-page .rb-hero::before,
.ab-page .sv-hero::before,
.ab-page .pr-hero::before,
.ab-page .edu-hero::before,
.ab-page .cs-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 100% at 100% -20%, rgba(255,255,255,.1) 0%, transparent 55%);
}
.ab-page .ab-hero::after,
.ab-page .ct-hero::after,
.ab-page .hp-hero::after,
.ab-page .rb-hero::after,
.ab-page .sv-hero::after,
.ab-page .pr-hero::after,
.ab-page .edu-hero::after,
.ab-page .cs-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: rgba(0,0,0,.12);
}
.ab-page .ab-hero-inner,
.ab-page .ct-hero-inner,
.ab-page .hp-hero-inner,
.ab-page .rb-hero-inner,
.ab-page .sv-hero-inner,
.ab-page .pr-hero-inner,
.ab-page .edu-hero-inner,
.ab-page .cs-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative; z-index: 1;
}
.ab-page .ct-hero-badge,
.ab-page .hp-hero-badge,
.ab-page .rb-hero-badge,
.ab-page .sv-hero-badge,
.ab-page .ab-hero .ab-badge,
.ab-page .pr-hero .pr-badge,
.ab-page .cs-hero .cs-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88); font-size: 11px; font-weight: 600;
  padding: 4px 11px; border-radius: 6px; margin-bottom: 1.1rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.ab-page .ab-hero h1,
.ab-page .ct-hero h1,
.ab-page .hp-hero h1,
.ab-page .rb-hero h1,
.ab-page .sv-hero h1,
.ab-page .pr-hero h1,
.ab-page .edu-hero h1,
.ab-page .cs-hero h1,
.ab-page .ab-h1,
.ab-page .sv-h1,
.ab-page .ct-h1,
.ab-page .rb-h1,
.ab-page .hp-h1,
.ab-page .pr-h1,
.ab-page .ab-hero-title,
.ab-page .ct-hero-title,
.ab-page .hp-hero-title,
.ab-page .rb-hero-title,
.ab-page .sv-hero-title {
  font-size: 34px; font-weight: 800; color: #fff;
  line-height: 1.2; letter-spacing: -.5px; margin: 0 0 .8rem;
}
.ab-page .ab-hero p,
.ab-page .ct-hero p,
.ab-page .hp-hero p,
.ab-page .rb-hero p,
.ab-page .sv-hero p,
.ab-page .pr-hero p,
.ab-page .edu-hero p,
.ab-page .cs-hero p {
  font-size: 15px; color: rgba(255,255,255,.7);
  line-height: 1.7; max-width: 520px; margin: 0 0 1.5rem;
}
.ab-page .ab-hero-actions,
.ab-page .sv-hero-actions {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.ab-page .ab-hero-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 3rem;
  align-items: center; max-width: 1160px; text-align: left;
}
.ab-page .ab-hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
@media (max-width: 900px) {
.ab-page .ab-hero-inner,
.ab-page .rb-hero-inner {
  grid-template-columns: 1fr;
    gap: 2rem;
}
}
@media (max-width: 768px) {
.ab-page .ab-hero,
.ab-page .ct-hero,
.ab-page .hp-hero,
.ab-page .rb-hero,
.ab-page .sv-hero,
.ab-page .pr-hero,
.ab-page .edu-hero {
  padding: 3rem 0 2.5rem;
}
.ab-page .ab-hero h1,
.ab-page .ct-hero h1,
.ab-page .hp-hero h1,
.ab-page .rb-hero h1,
.ab-page .sv-hero h1,
.ab-page .pr-hero h1,
.ab-page .edu-hero h1,
.ab-page .ab-h1,
.ab-page .sv-h1,
.ab-page .ct-h1,
.ab-page .rb-h1,
.ab-page .hp-h1,
.ab-page .pr-h1 {
  font-size: 26px;
}
.ab-page .ab-hero-stats {
  grid-template-columns: 1fr 1fr;
}
}
.ab-page .ab-why {
  background: #fff; padding: 5rem 0;
}
.ab-page .ab-why-header {
  margin-bottom: 3rem;
}
.ab-page .ab-why-rows {
  display: flex; flex-direction: column;
}
.ab-page .ab-why-row {
  display: grid; grid-template-columns: 44px 1fr 180px; gap: 2rem;
  align-items: baseline; padding: 1.75rem 0;
  border-bottom: 1px solid #F0F2F5;
}
.ab-page .ab-why-row:first-child {
  border-top: 1px solid #F0F2F5;
}
.ab-page .ab-why-idx {
  font-size: 11px; font-weight: 700; color: #0260A6;
  letter-spacing: .08em; padding-top: 2px;
}
.ab-page .ab-why-body h3 {
  font-size: 17px; font-weight: 700; color: #0D1B3E; margin: 0 0 .4rem;
}
.ab-page .ab-why-body p {
  font-size: 15px; color: #6B7280; line-height: 1.7; margin: 0;
}
.ab-page .ab-why-aside {
  font-size: 13px; color: #9CA3AF; font-weight: 600;
  text-align: right; line-height: 1.5;
  letter-spacing: .02em;
}
@media (max-width: 900px) {
.ab-page .ab-why-row {
  grid-template-columns: 36px 1fr;
}
.ab-page .ab-why-aside {
  display: none;
}
}
@media (max-width: 600px) {
.ab-page .ab-why-row {
  grid-template-columns: 36px 1fr; gap: 1rem;
}
}
.ab-page .gh-hero ::selection,
.ab-page .gh-cta ::selection,
.ab-page .gh-ai ::selection,
.ab-page .gh-footer ::selection,
.ab-page .gd-hero ::selection,
.ab-page .cd-hero ::selection,
.ab-page .ct2-hero ::selection,
.ab-page .auth-left ::selection,
.ab-page .pr-corp-section ::selection,
.ab-page .ab-cta ::selection,
.ab-page .sv-cta ::selection,
.ab-page .ab-hero ::selection,
.ab-page .ct-hero ::selection,
.ab-page .hp-hero ::selection,
.ab-page .rb-hero ::selection,
.ab-page .sv-hero ::selection,
.ab-page .pr-hero ::selection,
.ab-page .edu-hero ::selection {
  background: rgba(255, 255, 255, .26);
  color: #fff;
  text-shadow: none;
}
.ab-page .gh-hero ::-moz-selection,
.ab-page .gh-cta ::-moz-selection,
.ab-page .gh-ai ::-moz-selection,
.ab-page .gh-footer ::-moz-selection,
.ab-page .gd-hero ::-moz-selection,
.ab-page .cd-hero ::-moz-selection,
.ab-page .ct2-hero ::-moz-selection,
.ab-page .auth-left ::-moz-selection,
.ab-page .pr-corp-section ::-moz-selection,
.ab-page .ab-cta ::-moz-selection,
.ab-page .sv-cta ::-moz-selection,
.ab-page .ab-hero ::-moz-selection,
.ab-page .ct-hero ::-moz-selection,
.ab-page .hp-hero ::-moz-selection,
.ab-page .rb-hero ::-moz-selection,
.ab-page .sv-hero ::-moz-selection,
.ab-page .pr-hero ::-moz-selection,
.ab-page .edu-hero ::-moz-selection {
  background: rgba(255, 255, 255, .26);
  color: #fff;
  text-shadow: none;
}
.ab-page .ab-h1,
.ab-page .sv-h1,
.ab-page .ct-h1,
.ab-page .rb-h1,
.ab-page .hp-h1,
.ab-page .pr-h1 {
  font-size: 36px; font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; color: #fff;
}
.ab-page .gh-section-title,
.ab-page .ab-section-title,
.ab-page .sv-section-title,
.ab-page .ct-section-title,
.ab-page .rb-section-title,
.ab-page .hp-section-title {
  font-size: 28px; font-weight: 800; color: var(--navy);
  line-height: 1.2; letter-spacing: -0.025em; margin: 0 0 .85rem;
}
.ab-page .gh-cta-title,
.ab-page .sv-cta h2,
.ab-page .ab-cta-text h2 {
  font-size: 34px; font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -0.035em; margin-bottom: .9rem;
}
.ab-page .gh-section-label,
.ab-page .ab-section-label,
.ab-page .sv-section-label,
.ab-page .ct-section-label,
.ab-page .rb-section-label,
.ab-page .hp-section-label,
.ab-page .pr-section-label,
.ab-page .edu-section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: .5rem;
}
.ab-page .gh-cta-sub,
.ab-page .sv-cta p,
.ab-page .ab-cta-text p {
  font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.7;
  margin: 0 auto 2rem; max-width: 460px;
}
@media (min-width: 1024px) {
.ab-page .ab-h1,
.ab-page .sv-h1,
.ab-page .ct-h1,
.ab-page .rb-h1,
.ab-page .hp-h1,
.ab-page .pr-h1 {
  font-size: 38px;
}
.ab-page .gh-section-title,
.ab-page .ab-section-title,
.ab-page .sv-section-title {
  font-size: 30px;
}
}
@media (max-width: 768px) {
.ab-page .gh-section-title,
.ab-page .ab-section-title,
.ab-page .sv-section-title {
  font-size: 22px;
}
}
.ab-page .ab-hero,
.ab-page .ct-hero,
.ab-page .hp-hero,
.ab-page .rb-hero,
.ab-page .sv-hero,
.ab-page .pr-hero,
.ab-page .edu-hero {
  background: #0260A6; padding: 3.5rem 0 3rem; position: relative; overflow: hidden; color: #fff; border-bottom: none;
}
.ab-page .ab-hero::before,
.ab-page .ct-hero::before,
.ab-page .hp-hero::before,
.ab-page .rb-hero::before,
.ab-page .sv-hero::before,
.ab-page .pr-hero::before,
.ab-page .edu-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 100% at 100% -20%, rgba(255,255,255,.08) 0%, transparent 55%);
}
.ab-page .ab-hero-inner,
.ab-page .ct-hero-inner,
.ab-page .hp-hero-inner,
.ab-page .rb-hero-inner,
.ab-page .sv-hero-inner,
.ab-page .pr-hero-inner,
.ab-page .edu-hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1;
}
.ab-page .ct-hero-badge,
.ab-page .hp-hero-badge,
.ab-page .rb-hero-badge,
.ab-page .sv-hero-badge,
.ab-page .ab-hero .ab-badge,
.ab-page .pr-hero .pr-badge {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.82); font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: var(--r-sm); margin-bottom: 1rem; letter-spacing: .05em; text-transform: uppercase;
}
.ab-page .ab-hero p,
.ab-page .ct-hero p,
.ab-page .hp-hero p,
.ab-page .rb-hero p,
.ab-page .sv-hero p,
.ab-page .pr-hero p,
.ab-page .edu-hero p {
  font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.7; max-width: 520px; margin: 0 0 1.5rem;
}
.ab-page .ab-hero-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; max-width: 1160px; text-align: left;
}
.ab-page .ab-hero-actions,
.ab-page .sv-hero-actions {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.ab-page .ab-hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
@media (max-width: 900px) {
.ab-page .ab-hero-inner,
.ab-page .rb-hero-inner {
  grid-template-columns: 1fr; gap: 1.5rem;
}
}
@media (max-width: 768px) {
.ab-page .ab-hero,
.ab-page .ct-hero,
.ab-page .hp-hero,
.ab-page .rb-hero,
.ab-page .sv-hero,
.ab-page .pr-hero,
.ab-page .edu-hero {
  padding: 3rem 0 2.5rem;
}
}
.ab-page .gh-how,
.ab-page .ab-why,
.ab-page .sv-process {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ab-page .gh-cta::before,
.ab-page .sv-cta::before,
.ab-page .ab-cta::before {
  display: none;
}
.ab-page .gh-features,
.ab-page .gh-how,
.ab-page .gh-whom,
.ab-page .gh-ai,
.ab-page .ab-why,
.ab-page .sv-main,
.ab-page .sv-process,
.ab-page .gh-reviews,
.ab-page .gh-news {
  padding: 5rem 0;
}
@media (max-width: 768px) {
.ab-page .gh-features,
.ab-page .gh-how,
.ab-page .gh-whom,
.ab-page .gh-ai,
.ab-page .ab-why,
.ab-page .sv-main,
.ab-page .sv-process,
.ab-page .gh-reviews,
.ab-page .gh-news {
  padding: 3rem 0;
}
}
.ab-page .nav-new,
.ab-page .ab-expertise-icon,
.ab-page .ab-mission-icon,
.ab-page .ab-service-icon,
.ab-page .ab-funding-icon,
.ab-page .gh-btn-primary,
.ab-page .ab-btn-primary,
.ab-page .sv-btn-white,
.ab-page .gh-btn-primary:hover {
  background: var(--blue-dark); box-shadow: none;
}
.ab-page .ab-btn-ghost,
.ab-page .sv-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 8px; font-weight: 600; font-size: 14px; background: transparent; border: 1.5px solid var(--border-mid); color: var(--text-body); padding: 11px 22px; cursor: pointer; font-family: inherit; transition: border-color var(--t), background var(--t);
}
.ab-page .ab-btn-ghost:hover,
.ab-page .sv-btn-ghost:hover {
  border-color: var(--blue); color: var(--blue); background: #F0F5FB;
}
.ab-page .ab-why-row {
  display: grid; grid-template-columns: 44px 1fr 180px; gap: 2rem; align-items: baseline; padding: 1.75rem 0; border-bottom: 1px solid var(--border); transition: background var(--t);
}
.ab-page .ab-why-row:first-child {
  border-top: 1px solid var(--border);
}
.ab-page .ab-why-row:hover {
  background: #FAFBFC;
}
.ab-page .ab-why-idx {
  font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: .08em; padding-top: 2px;
}
.ab-page .ab-why-body h3 {
  font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 .35rem;
}
.ab-page .ab-why-body p {
  font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0;
}
.ab-page .ab-why-aside {
  font-size: 13px; color: var(--text-faint); font-weight: 500; text-align: right; line-height: 1.5;
}
.ab-page .ab-founder-main-photo {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.ab-page .ab-expertise-item {
  background: none; border: none; padding: .6rem 0;
}
.ab-page .ab-section-title {
  font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1.2; letter-spacing: -0.025em;
}
@media (min-width: 768px) and (max-width: 1023px) {
.ab-page .ab-mission-inner {
  grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.ab-page .ab-services-grid {
  grid-template-columns: 1fr 1fr;
}
.ab-page .ab-funding-grid {
  grid-template-columns: repeat(2, 1fr);
}
.ab-page .ab-expertise-grid {
  grid-template-columns: 1fr 1fr;
}
.ab-page .ab-founder-grid {
  grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.ab-page .ab-why-row {
  grid-template-columns: 36px 1fr 140px; gap: 1.25rem;
}
.ab-page .ab-why-aside {
  font-size: 12px;
}
.ab-page .ab-traj-grid {
  grid-template-columns: 1fr 1fr; gap: 1rem;
}
.ab-page .ab-traj-section-inner {
  padding: 0 1.5rem;
}
.ab-page .gh-features,
.ab-page .gh-how,
.ab-page .gh-whom,
.ab-page .gh-ai,
.ab-page .ab-why,
.ab-page .sv-main,
.ab-page .sv-process,
.ab-page .gh-reviews,
.ab-page .gh-news,
.ab-page .gh-cta,
.ab-page .sv-cta,
.ab-page .gh-section-title,
.ab-page .ab-section-title,
.ab-page .sv-section-title {
  font-size: 26px;
}
.ab-page .ab-h1,
.ab-page .sv-h1,
.ab-page .ct-h1,
.ab-page .rb-h1,
.ab-page .hp-h1 {
  font-size: 32px;
}
.ab-page .ab-traj-stats {
  flex-wrap: wrap;
}
.ab-page .ab-traj-stat {
  flex: 1 1 18%;
}
.ab-page .ab-traj-stat-sep {
  display: none;
}
}
@media (max-width: 767px) {
.ab-page .ab-hero,
.ab-page .ct-hero,
.ab-page .hp-hero,
.ab-page .rb-hero,
.ab-page .sv-hero,
.ab-page .pr-hero,
.ab-page .edu-hero {
  padding: 2.5rem 0 2rem;
}
.ab-page .ab-hero-inner {
  grid-template-columns: 1fr; gap: 1.5rem;
}
.ab-page .ab-hero-stats {
  grid-template-columns: 1fr 1fr; gap: .65rem;
}
.ab-page .ab-stat-card {
  padding: .85rem 1rem;
}
.ab-page .ab-h1,
.ab-page .sv-h1,
.ab-page .ct-h1,
.ab-page .rb-h1,
.ab-page .hp-h1,
.ab-page .pr-h1 {
  font-size: 24px; letter-spacing: -0.025em;
}
.ab-page .ab-hero p,
.ab-page .ct-hero p,
.ab-page .hp-hero p,
.ab-page .rb-hero p,
.ab-page .sv-hero p,
.ab-page .pr-hero p,
.ab-page .edu-hero p {
  font-size: 15px; margin-bottom: 1.25rem;
}
.ab-page .ab-hero-actions {
  flex-direction: column; gap: .65rem;
}
.ab-page .ab-hero-actions .ab-btn-primary,
.ab-page .ab-hero-actions .ab-btn-ghost {
  width: 100%; justify-content: center;
}
.ab-page .gh-features,
.ab-page .gh-how,
.ab-page .gh-whom,
.ab-page .gh-ai,
.ab-page .ab-why,
.ab-page .sv-main,
.ab-page .sv-process,
.ab-page .gh-reviews,
.ab-page .gh-news,
.ab-page .gh-cta,
.ab-page .sv-cta,
.ab-page .gh-reviews {
  padding: 3rem 0;
}
.ab-page .gh-section-title,
.ab-page .ab-section-title,
.ab-page .sv-section-title {
  font-size: 22px; letter-spacing: -0.02em;
}
.ab-page .gh-section-label,
.ab-page .ab-section-label,
.ab-page .sv-section-label {
  font-size: 10px;
}
.ab-page .ab-mission-inner {
  grid-template-columns: 1fr; gap: 2rem;
}
.ab-page .ab-founder-grid {
  grid-template-columns: 1fr; gap: 2rem;
}
.ab-page .ab-founder-photos {
  max-width: 100%;
}
.ab-page .ab-founder-main-photo {
  overflow: visible;
}
.ab-page .ab-founder-main-photo img {
  border-radius: 10px; display: block;
}
.ab-page .ab-founder-main-photo .ab-photo-badge {
  position: static;
    margin: 8px 0 0;
    border-radius: 12px;
    left: auto; right: auto; bottom: auto;
}
.ab-page .ab-founder-photo-stats {
  grid-template-columns: 1fr 1fr; gap: .65rem;
}
.ab-page .ab-founder-photo-stat-n {
  font-size: 20px;
}
.ab-page .ab-expertise-grid {
  grid-template-columns: 1fr; gap: 1rem;
}
.ab-page .ab-services-grid {
  grid-template-columns: 1fr; gap: 1rem;
}
.ab-page .ab-funding-grid {
  grid-template-columns: 1fr 1fr; gap: .75rem;
}
.ab-page .ab-funding-card {
  padding: 1rem;
}
.ab-page .ab-cta-inner h2 {
  font-size: 22px;
}
.ab-page .ab-cta-actions .ab-btn-primary,
.ab-page .ab-cta-actions .ab-btn-ghost {
  width: 100%; max-width: 320px; justify-content: center;
}
.ab-page .ab-why-inner {
  padding: 0 1rem;
}
.ab-page .ab-why-row {
  grid-template-columns: 32px 1fr; gap: 1rem; padding: 1.25rem 0;
}
.ab-page .ab-why-body h3 {
  font-size: 15px;
}
.ab-page .ab-why-body p {
  font-size: 14px;
}
.ab-page .ab-traj-section {
  padding: 2.5rem 1rem;
}
.ab-page .ab-traj-grid {
  grid-template-columns: 1fr; gap: .85rem;
}
.ab-page .ab-traj-grid .ab-traj-item {
  padding: 1rem;
}
.ab-page .ab-traj-stats {
  flex-wrap: wrap; gap: 0;
}
.ab-page .ab-traj-stat {
  flex: 1 1 45%; padding: .85rem .5rem;
}
.ab-page .ab-traj-stat-n {
  font-size: 18px;
}
.ab-page .ab-founder-bio-text p {
  font-size: 15px;
}
.ab-page .ab-founder-links {
  flex-wrap: wrap; gap: .5rem;
}
.ab-page .ab-grant-history-title {
  font-size: 15px;
}
.ab-page .ab-grant-table-wrap {
  border-radius: 8px;
}
.ab-page .ab-grant-table {
  font-size: 13px;
}
.ab-page .ab-gt-year {
  min-width: 70px; font-size: 12px;
}
.ab-page .ab-gt-program {
  font-size: 13px;
}
.ab-page .ab-gt-result {
  font-size: 13px;
}
.ab-page .ab-gt-summary {
  flex-wrap: wrap;
}
.ab-page .ab-gt-sum-item {
  flex: 1 1 45%;
}
.ab-page .ab-gt-sum-sep {
  display: none;
}
.ab-page .ab-gt-sum-n {
  font-size: 17px;
}
}
@media (max-width: 389px) {
.ab-page .ab-h1,
.ab-page .sv-h1,
.ab-page .ct-h1,
.ab-page .rb-h1,
.ab-page .hp-h1 {
  font-size: 21px;
}
.ab-page .gh-section-title,
.ab-page .ab-section-title,
.ab-page .sv-section-title {
  font-size: 20px;
}
.ab-page .ab-funding-grid {
  grid-template-columns: 1fr;
}
}
.ab-page .ab-hero .ab-btn-ghost,
.ab-page .sv-hero .sv-btn-ghost,
.ab-page .sv-cta .sv-btn-ghost,
.ab-page .ab-cta .ab-btn-ghost {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
}
.ab-page .ab-hero .ab-btn-ghost:hover,
.ab-page .sv-hero .sv-btn-ghost:hover,
.ab-page .sv-cta .sv-btn-ghost:hover,
.ab-page .ab-cta .ab-btn-ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.ab-page .ab-cta {
  background: #0166b0;
  padding: 5rem 0;
  position: relative;
  overflow: visible;
}
.ab-page .ab-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.ab-page .ab-cta-text h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin: 0 0 .85rem;
}
.ab-page .ab-cta-text p {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 600px) {
.ab-page .ab-cta {
  padding: 3.5rem 0;
}
.ab-page .ab-cta-text h2 {
  font-size: 28px;
}
.ab-page .ab-cta-text p {
  font-size: 16px;
}
.ab-page .ab-cta-inner {
  gap: 1.25rem; padding: 0 1rem;
}
}
.ab-page .ab-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
.ab-page .ab-team-grid {
  grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
}
@media (max-width: 500px) {
.ab-page .ab-team-grid {
  grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.ab-page .ab-team-photo {
  width: 72px; height: 72px;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
.ab-page .ab-team-grid {
  grid-template-columns: repeat(3, 1fr);
}
}
.ab-page h2.gr-hero-title,
.ab-page h2.gd-hero-title,
.ab-page h2.cd-title,
.ab-page h2.cd-hero-title,
.ab-page h2.pr-h1,
.ab-page h2.ab-h1,
.ab-page h2.ct-h1,
.ab-page h2.rb-h1,
.ab-page h2.service-title,
.ab-page h2.gh-cta-title,
.ab-page h2.feat-title {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
}
.ab-page .ab-btn-primary,
.ab-page .sv-btn-white {
  background: #0166b0 !important;
  color: #fff !important;
  border: 1.5px solid #0166b0 !important;
  padding: 13px 24px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: background .15s, color .15s, border-color .15s !important;
  font-family: inherit;
  text-decoration: none;
}
.ab-page .ab-btn-primary:hover,
.ab-page .sv-btn-white:hover {
  background: #fff !important;
  color: #0166b0 !important;
  border-color: #0166b0 !important;
}
.ab-page .ab-btn-ghost,
.ab-page .sv-btn-ghost {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.35) !important;
  padding: 13px 24px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: background .15s, color .15s, border-color .15s !important;
  font-family: inherit;
}
.ab-page .ab-btn-ghost:hover,
.ab-page .sv-btn-ghost:hover {
  background: #fff !important;
  color: #0166b0 !important;
  border-color: #fff !important;
}
.ab-page .ab-why-row {
  padding: .85rem 0 !important;
}
.ab-page .ab-why-row h3 {
  margin-bottom: .2rem !important;
}
.ab-page .ab-service-icon {
  background: #F3F5F8 !important;
  color: #6B7280 !important;
}
.ab-page .ab-funding-icon {
  background: #F3F5F8 !important;
  color: #6B7280 !important;
}
.ab-page .ab-why-idx {
  color: #9CA3AF !important;
}
.ab-page .ab-expertise-icon {
  background: #F3F5F8 !important;
  color: #6B7280 !important;
}
.ab-page .ab-mission-icon {
  background: #F3F5F8 !important;
  color: #6B7280 !important;
}
.ab-page .ab-btn-primary,
.ab-page .sv-btn-white {
  background: #fff !important;
  color: #0D1B3E !important;
  border: 2px solid #fff !important;
  font-weight: 700 !important;
  transition: background .15s, color .15s, border-color .15s !important;
}
.ab-page .ab-btn-primary:hover,
.ab-page .sv-btn-white:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
}
.ab-page .ab-btn-ghost,
.ab-page .sv-btn-ghost {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.45) !important;
  font-weight: 700 !important;
  transition: background .15s, color .15s, border-color .15s !important;
}
.ab-page .ab-btn-ghost:hover,
.ab-page .sv-btn-ghost:hover {
  background: #fff !important;
  color: #0166b0 !important;
  border-color: #fff !important;
}
.ab-page .ab-btn-primary {
  background: #fff !important;
  color: #0166b0 !important;
  border: 2px solid #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}
.ab-page .ab-btn-primary:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
}
.ab-page .gh-btn-primary,
.ab-page .gh-btn-secondary,
.ab-page .gh-cta-btn-primary,
.ab-page .gh-cta-btn-outline,
.ab-page .ab-btn-primary,
.ab-page .ab-btn-ghost,
.ab-page .sv-btn-white,
.ab-page .sv-btn-ghost {
  padding: 13px 22px !important;
    min-height: 48px !important;
}
/* Фокус із клавіатури. У джерелі це правило злите з переліком карток —
   на новому сайті бандлер його відкидає, а тут воно малювало синю обводку
   навколо кожної картки, тож лишаємо лише :focus-visible. */
.ab-page a:focus-visible,
.ab-page button:focus-visible,
.ab-page summary:focus-visible {
  outline: 2px solid #0166b0;
  outline-offset: 2px;
  border-radius: 6px;
}

/* ── Часті запитання (той самий блок, що на сторінці послуг) ─────────── */
.ab-page .ab-faq { padding: 3.5rem 1.5rem 4rem; background: #F9FAFB; border-top: 1px solid #E8ECF2; }
.ab-page .ab-faq-inner { max-width: 820px; margin: 0 auto; }
.ab-page .ab-faq-title {
  font-size: 30px; font-weight: 800; color: var(--navy);
  text-align: center; margin-bottom: .5rem; letter-spacing: -.025em;
}
.ab-page .ab-faq-sub { text-align: center; color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; }
.ab-page .ab-faq-list { display: flex; flex-direction: column; gap: .6rem; }
.ab-page .ab-faq-item {
  background: #fff; border: 1px solid #E5EAF0; border-radius: 12px; overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ab-page .ab-faq-item[open] { border-color: #cfe0f0; box-shadow: 0 2px 12px rgba(1,102,176,.06); }
.ab-page .ab-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.15rem; font-size: 16.5px; font-weight: 600;
  color: var(--navy); cursor: pointer; list-style: none;
}
.ab-page .ab-faq-q::-webkit-details-marker { display: none; }
.ab-page .ab-faq-q:hover { color: var(--blue); }
.ab-page .ab-faq-item[open] .ab-faq-q { color: var(--blue); }
.ab-page .ab-faq-arrow { flex: none; color: var(--text-faint); transition: transform .2s ease; }
.ab-page .ab-faq-item[open] .ab-faq-arrow { transform: rotate(180deg); color: var(--blue); }
.ab-page .ab-faq-a { padding: 0 1.15rem 1.1rem; font-size: 15.7px; line-height: 1.65; color: var(--text-body); }
.ab-page .ab-faq-a p + p { margin-top: .6rem; }
.ab-page .ab-faq-a a {
  color: var(--blue); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
}
.ab-page .ab-faq-a strong { font-weight: 700; color: var(--navy); }

@media (max-width: 767px) {
  .ab-page .ab-faq { padding: 2.5rem 1rem 3rem; }
  .ab-page .ab-faq-title { font-size: 22px; }
  .ab-page .ab-faq-q { font-size: 15.5px; padding: .9rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ab-page * { animation: none !important; transition: none !important; }
}

/* Кнопки під текстом CTA: у джерелі вони мали інлайн-стиль, тут — клас */
.ab-page .ab-cta-btns { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
@media (max-width: 600px) {
  .ab-page .ab-cta-btns { flex-direction: column; align-items: stretch; width: 100%; }
  .ab-page .ab-cta-btns .ab-btn-primary,
  .ab-page .ab-cta-btns .ab-btn-ghost { width: 100%; max-width: 320px; margin: 0 auto; justify-content: center; }
}
