/* ═══════════════════════════════════════════════════════════════
   TAPAS ENTERPRISE — Service Inner Pages (Premium Redesign)
   Dark-luxury industrial · te-si- prefix
   ═══════════════════════════════════════════════════════════════ */

.page-service-inner {
  --si-dark: #0a0908;
  --si-charcoal: #12100e;
  --si-surface: #1a1714;
  --si-card: rgba(22, 19, 16, 0.92);
  --si-bronze: #b87333;
  --si-amber: #d4922a;
  --si-gold: #e8b84a;
  --si-copper: #c8873a;
  --si-cream: #f5f0e8;
  --si-beige: #ebe4d9;
  --si-warm-white: #faf7f2;
  --si-text-dark: #2a2118;
  --si-text-muted: rgba(42, 33, 24, 0.68);
  --si-glass: rgba(255, 255, 255, 0.04);
  --si-border: rgba(200, 135, 58, 0.18);
  --si-glow: rgba(232, 184, 74, 0.15);
  --si-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --si-radius: 16px;
  --si-radius-lg: 24px;
  background: var(--si-warm-white);
}

.page-service-inner .te-si-main {
  overflow-x: hidden;
}

/* Header on dark hero */
.page-service-inner .header--on-dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  box-shadow: none;
}

.page-service-inner .header--on-dark .header-top {
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.page-service-inner .header--on-dark .header-top-left,
.page-service-inner .header--on-dark .header-contact {
  color: rgba(245, 240, 232, 0.85);
}

.page-service-inner .header--on-dark .header-main {
  background: transparent;
}

.page-service-inner .header--on-dark .nav-link {
  color: rgba(245, 240, 232, 0.88);
}

.page-service-inner .header--on-dark .nav-link:hover,
.page-service-inner .header--on-dark .nav-link.active {
  color: var(--si-gold);
}

.page-service-inner .header--on-dark.scrolled {
  position: fixed;
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.page-service-inner .header--on-dark.scrolled .header-top {
  max-height: 0;
  opacity: 0;
}

.page-service-inner .header--on-dark.scrolled .header-main {
  background: transparent;
}

.page-service-inner .header--on-dark .hamburger span {
  background: var(--si-cream);
}

.page-service-inner .header--on-dark.scrolled .hamburger span {
  background: var(--si-cream);
}

/* ─── Reveal animations ─── */
.te-si-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--si-ease), transform 0.85s var(--si-ease);
  transition-delay: calc(var(--i, 0) * 0.07s);
}

.te-si-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.te-si-reveal--left {
  transform: translateX(-36px);
}

.te-si-reveal--left.is-visible {
  transform: translateX(0);
}

.te-si-reveal--right {
  transform: translateX(36px);
}

.te-si-reveal--right.is-visible {
  transform: translateX(0);
}

.te-si-stagger > .te-si-reveal,
.te-si-stagger > * {
  transition-delay: calc(var(--i, 0) * 0.08s);
}

.te-si-stagger.is-animated > .te-si-reveal,
.te-si-stagger.is-animated > * {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ─── Shared typography ─── */
.te-si-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--si-copper);
  margin-bottom: 1rem;
}

.te-si-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--si-gold), var(--si-amber));
  border-radius: 2px;
}

.te-si-label--light {
  color: var(--si-gold);
}

.te-si-label--light::before {
  background: linear-gradient(90deg, var(--si-gold), transparent);
}

.te-si-heading {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--si-text-dark);
  margin: 0 0 1.15rem;
}

