/* =========================================================
   OM Web — SunTec-inspired theme (header, hero, sections, footer)
   ========================================================= */

:root {
  --st-dark: #112d4e;
  --st-dark-2: #16375f;
  --st-gray: #dbe2ef;
  --st-ink: #112d4e;
  --st-orange: #3f72af;
  --st-orange-deep: #2f5a8f;
  --st-gold: #dbe2ef;
}

/* ================= HEADER ================= */
.st-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: transparent;
}

/* Top dark bar */
.st-top {
  background: #112d4e;
  color: #fff;
}
.st-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.st-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  text-decoration: none;
}
.st-brand:hover { color: #fff; }
.st-brand__logo {
  height: 48px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 4px 8px;
}
.st-brand__tag {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.st-brand__tag em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 600;
}
.st-top__right {
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}
.st-top__btns {
  display: flex;
  gap: 0.7rem;
}
.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  border: 0;
  background: linear-gradient(135deg, #3f72af 0%, #2f5a8f 100%);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(47, 90, 143, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.st-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #4a82bf 0%, #3f72af 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 90, 143, 0.42);
}
.st-btn .bi {
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}
.st-btn:hover .bi-arrow-right {
  transform: translateX(4px);
}
.st-btn--ghost {
  background: linear-gradient(135deg, #3f72af 0%, #2f5a8f 100%);
  border: 0;
  color: #fff;
}
.st-btn--ghost:hover {
  background: linear-gradient(135deg, #4a82bf 0%, #3f72af 100%);
}
.st-btn--cta {
  background: linear-gradient(135deg, #f09840 0%, #e07018 100%);
  box-shadow: 0 10px 28px rgba(224, 112, 24, 0.38);
  animation: st-cta-glow 2.8s ease-in-out infinite;
}
.st-btn--cta:hover {
  background: linear-gradient(135deg, #ffab55 0%, #f09840 100%);
  box-shadow: 0 16px 36px rgba(224, 112, 24, 0.48);
}
@keyframes st-cta-glow {
  0%, 100% { box-shadow: 0 10px 28px rgba(224, 112, 24, 0.38); }
  50%      { box-shadow: 0 12px 34px rgba(224, 112, 24, 0.58); }
}
.st-top__mail {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}
.st-top__mail:hover { color: var(--st-gold); }
.st-top__mail i { color: #fff; font-size: 0.9rem; }

/* Gray nav strip */
.st-header .om-navbar.st-nav {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  background: #c9d3e6 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 0;
  box-shadow: none;
  padding: 0;
}
.st-header.is-scrolled .om-navbar.st-nav {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.st-nav__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 44px;
}
.st-nav__home {
  display: inline-flex;
  align-items: center;
  padding: 0 1.25rem;
  background: transparent;
  color: #112d4e;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.st-nav__home.active {
  background: transparent;
  color: #112d4e;
}
.st-nav__home:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--st-orange);
}
@media (min-width: 992px) {
  .st-nav .om-nav-collapse {
    display: flex;
    align-items: stretch;
    flex-grow: 1;
  }
  .st-nav .om-drawer__scroll {
    display: flex;
    align-items: stretch;
    width: 100%;
  }
}
.st-nav__list {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
}
.st-nav__list .nav-item {
  display: flex;
  align-items: stretch;
}
.st-nav .om-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1.4rem !important;
  border: 0;
  background: transparent !important;
  color: #112d4e !important;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.st-nav .om-nav-link::after { display: none !important; }
.st-nav .om-nav-link:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  color: #112d4e !important;
}
.st-nav .om-nav-link.active {
  background: transparent !important;
  color: #112d4e !important;
}
.st-nav .om-nav-chev {
  font-size: 0.65rem;
  transition: transform 0.25s;
}
.st-nav .om-mega-dropdown.is-open .om-nav-chev {
  transform: rotate(180deg);
}
.st-nav__about {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 0 1.6rem;
  background: #112d4e;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-left: 3px solid #2f5a8f;
  transition: background 0.25s;
}
.st-nav__about:hover {
  background: #2f5a8f;
  color: #fff;
}

/* Mega portal position under the strip */
.st-header .om-mega-portal {
  top: 100%;
}

/* ---- Mega menu: SunTec white panel ---- */
.st-header .om-mega-full .om-mega-devit {
  background: #fff;
  border-radius: 0;
  border: 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
  padding: 2.5rem 2.75rem 2.75rem;
  gap: 2.5rem;
}
.st-header .om-mega-devit__aside {
  width: 240px;
  flex-shrink: 0;
  background: none;
  border: 0;
  padding: 0;
}
.st-header .om-mega-devit__aside h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--st-ink);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.st-header .om-mega-devit__aside h3::after {
  content: "\2192";
  font-size: 1.3rem;
  color: var(--st-ink);
}
.st-header .om-mega-devit__aside p {
  font-size: 1.02rem;
  color: #3a4a63;
  line-height: 1.6;
  margin: 0;
}
.st-header .om-mega-devit__body {
  display: flex;
  flex-grow: 1;
  padding: 0;
  gap: 2.5rem;
}
.st-header .om-mega-devit__col {
  flex: 1;
  padding: 0;
  border: 0;
}
.st-header .om-mega-devit__group {
  margin-bottom: 1.75rem;
}
.st-header .om-mega-devit__group--sep {
  border: 0;
  padding-top: 0;
}
.st-header .om-mega-devit__group h4 {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--st-ink);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.7rem;
}
.st-header .om-mega-devit__group ul {
  border-left: 1px solid #c9d3e6;
  padding-left: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.st-header .om-mega-devit__link {
  display: block;
  padding: 0;
  border-radius: 0;
  background: none;
  font-size: 0.84rem;
  font-weight: 500;
  color: #3a4a63;
  transition: color 0.2s, transform 0.2s;
}
.st-header .om-mega-devit__link:hover,
.st-header .om-mega-devit__link.is-active {
  background: none;
  color: var(--st-orange);
  transform: translateX(3px);
}

/* Open mega tab — subtle darker tint, no white */
.st-nav .om-mega-dropdown.is-open .om-nav-link {
  background: rgba(0, 0, 0, 0.08) !important;
  color: #112d4e !important;
  box-shadow: none;
}

/* Mobile toggle in dark bar */
.st-toggle .om-mobile-toggle__lines span {
  background: #fff;
}

/* ================= HERO ================= */
.st-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 140% at 75% 0%, #16375f 0%, #112d4e 52%, #0b1f38 100%);
  color: #fff;
}
.st-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Rotating photo backgrounds (3 slides, CSS crossfade) */
.st-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  animation: stHeroSlide 18s infinite;
  will-change: opacity, transform;
}
.st-hero__slide--1 {
  background-image: url("../../images/hero-agency-bg.png");
  animation-delay: 0s;
}
.st-hero__slide--2 {
  background-image: url("../../images/agency-workspace.png");
  animation-delay: 6s;
}
.st-hero__slide--3 {
  background-image: url("../../images/office-2360063_1920.jpg");
  animation-delay: 12s;
}
@keyframes stHeroSlide {
  0%       { opacity: 0; transform: scale(1.06); }
  5%       { opacity: 1; }
  33.33%   { opacity: 1; transform: scale(1); }
  40%      { opacity: 0; }
  100%     { opacity: 0; transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .st-hero__slide { animation: none; }
  .st-hero__slide--1 { opacity: 1; transform: none; }
}
/* Dark navy overlay so white text stays readable on photos */
.st-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(11, 31, 56, 0.94) 0%, rgba(17, 45, 78, 0.86) 45%, rgba(17, 45, 78, 0.7) 100%);
}
.st-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.st-hero__glow--1 {
  width: 460px;
  height: 460px;
  right: -5%;
  top: -15%;
  background: rgba(63, 114, 175, 0.22);
}
.st-hero__glow--2 {
  width: 380px;
  height: 380px;
  left: -8%;
  bottom: -20%;
  background: rgba(63, 114, 175, 0.14);
}
.st-hero__inner {
  position: relative;
  z-index: 2;
  padding: 5rem 1rem;
}
.st-hero__laurel {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.st-hero__laurel i {
  font-size: 2.2rem;
  color: var(--st-gold);
}
.st-hero__laurel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--st-gold);
  line-height: 1.1;
}
.st-hero__laurel strong sup { font-size: 0.7em; }
.st-hero__laurel span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.st-hero__title {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.15rem;
  max-width: 16ch;
}
.st-hero__lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 50ch;
  margin: 0 0 2rem;
}
.st-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.st-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  background: #fff;
  color: var(--st-ink);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.st-hero__cta:hover {
  color: var(--st-ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.st-hero__cta-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--st-orange);
  color: #fff;
  font-size: 0.85rem;
}
.st-hero__cta--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.st-hero__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Glass highlight panel (right side) */
.st-hero__panel {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}
.st-hero__panel-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-gold);
  margin-bottom: 0.45rem;
}
.st-hero__panel-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.15rem;
}
.st-hero__panel-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.st-hero__panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
.st-hero__panel-list i {
  color: var(--st-orange);
  font-size: 1rem;
  margin-top: 0.1rem;
}
.st-hero__panel-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}
.st-hero__panel-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.st-hero__panel-stat strong i {
  font-size: 0.75em;
  color: var(--st-gold);
  margin-left: 0.15rem;
}
.st-hero__panel-stat span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.st-hero__panel-badge {
  position: absolute;
  top: -16px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--st-orange), var(--st-orange-deep));
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(63, 114, 175, 0.45);
}

