/* ============================================
   SYNEXIIN HEADER — component styles
   Prefix: synx-header
   ============================================ */

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

/* ---------- Header shell ---------- */
.synx-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 29, 85, 0.08);
  transition:
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

.synx-header.synx-header--scrolled {
  box-shadow: 0 6px 24px rgba(0, 29, 85, 0.12);
}

.synx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  transition: padding 0.3s ease;
}

.synx-header--scrolled .synx-header__inner {
  padding: 16px 0;
}

/* ---------- Logo ---------- */
.synx-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.synx-header__logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

.synx-header--scrolled .synx-header__logo-img {
  height: 46px;
}

/* ---------- Desktop nav ---------- */
.synx-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.synx-header__menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.synx-header__item {
  margin: 0;
}

.synx-header__link {
  color: #001d55;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s ease;
}

.synx-header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #02a0a7;
  transition: width 0.25s ease;
}

.synx-header__link:hover,
.synx-header__link:focus {
  color: #02a0a7;
}

.synx-header__link:hover::after,
.synx-header__link:focus::after {
  width: 100%;
}

/* ---------- CTA button ---------- */
.synx-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 30px;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.synx-header__cta i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.synx-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 160, 167, 0.35);
  color: #ffffff;
}

.synx-header__cta:hover i {
  transform: translateX(3px);
}

/* ---------- Mobile toggle (hamburger) ---------- */
.synx-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.synx-header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #001d55;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
  margin: 0 auto;
}

.synx-header__toggle--active .synx-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.synx-header__toggle--active .synx-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.synx-header__toggle--active .synx-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Overlay (mobile) ---------- */
.synx-header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 29, 85, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 1040;
}

.synx-header__overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   RESPONSIVE — mobile slide-in menu
   ============================================ */
@media (max-width: 991.98px) {
  .synx-header__toggle {
    display: flex;
  }

  .synx-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(78vw, 340px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 30px 40px;
    box-shadow: -8px 0 30px rgba(0, 29, 85, 0.18);
    transition: right 0.35s ease;
    z-index: 1050;
    overflow-y: auto;
  }

  .synx-header__nav--open {
    right: 0;
  }

  .synx-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .synx-header__item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 29, 85, 0.08);
  }

  .synx-header__link {
    display: block;
    width: 100%;
    padding: 16px 2px;
    font-size: 16px;
  }

  .synx-header__link::after {
    display: none;
  }

  .synx-header__cta {
    margin-top: 26px;
    justify-content: center;
    width: 100%;
  }

  .synx-header__overlay {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .synx-header__logo-img {
    height: 38px;
  }

  .synx-header__nav {
    width: 84vw;
  }
}

/* ---------- Demo content (not part of header component) ---------- */
.synx-demo-spacer {
  min-height: 180vh;
  background: #f5f7fa;
  padding-top: 80px;
}

.synx-demo-title {
  color: #001d55;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

/* ============================================
   SYNEXIIN HERO — component styles
   Prefix: synx-hero
   ============================================ */

.synx-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  background: #000d27;
  display: flex;
  align-items: center;
}

/* particles.js mounts full-bleed behind content */
.synx-hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

/* soft radial overlay so text stays legible over the particle field */
.synx-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    circle at center,
    rgba(0, 29, 85, 0.15) 0%,
    rgba(0, 29, 85, 0.65) 100%
  );
  pointer-events: none;
}

.synx-hero .container {
  position: relative;
  z-index: 3;
}

/* ---------- bottom wavy shape divider ---------- */
.synx-hero__shape {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 4;
  pointer-events: none;
}

.synx-hero__shape svg {
  display: block;
  width: 100%;
  height: 90px;
}

@media (max-width: 575.98px) {
  .synx-hero__shape svg {
    height: 50px;
  }
}

.synx-hero__content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}

.synx-hero__title {
  margin: 0px;
  color: #ffffff;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: synxFadeUp 0.9s ease forwards;
  animation-delay: 0.2s;
}

.synx-hero__desc {
  margin: 0 auto;
  padding: 25px 0;
  max-width: 850px;
  color: rgba(255, 255, 255, 0.82);
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0;
  font-style: italic;
  animation: synxFadeUp 0.9s ease forwards;
  animation-delay: 0.45s;
}

.synx-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 30px;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.synx-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 160, 167, 0.35);
  color: #ffffff;
}

.synx-hero__cta2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 30px;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.synx-hero__cta2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 160, 167, 0.35);
  color: #ffffff;
}

/* ---------- entrance animation ---------- */
@keyframes synxFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* particle canvas fades in behind the text so the section doesn't pop in fully-formed */
.synx-hero__particles {
  opacity: 0;
  animation: synxFadeIn 1.4s ease forwards;
}

@keyframes synxFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .synx-hero__title,
  .synx-hero__desc,
  .synx-hero__particles {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-hero__title {
    font-size: 40px;
  }

  .synx-hero__desc {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .synx-hero {
    min-height: 100svh;
  }

  .synx-hero__content {
    padding: 30px 0;
  }

  .synx-hero__title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .synx-hero__desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ============================================
   SYNEXIIN ABOUT — component styles
   Prefix: synx-about
   ============================================ */

.synx-about {
  background: #ffffff;
  padding: 50px 0;
}

.synx-about__row {
  gap: 50px 0;
}

/* ---------- left column: copy ---------- */
.synx-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #02a0a7;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.synx-about__eyebrow i {
  font-size: 12px;
}

.synx-about__title {
  margin: 0 0 22px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.synx-about__para {
  margin: 0 0 18px;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.synx-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 30px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.synx-about__cta i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.synx-about__cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2, 160, 167, 0.3);
}

.synx-about__cta:hover i {
  transform: translateX(3px);
}

/* ---------- right column: image + pillars ---------- */
.synx-about__image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 20px 50px rgba(0, 29, 85, 0.15); */
}

.synx-about__image {
  display: block;
  width: 100%;
  height: auto;
  /* aspect-ratio: 4 / 3; */
  height: 400px;
  object-fit: contain;
}

.synx-about__pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  text-align: center;
}

.synx-about__pillar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #02a0a7;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.synx-about__pillar i {
  font-size: 18px;
}

.synx-about__pillar:nth-child(2) i,
.synx-about__pillar:nth-child(2) {
  color: #02a0a7;
}

.synx-about__dot {
  color: #b8c2d9;
  font-size: 18px;
  line-height: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-about {
    padding: 70px 0;
  }

  .synx-about__title {
    font-size: 30px;
  }

  .synx-about__pillar {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .synx-about__title {
    font-size: 26px;
  }

  .synx-about__para {
    font-size: 15px;
  }

  .synx-about__pillars {
    flex-direction: column;
    gap: 12px;
  }

  .synx-about__dot {
    display: none;
  }
}

.mqw-outer {
  overflow: hidden; /* clips the rotated bleed */
  width: 100%;
  padding: 50px 0;
}

.mqw-section {
  position: relative;
  overflow: hidden;
  /* diagonal slant */
  transform: rotate(-2.2deg) scaleX(1.04);
  margin: 1.5rem 0;
  /* compensate for rotation bleed */
  padding: 0;
}

/* two strips â€” one below the other */
.mqw-strip {
  background: linear-gradient(135deg, #02a0a7, #001d55);
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  line-height: 1;
}

/* gap between strips */
.mqw-strip + .mqw-strip {
  margin-top: 3px;
}

/* inner track â€” duplicated for seamless loop */
.mqw-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* strip 1 goes left, strip 2 goes right */
}

.mqw-strip:nth-child(1) .mqw-track {
  animation: mqw-left 40s linear infinite;
}
.mqw-strip:nth-child(2) .mqw-track {
  animation: mqw-right 40s linear infinite;
}

@keyframes mqw-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes mqw-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* â”€â”€ ITEM â”€â”€ */
.mqw-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 1.4rem;
}

