/* =============================================
   ABOUT PAGE — SpinesTech
   Pure vanilla CSS, no frameworks
   Compacted ~20% to match home.css's rhythm, tied
   to main.css's shared spacing scale.
   ============================================= */

.about-page { overflow-x: hidden; }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SHARED BUTTONS ─── */
.ab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.ab-btn--lg { padding: 1rem 2.25rem; font-size: 1.02rem; }
.ab-btn--primary { background: #036d36; color: #fff; }
.ab-btn--primary:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 12px 32px -8px rgba(3,109,54,0.4);
}
.ab-btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.ab-btn--ghost:hover { background: rgba(255,255,255,0.12); }
.ab-btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.ab-btn--outline-light:hover { background: rgba(255,255,255,0.1); }

/* ─── SECTION HELPERS ───
   Tied to main.css's --space-xl so this page's rhythm stays in
   sync with the rest of the site automatically. */
.ab-section { padding-block: var(--space-xl, clamp(3rem, 6vw, 5rem)); position: relative; }
.ab-section--white       { background: #fff; }
.ab-section--muted       { background: #f3f4f8; position: relative; overflow: hidden; }
.ab-section--muted-soft  { background: #f7f7f2; }
.ab-section--dark {
  background: #0a1d2f;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ab-section--dark__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.ab-header { max-width: 42rem; margin-block-end: var(--space-lg, clamp(2rem, 4vw, 3rem)); }
.ab-header--center { text-align: center; margin-inline: auto; }

.ab-title {
  font-size: clamp(1.5rem, 2.9vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0b1c30;
  margin-block-end: 0.6rem;
}
.ab-title--light { color: #fff; }
.ab-title--center { text-align: center; margin-inline: auto; max-width: 36rem; margin-block-end: var(--space-lg, clamp(2rem, 4vw, 3rem)); }

.ab-subtitle {
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  color: #44474c;
  line-height: 1.8;
  letter-spacing: -0.005em;
}
.ab-subtitle--light { color: rgba(255,255,255,0.65); }
.ab-header--center .ab-subtitle { margin-inline: auto; }

.ab-divider {
  width: 4.5rem;
  height: 3px;
  background: #036d36;
  margin-inline: auto;
  margin-block-start: 1.15rem;
  border-radius: 9999px;
}

.ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  background: rgba(3,109,54,0.06);
  border: 1px solid rgba(3,109,54,0.14);
  color: #036d36;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-block-end: 1.1rem;
}
.ab-eyebrow--center { margin-inline: auto; }
.ab-eyebrow--outline {
  background: rgba(153,243,174,0.06);
  border-color: rgba(153,243,174,0.25);
  color: #9cf6b0;
}
.ab-eyebrow__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #036d36;
  flex-shrink: 0;
}
.ab-eyebrow--outline .ab-eyebrow__dot { background: #9cf6b0; }

.ab-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .ab-grid--3 { grid-template-columns: repeat(2, 1fr); } .ab-grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ab-grid--3 { grid-template-columns: repeat(3, 1fr); } .ab-grid--5 { grid-template-columns: repeat(5, 1fr); } }

/* ═══════════════════════════════
   1. HERO
═══════════════════════════════ */
.ab-hero {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #071a2c;
  color: #fff;
  padding-block: clamp(6rem, 10vw, 7.5rem) clamp(3.5rem, 6vw, 5rem);
}
.ab-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}
.ab-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
  animation: abGlowFloat 9s ease-in-out infinite;
  will-change: transform;
}
.ab-hero__glow--1 { width: 360px; height: 360px; background: rgba(3,109,54,0.28); top: 30px; right: 20px; }
.ab-hero__glow--2 { width: 280px; height: 280px; background: rgba(0,108,53,0.15); bottom: 20px; left: 20px; animation-delay: -4s; animation-direction: reverse; }
@keyframes abGlowFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.03); }
}
.ab-hero__overlay {
  position: absolute; inset: 0;
  background: rgba(7,26,44,0.35);
  z-index: 1;
}
.ab-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ab-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9cf6b0;
  margin-block-end: 2.25rem;
}
.ab-hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #9cf6b0;
  animation: abPulse 2s ease-in-out infinite;
}
@keyframes abPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.ab-hero__title {
  font-size: clamp(1.9rem, 4.5vw, 3.3rem);
  font-weight: 900;
  line-height: 1.1; /* كان 1.22 */
  letter-spacing: -0.01em;
  margin-block-end: 1.75rem;
  max-width: 46rem;
}