/* ================= INTRO (Who We Are) ================= */
.st-intro {
  background: #fff;
}
.st-intro__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--st-ink);
  line-height: 1.25;
  margin: 0.5rem 0 1rem;
}
.st-intro__title span { color: var(--st-orange); }
.st-intro__text {
  font-size: 0.98rem;
  line-height: 1.85;
  color: #3a4a63;
  margin: 0 0 1.5rem;
}
.st-intro__hl {
  color: var(--st-orange);
  font-weight: 700;
}
.st-intro__points {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.st-intro__points li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #f9f7f7;
  border: 1px solid #dbe2ef;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.st-intro__points li:hover {
  transform: translateX(4px);
  border-color: rgba(63, 114, 175, 0.35);
  box-shadow: 0 10px 26px rgba(17, 45, 78, 0.08);
}
.st-intro__points i {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(135deg, #3f72af, #112d4e);
}
.st-intro__points li:nth-child(2) i {
  background: linear-gradient(135deg, var(--st-orange), var(--st-orange-deep));
}
.st-intro__points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--st-ink);
  margin-bottom: 0.15rem;
}
.st-intro__points li > div > span {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #4a5a75;
}
.st-intro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem;
}
.st-intro__actions .st-btn i { margin-left: 0.4rem; }
.st-intro__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: #4a5a75;
}
.st-intro__trust i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--st-orange);
  background: rgba(63, 114, 175, 0.12);
}
.st-intro__trust strong { color: var(--st-ink); }