.te-si-heading--sm {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.te-si-heading--light {
  color: var(--si-cream);
}

.te-si-accent {
  background: linear-gradient(120deg, #3d2814 0%, var(--si-copper) 50%, var(--si-amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.te-si-accent--gold {
  background: linear-gradient(120deg, var(--si-gold) 0%, var(--si-amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.te-si-lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.85;
  color: var(--si-text-muted);
  max-width: 54ch;
  margin: 0;
}

.te-si-lead--sm {
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.te-si-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.te-si-section-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.65);
  margin: 0;
}

.te-si-section-desc--dark {
  color: var(--si-text-muted);
}

/* ─── Buttons ─── */
.te-si-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: transform 0.35s var(--si-ease), box-shadow 0.35s, background 0.35s, border-color 0.35s, color 0.35s;
  cursor: pointer;
  white-space: nowrap;
}

.te-si-btn svg {
  transition: transform 0.35s var(--si-ease);
}

.te-si-btn:hover svg {
  transform: translateX(3px);
}

.te-si-btn--primary {
  color: var(--si-dark);
  background: linear-gradient(135deg, var(--si-gold) 0%, var(--si-amber) 55%, var(--si-copper) 100%);
  box-shadow: 0 4px 24px rgba(232, 184, 74, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.te-si-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 184, 74, 0.45);
}

.te-si-btn--ghost {
  color: rgba(245, 240, 232, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.te-si-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 184, 74, 0.4);
  color: var(--si-gold);
}

.te-si-btn--outline {
  color: var(--si-cream);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.te-si-btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--si-gold);
  color: var(--si-gold);
}

.te-si-btn--sm {
  padding: 0.75rem 1.35rem;
  font-size: 0.85rem;
}

.te-si-btn--lg {
  padding: 1rem 2rem;
  font-size: 0.95rem;
}

/* ═══ HERO ═══ */
.te-si-hero {
  position: relative;
  min-height: clamp(580px, 92vh, 920px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h, 116px) + 2rem) 0 4rem;
  overflow: hidden;
}

.te-si-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.te-si-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  transition: transform 8s var(--si-ease);
}

.te-si-hero.is-loaded .te-si-hero__bg-img {
  transform: scale(1);
}

.te-si-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(10, 9, 8, 0.94) 0%,
    rgba(10, 9, 8, 0.82) 42%,
    rgba(10, 9, 8, 0.55) 68%,
    rgba(10, 9, 8, 0.75) 100%
  );
}

.te-si-hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 80%, rgba(184, 115, 51, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(232, 184, 74, 0.1), transparent 50%);
}

.te-si-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: siOrbFloat 12s ease-in-out infinite alternate;
}

.te-si-hero__orb--1 {
  width: 420px;
  height: 420px;
  top: -8%;
  right: 10%;
  background: rgba(200, 135, 58, 0.12);
}

.te-si-hero__orb--2 {
  width: 320px;
  height: 320px;
  bottom: 5%;
  left: -5%;
  background: rgba(232, 184, 74, 0.08);
  animation-delay: -4s;
  animation-duration: 15s;
}

@keyframes siOrbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

.te-si-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  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");
  background-size: 180px;
  pointer-events: none;
}

.te-si-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.te-si-hero__eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--si-gold);
  background: rgba(232, 184, 74, 0.1);
  border: 1px solid rgba(232, 184, 74, 0.25);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.te-si-hero__title {
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 1.25rem;
  color: var(--si-cream);
}

.te-si-hero__title-line {
  display: block;
}

.te-si-hero__title-accent {
  display: block;
  background: linear-gradient(135deg, var(--si-gold) 0%, var(--si-amber) 45%, var(--si-copper) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: siTitleShimmer 6s ease-in-out infinite;
}

@keyframes siTitleShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.te-si-hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.72);
  max-width: 48ch;
  margin: 0 0 1.5rem;
}

.te-si-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 1.75rem;
}

.te-si-hero__crumb a {
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  transition: color 0.25s;
}

.te-si-hero__crumb a:hover {
  color: var(--si-gold);
}

.te-si-hero__crumb span:last-child {
  color: rgba(245, 240, 232, 0.85);
}

.te-si-hero__crumb span[aria-hidden] {
  color: rgba(245, 240, 232, 0.3);
}

.te-si-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.te-si-hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.te-si-hero__metric strong {
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--si-gold);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.te-si-hero__metric span {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.02em;
}

.te-si-hero__visual {
  position: relative;
}

.te-si-hero__visual-frame {
  position: relative;
  border-radius: var(--si-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232, 184, 74, 0.2);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  aspect-ratio: 4/5;
}

.te-si-hero__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.te-si-hero__visual-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%, transparent 60%, rgba(232, 184, 74, 0.06) 100%);
  pointer-events: none;
}

.te-si-hero__visual-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--si-cream);
  background: rgba(10, 9, 8, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 184, 74, 0.25);
  border-radius: 100px;
}

.te-si-hero__visual-badge svg {
  color: var(--si-gold);
}

.te-si-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.te-si-hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.te-si-hero__scroll span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--si-gold);
  border-radius: 4px;
  animation: siScrollDot 2s ease-in-out infinite;
}