.mqw-text {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.mqw-sep {
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
  opacity: 0.85;
}

/* pause on hover */
.mqw-section:hover .mqw-strip:nth-child(1) .mqw-track {
  animation-play-state: paused;
}
.mqw-section:hover .mqw-strip:nth-child(2) .mqw-track {
  animation-play-state: paused;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 576px) {
  .mqw-section {
    transform: rotate(-2.2deg) scaleX(1.06);
  }
  .mqw-strip {
    padding: 0.4rem 0;
  }
}

/* ============================================
   SYNEXIIN IMPACT — component styles
   Prefix: synx-impact
   Requires: Google Font "Playfair Display" (700)
   ============================================ */

.synx-impact {
  background: #ffffff;
  padding: 90px 0;
}

.synx-impact__title {
  margin: 0 0 40px;
  color: #001d55;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.synx-impact__box {
  background: #f7f7f7;
  padding: 55px 40px;
}

.synx-impact__row {
  align-items: stretch;
}

.synx-impact__item {
  position: relative;
  padding: 10px 30px;
}

.synx-impact__item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(0, 29, 85, 0.15);
}

.synx-impact__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #001d55;
  border-radius: 50%;
  background: #f7f7f7;
  transform: translateY(-50%);
  z-index: 2;
}

.synx-impact__item:last-child::after,
.synx-impact__item:last-child::before {
  display: none;
}

.synx-impact__number {
  margin: 0 0 8px;
  color: #001d55;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.synx-impact__label {
  margin: 0;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-impact {
    padding: 60px 0;
  }

  .synx-impact__title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .synx-impact__box {
    padding: 40px 20px;
  }

  .synx-impact__number {
    font-size: 30px;
  }

  /* on 2-col mobile grid, only every-other item and each row's last item lose the divider */
  .synx-impact__item:nth-child(2n)::after,
  .synx-impact__item:nth-child(2n)::before {
    display: none;
  }

  .synx-impact__item {
    margin-bottom: 24px;
  }
}

@media (max-width: 575.98px) {
  .synx-impact__item {
    padding: 6px 12px;
  }

  .synx-impact__number {
    font-size: 26px;
  }

  .synx-impact__label {
    font-size: 13px;
  }
}

/* ============================================
   SYNEXIIN SERVICES — component styles
   Prefix: synx-services
   ============================================ */

.synx-services {
  background: #f7f7f7;
  padding: 100px 0;
}

/* ---------- head block ---------- */
.synx-services__head {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}

.synx-services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #02a0a7;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.synx-services__eyebrow i {
  font-size: 12px;
}

.synx-services__title {
  margin: 0 0 20px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

.synx-services__intro {
  margin: 0;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

/* ---------- cards ---------- */
.synx-services__row {
  row-gap: 30px;
}

.synx-services__card {
  position: relative;
  height: 100%;
  background: #ffffff;
  border-radius: 14px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 29, 85, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.synx-services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 29, 85, 0.12);
}

.synx-services__number {
  margin: 0 0 18px;
  color: rgb(1 147 159 / 17%);
  font-family: "Poppins", sans-serif;
  font-size: 61px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 25px;
}

.synx-services__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  font-size: 20px;
}

.synx-services__card-title a {
  margin: 0 0 12px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.synx-services__card-desc {
  margin: 0;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-services {
    padding: 70px 0;
  }

  .synx-services__title {
    font-size: 28px;
  }

  .synx-services__head {
    margin-bottom: 44px;
  }
}

@media (max-width: 575.98px) {
  .synx-services__title {
    font-size: 24px;
  }

  .synx-services__intro {
    font-size: 15px;
  }

  .synx-services__card {
    padding: 32px 24px;
  }
}

/* ============================================
   SYNEXIIN WHY PARTNER — component styles
   Prefix: synx-why
   ============================================ */

.synx-why {
  position: relative;
  background: #ffffff;
  padding: 90px 0;
}

/* ---------- head ---------- */
.synx-why__head {
  text-align: center;
  margin-bottom: 50px;
}

.synx-why__title {
  margin: 0 0 14px;
  color: #001d55;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.synx-why__underline {
  display: inline-block;
  width: 46px;
  height: 3px;
  background: #001d55;
}

/* decorative ringed dot, top right of section (purely visual) */
.synx-why__deco {
  position: absolute;
  top: 26px;
  right: 40px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 29, 85, 0.35);
  border-radius: 50%;
}

.synx-why__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #001d55;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- columns (no card chrome) ---------- */
.synx-why__row {
  align-items: stretch;
}

.synx-why__item {
  position: relative;
  padding: 0 26px;
  text-align: center;
}

.synx-why__item::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  width: 1px;
  background: rgba(0, 29, 85, 0.12);
}

.synx-why__item:last-child::after {
  display: none;
}

.synx-why__icon {
  margin-bottom: 18px;
  color: #001d55;
  font-size: 26px;
}

.synx-why__item-title {
  margin: 0 0 10px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.synx-why__item-desc {
  margin: 0;
  color: #6b7590;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-why__deco {
    display: none;
  }

  .synx-why__item {
    margin-bottom: 34px;
  }

  /* 2-col mobile grid: drop dividers that no longer sit between two items */
  .synx-why__item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .synx-why__title {
    font-size: 20px;
  }
}

/* ============================================
   SYNEXIIN TESTIMONIALS — component styles
   Prefix: synx-testimonial
   Requires: Owl Carousel 2 (core + theme.default CSS)
   ============================================ */

.synx-testimonial {
  background: #f7f7f7;
  padding: 100px 0;
}

/* ---------- head ---------- */
.synx-testimonial__head {
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.synx-testimonial__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #02a0a7;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.synx-testimonial__eyebrow i {
  font-size: 12px;
}

.synx-testimonial__title {
  margin: 0 0 10px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
}

.synx-testimonial__subtitle {
  margin: 0 0 14px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.synx-testimonial__intro {
  margin: 0;
  color: #6b7590;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

/* ---------- carousel item ---------- */
.synx-testimonial__carousel {
  max-width: 820px;
  margin: 0 auto;
}

.synx-testimonial__item {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 46px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 29, 85, 0.08);
}

.synx-testimonial__quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  font-size: 16px;
}

.synx-testimonial__quote {
  margin: 0 0 18px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
}

.synx-testimonial__body {
  margin: 0 auto 28px;
  max-width: 620px;
  color: #6b7590;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.synx-testimonial__author {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 29, 85, 0.1);
}