/* Photo with floating badges */
.st-intro__media {
  position: relative;
  max-width: 500px;
  margin-left: auto;
}
.st-intro__media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(17, 45, 78, 0.18);
  display: block;
}
.st-intro__media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(63, 114, 175, 0.1), rgba(63, 114, 175, 0.12));
  z-index: -1;
}
.st-intro__media-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(17, 45, 78, 0.18);
  padding: 0.85rem 1.1rem;
}
.st-intro__media-badge--years {
  top: -20px;
  left: -14px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.st-intro__media-badge--years strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--st-orange);
  line-height: 1;
}
.st-intro__media-badge--years strong sup { font-size: 0.6em; }
.st-intro__media-badge--years span {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--st-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.st-intro__media-badge--rating {
  bottom: -18px;
  right: -10px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.st-intro__stars { color: #3f72af; font-size: 0.8rem; letter-spacing: 2px; }
.st-intro__media-badge--rating > span:last-child {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--st-ink);
}

/* Animated stats strip */
.st-intro__stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(120deg, #16375f 0%, #112d4e 100%);
  text-align: center;
}
.st-intro__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.st-intro__stat > span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.st-intro__stat strong span { color: var(--st-gold); }

/* ================= SERVICES ================= */
.st-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-orange);
  margin-bottom: 0.75rem;
}
.st-services {
  background: #f9f7f7;
}
.st-services__head {
  position: sticky;
  top: 130px;
}
.st-services__title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--st-ink);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.st-services__lead {
  color: #3a4a63;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.st-services__note {
  font-weight: 700;
  color: var(--st-ink);
}
.st-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.st-svc {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem 1.35rem;
  border: 1px solid #dbe2ef;
  transition: transform 0.3s var(--ease, ease), box-shadow 0.3s;
}
.st-svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}
.st-svc__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.st-svc__top h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--st-orange);
  margin: 0;
}
.st-svc__top i {
  font-size: 1.5rem;
  color: var(--st-orange);
  opacity: 0.75;
}
.st-svc__tagline {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--st-ink);
  line-height: 1.45;
  margin: 0 0 0.6rem;
}
.st-svc__desc {
  font-size: 0.84rem;
  color: #4a5a75;
  line-height: 1.65;
  margin: 0 0 1rem;
}
.st-svc__more {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--st-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.st-svc__more:hover { color: var(--st-orange-deep); }

/* ================= SUCCESS STORIES (tabbed) ================= */
.st-cs {
  background: #fff;
}
.st-cs__rail {
  height: 100%;
  background: var(--st-gray);
  border-radius: 14px 0 0 14px;
  padding: 2rem 0 2rem 1.5rem;
}
.st-cs__title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--st-ink);
  letter-spacing: -0.02em;
  margin: 0 1.25rem 0.7rem 0;
}
.st-cs__mark {
  display: inline-block;
  background: #c9d3e6;
  padding: 0.2rem 0.5rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--st-ink);
  margin: 0 1.25rem 1.6rem 0;
}
.st-cs__tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.st-cs__tab {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 0.9rem;
  border: 0;
  border-radius: 10px 0 0 10px;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #3a4a63;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.st-cs__tab i {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--st-orange);
  background: rgba(63, 114, 175, 0.12);
  transition: background 0.2s, color 0.2s;
}
.st-cs__tab:hover {
  background: rgba(255, 255, 255, 0.65);
  color: var(--st-ink);
}
.st-cs__tab.is-active {
  background: #fff;
  color: var(--st-ink);
  box-shadow: 0 8px 22px rgba(17, 45, 78, 0.1);
}
.st-cs__tab.is-active i {
  background: linear-gradient(135deg, var(--st-orange), var(--st-orange-deep));
  color: #fff;
}
.st-cs__body {
  height: 100%;
  padding: 2rem 0 2rem 2.25rem;
}
.st-cs__panel { display: none; }
.st-cs__panel.is-active {
  display: block;
  animation: stCsFade 0.35s ease;
}
@keyframes stCsFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.st-cs__panel-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--st-ink);
  margin: 0 0 1.35rem;
}
.st-cs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.st-cs__card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f7f7;
  border: 1px solid #dbe2ef;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease, ease), box-shadow 0.3s;
}
.st-cs__card:hover {
  color: inherit;
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(17, 45, 78, 0.16);
}
.st-cs__card-media {
  position: relative;
  height: 120px;
  padding: 0.9rem 1rem;
}
.st-cs__card-overlay {
  display: block;
  max-width: 85%;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
}
.st-cs__card-media i {
  position: absolute;
  right: 0.85rem;
  bottom: 0.6rem;
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.45);
}
.st-cs__card-body {
  flex-grow: 1;
  padding: 1rem 1.1rem 1.15rem;
}
.st-cs__card-body h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--st-ink);
  line-height: 1.4;
  margin: 0 0 0.45rem;
}
.st-cs__card-body p {
  font-size: 0.8rem;
  color: #4a5a75;
  line-height: 1.6;
  margin: 0;
}
.st-cs__all {
  margin-top: 1.35rem;
  text-align: right;
}
.st-cs__all a {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--st-orange);
  text-decoration: none;
  border-bottom: 2px solid var(--st-orange);
  padding-bottom: 0.15rem;
}
.st-cs__all a:hover { color: var(--st-orange-deep); border-color: var(--st-orange-deep); }
.st-cs__all a i { transition: transform 0.25s; display: inline-block; }
.st-cs__all a:hover i { transform: translateX(3px); }

