/* ── Trusted Partners Marquee ─────────────────────────────── */
.partners-marquee {
  padding: 3.5rem 0;
  background: #fff;
  border-top: 1px solid rgba(46, 49, 146, 0.06);
}

.partners-marquee__label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.partners-marquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.partners-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-rtl 55s linear infinite;
}

.partners-marquee__track:hover {
  animation-play-state: paused;
}

.partners-marquee__group {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  flex-shrink: 0;
}

.partners-marquee__entry {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.partners-marquee__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #2E3192;
  flex-shrink: 0;
}

.partners-marquee__item {
  font-size: 1.05rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.partners-marquee__item:hover {
  color: #2E3192;
}

/* ── Services Section (Premium) ───────────────────────────── */
.home-services {
  position: relative;
  overflow: hidden;
}

.home-services--premium,
.home-services--has-bg {
  background: #141852;
}

.home-services__backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.15) brightness(0.92);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.home-services__backdrop--visible {
  opacity: 1;
  animation: servicesBgKenBurns 28s ease-in-out infinite alternate;
}

@keyframes servicesBgKenBurns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.home-services--has-bg .home-services__backdrop::after {
  background:
    linear-gradient(135deg, rgba(20, 24, 82, 0.82) 0%, rgba(31, 36, 120, 0.78) 42%, rgba(20, 24, 82, 0.85) 100%),
    radial-gradient(ellipse at 15% 20%, rgba(0, 174, 239, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(46, 49, 146, 0.3) 0%, transparent 45%);
}

.home-services__backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20, 24, 82, 0.97) 0%, rgba(31, 36, 120, 0.92) 40%, rgba(20, 24, 82, 0.96) 100%),
    radial-gradient(ellipse at 15% 20%, rgba(0, 174, 239, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(46, 49, 146, 0.35) 0%, transparent 45%);
}

.home-services__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.home-services__glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.home-services__glow--left {
  top: -8rem;
  left: -6rem;
  background: rgba(0, 174, 239, 0.12);
}

.home-services__glow--right {
  bottom: -10rem;
  right: -8rem;
  background: rgba(46, 49, 146, 0.25);
}

.home-services__container {
  position: relative;
  z-index: 2;
}

.home-services__header {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 3.75rem;
}

.home-services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5BCFF5;
  margin-bottom: 1.15rem;
}

.home-services__eyebrow::before,
.home-services__eyebrow::after {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 228, 107, 0.7), transparent);
}

.home-services__title {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
}

.home-services__lead {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}

.home-services__lead--center {
  max-width: 36rem;
  margin: 0 auto;
}

.home-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .home-services__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .home-services__grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.home-services--dark {
  background: #141852;
}

.home-services__card--light {
  background: #ffffff;
  border: 1px solid rgba(46, 49, 146, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.home-services__card--light .home-services__card-title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.home-services__card--light .home-services__card-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #6b7280;
  flex: 1;
  margin-bottom: 1.25rem;
}

.home-services__card-icon {
  margin-bottom: 1.25rem;
}

.home-services__card--light .home-services__icon {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.4) 0%, rgba(46, 49, 146, 0.12) 100%);
  color: #1F2478;
}

.home-services__card-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 9999px;
  background: #00AEEF;
  color: #1F2478;
  transition: transform 0.25s ease;
}

.home-services__card--light:hover .home-services__card-link {
  gap: 0.6rem;
}

.home-services__card--light:hover .home-services__card-link-btn {
  transform: translateX(2px);
}

/* Premium service cards */
.home-services__card--premium {
  position: relative;
  display: block;
  min-height: 100%;
  border-radius: 1.25rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.45s ease;
}

.home-services__card--premium:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 174, 239, 0.45);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 174, 239, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-services__card-num {
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  font-family: Poppins, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  transition: color 0.35s ease;
  z-index: 1;
}

.home-services__card--premium:hover .home-services__card-num {
  color: rgba(0, 174, 239, 0.2);
}

.home-services__card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.home-services__card--premium:hover .home-services__card-shine {
  transform: translateX(100%);
}

.home-services__card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem 1.5rem 1.5rem;
}