.synx-testimonial__name {
  margin: 0 0 2px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.synx-testimonial__company {
  margin: 0;
  color: #02a0a7;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
}

/* ---------- Owl dots override (brand colors) ---------- */
.synx-testimonial .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.synx-testimonial .owl-dots .owl-dot span {
  display: block;
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 50%;
  background: rgba(0, 29, 85, 0.2);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.synx-testimonial .owl-dots .owl-dot.active span {
  background: #02a0a7;
  transform: scale(1.2);
}

.synx-testimonial .owl-nav {
  margin-top: 0;
}

.synx-testimonial .owl-nav button.owl-prev,
.synx-testimonial .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff !important;
  color: #001d55 !important;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0, 29, 85, 0.15);
  transform: translateY(-50%);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.synx-testimonial .owl-nav button.owl-prev:hover,
.synx-testimonial .owl-nav button.owl-next:hover {
  background: #02a0a7 !important;
  color: #ffffff !important;
}

.synx-testimonial .owl-nav button.owl-prev {
  left: -60px;
}

.synx-testimonial .owl-nav button.owl-next {
  right: -60px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-testimonial {
    padding: 70px 0;
  }

  .synx-testimonial__title {
    font-size: 28px;
  }

  .synx-testimonial__item {
    padding: 40px 30px;
  }

  .synx-testimonial .owl-nav button.owl-prev,
  .synx-testimonial .owl-nav button.owl-next {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .synx-testimonial__quote {
    font-size: 18px;
  }

  .synx-testimonial__item {
    padding: 32px 22px;
  }
}

/* ============================================
   SYNEXIIN FAQ — component styles
   Prefix: synx-faq
   Requires: Google Font "Playfair Display" (700)
   ============================================ */

.synx-faq {
  background: #ffffff;
  padding: 100px 0;
}

.synx-faq__row {
  align-items: flex-start;
}

/* ---------- left column ---------- */
.synx-faq__badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 16px;
  background: rgba(0, 29, 85, 0.08);
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}

.synx-faq__title {
  margin: 0 0 36px;
  color: #001d55;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
}

/* ---------- accordion ---------- */
.synx-faq__item {
  border: 1px solid rgba(0, 29, 85, 0.1);
  border-radius: 8px;
  margin-bottom: 14px;
  background: #ffffff;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.synx-faq__item--active {
  background: #eef1f6;
  border-color: transparent;
}

.synx-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.synx-faq__num {
  color: #02a0a7;
  margin-right: 4px;
}

.synx-faq__icon {
  flex-shrink: 0;
  color: #001d55;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.synx-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 24px;
}

.synx-faq__answer p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 29, 85, 0.12);
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.synx-faq__item--active .synx-faq__answer {
  padding: 0 24px 22px;
}

/* ---------- right column: image ---------- */
.synx-faq__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 29, 85, 0.15);
}

.synx-faq__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-faq {
    padding: 70px 0;
  }

  .synx-faq__title {
    font-size: 28px;
  }

  .synx-faq__image-wrap {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .synx-faq__question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .synx-faq__answer {
    padding: 0 18px;
  }

  .synx-faq__item--active .synx-faq__answer {
    padding: 0 18px 18px;
  }
}

/* ============================================
   SYNEXIIN CTA — component styles
   Prefix: synx-cta
   Requires: assets/cta-bg.png (shared wave background)
   ============================================ */

.synx-cta {
  background-color: #ffffff;
  background-image: url("../images/ctt.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 0;
}

.synx-cta__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.synx-cta__title {
  margin: 0 0 20px;
  color: #0a0a2a;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
}

.synx-cta__accent--blue {
  background: linear-gradient(90deg, #0294a0, #026582, #002b5e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.synx-cta__accent--orange {
  background: linear-gradient(90deg, #0294a0, #026582, #002b5e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.synx-cta__desc {
  margin: 0 auto 34px;
  max-width: 620px;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

/* ---------- action buttons ---------- */
.synx-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.synx-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.synx-cta__btn i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.synx-cta__btn--primary {
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(63, 205, 240, 0.28);
}

.synx-cta__btn--primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(63, 228, 240, 0.38);
}

.synx-cta__btn--outline {
  background: #ffffff;
  color: #02a0a7;
  border: 1px solid rgba(63, 190, 240, 0.35);
}

.synx-cta__btn--outline:hover {
  color: #02a0a7;
  background: rgba(63, 213, 240, 0.06);
  transform: translateY(-2px);
}

.synx-cta__btn:hover i {
  transform: translateX(3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-cta {
    padding: 70px 0;
  }

  .synx-cta__title {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .synx-cta__title {
    font-size: 24px;
  }

  .synx-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .synx-cta__btn {
    justify-content: center;
  }
}

/* ============================================
   SYNEXIIN FOOTER — component styles (light theme)
   Prefix: synx-footer
   ============================================ */

.synx-footer {
  position: relative;
  background: #fefefe;
  padding-top: 70px;
}

/* ---------- top wave divider ---------- */
.synx-footer__shape {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: translateY(-99%);
}

.synx-footer__shape svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* ---------- top area ---------- */
.synx-footer__top {
  padding-bottom: 40px;
}

.synx-footer__row {
  row-gap: 34px;
}

.synx-footer__logo-img {
  height: 46px;
  width: auto;
}

.synx-footer__address {
  margin: 0 0 10px;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
}

.synx-footer__email {
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: underline;
}

.synx-footer__email:hover {
  color: #02a0a7;
}

.synx-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.synx-footer__links li {
  margin-bottom: 12px;
}

.synx-footer__links li:last-child {
  margin-bottom: 0;
}

.synx-footer__links a {
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.synx-footer__links a:hover {
  color: #02a0a7;
}

.synx-footer__social-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .synx-footer__social-col {
    justify-content: flex-end;
  }
}

.synx-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.synx-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.12);
  color: #001d55;
  font-size: 15px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.synx-footer__social a:hover {
  background: #02a0a7;
  border-color: #02a0a7;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ---------- divider ---------- */
.synx-footer__divider {
  height: 1px;
  background: rgba(0, 29, 85, 0.1);
}

/* ---------- bottom bar ---------- */
.synx-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 15px;
}

.synx-footer__copyright,
.synx-footer__credit {
  margin: 0;
  color: #6b7590;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
}

/* ---------- back to top ---------- */
.synx-footer__totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #001d55;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease,
    background 0.25s ease;
  box-shadow: 0 10px 24px rgba(0, 29, 85, 0.25);
}

.synx-footer__totop--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.synx-footer__totop:hover {
  background: #02a0a7;
}

.synx-footer__totop i {
  font-size: 14px;
}

.synx-footer__totop span {
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-footer {
    padding-top: 50px;
  }

  .synx-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .synx-footer__shape svg {
    height: 50px;
  }

  .synx-footer__totop {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }
}

/* ============================================
     INTRO — light editorial header
     ============================================ */
.synx-svc-intro {
  position: relative;
  padding: 110px 0 60px;
  background: #f7f9fc;
  overflow: hidden;
}

.synx-svc-intro::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(2, 160, 167, 0.12),
    rgba(2, 160, 167, 0) 70%
  );
}

.synx-svc-intro::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 29, 85, 0.08),
    rgba(0, 29, 85, 0) 70%
  );
}

.synx-svc-intro__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #02939f14;
  font-family: "Playfair Display", serif;
  font-size: 200px;
  font-weight: 700;
  letter-spacing: 4px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.synx-svc-intro__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.synx-svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px 16px;
  background: rgba(0, 29, 85, 0.07);
  color: #001d55;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
}

.synx-svc-eyebrow i {
  font-size: 10px;
  color: #02a0a7;
}

.synx-svc-intro__title {
  margin: 0 0 18px;
  color: #001d55;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.5px;
}

.synx-svc-intro__desc {
  margin: 0 auto;
  max-width: 600px;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.8;
}