/* ================= TECHNOLOGIES GRID ================= */
.st-tech {
  background:
    radial-gradient(rgba(63, 114, 175, 0.08) 1.5px, transparent 1.5px) 0 0 / 26px 26px,
    #fff;
}
.st-tech__title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--st-ink);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.75rem;
}
.st-tech__sub {
  font-size: 0.9rem;
  color: #4a5a75;
  line-height: 1.6;
  margin: 0 0 1.1rem;
}
.st-tech__mark {
  display: inline-block;
  background: #dbe2ef;
  padding: 0.2rem 0.5rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--st-ink);
  margin: 0;
}
.st-tech__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.st-tech__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 72px;
  padding: 1rem 0.75rem;
  background: #fff;
  border: 1px solid #dbe2ef;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(17, 45, 78, 0.05);
  transition: transform 0.25s var(--ease, ease), box-shadow 0.25s, border-color 0.25s;
}
.st-tech__card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 114, 175, 0.45);
  box-shadow: 0 14px 32px rgba(17, 45, 78, 0.12);
}
.st-tech__card i {
  font-size: 1.5rem;
  color: var(--st-orange);
}
.st-tech__card span {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--st-ink);
  white-space: nowrap;
}

/* ================= TESTIMONIALS ================= */
.st-reviews {
  background: #fff;
}
.st-reviews__title {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--st-ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.st-reviews__lead {
  font-size: 0.92rem;
  color: #4a5a75;
  line-height: 1.7;
}
.st-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.st-review {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dbe2ef;
  border-radius: 10px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s var(--ease, ease), box-shadow 0.3s;
}
.st-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.st-review__stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #e5493a;
  margin-bottom: 0.8rem;
}
.st-review__stars strong {
  color: var(--st-ink);
  font-size: 0.95rem;
  margin-right: 0.35rem;
}
.st-review__text {
  font-size: 0.88rem;
  color: #2c3e58;
  line-height: 1.7;
  margin: 0 0 0.9rem;
}
.st-review__who {
  font-size: 0.78rem;
  font-weight: 700;
  color: #5c6b85;
  margin: 0 0 0.6rem;
}
.st-review__verified {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #3f72af;
}