@keyframes siScrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ═══ SERVICE NAV ═══ */
.te-si-nav {
  position: sticky;
  top: var(--header-h, 116px);
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 33, 24, 0.08);
  box-shadow: 0 4px 24px rgba(42, 33, 24, 0.04);
}

.te-si-nav__inner {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.te-si-nav__inner::-webkit-scrollbar {
  display: none;
}

.te-si-nav__inner a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--si-text-muted);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.te-si-nav__num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--si-copper);
  opacity: 0.7;
}

.te-si-nav__inner a:hover {
  background: var(--si-beige);
  color: var(--si-text-dark);
}

.te-si-nav__inner a.is-active {
  background: linear-gradient(135deg, rgba(61, 40, 20, 0.06) 0%, rgba(200, 135, 58, 0.12) 100%);
  border-color: rgba(200, 135, 58, 0.25);
  color: var(--si-text-dark);
  font-weight: 600;
}

.te-si-nav__inner a.is-active .te-si-nav__num {
  color: var(--si-amber);
  opacity: 1;
}

.te-si-nav.is-scrolled {
  box-shadow: 0 8px 32px rgba(42, 33, 24, 0.08);
}

.is-img-fallback {
  background: linear-gradient(135deg, var(--si-charcoal) 0%, #2a2118 50%, var(--si-copper) 100%);
}

.is-img-fallback img {
  opacity: 0;
}

/* ═══ OVERVIEW ═══ */
.te-si-overview {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--si-warm-white);
}

.te-si-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.te-si-overview__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42, 33, 24, 0.08);
}

.te-si-overview__highlight strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--si-text-dark);
}

.te-si-overview__highlight span {
  font-size: 0.78rem;
  color: var(--si-text-muted);
}

.te-si-overview__visual {
  position: relative;
}

.te-si-overview__img-wrap {
  position: relative;
  border-radius: var(--si-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(42, 33, 24, 0.12);
}

.te-si-overview__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.te-si-overview__img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 9, 8, 0.35) 100%);
  pointer-events: none;
}

.te-si-overview__float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 280px;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(42, 33, 24, 0.08);
  border-radius: var(--si-radius);
  box-shadow: 0 16px 48px rgba(42, 33, 24, 0.1);
}

.te-si-overview__float-card svg {
  flex-shrink: 0;
  color: var(--si-amber);
  margin-top: 0.15rem;
}

.te-si-overview__float-card strong {
  display: block;
  font-size: 0.92rem;
  color: var(--si-text-dark);
  margin-bottom: 0.2rem;
}

.te-si-overview__float-card span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--si-text-muted);
}

/* ═══ BENEFITS ═══ */
.te-si-benefits-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--si-charcoal);
  overflow: hidden;
}

.te-si-benefits-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200, 135, 58, 0.08), transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 80%, rgba(232, 184, 74, 0.05), transparent 50%);
  pointer-events: none;
}

.te-si-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.te-si-benefit {
  position: relative;
  padding: 1.65rem 1.4rem;
  background: var(--si-glass);
  border: 1px solid var(--si-border);
  border-radius: var(--si-radius);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.4s var(--si-ease), border-color 0.4s, box-shadow 0.4s;
}

.te-si-benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 184, 74, 0.35), transparent 50%, rgba(200, 135, 58, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.te-si-benefit:hover::before {
  opacity: 1;
}

.te-si-benefit__glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--si-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.te-si-benefit:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 184, 74, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.te-si-benefit:hover .te-si-benefit__glow {
  opacity: 1;
}

.te-si-benefit__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(232, 184, 74, 0.15), rgba(200, 135, 58, 0.1));
  border: 1px solid rgba(232, 184, 74, 0.2);
  border-radius: 12px;
  color: var(--si-gold);
}

.te-si-benefit__icon svg {
  width: 22px;
  height: 22px;
}

.te-si-benefit h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--si-cream);
  margin: 0 0 0.45rem;
}

.te-si-benefit p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.58);
}

/* ═══ VISUAL STRIP ═══ */
.te-si-visual-strip {
  position: relative;
  min-height: clamp(380px, 50vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.te-si-visual-strip__media {
  position: absolute;
  inset: -10% 0;
  will-change: transform;
}

.te-si-visual-strip__media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.te-si-visual-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 9, 8, 0.92) 0%, rgba(10, 9, 8, 0.75) 45%, rgba(10, 9, 8, 0.5) 100%);
}