/* ---------- connected timeline strip ---------- */
.synx-svc-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 780px;
  margin: 0 auto;
}

.synx-svc-strip__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-decoration: none;
  padding-top: 4px;
}

.synx-svc-strip__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.18);
  color: #001d55;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 29, 85, 0.08);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.synx-svc-strip__node:hover .synx-svc-strip__dot {
  background: #02a0a7;
  border-color: #02a0a7;
  color: #ffffff;
  transform: translateY(-3px);
}

.synx-svc-strip__label {
  margin: 0;
  max-width: 150px;
  color: #4a5568;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.synx-svc-strip__line {
  flex: 0 0 auto;
  width: 90px;
  height: 1px;
  margin-top: 18px;
  background: rgba(0, 29, 85, 0.14);
}

/* ============================================
     PAGE SHELL — sticky rail + spotlight bands
     ============================================ */
.synx-svc-shell {
  display: flex;
  align-items: flex-start;
}

.synx-svc-rail {
  display: none;
}

@media (min-width: 992px) {
  .synx-svc-rail {
    display: flex;
    flex-direction: column;
    gap: 34px;
    flex: 0 0 220px;
    position: sticky;
    top: 90px;
    padding: 90px 30px;
  }

  .synx-svc-rail__item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .synx-svc-rail__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 29, 85, 0.2);
    color: #001d55;
    font-size: 12px;
    font-weight: 700;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease;
  }

  .synx-svc-rail__item:hover .synx-svc-rail__num {
    background: #02a0a7;
    border-color: #02a0a7;
    color: #ffffff;
  }

  .synx-svc-rail__text {
    margin: 0;
    color: #4a5568;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
  }

  .synx-svc-rail__item:hover .synx-svc-rail__text {
    color: #001d55;
  }

  .synx-svc-rail__connector {
    width: 1px;
    height: 26px;
    margin-left: 17px;
    background: rgba(0, 29, 85, 0.14);
  }
}

.synx-svc-main {
  flex: 1 1 auto;
  min-width: 0;
}

/* ============================================
     SPOTLIGHT SECTION (light theme throughout)
     ============================================ */
.synx-svc-spot {
  position: relative;
  padding: 85px 0;
}

.synx-svc-spot--tint {
  background: #f7f9fc;
}

/* ---------- header row: text + photo collage ---------- */
.synx-svc-spot__head {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}

.synx-svc-spot__headtext {
  flex: 1 1 380px;
  min-width: 0;
}

.synx-svc-spot__num {
  display: block;
  margin-bottom: 8px;
  color: rgba(0, 29, 85, 0.14);
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.synx-svc-spot__eyebrow {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02a0a7;
}

.synx-svc-spot__tagline {
  margin: 0;
  color: #001d55;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.45;
}

/* ---------- single photo per section ---------- */
.synx-svc-media {
  flex: 0 0 625px;
  width: 625px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 29, 85, 0.16);
}

.synx-svc-media img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* mirror the image side for reversed sections so it doesn't collide with the rail */
.synx-svc-spot--reverse .synx-svc-spot__head {
  flex-direction: row-reverse;
}

/* ---------- glass core-service cards (light) ---------- */
.synx-svc-glassrow {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
}

.synx-svc-glasscard {
  flex: 1 1 260px;
  padding: 24px 22px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.08);
  box-shadow: 0 10px 26px rgba(0, 29, 85, 0.06);
}

.synx-svc-glasscard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(2, 160, 167, 0.1);
  color: #02a0a7;
  font-size: 15px;
}

.synx-svc-glasscard__title {
  margin: 0 0 8px;
  color: #001d55;
  font-size: 15.5px;
  font-weight: 700;
}

.synx-svc-glasscard__desc {
  margin: 0;
  color: #6b7590;
  font-size: 13.5px;
  line-height: 1.7;
}

/* ---------- methods tag cloud ---------- */
.synx-svc-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #001d55;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.synx-svc-label i {
  color: #02a0a7;
}

.synx-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.synx-svc-tag {
  padding: 7px 15px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 500;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.14);
  color: #001d55;
}

/* ---------- closing elements ---------- */
.synx-svc-concepts {
  margin: 0;
  padding: 18px 22px;
  background: rgba(2, 160, 167, 0.06);
  border-radius: 12px;
  color: #4a5568;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.9;
}

.synx-svc-concepts span {
  color: #02a0a7;
  font-weight: 700;
}

.synx-svc-journey {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.synx-svc-journey__step {
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  background: #001d55;
  color: #ffffff;
  margin: 10px 0;
}

.synx-svc-journey__arrow {
  margin: 0 10px;
  font-size: 13px;
  color: #02a0a7;
}

.synx-svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
}

.synx-svc-badge i {
  font-size: 17px;
}

.synx-svc-badge span {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ============================================
     RESPONSIVE
     ============================================ */
@media (max-width: 991.98px) {
  .synx-svc-intro {
    padding: 80px 0 50px;
  }
  .synx-svc-intro__watermark {
    font-size: 110px;
  }
  .synx-svc-intro__title {
    font-size: 28px;
  }
  .synx-svc-strip__line {
    width: 40px;
  }
  .synx-svc-spot {
    padding: 60px 0;
  }
  .synx-svc-spot__tagline {
    font-size: 19px;
  }
  .synx-svc-spot__head,
  .synx-svc-spot--reverse .synx-svc-spot__head {
    flex-direction: column;
  }
  .synx-svc-media {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .synx-svc-spot__headtext {
    flex: 1 1;
    min-width: 0;
  }
  .synx-svc-media {
    flex: 1 1;
    width: 625px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 29, 85, 0.16);
  }
}

@media (max-width: 575.98px) {
  .synx-svc-intro__title {
    font-size: 24px;
  }
  .synx-svc-strip__label {
    display: none;
  }
  .synx-svc-strip__line {
    width: 22px;
  }
  .synx-svc-spot__num {
    font-size: 38px;
  }
  .synx-svc-media img {
    height: 200px;
  }
}

/* ============================================
     HERO — breadcrumb-style, full-bleed background photo
     ============================================ */
.synx-ab-hero {
  position: relative;
  padding: 130px 0 90px;
  height: 500px;
  background-color: #001028;
  background-image: url("https://images.unsplash.com/photo-1562790727-7a917b7f4b41?auto=format&fit=crop&w=1800&q=70");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.synx-ab-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 16, 40, 0.94) 0%,
    rgba(0, 16, 40, 0.82) 40%,
    rgba(0, 29, 85, 0.55) 75%,
    rgba(0, 29, 85, 0.35) 100%
  );
}

.synx-ab-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.synx-ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #6fe0e5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.synx-ab-hero__title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.synx-ab-hero__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.85;
}

/* ---------- pillar strip under hero ---------- */
.synx-ab-pillars {
  background: #f7f9fc;
  padding: 26px 0;
}

.synx-ab-pillars__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.synx-ab-pillars__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #001d55;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.synx-ab-pillars__item i {
  color: #02a0a7;
  font-size: 12px;
}

.synx-ab-pillars__dot {
  color: rgba(0, 29, 85, 0.25);
  font-size: 12px;
}

/* ============================================
     SHARED SECTION SPACING
     ============================================ */
.synx-ab-section {
  padding: 80px 0;
}
.synx-ab-section--tint {
  background: #f7f9fc;
}