/* ================= FOOTER ================= */
.st-footer {
  background: #f9f7f7;
  border-top: 1px solid #dbe2ef;
  color: #3a4a63;
  font-size: 0.86rem;
}
.st-footer__main {
  padding: 3.25rem 0 2.5rem;
}
.st-footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}
.st-footer__about {
  line-height: 1.75;
  color: #4a5a75;
}
.st-footer__about a {
  color: var(--st-orange);
  font-weight: 800;
  text-decoration: none;
}
.st-footer__head {
  font-size: 1rem;
  font-weight: 800;
  color: var(--st-ink);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.st-footer__head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--st-orange);
  border-radius: 2px;
}
.st-footer__links li {
  margin-bottom: 0.55rem;
}
.st-footer__links a {
  color: #3a4a63;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.st-footer__links a:hover {
  color: var(--st-orange);
  padding-left: 3px;
}
.st-footer__links--contact a,
.st-footer__addr {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.5;
  word-break: break-word;
}
.st-footer__links--contact i {
  color: var(--st-orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.st-footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.st-footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--st-dark);
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.st-footer__social a:hover {
  background: var(--st-orange);
  transform: translateY(-2px);
}
.st-footer__note {
  line-height: 1.7;
  color: #4a5a75;
  font-size: 0.8rem;
}
.st-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}
.st-footer__badges span {
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #dbe2ef;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--st-ink);
}
.st-footer__bottom {
  border-top: 1px solid #dbe2ef;
  padding: 1rem 0;
  background: #dbe2ef;
}
.st-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.st-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.st-footer__legal a {
  color: #3a4a63;
  text-decoration: none;
}
.st-footer__legal a:hover { color: var(--st-orange); }