.te-si-visual-strip__content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.te-si-visual-strip__card {
  max-width: 520px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 184, 74, 0.15);
  border-radius: var(--si-radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.te-si-visual-strip__card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.7);
  margin: 0 0 1.5rem;
}

/* ═══ SCOPE ═══ */
.te-si-scope {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--si-beige);
}

.te-si-scope__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.te-si-scope__img-wrap {
  border-radius: var(--si-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(42, 33, 24, 0.14);
}

.te-si-scope__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.te-si-scope__stat {
  position: absolute;
  bottom: -1.25rem;
  right: -1rem;
  padding: 1.15rem 1.35rem;
  background: var(--si-charcoal);
  border: 1px solid var(--si-border);
  border-radius: var(--si-radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.te-si-scope__visual {
  position: relative;
}

.te-si-scope__stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--si-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.te-si-scope__stat span {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.6);
  max-width: 140px;
  line-height: 1.4;
}

.te-si-scope__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.te-si-scope__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(42, 33, 24, 0.08);
  font-size: 0.98rem;
  color: var(--si-text-dark);
  transition: padding-left 0.3s var(--si-ease);
}

.te-si-scope__item:hover {
  padding-left: 0.35rem;
}

.te-si-scope__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(232, 184, 74, 0.2), rgba(200, 135, 58, 0.12));
  border-radius: 8px;
  color: var(--si-copper);
}

.te-si-scope__check svg {
  width: 16px;
  height: 16px;
}

/* ═══ PROCESS — premium animated timeline ═══ */
.te-si-process {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: var(--si-dark);
  overflow: hidden;
}

.te-si-process__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(200, 135, 58, 0.07), transparent 60%),
    radial-gradient(ellipse 40% 30% at 0% 30%, rgba(232, 184, 74, 0.04), transparent 50%);
  pointer-events: none;
}

.te-si-process__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: siProcessOrb 14s ease-in-out infinite alternate;
}

.te-si-process__orb--1 {
  width: 360px;
  height: 360px;
  top: 10%;
  left: -8%;
  background: rgba(200, 135, 58, 0.1);
}

.te-si-process__orb--2 {
  width: 280px;
  height: 280px;
  bottom: 5%;
  right: -5%;
  background: rgba(232, 184, 74, 0.07);
  animation-delay: -5s;
}

@keyframes siProcessOrb {
  0% { transform: translate(0, 0); }
  100% { transform: translate(24px, -16px); }
}

.te-si-process__track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
  position: relative;
  padding-top: 0.5rem;
}

/* Rail system */
.te-si-process__rail-wrap {
  position: absolute;
  top: 2.85rem;
  left: 8%;
  right: 8%;
  height: 3px;
  z-index: 0;
  border-radius: 4px;
  overflow: visible;
}

.te-si-process__rail {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

.te-si-process__rail-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--si-gold), var(--si-amber), var(--si-copper));
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(232, 184, 74, 0.45);
  transition: width 1.6s var(--si-ease);
}

.te-si-process__track.is-animated .te-si-process__rail-fill {
  width: 100%;
}

.te-si-process__pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  margin-left: -7px;
  background: var(--si-gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(232, 184, 74, 0.9), 0 0 40px rgba(232, 184, 74, 0.4);
  opacity: 0;
  transform: translateX(0);
}

.te-si-process__track.is-live .te-si-process__pulse {
  opacity: 1;
  animation: siProcessPulseTravel 4.5s var(--si-ease) infinite;
}