.synx-ab-eyebrow2 {
  display: block;
  margin: 0 0 14px;
  color: #02a0a7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================
     WHO WE ARE
     ============================================ */
.synx-ab-who__title {
  margin: 0 0 20px;
  color: #001d55;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.synx-ab-who__para {
  margin: 0 0 16px;
  color: #4a5568;
  font-size: 15.5px;
  line-height: 1.85;
}

.synx-ab-who__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 29, 85, 0.15);
}

.synx-ab-who__media img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* ============================================
     MISSION
     ============================================ */
.synx-ab-mission {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.synx-ab-mission__quote {
  margin: 0;
  color: #001d55;
  font-family: "Playfair Display", serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.5;
}

.synx-ab-mission__mark {
  display: block;
  margin: 0 auto 18px;
  color: rgba(2, 160, 167, 0.4);
  font-size: 34px;
}

/* ============================================
     PHILOSOPHY
     ============================================ */
.synx-ab-phil__head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.synx-ab-phil__title {
  margin: 0;
  color: #001d55;
  font-size: 28px;
  font-weight: 700;
}

.synx-ab-phil__row {
  row-gap: 24px;
}

.synx-ab-phil__card {
  height: 100%;
  padding: 30px 26px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 29, 85, 0.06);
  text-align: center;
}

.synx-ab-phil__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  font-size: 21px;
}

.synx-ab-phil__name {
  margin: 0 0 4px;
  color: #001d55;
  font-size: 18px;
  font-weight: 700;
}

.synx-ab-phil__tag {
  margin: 0 0 12px;
  color: #02a0a7;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.synx-ab-phil__desc {
  margin: 0;
  color: #6b7590;
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
     WHY SYNEXIIN EXISTS — text + radial force diagram
     ============================================ */
.synx-ab-why__title {
  margin: 0 0 18px;
  color: #001d55;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
}

.synx-ab-why__para {
  margin: 0 0 16px;
  color: #4a5568;
  font-size: 15.5px;
  line-height: 1.85;
}

.synx-ab-orbit {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.synx-ab-orbit__ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(0, 29, 85, 0.2);
  border-radius: 50%;
}

.synx-ab-orbit__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  padding: 10px;
  box-shadow: 0 14px 30px rgba(0, 29, 85, 0.25);
}

.synx-ab-orbit__node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.14);
  border-radius: 30px;
  box-shadow: 0 8px 18px rgba(0, 29, 85, 0.1);
  color: #001d55;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.synx-ab-orbit__node i {
  color: #02a0a7;
  font-size: 12px;
}

.synx-ab-orbit__node--top {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.synx-ab-orbit__node--right {
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
}
.synx-ab-orbit__node--bottom {
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.synx-ab-orbit__node--left {
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
}

/* ============================================
     WHAT MAKES US DIFFERENT
     ============================================ */
.synx-ab-diff__head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.synx-ab-diff__title {
  margin: 0;
  color: #001d55;
  font-size: 28px;
  font-weight: 700;
}

.synx-ab-diff__row {
  row-gap: 22px;
}

.synx-ab-diff__item {
  display: flex;
  gap: 16px;
  height: 100%;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.08);
  border-radius: 14px;
}

.synx-ab-diff__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(2, 160, 167, 0.1);
  color: #02a0a7;
  font-size: 16px;
}

.synx-ab-diff__title2 {
  margin: 0 0 6px;
  color: #001d55;
  font-size: 15.5px;
  font-weight: 700;
}

.synx-ab-diff__desc {
  margin: 0;
  color: #6b7590;
  font-size: 13.5px;
  line-height: 1.7;
}

/* ============================================
     TRUSTED BY
     ============================================ */
.synx-ab-trust__head {
  text-align: center;
  margin-bottom: 34px;
}

.synx-ab-trust__label {
  margin: 0;
  color: #001d55;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.synx-ab-trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.synx-ab-trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.12);
  border-radius: 30px;
  color: #001d55;
  font-size: 13.5px;
  font-weight: 600;
}

.synx-ab-trust__chip i {
  color: #02a0a7;
  font-size: 13px;
}

/* ============================================
     FROM THE FOUNDER — split composition:
     script signature + layered orbit/bars portrait
     ============================================ */
.synx-ab-founder-sec {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(
      ellipse 900px 500px at 85% 15%,
      rgba(2, 160, 167, 0.07),
      transparent 60%
    ),
    linear-gradient(150deg, #fbf8f2 0%, #f4eee2 100%);
}

.synx-ab-founder-sec__corner-ring {
  position: absolute;
  top: 26px;
  left: 46px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0, 29, 85, 0.18);
  border-radius: 50%;
}

.synx-ab-founder-sec__corner-dot {
  position: absolute;
  top: 12px;
  left: 70px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #02a0a7;
}

.synx-ab-founder-sec__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 56px;
}

/* ---- left: quote + script signature ---- */
.synx-ab-founder-sec__copy {
  flex: 1 1 460px;
  min-width: 300px;
}

.synx-ab-founder-sec__mark {
  display: block;
  margin: 4px 0 22px;
  color: #001d55;
  font-size: 30px;
  line-height: 1;
}

.synx-ab-founder-sec__quote {
  margin: 0 0 34px;
  max-width: 480px;
  color: #12234f;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  line-height: 1.7;
}

.synx-ab-founder-sec__sign {
  margin: 0 0 2px;
  color: #001d55;
  font-family: "Parisienne", cursive;
  font-size: 34px;
  line-height: 1;
}

.synx-ab-founder-sec__role {
  margin: 8px 0 0;
  padding-left: 14px;
  border-left: 2px solid #02a0a7;
  color: #6b7590;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ---- right: layered visual ---- */
.synx-ab-founder-sec__visual {
  position: relative;
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 400px;
  height: 380px;
  margin: 0 auto;
}

.synx-ab-founder-sec__bars {
  position: absolute;
  right: 4%;
  bottom: 6%;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 78%;
  height: 62%;
}

.synx-ab-founder-sec__bars span {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(
    180deg,
    rgba(0, 29, 85, 0.05),
    rgba(0, 29, 85, 0.13)
  );
}

.synx-ab-founder-sec__bars span:nth-child(1) {
  height: 38%;
}
.synx-ab-founder-sec__bars span:nth-child(2) {
  height: 58%;
}
.synx-ab-founder-sec__bars span:nth-child(3) {
  height: 46%;
}
.synx-ab-founder-sec__bars span:nth-child(4) {
  height: 78%;
}
.synx-ab-founder-sec__bars span:nth-child(5) {
  height: 65%;
}
.synx-ab-founder-sec__bars span:nth-child(6) {
  height: 95%;
}

.synx-ab-founder-sec__ring {
  position: absolute;
  border-radius: 50%;
}

.synx-ab-founder-sec__ring--a {
  top: 0;
  left: 6%;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(2, 160, 167, 0.4);
}

.synx-ab-founder-sec__ring--b {
  top: 12%;
  right: 0;
  width: 75%;
  height: 75%;
  border: 1px dashed rgba(0, 29, 85, 0.22);
}

.synx-ab-founder-sec__photo {
  position: absolute;
  top: 14%;
  right: 17%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 28px 55px rgba(0, 29, 85, 0.28);
}

.synx-ab-founder-sec__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.synx-ab-founder-sec__badge {
  position: absolute;
  left: 2%;
  bottom: 10%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  font-size: 19px;
  box-shadow: 0 16px 30px rgba(0, 29, 85, 0.32);
}

.synx-ab-founder-sec__chip {
  position: absolute;
  top: 6%;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.1);
  border-radius: 30px;
  box-shadow: 0 10px 22px rgba(0, 29, 85, 0.12);
  color: #001d55;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.synx-ab-founder-sec__chip i {
  color: #02a0a7;
  font-size: 11px;
}