.ab-hero__title {
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-block-end: 1.75rem;
  max-width: 24ch;
  margin-inline: auto;
  text-wrap: balance;
}

.desktop-break {
    display: inline;
}

@media (max-width: 768px) {
    .ab-hero__title {
        line-height: 1.45;
    }

    .desktop-break {
        display: none;
    }
}

.ab-hero__title-accent { color: #9cf6b0; }

.ab-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);      /* كان: clamp(0.98rem, 1.6vw, 1.15rem) */
  color: #d2e4fd;
  line-height: 1.8;
  max-width: 40rem;
  margin-block-end: 1.5rem;
  font-weight: 500;
}
.ab-hero__desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  max-width: 34rem;
  margin-block-end: 2.25rem;
}

.ab-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ═══════════════════════════════
   2. ENGINEERING PARTNER
═══════════════════════════════ */
.ab-split-header {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-block-end: var(--space-lg, clamp(2rem, 4vw, 3.5rem));
}
@media (min-width: 960px) { .ab-split-header { grid-template-columns: 1.4fr 1fr; } }

.ab-split-header__side p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #44474c;
  border-inline-start: 2px solid rgba(3,109,54,0.2);
  padding-inline-start: 1.1rem;
}

.ab-bento {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .ab-bento { grid-template-columns: 1.4fr 1fr; }
}
.ab-bento__col { display: flex; flex-direction: column; gap: 1.25rem; }