@keyframes siProcessPulseTravel {
  0% { left: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Steps */
.te-si-process__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  filter: blur(6px);
  transition: opacity 0.7s var(--si-ease), transform 0.7s var(--si-ease), filter 0.7s var(--si-ease);
  transition-delay: calc(0.15s + var(--i, 0) * 0.12s);
}

.te-si-process__track.is-animated .te-si-process__step {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.te-si-process__step--up {
  margin-top: -0.5rem;
}

.te-si-process__step--down {
  margin-top: 1.25rem;
}

/* Node (icon + ring) */
.te-si-process__node {
  position: relative;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.te-si-process__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(232, 184, 74, 0.35);
  animation: siProcessRingSpin 12s linear infinite;
  opacity: 0.6;
  transition: opacity 0.4s, border-color 0.4s;
}

.te-si-process__step.is-active .te-si-process__ring,
.te-si-process__step:hover .te-si-process__ring {
  opacity: 1;
  border-color: rgba(232, 184, 74, 0.7);
  animation-duration: 4s;
}

@keyframes siProcessRingSpin {
  to { transform: rotate(360deg); }
}

.te-si-process__dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background: linear-gradient(145deg, var(--si-gold) 0%, var(--si-amber) 55%, var(--si-copper) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(232, 184, 74, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.45s var(--si-ease), box-shadow 0.45s;
}

.te-si-process__dot svg {
  width: 20px;
  height: 20px;
  color: var(--si-dark);
  position: relative;
  z-index: 2;
}

.te-si-process__dot em {
  position: absolute;
  bottom: -2px;
  right: -2px;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--si-cream);
  background: var(--si-charcoal);
  border: 1.5px solid var(--si-gold);
  border-radius: 100px;
  padding: 0.12rem 0.35rem;
  line-height: 1;
  z-index: 3;
}

.te-si-process__step.is-active .te-si-process__dot,
.te-si-process__step:hover .te-si-process__dot {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(232, 184, 74, 0.55), 0 0 0 6px rgba(232, 184, 74, 0.12);
}

/* Glass cards */
.te-si-process__card {
  position: relative;
  padding: 1.1rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 184, 74, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  text-align: center;
  overflow: hidden;
  transition: transform 0.45s var(--si-ease), border-color 0.45s, box-shadow 0.45s, background 0.45s;
}

.te-si-process__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 184, 74, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}

.te-si-process__step.is-active .te-si-process__card,
.te-si-process__step:hover .te-si-process__card {
  transform: translateY(-4px);
  border-color: rgba(232, 184, 74, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.te-si-process__step.is-active .te-si-process__card::before,
.te-si-process__step:hover .te-si-process__card::before {
  opacity: 1;
}

.te-si-process__card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--si-cream);
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}

.te-si-process__card p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.55);
  position: relative;
  z-index: 1;
  transition: color 0.35s;
}

.te-si-process__step.is-active .te-si-process__card p,
.te-si-process__step:hover .te-si-process__card p {
  color: rgba(245, 240, 232, 0.75);
}

/* ═══ DELIVERABLES ═══ */
.te-si-deliverables {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--si-warm-white);
}

.te-si-deliverables__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.te-si-deliver {
  position: relative;
  padding: 1.5rem 1.35rem 1.5rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(42, 33, 24, 0.08);
  border-radius: var(--si-radius);
  transition: transform 0.35s var(--si-ease), box-shadow 0.35s, border-color 0.35s;
}

.te-si-deliver:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(42, 33, 24, 0.08);
  border-color: rgba(200, 135, 58, 0.25);
}

.te-si-deliver__num {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--si-copper);
  margin-bottom: 0.65rem;
}

.te-si-deliver h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--si-text-dark);
  margin: 0 0 0.4rem;
}

.te-si-deliver p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--si-text-muted);
}

/* ═══ RELATED ═══ */
.te-si-related {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--si-charcoal);
  overflow: hidden;
}

.te-si-related__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 10% 50%, rgba(200, 135, 58, 0.07), transparent 55%);
  pointer-events: none;
}

.te-si-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.te-si-related__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--si-glass);
  border: 1px solid var(--si-border);
  border-radius: var(--si-radius);
  overflow: hidden;
  transition: transform 0.4s var(--si-ease), border-color 0.4s, box-shadow 0.4s;
}

.te-si-related__card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 184, 74, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.te-si-related__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.te-si-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--si-ease);
}

.te-si-related__card:hover .te-si-related__thumb img {
  transform: scale(1.08);
}

.te-si-related__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 9, 8, 0.7) 100%);
}

.te-si-related__body {
  padding: 1.15rem 1.1rem 1.25rem;
}

.te-si-related__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 0.5rem;
  background: rgba(232, 184, 74, 0.12);
  border: 1px solid rgba(232, 184, 74, 0.25);
  border-radius: 50%;
  color: var(--si-gold);
  transition: background 0.35s, transform 0.35s var(--si-ease);
}