/* ============================================
     RESPONSIVE
     ============================================ */
@media (max-width: 991.98px) {
  .synx-ab-hero {
    padding: 100px 0 60px;
  }
  .synx-ab-hero__title {
    font-size: 28px;
  }
  .synx-ab-section {
    padding: 60px 0;
  }
  .synx-ab-who__media img {
    height: 260px;
    margin-top: 30px;
  }
  .synx-ab-orbit {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .synx-ab-hero__title {
    font-size: 24px;
  }
  .synx-ab-mission__quote {
    font-size: 21px;
  }
  .synx-ab-orbit {
    width: 280px;
    height: 280px;
  }
  .synx-ab-orbit__center {
    width: 110px;
    height: 110px;
    font-size: 12px;
  }
  .synx-ab-orbit__node {
    font-size: 11px;
    padding: 7px 11px;
  }
  .synx-ab-orbit__node--right {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
  }
  .synx-ab-orbit__node--left {
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
  }
}

@media (max-width: 991.98px) {
  .synx-ab-founder-sec {
    padding: 80px 0;
  }
  .synx-ab-founder-sec__row {
    flex-direction: column;
  }
  .synx-ab-founder-sec__copy {
    text-align: center;
  }
  .synx-ab-founder-sec__quote {
    margin-left: auto;
    margin-right: auto;
  }
  .synx-ab-founder-sec__role {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    text-align: left;
  }
  .synx-ab-founder-sec__visual {
    max-width: 320px;
    height: 320px;
  }
  .synx-ab-founder-sec__photo {
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 575.98px) {
  .synx-ab-founder-sec__quote {
    font-size: 19px;
  }
  .synx-ab-founder-sec__sign {
    font-size: 28px;
  }
  .synx-ab-founder-sec__chip {
    display: none;
  }
}

:root {
  --sx-navy: #001d55;
  --sx-navy-deep: #00112f;
  --sx-teal: #02a0a7;
  --sx-teal-deep: #017a80;
  --sx-cream: #faf7f1;
  --sx-cream-2: #f2ebdd;
  --sx-tint: #f7f9fc;
  --sx-ink: #12234f;
  --sx-muted: #6b7590;
  --sx-body: #4a5568;
  --sx-border: rgba(0, 29, 85, 0.08);
}

.sp-eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--sx-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================
     HERO — full-bleed background image, navy overlay
     ============================================ */
.sp-hero {
  position: relative;
  padding: 140px 0 100px;
  height: 500px;
  background-color: #001028;
  background-image: url("../images/sig-pro.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.sp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgb(0 0 0 / 95%) 0%,
    rgb(0 0 0 / 86%) 42%,
    rgba(0, 29, 85, 0.58) 76%,
    rgb(121 136 165 / 0%) 100%
  );
}

.sp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.sp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #6fe0e5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sp-hero__title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.3px;
}

.sp-hero__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.85;
  max-width: 620px;
}

/* ---------- meta strip under hero ---------- */
.sp-hero-meta {
  background: #f7f9fc;
  padding: 24px 0;
}

.sp-hero-meta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sp-hero-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #001d55;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.sp-hero-meta__item i {
  color: var(--sx-teal);
  font-size: 12px;
}

.sp-hero-meta__dot {
  color: rgba(0, 29, 85, 0.25);
  font-size: 12px;
}

/* ============================================
     SHARED SECTION SPACING
     ============================================ */
.sp-section {
  padding: 90px 0;
}
.sp-section--tint {
  background: var(--sx-tint);
}

/* ============================================
     INTRO
     ============================================ */
.sp-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.sp-intro__lead {
  margin: 0 0 18px;
  color: var(--sx-navy);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.5;
}

.sp-intro__desc {
  margin: 0;
  color: var(--sx-body);
  font-size: 15.5px;
  line-height: 1.85;
}

/* ============================================
     PROGRAM CARDS
     ============================================ */
.sp-programs__row {
  row-gap: 30px;
  align-items: flex-start;
}

.sp-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--sx-border);
  border-radius: 18px;
  padding: 25px 20px 25px;
  box-shadow: 0 14px 34px rgba(0, 29, 85, 0.07);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  overflow: hidden;
  min-height: 500px;
}

.sp-card:hover {
  box-shadow: 0 22px 46px rgba(0, 29, 85, 0.14);
  transform: translateY(-4px);
}

.sp-card__ribbon {
  position: absolute;
  top: 20px;
  right: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 152px;
  padding: 6px 0;
  background: linear-gradient(135deg, var(--sx-teal), var(--sx-navy));
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  transform: rotate(40deg);
  box-shadow: 0 8px 16px rgba(0, 29, 85, 0.25);
}

.sp-card__ribbon i {
  font-size: 10px;
}

.sp-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 4px 0 20px;
  border-radius: 14px;
  background: rgba(2, 160, 167, 0.1);
  color: var(--sx-teal);
  font-size: 21px;
}

.sp-card__title {
  margin: 0 0 10px;
  padding-right: 30px;
  color: var(--sx-navy);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.sp-card__tagline {
  margin: 0 0 12px;
  color: var(--sx-ink);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.55;
}

.sp-card__preview {
  margin: 0 0 22px;
  color: var(--sx-body);
  font-size: 13.5px;
  line-height: 1.8;
}

/* ---- always-visible meta: duration + ideal for ---- */
.sp-card__meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0 0 20px;
  padding: 15px 16px;
  background: var(--sx-tint);
  border-radius: 12px;
}

.sp-card__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--sx-navy);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.55;
}

.sp-card__meta-item i {
  color: var(--sx-teal);
  font-size: 12px;
  margin-top: 2px;
  width: 12px;
}

/* ---- collapsible content ---- */
.sp-card__check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sp-card__collapse {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    margin 0.45s ease;
}

.sp-card__check:checked ~ .sp-card__collapse {
  max-height: 700px;
  opacity: 1;
  margin-bottom: 18px;
}

.sp-card__full {
  margin: 0 0 18px;
  color: var(--sx-body);
  font-size: 13.5px;
  line-height: 1.85;
}

.sp-card__outcomes-label {
  margin: 0 0 10px;
  color: var(--sx-navy);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.sp-card__outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-card__outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--sx-body);
  font-size: 13px;
  line-height: 1.6;
}

.sp-card__outcomes li i {
  color: var(--sx-teal);
  font-size: 13px;
  margin-top: 3px;
}

/* ---- toggle button ---- */
.sp-card__toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--sx-teal-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  user-select: none;
}

.sp-card__toggle-btn i {
  font-size: 11px;
  transition: transform 0.35s ease;
}

.sp-card__toggle-text-less {
  display: none;
}

.sp-card__check:checked ~ .sp-card__toggle-btn .sp-card__toggle-text-more {
  display: none;
}
.sp-card__check:checked ~ .sp-card__toggle-btn .sp-card__toggle-text-less {
  display: inline;
}
.sp-card__check:checked ~ .sp-card__toggle-btn i {
  transform: rotate(180deg);
}

.sp-card__check:focus-visible ~ .sp-card__toggle-btn {
  outline: 2px solid var(--sx-teal);
  outline-offset: 4px;
  border-radius: 6px;
}