.ab-card {
  border-radius: 1.75rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (min-width: 640px) {
  .ab-card { flex-direction: row; text-align: start; }
}
.ab-card:hover { box-shadow: 0 20px 48px -12px rgba(11,28,48,0.16); transform: translateY(-3px); }

.ab-card--light { background: #f3f4f8; border: 1px solid rgba(3,109,54,0.08); }
.ab-card--dark  { background: #0b1c30; color: #fff; }
.ab-card__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.ab-card__tag {
  position: absolute;
  top: 1.1rem; right: 1.25rem;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  background: rgba(3,109,54,0.1);
  color: #036d36;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ab-card__tag--dark { background: rgba(255,255,255,0.1); color: #9cf6b0; }

.ab-card__icon-circle {
  width: 3.75rem; height: 3.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 22px rgba(11,28,48,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #036d36;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
  position: relative;
  z-index: 2;
}
.ab-card:hover .ab-card__icon-circle { background: #036d36; color: #fff; transform: scale(1.06); }
.ab-card__icon-circle--glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  color: #9cf6b0;
}
.ab-card:hover .ab-card__icon-circle--glass { transform: scale(1.08) rotate(5deg); }
.ab-card__icon-circle .material-symbols-outlined { font-size: 1.75rem; }

.ab-card__body { position: relative; z-index: 2; }
.ab-card__body h3 { font-size: 1.15rem; font-weight: 800; margin-block-end: 0.5rem; }
.ab-card__body p { font-size: 0.9rem; line-height: 1.7; opacity: 0.85; }
.ab-card--light .ab-card__body p { color: #44474c; }
.ab-card--dark .ab-card__body p { color: rgba(255,255,255,0.7); }

.ab-mini-card {
  background: #fff;
  border: 1px solid rgba(196,198,205,0.3);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ab-mini-card:hover { border-color: rgba(3,109,54,0.4); box-shadow: 0 14px 30px -8px rgba(3,109,54,0.14); }
.ab-mini-card__icon {
  width: 2.85rem; height: 2.85rem;
  flex-shrink: 0;
  border-radius: 0.85rem;
  background: rgba(3,109,54,0.06);
  color: #036d36;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.ab-mini-card:hover .ab-mini-card__icon { background: #036d36; color: #fff; }
.ab-mini-card h3 { font-size: 1rem; font-weight: 800; margin-block-end: 0.4rem; color: #0b1c30; }
.ab-mini-card p { font-size: 0.85rem; line-height: 1.65; color: #44474c; }

/* ═══════════════════════════════
   3. TIMELINE
═══════════════════════════════ */
.ab-timeline-section { position: relative; }
.ab-timeline-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.ab-timeline-glow--1 { width: 320px; height: 320px; background: rgba(3,109,54,0.06); top: 15%; left: -80px; }
.ab-timeline-glow--2 { width: 320px; height: 320px; background: rgba(11,28,48,0.05); bottom: 15%; right: -80px; }

.ab-timeline { position: relative; max-width: 46rem; margin-inline: auto; }
.ab-timeline__spine {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(3,109,54,0.15);
  display: none;
}
@media (min-width: 768px) { .ab-timeline__spine { display: block; } }
.ab-timeline__spine-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, #036d36, rgba(3,109,54,0.1));
  transition: height 1.8s ease;
}
.ab-timeline-section .reveal--visible ~ .container .ab-timeline__spine-fill,
.ab-timeline.reveal--visible .ab-timeline__spine-fill { height: 100%; }

.ab-timeline__step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-block-end: 2.5rem;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 768px) {
  .ab-timeline__step { flex-direction: row; text-align: end; }
  .ab-timeline__step--right { flex-direction: row-reverse; text-align: start; }
}
.ab-timeline__step:last-child { margin-block-end: 0; }

.ab-timeline__text { flex: 1; }
.ab-timeline__text h4 { font-size: 1.1rem; font-weight: 800; color: #0b1c30; margin-block-end: 0.45rem; }
.ab-timeline__text p { font-size: 0.88rem; line-height: 1.65; color: #44474c; }

.ab-timeline__dot {
  flex-shrink: 0;
  width: 3.1rem; height: 3.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  position: relative;
  z-index: 2;
  border: 3px solid #f3f4f8;
  transition: transform 0.3s ease;
}
.ab-timeline__step:hover .ab-timeline__dot { transform: scale(1.1); }
.ab-timeline__dot--dark    { background: #0b1c30; color: #fff; box-shadow: 0 8px 22px rgba(11,28,48,0.22); }
.ab-timeline__dot--light   { background: #fff; color: #036d36; border-color: #036d36; box-shadow: 0 5px 14px rgba(11,28,48,0.1); border-width: 2px; }
.ab-timeline__dot--primary { background: #036d36; color: #fff; box-shadow: 0 8px 22px rgba(3,109,54,0.28); }

.ab-timeline__spacer { flex: 1; display: none; }
@media (min-width: 768px) { .ab-timeline__spacer { display: block; } }

/* ═══════════════════════════════
   4/7. GLASS CARDS (dark sections)
═══════════════════════════════ */
.ab-glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 1.65rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.ab-glass-card:hover {
  border-color: rgba(153,243,174,0.35);
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.ab-glass-card__icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.06);
  color: #9cf6b0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.ab-glass-card:hover .ab-glass-card__icon { background: #9cf6b0; color: #0b1c30; transform: scale(1.08); }
.ab-glass-card h5 { font-size: 1.02rem; font-weight: 800; color: #fff; margin-block-end: 0.6rem; }
.ab-glass-card p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); }

.ab-center-btn { display: flex; justify-content: center; margin-block-start: 2.5rem; }

/* ═══════════════════════════════
   5. PHILOSOPHY
═══════════════════════════════ */
.ab-philosophy {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: var(--space-lg, clamp(2rem, 4vw, 3.5rem));
}
.ab-phil-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) { .ab-phil-item { flex-direction: row; gap: 2.25rem; align-items: flex-start; } }

.ab-phil-item__num {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(11,28,48,0.05);
  user-select: none;
  transition: color 0.4s ease;
  flex-shrink: 0;
}
.ab-phil-item:hover .ab-phil-item__num { color: rgba(3,109,54,0.12); }

.ab-phil-item__body h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 800; color: #0b1c30; margin-block-end: 0.6rem; }
.ab-phil-item__body p { font-size: clamp(0.92rem, 1.2vw, 1rem); line-height: 1.75; color: #44474c; max-width: 34rem; }

/* ═══════════════════════════════
   6. SECTOR GRID
═══════════════════════════════ */
.ab-sector-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .ab-sector-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ab-sector-grid { grid-template-columns: repeat(4, 1fr); } }

.ab-sector-pill {
  background: #fff;
  border: 1px solid rgba(196,198,205,0.35);
  border-radius: 1.1rem;
  padding: 1.25rem 0.85rem;
  text-align: center;
  font-weight: 700;
  color: #0b1c30;
  font-size: 0.88rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.ab-sector-pill:hover {
  border-color: #036d36;
  box-shadow: 0 12px 28px -8px rgba(3,109,54,0.18);
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   8. STRATEGIC PARTNERSHIPS (LOGOS)
═══════════════════════════════ */
.ab-logos-section { text-align: center; border-block-end: 1px solid rgba(196,198,205,0.2); }

.ab-logos__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #44474c;
  margin-block-end: var(--space-lg, clamp(2.5rem, 5vw, 4rem));
}

.ab-logos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  max-width: 40rem;
  margin-inline: auto;
  margin-block-end: var(--space-lg, clamp(2.5rem, 5vw, 4rem));
}

.ab-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.25rem;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}
.ab-logos__item:hover {
  opacity: 0.9;
  filter: grayscale(0.25);
  transform: scale(1.05);
}
.ab-logos__item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ab-logos__disclaimer {
  font-size: 0.85rem;
  font-style: italic;
  color: #44474c;
  line-height: 1.8;
  max-width: 44rem;
  margin-inline: auto;
}

/* ═══════════════════════════════
   9. TRANSPARENCY CARD
═══════════════════════════════ */
.ab-transparency-card {
  background: #e5eeff;
  border: 1px solid rgba(3,109,54,0.08);
  border-radius: 2rem;
  padding: clamp(1.75rem, 3.5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 960px) {
  .ab-transparency-card { flex-direction: row; text-align: start; }
}
.ab-transparency-card__icon {
  width: 4.25rem; height: 4.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #036d36;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -6px rgba(3,109,54,0.32);
}
.ab-transparency-card__icon .material-symbols-outlined { font-size: 2rem; }
.ab-transparency-card__body h2 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); font-weight: 800; color: #0b1c30; margin-block-end: 0.85rem; }
.ab-transparency-card__body p { font-size: clamp(0.92rem, 1.3vw, 1.02rem); line-height: 1.75; color: #44474c; }

/* ═══════════════════════════════
   9. GULF MARKET
═══════════════════════════════ */
.ab-gulf-card {
  background: #fff;
  border: 1px solid rgba(196,198,205,0.3);
  border-radius: 1.35rem;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ab-gulf-card:hover { box-shadow: 0 18px 40px -10px rgba(11,28,48,0.14); transform: translateY(-4px); }
.ab-gulf-card .material-symbols-outlined { font-size: 1.9rem; color: #036d36; margin-block-end: 1rem; }
.ab-gulf-card h6 { font-size: 0.95rem; font-weight: 800; color: #0b1c30; margin-block-end: 0.6rem; }
.ab-gulf-card p { font-size: 0.8rem; line-height: 1.65; color: #44474c; }

/* ═══════════════════════════════
   10. FINAL CTA
═══════════════════════════════ */
.ab-cta {
  position: relative;
  overflow: hidden;
  background: #0a1d2f;
  padding-block: var(--space-2xl, clamp(4rem, 8vw, 6.5rem));
}
.ab-cta__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.ab-cta__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 400px;
  background: rgba(3,109,54,0.22);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: abGlowFloat 10s ease-in-out infinite;
}

.ab-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}
.ab-cta__inner h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  max-width: 38rem;
  margin-block-end: 0.4rem;
}
.ab-cta__inner p {
  font-size: clamp(0.92rem, 1.5vw, 1.1rem);
  color: #d2e4fd;
  line-height: 1.8;
  max-width: 36rem;
  font-weight: 500;
}
.ab-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-block-start: 1rem;
}

/* ═══════════════════════════════
   RESPONSIVE TWEAKS
═══════════════════════════════ */
@media (max-width: 639px) {
  .ab-hero__actions,
  .ab-cta__actions { flex-direction: column; width: 100%; }
  .ab-btn { justify-content: center; width: 100%; }
}