/* ================= PAGE HERO (inner pages) ================= */
.st-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 140% at 75% 0%, #16375f 0%, #112d4e 52%, #0b1f38 100%);
  color: #fff;
}
.st-page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.st-page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 3.5rem 1rem 3rem;
}
.st-page-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.1rem;
}
.st-page-hero__crumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.st-page-hero__crumb a:hover { color: var(--st-gold); }
.st-page-hero__crumb-sep { color: rgba(255, 255, 255, 0.35); }
.st-page-hero__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.9rem;
}
.st-page-hero__lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 56ch;
  margin: 0 0 1.6rem;
}
.st-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.st-btn--lg {
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  border-radius: 10px;
  min-width: 200px;
}
.st-page-hero__card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 1.6rem 1.45rem 1.35rem;
  color: #fff;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.4);
  max-width: 360px;
  margin-left: auto;
}
.st-page-hero__card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--st-gold);
  margin-bottom: 0.85rem;
}
.st-page-hero__card-body {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}
.st-page-hero__card-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, #3f72af, #112d4e);
}
.st-page-hero__card-body p {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin: 0;
}
.st-page-hero__card-foot {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.st-page-hero__card-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.st-page-hero__card-stat strong i {
  font-size: 0.72em;
  color: var(--st-gold);
  margin-left: 0.12rem;
}
.st-page-hero__card-stat span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.st-page-hero__card-link {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--st-orange);
  text-decoration: none;
  white-space: nowrap;
}
.st-page-hero__card-link:hover { color: #dbe2ef; }
.st-page-hero__card-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--st-orange), var(--st-orange-deep));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(63, 114, 175, 0.45);
}

/* Trust badges strip */
.st-page-hero__badges {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}
.st-page-hero__badges-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.25rem;
  padding: 0.85rem 1rem;
}
.st-page-hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.st-page-hero__badges i { color: var(--st-gold); }

/* ================= SERVICE PAGE ================= */
.st-h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--st-ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.st-prose p {
  font-size: 0.95rem;
  color: #3a4a63;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.st-svc-intro {
  background: #fff;
}
.st-svc-intro__tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--st-orange);
  margin-bottom: 1.25rem;
}
.st-svc-intro__media {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}
.st-svc-intro__media img,
.st-svc-intro__media video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Sticky inquiry form */
.st-inquiry {
  position: sticky;
  top: 140px;
  background: var(--st-dark);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}
.st-inquiry__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.15rem;
}
.st-inquiry__field {
  display: block;
  width: 100%;
  margin-bottom: 0.8rem;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.88rem;
  font-family: inherit;
}
.st-inquiry__field::placeholder { color: rgba(255, 255, 255, 0.55); }
.st-inquiry__field:focus {
  outline: none;
  border-color: var(--st-orange);
  background: rgba(255, 255, 255, 0.12);
}
.st-inquiry__send {
  width: 100%;
  justify-content: center;
  border: 0;
  letter-spacing: 0.06em;
}
.st-inquiry__contact {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.st-inquiry__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}
.st-inquiry__contact a:hover { color: #fff; }
.st-inquiry__contact i { color: var(--st-orange); }

/* Content blocks */
.st-svc-block--gray { background: #f9f7f7; }
.st-svc-block--white { background: #fff; }
.st-svc-block__head {
  max-width: 62rem;
  margin-bottom: 2rem;
}
.st-svc-block__head.text-center { margin-inline: auto; }
.st-svc-block__lead {
  font-size: 0.95rem;
  color: #3a4a63;
  line-height: 1.75;
}
.st-svc-block .st-prose { max-width: 62rem; }
.st-svc-block__head.text-center + .st-prose { margin-inline: auto; }

/* Offerings grid */
.st-offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.st-offering {
  position: relative;
  background: #fff;
  border: 1px solid #dbe2ef;
  border-radius: 10px;
  padding: 1.5rem 1.35rem;
  transition: transform 0.3s var(--ease, ease), box-shadow 0.3s;
}
.st-svc-block--white .st-offering {
  background: #f9f7f7;
  border-color: #dbe2ef;
}
.st-offering:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.st-offering__num {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: var(--font-display, inherit);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(63, 114, 175, 0.14);
}
.st-offering--icon h3 {
  padding-right: 0;
}
.st-offering__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(63, 114, 175, 0.12);
  color: var(--st-blue, #3f72af);
  margin-bottom: 0.9rem;
  flex-shrink: 0;
}
.st-offering__icon .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 1.35rem;
  line-height: 1;
  font-style: normal;
  font-family: bootstrap-icons !important;
}
.st-offering__icon .bi::before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 1;
  vertical-align: 0;
}
.st-offering h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--st-orange);
  margin-bottom: 0.55rem;
  padding-right: 2.5rem;
}
.st-offering p {
  font-size: 0.86rem;
  color: #4a5a75;
  line-height: 1.65;
  margin: 0;
}