/* ============================================
     WHY OUR PROGRAMS DELIVER IMPACT
     ============================================ */
.sp-why__head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.sp-why__title {
  margin: 0;
  color: var(--sx-navy);
  font-size: 28px;
  font-weight: 700;
}

.sp-why__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sp-why__item {
  flex: 1 1 210px;
  padding: 28px 22px;
  background: #ffffff;
  border: 1px solid var(--sx-border);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 29, 85, 0.06);
  text-align: center;
}

.sp-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sx-teal), var(--sx-navy));
  color: #ffffff;
  font-size: 19px;
}

.sp-why__name {
  margin: 0 0 8px;
  color: var(--sx-navy);
  font-size: 15px;
  font-weight: 700;
}

.sp-why__desc {
  margin: 0;
  color: var(--sx-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* ============================================
     IMPACT STATS — dark band
     ============================================ */
.sp-stats {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: linear-gradient(
    135deg,
    var(--sx-navy) 0%,
    var(--sx-navy-deep) 100%
  );
}

.sp-stats::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 160, 167, 0.22), transparent 70%);
}

.sp-stats::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 160, 167, 0.14), transparent 70%);
}

.sp-stats__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 44px;
}

.sp-stats__title {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
}

.sp-stats__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}

.sp-stats__grid > div {
  flex: 1 1 200px;
}

.sp-stats__num {
  margin: 0 0 8px;
  color: var(--sx-teal);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}

.sp-stats__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ============================================
     WHO IT'S FOR
     ============================================ */
.sp-who__title {
  margin: 0 0 22px;
  color: var(--sx-navy);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.sp-who__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-who__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--sx-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.sp-who__list i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(2, 160, 167, 0.12);
  color: var(--sx-teal);
  font-size: 12px;
}

.sp-who__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 29, 85, 0.15);
}

.sp-who__media img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ============================================
     CTA
     ============================================ */
.sp-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(
    120deg,
    var(--sx-navy) 0%,
    var(--sx-teal-deep) 130%
  );
  text-align: center;
}

.sp-cta__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.sp-cta__desc {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.sp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #ffffff;
  color: var(--sx-navy);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
     RESPONSIVE
     ============================================ */
@media (max-width: 991.98px) {
  .sp-hero {
    padding: 110px 0 60px;
  }
  .sp-hero__title {
    font-size: 28px;
  }
  .sp-section {
    padding: 64px 0;
  }
  .sp-stats__grid {
    row-gap: 34px;
  }
  .sp-who__media img {
    height: 280px;
    margin-top: 34px;
  }
}

@media (max-width: 575.98px) {
  .sp-hero__title {
    font-size: 24px;
  }
  .sp-intro__lead {
    font-size: 21px;
  }
  .sp-card {
    padding: 30px 22px 24px;
  }
  .sp-card__ribbon {
    width: 138px;
    top: 16px;
    right: -40px;
    font-size: 10px;
  }
}

.sx-eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--sx-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================
     HERO
     ============================================ */
.sx-hero {
  position: relative;
  padding: 80px 0 70px;
  background-color: #001028;
  background-image: url("../images/acdmy.avif");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 500px;
}

.sx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 16, 40, 0.96) 0%,
    rgba(0, 16, 40, 0.88) 40%,
    rgba(0, 29, 85, 0.6) 76%,
    rgba(0, 29, 85, 0.36) 100%
  );
}

.sx-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.sx-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #6fe0e5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sx-hero__title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.3px;
}

.sx-hero__desc {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.85;
  max-width: 600px;
}

/* ---- Learn / Apply / Transform flow ---- */
.sx-flow {
  position: relative;
  z-index: 1;
}

.sx-flow__tag {
  display: block;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sx-flow__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.sx-flow__node {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sx-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(2, 160, 167, 0.5);
  color: #6fe0e5;
  font-size: 15px;
}

.sx-flow__node--active .sx-flow__num {
  background: linear-gradient(135deg, var(--sx-teal), var(--sx-navy));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(2, 160, 167, 0.4);
}

.sx-flow__label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.sx-flow__arrow {
  color: rgba(2, 160, 167, 0.55);
  font-size: 15px;
  margin: 0 22px;
}

/* ============================================
     PILLARS (4 feature cards under hero)
     ============================================ */
.sx-pillars {
  background: var(--sx-tint);
  padding: 60px 0;
}

.sx-pillars__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sx-pillar {
  flex: 1 1 230px;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid var(--sx-border);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 29, 85, 0.06);
}

.sx-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(2, 160, 167, 0.1);
  color: var(--sx-teal);
  font-size: 19px;
}

.sx-pillar__title {
  margin: 0 0 8px;
  color: var(--sx-navy);
  font-size: 15.5px;
  font-weight: 700;
}
.sx-pillar__desc {
  margin: 0;
  color: var(--sx-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* ============================================
     SHARED SECTION SPACING
     ============================================ */
.sx-section {
  padding: 90px 0;
}

.sx-head {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
}

.sx-head__title {
  margin: 0;
  color: var(--sx-navy);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

/* ============================================
     LEARNING PATHWAYS
     ============================================ */
.sx-path__row {
  row-gap: 26px;
}

.sx-path {
  position: relative;
  height: 100%;
  padding: 34px 32px 30px;
  background: #ffffff;
  border: 1px solid var(--sx-border);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 29, 85, 0.07);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.sx-path:hover {
  box-shadow: 0 22px 46px rgba(0, 29, 85, 0.13);
  transform: translateY(-4px);
}

.sx-path__index {
  position: absolute;
  top: 30px;
  right: 32px;
  color: var(--sx-border);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0;
}

.sx-path__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(2, 160, 167, 0.14),
    rgba(0, 29, 85, 0.08)
  );
  color: var(--sx-teal);
  font-size: 22px;
}

.sx-path__title {
  margin: 0 0 10px;
  color: var(--sx-navy);
  font-size: 20px;
  font-weight: 700;
  padding-right: 40px;
}
.sx-path__desc {
  margin: 0 0 22px;
  color: var(--sx-body);
  font-size: 13.8px;
  line-height: 1.8;
  max-width: 480px;
}

.sx-path__label {
  display: block;
  margin: 0 0 12px;
  color: var(--sx-navy);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.sx-path__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.sx-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: var(--sx-tint);
  border: 1px solid rgba(0, 29, 85, 0.08);
  border-radius: 30px;
  color: var(--sx-ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.sx-path--ai .sx-chip {
  background: rgba(2, 160, 167, 0.08);
  border-color: rgba(2, 160, 167, 0.25);
  color: var(--sx-teal-deep);
}

/* ============================================
     LEARNING DESIGNED AROUND YOUR BUSINESS
     ============================================ */
.sx-bespoke {
  background: var(--sx-tint);
}

.sx-bespoke__title {
  margin: 0 0 18px;
  color: var(--sx-navy);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.32;
}
.sx-bespoke__p {
  margin: 0 0 16px;
  color: var(--sx-body);
  font-size: 14.5px;
  line-height: 1.9;
}

.sx-bespoke__visual {
  position: relative;
}

.sx-bespoke__img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 29, 85, 0.15);
}

.sx-bespoke__img img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.sx-bespoke__card {
  position: relative;
  margin: -60px 24px 0 auto;
  max-width: 300px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 24px 20px;
  box-shadow: 0 20px 46px rgba(0, 29, 85, 0.18);
}

.sx-bespoke__card-label {
  display: block;
  margin: 0 0 12px;
  color: var(--sx-navy);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.sx-bespoke__skills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sx-bespoke__skills li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--sx-ink);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
}