.te-si-related__card:hover .te-si-related__icon {
  background: rgba(232, 184, 74, 0.22);
  transform: translateX(4px);
}

.te-si-related__body strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--si-cream);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.te-si-related__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.3s, gap 0.3s;
}

.te-si-related__card:hover .te-si-related__link {
  color: var(--si-gold);
  gap: 0.5rem;
}

/* ═══ CTA ═══ */
.te-si-cta {
  position: relative;
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  background: linear-gradient(165deg, #0a0908 0%, #1a1410 40%, #12100e 100%);
  overflow: hidden;
  text-align: center;
}

.te-si-cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: siCtaGlow 8s ease-in-out infinite alternate;
}

.te-si-cta__glow--1 {
  width: 500px;
  height: 500px;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(232, 184, 74, 0.12);
}

.te-si-cta__glow--2 {
  width: 300px;
  height: 300px;
  bottom: -20%;
  right: 10%;
  background: rgba(200, 135, 58, 0.1);
  animation-delay: -3s;
}

@keyframes siCtaGlow {
  0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.te-si-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(232, 184, 74, 0.12);
  border-radius: var(--si-radius-lg);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 80px rgba(232, 184, 74, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.te-si-cta__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--si-gold);
  margin-bottom: 1rem;
}

.te-si-cta h2 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--si-cream);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.te-si-cta p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.68);
  margin: 0 0 0.75rem;
}

.te-si-cta__trust {
  font-size: 0.85rem !important;
  color: rgba(245, 240, 232, 0.45) !important;
  margin-bottom: 2rem !important;
}

.te-si-cta__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ═══ FOOTER BRIDGE & FOOTER FIX ═══ */
.te-si-footer-bridge {
  position: relative;
  height: 6px;
  background: linear-gradient(90deg, var(--si-gold), var(--si-amber), var(--si-copper), var(--si-gold));
  background-size: 200% 100%;
  animation: siBridgeShimmer 6s linear infinite;
}

.te-si-footer-bridge__line {
  height: 100%;
}