.home-services__card-icon--premium {
  margin-bottom: 1.35rem;
}

.home-services__icon--premium {
  width: 3.75rem !important;
  height: 3.75rem !important;
  border-radius: 1.1rem !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(46, 49, 146, 0.35) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.home-services__icon--premium svg {
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.25));
}

.home-services__card--premium:hover .home-services__icon--premium {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(145deg, #00AEEF 0%, #2E3192 100%) !important;
  color: #fff !important;
  box-shadow: 0 12px 32px rgba(0, 174, 239, 0.35);
}

.home-services__grid--premium .home-services__card-title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 0.85rem;
  transition: color 0.25s ease;
}

.home-services__card--premium:hover .home-services__card-title {
  color: #5BCFF5;
}

.home-services__grid--premium .home-services__card-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  flex: 1;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-services__card-link--premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5BCFF5;
  transition: gap 0.3s ease, color 0.25s ease;
}

.home-services__card-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: rgba(0, 174, 239, 0.15);
  transition: background 0.25s ease, transform 0.25s ease;
}

.home-services__card--premium:hover .home-services__card-link--premium {
  gap: 0.75rem;
  color: #fff;
}

.home-services__card--premium:hover .home-services__card-link-icon {
  background: #00AEEF;
  color: #1F2478;
  transform: translateX(2px);
}

.home-services__footer {
  display: flex;
  justify-content: center;
  margin-top: 3.25rem;
}

.home-services__cta--premium {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #00AEEF 0%, #e6c200 100%);
  color: #1F2478;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 40px rgba(0, 174, 239, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-services__cta--premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 174, 239, 0.4);
}

/* Legacy card styles (fallback) */
.home-services__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.85rem 1.75rem 1.65rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.65);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.home-services__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.home-services__card-accent {
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #2E3192, #00AEEF);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-services__card:hover .home-services__card-accent {
  opacity: 1;
}

.home-services__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(46, 49, 146, 0.1) 0%, rgba(46, 49, 146, 0.04) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E3192;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.home-services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2E3192;
  margin-top: auto;
  transition: gap 0.25s ease;
}

.home-services__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  background: #fff;
  color: #1F2478;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* ── Case Studies ───────────────────────────────────────── */
.home-cases {
  background: #fff;
}

.home-cases__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .home-cases__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.home-cases__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2E3192;
  margin-bottom: 0.5rem;
}

.home-cases__title {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.home-cases__subtitle {
  font-size: 1rem;
  color: #6B7280;
  max-width: 32rem;
}

.home-cases__view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2E3192;
  text-decoration: none;
  white-space: nowrap;
}

.home-cases__view-all:hover {
  text-decoration: underline;
}

.home-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .home-cases__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-cases__card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 24px rgba(46, 49, 146, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-cases__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(46, 49, 146, 0.12);
}

.home-cases__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-cases__image {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-cases__card:hover .home-cases__image {
  transform: scale(1.06);
}

.home-cases__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 36, 120, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.home-cases__tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5BCFF5;
}

.home-cases__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.home-cases__client {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2E3192;
  margin-bottom: 0.35rem;
}

.home-cases__card-title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1F2937;
  margin-bottom: 0.5rem;
  transition: color 0.25s ease;
}

.home-cases__card:hover .home-cases__card-title {
  color: #2E3192;
}

.home-cases__excerpt {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6B7280;
}

/* ── Testimonials Marquee (Brand colors) ──────────────────── */
.home-testimonials {
  position: relative;
  background: linear-gradient(165deg, #f5f7f5 0%, #ecf5ee 45%, #f8faf6 100%);
  overflow: hidden;
}

.home-testimonials::before {
  content: '';
  position: absolute;
  top: -6rem;
  right: -4rem;
  width: 20rem;
  height: 20rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(46, 49, 146, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.home-testimonials::after {
  content: '';
  position: absolute;
  bottom: -8rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-testimonials__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2E3192;
  margin-bottom: 0.85rem;
}

.home-testimonials__eyebrow::before,
.home-testimonials__eyebrow::after {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 49, 146, 0.45), transparent);
}

.home-testimonials__title {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.65rem);
  color: #1F2478;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.home-testimonials__subtitle {
  font-size: 1.05rem;
  color: #6B7280;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.65;
}