.sx-bespoke__skills i {
  color: var(--sx-teal);
  font-size: 11px;
  margin-top: 3px;
}

/* ============================================
     IMPACT OF LEARNING — dark stat band
     ============================================ */
.sx-stats {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background: linear-gradient(
    135deg,
    var(--sx-navy) 0%,
    var(--sx-navy-deep) 100%
  );
}

.sx-stats::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 160, 167, 0.2), transparent 70%);
}

.sx-stats::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 160, 167, 0.14), transparent 70%);
}

.sx-stats__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 46px;
}
.sx-stats__title {
  margin: 0;
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
}

.sx-stats__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 40px;
}

.sx-stat {
  flex: 1 1 250px;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.sx-stat__num {
  margin: 0 0 10px;
  color: var(--sx-teal);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
}

.sx-stat__desc {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  line-height: 1.65;
}
.sx-stat__cite {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11.5px;
  font-style: italic;
}

.sx-stats__highlight {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sx-stats__highlight p {
  margin: 0;
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.sx-stats__highlight strong {
  color: var(--sx-teal);
  font-family: "Playfair Display", serif;
  font-size: 20px;
}
.sx-stats__highlight span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12.5px;
  font-style: italic;
}

/* ============================================
     OUTCOMES THAT MATTER
     ============================================ */
.sx-outcomes__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.sx-outcome {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #ffffff;
  border: 1px solid var(--sx-border);
  border-radius: 30px;
  box-shadow: 0 10px 24px rgba(0, 29, 85, 0.06);
  color: var(--sx-navy);
  font-size: 13.5px;
  font-weight: 700;
}

.sx-outcome i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(2, 160, 167, 0.12);
  color: var(--sx-teal);
  font-size: 11px;
}

/* ============================================
     TESTIMONIAL
     ============================================ */
.sx-testimonial {
  background: var(--sx-tint);
}

.sx-testi {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 60px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 24px 55px rgba(0, 29, 85, 0.1);
  text-align: center;
}

.sx-testi__ring {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sx-teal), var(--sx-navy));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 14px 28px rgba(0, 29, 85, 0.28);
}

.sx-testi__quote {
  margin: 26px 0 26px;
  color: var(--sx-ink);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.75;
}

.sx-testi__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(2, 160, 167, 0.12);
  color: var(--sx-teal-deep);
  font-size: 13px;
  font-weight: 700;
}

.sx-testi__role {
  margin: 0;
  color: var(--sx-muted);
  font-size: 13px;
  font-weight: 600;
}

/* ============================================
     CTA
     ============================================ */
.sx-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(
    120deg,
    var(--sx-navy) 0%,
    var(--sx-teal-deep) 130%
  );
  text-align: center;
}

.sx-cta__eyebrow {
  display: block;
  margin: 0 0 12px;
  color: #6fe0e5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sx-cta__title {
  margin: 0 auto 12px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  max-width: 620px;
}
.sx-cta__desc {
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  max-width: 460px;
}

.sx-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #ffffff;
  color: var(--sx-navy);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
     RESPONSIVE
     ============================================ */
@media (max-width: 991.98px) {
  .sx-hero {
    padding: 100px 0 56px;
  }
  .sx-hero__title {
    font-size: 28px;
  }
  .sx-flow__arrow {
    margin: 0 14px;
  }
  .sx-section {
    padding: 64px 0;
  }
  .sx-bespoke__card {
    margin: 20px auto 0;
    max-width: 100%;
  }
  .sx-bespoke__img img {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .sx-hero__title {
    font-size: 24px;
  }
  .sx-flow__row {
    gap: 14px 0;
  }
  .sx-flow__arrow {
    display: none;
  }
  .sx-flow__node {
    flex-basis: 100%;
  }
  .sx-path__title {
    padding-right: 0;
  }
  .sx-path__index {
    display: none;
  }
  .sx-testi {
    padding: 46px 26px 34px;
  }
}

.synx-ct {
  padding: 100px 0 110px;
}

/* ---------- head ---------- */
.synx-ct__head {
  max-width: 560px;
  margin: 0 auto 60px;
  text-align: center;
}

.synx-ct__title {
  margin: 0 0 16px;
  color: #001d55;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
}

.synx-ct__underline {
  display: block;
  width: 46px;
  height: 3px;
  margin: 0 auto 22px;
  background: #d9a441;
}

.synx-ct__desc {
  margin: 0;
  color: #6b7590;
  font-size: 15.5px;
  line-height: 1.8;
}

/* ---------- layout ---------- */
.synx-ct__row {
  max-width: 900px;
  margin: 0 auto;
  align-items: flex-start;
}

/* ---------- form card ---------- */
.synx-ct-form {
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.1);
  border-radius: 14px;
  padding: 34px 32px;
  box-shadow: 0 16px 40px rgba(0, 29, 85, 0.06);
}

.synx-ct-field {
  margin-bottom: 20px;
}

.synx-ct-field:last-of-type {
  margin-bottom: 0;
}

.synx-ct-label {
  display: block;
  margin: 0 0 8px;
  color: #001d55;
  font-size: 13.5px;
  font-weight: 700;
}

.synx-ct-input,
.synx-ct-textarea {
  width: 100%;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.16);
  border-radius: 8px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.synx-ct-input::placeholder,
.synx-ct-textarea::placeholder {
  color: #9aa3b5;
}

.synx-ct-input:focus,
.synx-ct-textarea:focus {
  outline: none;
  border-color: #02a0a7;
  box-shadow: 0 0 0 3px rgba(2, 160, 167, 0.12);
}

.synx-ct-textarea {
  resize: vertical;
  min-height: 110px;
}

.synx-ct-submit {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 14px 24px;
  background: #001d55;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.synx-ct-submit:hover {
  background: #02a0a7;
  transform: translateY(-1px);
}

.synx-ct-note {
  margin: 14px 0 0;
  text-align: center;
  color: #9aa3b5;
  font-size: 12.5px;
}

/* ---------- info card ---------- */
.synx-ct-info {
  background: #faf6ec;
  border-radius: 14px;
  padding: 30px 28px;
}

.synx-ct-info__brand {
  margin: 0 0 6px;
  color: #001d55;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.synx-ct-info__underline {
  display: block;
  width: 34px;
  height: 2px;
  margin: 0 0 24px;
  background: #d9a441;
}

.synx-ct-info__label {
  margin: 0 0 6px;
  color: #001d55;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.synx-ct-info__value {
  margin: 0 0 20px;
  color: #4a5568;
  font-size: 14.5px;
}

.synx-ct-info__value a {
  color: #02a0a7;
  text-decoration: none;
  font-weight: 600;
}

.synx-ct-info__value a:hover {
  text-decoration: underline;
}

.synx-ct-info__divider {
  height: 1px;
  margin: 0 0 20px;
  background: rgba(0, 29, 85, 0.1);
}

.synx-ct-info__row:last-child .synx-ct-info__value {
  margin-bottom: 0;
}

/* ============================================
     RESPONSIVE
     ============================================ */
@media (max-width: 767.98px) {
  .synx-ct {
    padding: 70px 0 80px;
  }
  .synx-ct__title {
    font-size: 32px;
  }
  .synx-ct-info {
    margin-top: 24px;
  }
}