@keyframes siBridgeShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.page-service-inner .te-si-footer {
  position: relative;
  margin-top: 0 !important;
  background: linear-gradient(180deg, #14100e 0%, #0a0908 50%, #080706 100%) !important;
  border-top: none;
  box-shadow: 0 -24px 64px rgba(0, 0, 0, 0.35);
}

.page-service-inner .te-si-footer .container {
  padding-top: clamp(3.5rem, 6vw, 4.75rem);
}

.page-service-inner .te-si-footer .footer-line {
  width: 100%;
  opacity: 1;
}

.page-service-inner .te-si-footer .footer-showcase.is-live .footer-brand,
.page-service-inner .te-si-footer .footer-showcase.is-live .footer-col,
.page-service-inner .te-si-footer .footer-showcase.is-live .footer-bottom {
  opacity: 1;
  transform: none;
}

/* ─── Image clip reveal ─── */
.te-si-img-reveal {
  clip-path: inset(8% 8% 8% 8% round 20px);
  transition: clip-path 1.1s var(--si-ease);
}

.te-si-img-reveal.is-revealed {
  clip-path: inset(0% 0% 0% 0% round 24px);
}

.te-si-img-reveal img {
  transform: scale(1.08);
  transition: transform 1.4s var(--si-ease);
}

.te-si-img-reveal.is-revealed img {
  transform: scale(1);
}

/* ─── Hero tilt target ─── */
[data-si-tilt] {
  transition: transform 0.35s var(--si-ease);
  transform-style: preserve-3d;
  will-change: transform;
}

/* ─── Section scale reveal ─── */
.te-si-section-head.is-visible .te-si-heading {
  animation: siHeadIn 0.9s var(--si-ease) both;
}

@keyframes siHeadIn {
  from { letter-spacing: -0.01em; filter: blur(4px); opacity: 0.6; }
  to { letter-spacing: -0.025em; filter: blur(0); opacity: 1; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .te-si-hero__inner {
    grid-template-columns: 1fr;
  }

  .te-si-hero__visual {
    max-width: 420px;
    margin: 0 auto;
    order: -1;
  }

  .te-si-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .te-si-deliverables__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .te-si-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .te-si-process__track {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem 1rem;
  }

  .te-si-process__step--up,
  .te-si-process__step--down {
    margin-top: 0;
  }

  .te-si-process__rail-wrap {
    display: none;
  }
}

@media (max-width: 768px) {
  .te-si-hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .te-si-hero__visual {
    max-width: 100%;
  }

  .te-si-hero__scroll {
    display: none;
  }

  .te-si-overview__grid,
  .te-si-scope__grid {
    grid-template-columns: 1fr;
  }

  .te-si-overview__float-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -2rem;
    max-width: 100%;
  }

  .te-si-scope__stat {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
    display: inline-block;
  }

  .te-si-benefits {
    grid-template-columns: 1fr;
  }

  .te-si-process__track {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 2.75rem;
    max-width: 420px;
    margin: 0 auto;
  }

  .te-si-process__rail-wrap {
    display: block;
    top: 0;
    bottom: 0;
    left: 1.15rem;
    right: auto;
    width: 3px;
    height: auto;
  }

  .te-si-process__rail-fill {
    width: 100% !important;
    height: 0%;
    transition: height 1.6s var(--si-ease);
  }

  .te-si-process__track.is-animated .te-si-process__rail-fill {
    height: 100%;
    width: 100%;
  }

  .te-si-process__pulse {
    left: 50% !important;
    top: 0;
    margin-left: -7px;
    margin-top: -7px;
    animation: siProcessPulseTravelV 5s var(--si-ease) infinite;
  }

  @keyframes siProcessPulseTravelV {
    0% { top: 0%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }

  .te-si-process__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding-bottom: 1.75rem;
  }

  .te-si-process__node {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .te-si-process__card {
    flex: 1;
    text-align: left;
    padding: 1rem 1.1rem;
  }

  .te-si-deliverables__grid {
    grid-template-columns: 1fr;
  }

  .te-si-related__grid {
    grid-template-columns: 1fr;
  }

  .te-si-hero__metrics {
    gap: 1.25rem;
  }

  .te-si-overview,
  .te-si-benefits,
  .te-si-scope,
  .te-si-process,
  .te-si-deliverables,
  .te-si-related {
    padding: clamp(2.25rem, 6vw, 3.25rem) 0;
  }

  .te-si-cta__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .te-si-cta__btns .te-si-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .te-si-hero {
    padding-top: calc(var(--header-h, 116px) + 1rem);
    padding-bottom: 2.5rem;
  }

  .te-si-hero__title {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .te-si-hero__lead {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .te-si-hero__metrics {
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
  }

  .te-si-overview,
  .te-si-benefits,
  .te-si-scope,
  .te-si-process,
  .te-si-deliverables,
  .te-si-related {
    padding: clamp(2.25rem, 6vw, 3.25rem) 0;
  }

  .te-si-process__track {
    max-width: 100%;
    padding-left: 2.5rem;
  }

  .te-si-process__dot {
    width: 3.25rem;
    height: 3.25rem;
  }

  .te-si-hero__actions {
    flex-direction: column;
  }

  .te-si-hero__actions .te-si-btn {
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }

  .te-si-cta__inner {
    padding: 1.75rem 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .te-si-reveal,
  .te-si-hero__orb,
  .te-si-cta__glow,
  .te-si-footer-bridge,
  .te-si-hero__scroll span::after {
    animation: none !important;
    transition: none !important;
  }

  .te-si-reveal {
    opacity: 1;
    transform: none;
  }

  .te-si-process__rail-fill,
  .te-si-process__track.is-live .te-si-process__pulse,
  .te-si-process__orb,
  .te-si-process__ring {
    animation: none !important;
  }

  .te-si-process__track.is-animated .te-si-process__rail-fill {
    width: 100%;
    height: 100%;
  }

  .te-si-process__step {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .te-si-hero__bg-img {
    transform: none !important;
  }

  .te-si-hero__title-accent {
    animation: none;
  }

  .te-si-img-reveal {
    clip-path: none;
  }

  .te-si-img-reveal img {
    transform: none;
  }

  .te-si-benefit:hover,
  .te-si-deliver:hover,
  .te-si-related__card:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .page-service-inner .header--on-dark .header-top,
  .page-service-inner .header--on-dark.scrolled {
    backdrop-filter: none;
  }

  .page-service-inner .header--on-dark.scrolled {
    background: rgba(10, 9, 8, 0.98);
  }
}