.testimonials-marquee__viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.5rem 0 1rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.testimonials-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-rtl 70s linear infinite;
}

.testimonials-marquee__track:hover {
  animation-play-state: paused;
}

.testimonials-marquee__group {
  display: flex;
  gap: 1.5rem;
  padding-right: 1.5rem;
  flex-shrink: 0;
}

.testimonial-card {
  flex-shrink: 0;
  width: min(360px, 84vw);
  padding: 2rem 1.85rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(46, 49, 146, 0.08);
  border-top: 3px solid #2E3192;
  box-shadow: 0 10px 36px rgba(46, 49, 146, 0.08);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 174, 239, 0.5);
  box-shadow: 0 18px 44px rgba(46, 49, 146, 0.14);
}

.testimonial-card__avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.testimonial-card__star {
  width: 1.15rem;
  height: 1.15rem;
  color: #00AEEF;
  filter: drop-shadow(0 1px 2px rgba(0, 174, 239, 0.4));
}

.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  color: #4b5563;
  margin: 0 0 1.5rem;
}

.testimonial-card__quote::before {
  content: '\201C';
  color: #2E3192;
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.15rem;
  font-style: normal;
}

.testimonial-card__name {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #2E3192;
  margin-bottom: 0.25rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: #6B7280;
}

/* ── Shared Marquee Animation ─────────────────────────────── */
@keyframes marquee-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Homepage CTA ─────────────────────────────────────────── */
.home-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.home-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.home-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31, 36, 120, 0.9) 0%, rgba(20, 24, 82, 0.92) 55%, rgba(31, 36, 120, 0.88) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(0, 174, 239, 0.12) 0%, transparent 55%);
}

.home-cta__content {
  position: relative;
  z-index: 2;
}

.home-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-cta__btn--primary {
  background: #00AEEF;
  color: #1F2478;
  box-shadow: 0 10px 32px rgba(0, 174, 239, 0.35);
}

.home-cta__btn--primary:hover {
  background: #5BCFF5;
  transform: translateY(-2px);
}

.home-cta__btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.home-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

/* Services horizontal marquee */
.services-marquee {
  margin: 0 -1rem;
  padding: 0.5rem 0 1rem;
}

.services-marquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.services-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-rtl 45s linear infinite;
}

.services-marquee__track:hover {
  animation-play-state: paused;
}

.services-marquee__group {
  display: flex;
  gap: 1.25rem;
  padding-right: 1.25rem;
  flex-shrink: 0;
}

.home-services__card--marquee {
  flex-shrink: 0;
  width: min(300px, 82vw);
  min-height: 18rem;
}

.home-services__card--marquee:hover {
  transform: translateY(-8px) scale(1.02);
}

.home-services__card--marquee .home-services__icon {
  animation: heroIconBreathe 2.8s ease-in-out infinite;
}

/* Global breathe utilities (used site-wide) */
.hero-btn-breathe {
  animation: heroBtnBreathe 3.2s ease-in-out infinite;
}

.hero-btn-breathe--delay {
  animation-delay: 0.8s;
}

.hero-icon-breathe {
  animation: heroIconBreathe 2.8s ease-in-out infinite;
  display: inline-flex;
}

@keyframes heroBtnBreathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 28px rgba(0, 174, 239, 0.25);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 14px 36px rgba(0, 174, 239, 0.4);
  }
}

@keyframes heroIconBreathe {
  0%, 100% { transform: scale(1) translateX(0); opacity: 1; }
  50% { transform: scale(1.1) translateX(2px); opacity: 0.92; }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee__track,
  .testimonials-marquee__track,
  .services-marquee__track {
    animation: none;
  }

  .partners-marquee__viewport,
  .testimonials-marquee__viewport,
  .services-marquee__viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-btn-breathe,
  .hero-icon-breathe,
  .home-services__card--marquee .home-services__icon {
    animation: none !important;
  }
}