/* Checklist */
.st-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
  max-width: 62rem;
}
.st-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2c3e58;
  line-height: 1.6;
}
.st-checklist i {
  color: var(--st-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Connect strip */
.st-connect {
  background: var(--st-dark);
  color: #fff;
}
.st-connect__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.st-connect__lead {
  color: rgba(255, 255, 255, 0.75);
  max-width: 54ch;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.st-connect__lead a {
  color: var(--st-gold);
  font-weight: 700;
  text-decoration: none;
}
.st-connect .st-btn--cta {
  min-width: 220px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1199.98px) {
  .st-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .st-cs__grid { grid-template-columns: repeat(2, 1fr); }
  .st-tech__grid { grid-template-columns: repeat(4, 1fr); }
  .st-review-grid { grid-template-columns: repeat(2, 1fr); }
  .st-offering-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991.98px) {
  .st-top__inner { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .st-brand__logo { height: 44px; }
  .st-brand__tag { display: none; }
  /* On mobile the strip only hosts the drawer; hide empty bar chrome */
  .st-nav__home { min-height: 42px; }
  .st-nav__inner { min-height: 42px; }
  .st-services__head { position: static; }
  .st-cs__rail { border-radius: 14px; padding: 1.5rem; }
  .st-cs__tab { border-radius: 10px; }
  .st-cs__body { padding: 1.5rem 0 0; }
  .st-hero__panel { max-width: none; margin-left: 0; }
  .st-intro__media { max-width: none; margin: 1rem 0 0; }
  .st-intro__stats { grid-template-columns: repeat(3, 1fr); row-gap: 1.5rem; }
  .st-inquiry { position: static; }
  .st-page-hero__badges-inner { gap: 0.5rem 1.25rem; }
}

@media (max-width: 767.98px) {
  .st-hero__inner { padding: 3.25rem 1rem; }
  .st-svc-grid { grid-template-columns: 1fr; }
  .st-cs__grid { grid-template-columns: 1fr; }
  .st-tech__grid { grid-template-columns: repeat(2, 1fr); }
  .st-review-grid { grid-template-columns: 1fr; }
  .st-offering-grid { grid-template-columns: 1fr; }
  .st-checklist { grid-template-columns: 1fr; }
  .st-page-hero__inner { padding: 2.75rem 1rem 2.5rem; }
  .st-page-hero__badges-inner { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .st-footer__bottom-inner { justify-content: center; text-align: center; }
}

@media (max-width: 575.98px) {
  .st-hero__actions .st-hero__cta { width: 100%; justify-content: center; }
  .st-hero__panel { padding: 1.75rem 1.25rem 1.5rem; }
  .st-hero__panel-foot { grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
  .st-intro__stats { grid-template-columns: repeat(2, 1fr); }
  .st-intro__media-badge--years { left: 0; }
  .st-intro__media-badge--rating { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .st-hero__panel,
  .st-svc,
  .st-cs__card,
  .st-review,
  .st-btn,
  .st-footer__social a {
    transition: none;
  }
}
