:root {
  --industrial-bg: #070707;
  --industrial-bg-soft: #0e0f13;
  --industrial-panel: rgba(17, 19, 24, 0.88);
  --industrial-panel-strong: rgba(13, 14, 18, 0.96);
  --industrial-panel-soft: rgba(255, 255, 255, 0.04);
  --industrial-border: rgba(255, 255, 255, 0.10);
  --industrial-border-strong: rgba(255, 90, 20, 0.22);
  --industrial-text: #f5f7fa;
  --industrial-muted: #c1c6cf;
  --industrial-accent: #ff5a14;
  --industrial-accent-2: #ff8b2f;
  --industrial-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --industrial-glow: 0 0 0 1px rgba(255, 90, 20, 0.14), 0 25px 70px rgba(255, 90, 20, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 24, 0.12), transparent 28%),
    radial-gradient(circle at left center, rgba(68, 104, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #050505 0%, #0a0b0e 100%);
  color: var(--industrial-text);
}

.landing-industrial {
  position: relative;
  overflow: clip;
  background: transparent;
}

.landing-industrial .container {
  position: relative;
  z-index: 2;
}

.landing-industrial .section-shell {
  position: relative;
  padding: 5.75rem 0;
}

.landing-industrial .section-shell + .section-shell {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-industrial .section-kicker,
.landing-industrial .hero-eyebrow,
.media-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 90, 20, 0.12);
  border: 1px solid rgba(255, 90, 20, 0.22);
  color: #ffd4c3;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 800;
}

.landing-industrial .hero-eyebrow {
  margin-bottom: 1.2rem;
}

.landing-industrial .section-title {
  margin: 1rem 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 900;
  color: var(--industrial-text);
}

.landing-industrial .section-description,
.landing-industrial p {
  color: var(--industrial-muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.landing-industrial .section-heading {
  max-width: 860px;
  margin: 0 auto 2.8rem;
}

[data-reveal] {
  opacity: 0;
  --reveal-x: 0px;
  --reveal-y: 34px;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(.985);
  filter: blur(10px);
  transition:
    opacity .9s ease,
    transform .95s cubic-bezier(.22, 1, .36, 1),
    filter .95s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}

[data-reveal="left"] { --reveal-x: -42px; --reveal-y: 12px; }
[data-reveal="right"] { --reveal-x: 42px; --reveal-y: 12px; }
[data-reveal="zoom"] { --reveal-y: 18px; transform: translate3d(0, var(--reveal-y), 0) scale(.92); }
[data-reveal="soft"] { --reveal-y: 22px; filter: blur(14px); }
[data-reveal="fade"] { --reveal-y: 0px; filter: blur(0); }

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.js-split-text .split-word {
  display: inline-block;
  transform: translateY(1.1em);
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity .7s ease,
    transform .8s cubic-bezier(.22, 1, .36, 1),
    filter .8s ease;
  transition-delay: calc(var(--word-index, 0) * 45ms + var(--reveal-delay, 0s));
}

.js-split-text.is-visible .split-word {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

.hero-industrial {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  isolation: isolate;
  position: relative;
  padding: 7rem 0 5rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 90, 20, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.50) 0%, rgba(8, 8, 8, 0.94) 100%);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .28;
}

.hero-carousel .carousel-item,
.hero-carousel .hero-media {
  height: 100%;
  min-height: calc(100vh - 72px);
}

.hero-carousel .hero-media {
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(.15) contrast(1.08) saturate(.95);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.62) 46%, rgba(5, 5, 5, 0.86) 100%),
    linear-gradient(180deg, rgba(255, 90, 20, 0.10), transparent 34%);
}

.ambient-grid,
.ambient-orb,
.section-spark {
  position: absolute;
  pointer-events: none;
}

.ambient-grid {
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 90%);
  opacity: .7;
}

.ambient-orb {
  border-radius: 50%;
  filter: blur(12px);
  opacity: .65;
  animation: floatAmbient 12s ease-in-out infinite;
}

.ambient-orb-one {
  width: 280px;
  height: 280px;
  top: 8%;
  right: 6%;
  background: radial-gradient(circle, rgba(255, 90, 20, 0.26), rgba(255, 90, 20, 0.03) 70%, transparent 78%);
}

.ambient-orb-two {
  width: 230px;
  height: 230px;
  bottom: 6%;
  left: -5%;
  background: radial-gradient(circle, rgba(73, 108, 255, 0.18), rgba(73, 108, 255, 0.02) 68%, transparent 78%);
  animation-delay: -3s;
}

.hero-shell {
  width: 100%;
}

.hero-copy-shell {
  max-width: 760px;
}

.hero-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -.03em;
  color: var(--industrial-text);
}

.hero-title span {
  color: var(--industrial-accent);
}

.hero-copy {
  max-width: 690px;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 2rem;
}

.btn-industrial,
.btn-industrial-secondary {
  padding: .96rem 1.55rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--industrial-shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.btn-industrial {
  border: none;
  background: linear-gradient(135deg, var(--industrial-accent), var(--industrial-accent-2));
}

.btn-industrial:hover {
  transform: translateY(-20px);
  box-shadow: 0 24px 50px rgba(255, 90, 20, 0.24);
}

.btn-industrial-secondary {
  border-width: 1px;
  background: rgba(255, 255, 255, 0.02);
}

.btn-industrial-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 20, 0.35);
}

.hero-stats {
  margin-top: 2rem;
}

.stat-card,
.point-card,
.content-panel,
.service-card,
.process-step,
.cta-panel,
.partner-logo,
.media-card {
  border: 1px solid var(--industrial-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--industrial-panel);
  border-radius: 1.6rem;
  box-shadow: var(--industrial-shadow);
  backdrop-filter: blur(14px);
}

.stat-card {
  height: 100%;
  padding: 1.25rem 1.15rem;
}

.stat-value {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: .4rem;
}

.stat-card span {
  display: block;
  color: var(--industrial-muted);
  font-size: .95rem;
  line-height: 1.5;
}

.hero-points {
  margin-top: 1.2rem;
}

.point-card {
  height: 100%;
  padding: 1.15rem 1rem;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.point-card:hover,
.service-card:hover,
.process-step:hover,
.partner-logo:hover,
.media-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 20, 0.30);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(18, 19, 24, 0.96);
}

.point-card strong {
  display: block;
  color: #ffffff;
  margin-bottom: .35rem;
  font-size: 1rem;
}

.point-card span {
  color: var(--industrial-muted);
  font-size: .95rem;
  line-height: 1.5;
}

.robot-stage {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-glow {
  position: absolute;
  width: 80%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 20, 0.28), rgba(255, 90, 20, 0.06) 50%, transparent 72%);
  filter: blur(12px);
}

.robot-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  opacity: .45;
  animation: pulseRing 8s linear infinite;
}

.robot-ring-one {
  width: 76%;
  aspect-ratio: 1 / 1;
}

.robot-ring-two {
  width: 90%;
  aspect-ratio: 1 / 1;
  animation-delay: -4s;
}

.hero-robot {
  position: relative;
  z-index: 2;
  width: min(100%, 440px);
  max-height: 700px;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.48));
  animation: robotHover 5.5s ease-in-out infinite;
}

.floating-tag {
  position: absolute;
  z-index: 3;
  padding: .85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 10, 10, 0.78);
  box-shadow: var(--industrial-shadow);
  color: #ffffff;
  font-size: .84rem;
  font-weight: 800;
  animation: floatTag 6s ease-in-out infinite;
}

.tag-one {
  top: 12%;
  right: 0;
}

.tag-two {
  bottom: 24%;
  left: -4%;
  animation-delay: -2s;
}

.tag-three {
  bottom: 8%;
  right: 8%;
  animation-delay: -3.2s;
}

.scroll-cue {
  position: relative;
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  color: rgba(255, 255, 255, 0.74);
}

.scroll-cue span {
  position: relative;
  width: 28px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 5px;
  height: 9px;
  border-radius: 999px;
  background: var(--industrial-accent);
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.scroll-cue small {
  font-size: .88rem;
  letter-spacing: .03em;
}

.section-spark {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .32;
}

.section-spark-left {
  top: 6%;
  left: -3%;
  background: rgba(255, 90, 20, 0.26);
}

.section-spark-right {
  top: 8%;
  right: -2%;
  background: rgba(65, 102, 255, 0.18);
}

.content-panel {
  position: relative;
  height: 100%;
  padding: 2rem;
}

.intro-copy strong {
  color: #ffffff;
}

.highlight-panel {
  background:
    linear-gradient(180deg, rgba(255, 90, 20, 0.14), rgba(14, 16, 20, 0.96)),
    rgba(17, 19, 24, 0.96);
}

.highlight-item + .highlight-item {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-item strong {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.intro-visual-stack {
  display: grid;
  gap: 1.2rem;
  height: 100%;
}

.image-panel {
  overflow: hidden;
  padding: 0;
  min-height: 420px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  object-position: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 90, 20, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(9, 10, 12, 0.8), rgba(9, 10, 12, 0.98));
}

.image-panel-copy {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  padding: 1.25rem;
  border-radius: 1.2rem;
  background: rgba(10, 11, 14, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.image-panel-copy h3 {
  margin: .8rem 0 .55rem;
  font-size: 1.3rem;
  color: #ffffff;
}

.section-showcase {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 90, 20, 0.08), transparent 24%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01));
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
  gap: 1.3rem;
  align-items: stretch;
}

.showcase-side {
  display: grid;
  gap: 1.3rem;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  isolation: isolate;
}

.media-card-large {
  min-height: 560px;
}

.media-card-small {
  min-height: 270px;
}

.media-card-glow {
  position: absolute;
  inset: auto auto -12% -8%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 20, 0.18), transparent 72%);
  filter: blur(22px);
  z-index: 0;
}

.media-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .8s ease, filter .8s ease;
  filter: saturate(1.02) contrast(1.05);
}

.media-card-media.media-fit-contain {
  object-fit: contain;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 90, 20, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(10, 11, 14, 0.9), rgba(10, 11, 14, 0.98));
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0.04) 0%, rgba(9, 10, 12, 0.32) 36%, rgba(9, 10, 12, 0.96) 100%),
    linear-gradient(135deg, rgba(255, 90, 20, 0.10), transparent 55%);
}

.media-card:hover .media-card-media {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.08);
}

.media-card-overlay {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 2;
}

.media-card-overlay h3 {
  margin: .85rem 0 .45rem;
  color: #ffffff;
  font-size: 1.35rem;
}

.media-card-overlay p {
  margin: 0;
}

.section-services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 1.8rem;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 90, 20, 0.8), transparent 72%);
  opacity: .6;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-weight: 900;
  color: var(--industrial-accent);
  background: rgba(255, 90, 20, 0.12);
  border: 1px solid rgba(255, 90, 20, 0.18);
}

.service-card h3,
.process-step h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: .75rem;
}

.service-actions {
  margin-top: 2.5rem;
}

.section-process {
  background:
    radial-gradient(circle at left center, rgba(255, 90, 20, 0.08), transparent 25%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.process-step {
  min-height: 220px;
  padding: 1.6rem;
}

.process-step span {
  display: inline-block;
  margin-bottom: .85rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--industrial-accent);
}

.section-cta {
  padding-top: 1.2rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, .9fr);
  gap: 2rem;
  align-items: center;
  padding: 2.25rem;
  background:
    linear-gradient(135deg, rgba(255, 90, 20, 0.14), rgba(255, 255, 255, 0.02)),
    var(--industrial-panel-strong);
  box-shadow: var(--industrial-glow);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  max-width: 980px;
  margin: 0 auto;
}

.partner-logo {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem;
  text-decoration: none;
}

.partner-logo img {
  max-width: min(100%, 220px);
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.04);
  transition: transform .35s ease;
}

.partner-logo:hover img {
  transform: scale(1.04);
}

.partner-logo-wide img {
  max-width: min(100%, 260px);
}

@keyframes floatAmbient {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.03); }
}

@keyframes robotHover {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes floatTag {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@keyframes pulseRing {
  0% { transform: scale(.96); opacity: .38; }
  50% { transform: scale(1.02); opacity: .16; }
  100% { transform: scale(.96); opacity: .38; }
}

@keyframes scrollCue {
  0% { transform: translate3d(-50%, 0, 0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate3d(-50%, 15px, 0); opacity: 0; }
}

@media (max-width: 1199.98px) {
  .robot-stage {
    min-height: 560px;
  }

  .tag-two {
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .hero-industrial {
    min-height: auto;
    padding: 6rem 0 4.5rem;
  }

  .hero-carousel .carousel-item,
  .hero-carousel .hero-media {
    min-height: 820px;
  }

  .robot-stage {
    min-height: 520px;
  }

  .showcase-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .landing-industrial .section-shell {
    padding: 4.2rem 0;
  }

  .hero-industrial {
    padding-top: 5.25rem;
  }

  .hero-carousel {
    opacity: .18;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none;
  }

  .landing-industrial .section-description,
  .landing-industrial p,
  .hero-copy {
    font-size: 1rem;
  }

  .process-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .robot-stage {
    min-height: 430px;
  }

  .hero-robot {
    width: min(100%, 310px);
  }

  .floating-tag {
    position: static;
    display: inline-flex;
    margin: .4rem .35rem 0 0;
  }

  .tag-one,
  .tag-two,
  .tag-three {
    inset: auto;
  }

  .scroll-cue {
    display: none;
  }

  .image-panel,
  .image-panel img,
  .media-card-large,
  .media-card-small {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal],
  [data-reveal].is-visible,
  .js-split-text .split-word,
  .js-split-text.is-visible .split-word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Modern industrial redesign */
:root {
  --site-bg-0: #05070b;
  --site-bg-1: #0a1018;
  --site-surface: rgba(13, 20, 31, 0.78);
  --site-surface-strong: rgba(11, 17, 26, 0.95);
  --site-border: rgba(170, 184, 206, 0.13);
  --site-border-strong: rgba(97, 150, 255, 0.26);
  --site-text: #f3f7ff;
  --site-muted: #aeb8c8;
  --site-accent: #4f84ff;
  --site-accent-2: #8eb4ff;
  --site-accent-3: #dde7f7;
  --site-shadow: 0 20px 70px rgba(1, 8, 20, 0.38);
}

html[data-bs-theme="light"] {
  --site-bg-0: #edf2f8;
  --site-bg-1: #f8fbff;
  --site-surface: rgba(255, 255, 255, 0.78);
  --site-surface-strong: rgba(255, 255, 255, 0.96);
  --site-border: rgba(15, 28, 52, 0.10);
  --site-border-strong: rgba(15, 28, 52, 0.18);
  --site-text: #0f1728;
  --site-muted: #516077;
  --site-accent: #285dff;
  --site-accent-2: #86abff;
  --site-accent-3: #dfe8f6;
  --site-shadow: 0 20px 70px rgba(15, 28, 52, 0.12);
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  min-height: 100vh;
  color: var(--site-text);
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 92, 255, 0.15), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(24, 211, 179, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 122, 61, 0.10), transparent 28%),
    linear-gradient(180deg, var(--site-bg-0) 0%, var(--site-bg-1) 100%);
}

body.site-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

.site-frame {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  padding: .9rem 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(5, 8, 14, 0.88), rgba(5, 8, 14, 0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 10, 18, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

html[data-bs-theme="light"] .site-header {
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.88), rgba(246, 249, 255, 0.72));
  border-bottom: 1px solid rgba(15, 28, 52, 0.08);
}

.site-header-inner {
  gap: 1rem;
}

.site-brand {
  color: var(--site-text);
  text-decoration: none;
}

.site-brand:hover {
  color: var(--site-text);
}

.site-brand-logo {
  width: auto;
  max-height: 44px;
  object-fit: contain;
}

.site-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.site-brand-copy strong {
  font-size: .98rem;
  letter-spacing: .02em;
}

.site-brand-copy small {
  color: var(--site-muted);
  font-size: .78rem;
  margin-top: .18rem;
}

.site-nav-links {
  gap: .35rem;
}

.site-nav-links .nav-link {
  position: relative;
  color: var(--site-muted);
  font-weight: 700;
  letter-spacing: .01em;
  padding: .55rem .9rem;
}

.site-nav-links .nav-link:hover,
.site-nav-links .nav-link:focus,
.site-nav-links .nav-link.active {
  color: var(--site-text);
}

.site-nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .34rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--site-accent), var(--site-accent-2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}

.site-nav-links .nav-link:hover::after,
.site-nav-links .nav-link:focus::after,
.site-nav-links .nav-link.active::after {
  transform: scaleX(1);
}

.site-nav-actions {
  margin-left: auto;
}

.nav-contact-pill,
.btn-navicon,
.btn-site-cta {
  border-radius: 999px;
  border: 1px solid var(--site-border);
  box-shadow: var(--site-shadow);
}

.nav-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .68rem 1rem;
  color: var(--site-text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-contact-pill:hover {
  color: var(--site-text);
  border-color: var(--site-border-strong);
}

.btn-navicon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--site-text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-navicon:hover {
  color: var(--site-text);
  border-color: var(--site-border-strong);
  transform: translateY(-1px);
}

.btn-site-cta {
  padding: .72rem 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--site-accent), var(--site-accent-2));
  border: none;
}

.btn-site-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.translate-wrapper {
  position: relative;
}

.translate-widget {
  position: absolute;
  top: calc(100% + .7rem);
  right: 0;
  min-width: 240px;
  padding: .75rem;
  border-radius: 1rem;
  border: 1px solid var(--site-border);
  background: var(--site-surface-strong);
  box-shadow: var(--site-shadow);
  display: none;
  z-index: 15;
}

.translate-widget.is-open {
  display: block;
}

.translate-widget select,
.translate-widget iframe {
  width: 100% !important;
}

.site-page-shell {
  max-width: 100%;
}

.landing-industrial {
  position: relative;
  overflow: clip;
}

.landing-industrial .section-shell {
  position: relative;
  padding: 5.6rem 0;
}

.landing-industrial .section-shell + .section-shell {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-industrial .section-kicker,
.landing-industrial .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .62rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .74rem;
  font-weight: 900;
  color: #d8e5ff;
  background: rgba(95, 140, 255, 0.12);
  border: 1px solid rgba(95, 140, 255, 0.22);
}

.landing-industrial .hero-eyebrow {
  margin-bottom: 1.1rem;
}

.landing-industrial .section-title {
  margin: .9rem 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 900;
}

.landing-industrial .section-description,
.landing-industrial p {
  color: var(--site-muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.hero-industrial {
  min-height: clamp(760px, 85svh, 960px);
  display: flex;
  align-items: center;
  isolation: isolate;
  padding: 6.5rem 0 5rem;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .24;
}

.hero-carousel .carousel-item,
.hero-carousel .hero-media {
  min-height: clamp(760px, 85svh, 960px);
}

.hero-carousel .hero-media {
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(.2) saturate(.96) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 14, 0.94) 0%, rgba(5, 8, 14, 0.70) 44%, rgba(5, 8, 14, 0.92) 100%),
    linear-gradient(180deg, rgba(15, 92, 255, 0.14), transparent 30%);
}

.ambient-grid,
.ambient-orb {
  position: absolute;
  pointer-events: none;
}

.ambient-grid {
  inset: 0;
  z-index: -1;
  opacity: .7;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .48), transparent 90%);
}

.ambient-orb {
  border-radius: 50%;
  filter: blur(20px);
  opacity: .7;
  animation: floatAmbient 12s ease-in-out infinite;
}

.ambient-orb-one {
  top: 4%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(79, 132, 255, 0.26), rgba(79, 132, 255, 0.04) 68%, transparent 80%);
}

.ambient-orb-two {
  bottom: 4%;
  left: -6%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(170, 184, 206, 0.18), rgba(170, 184, 206, 0.03) 68%, transparent 80%);
  animation-delay: -3s;
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.05em;
  color: var(--site-text);
}

.hero-title .split-word {
  color: var(--site-text);
}

.hero-copy {
  max-width: 700px;
  margin: 1.3rem 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 1.9rem;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.25rem;
}

.hero-chip {
  padding: .58rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--site-border);
  color: var(--site-text);
  font-size: .86rem;
  font-weight: 700;
}

.btn-industrial,
.btn-industrial-secondary {
  padding: .95rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
}

.btn-industrial {
  border: none;
  background: linear-gradient(135deg, var(--site-accent), var(--site-accent-2));
  box-shadow: 0 22px 50px rgba(37, 92, 255, 0.22);
}

.btn-industrial:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
}

.btn-industrial-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.btn-industrial-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--site-border-strong);
}

.point-card,
.content-panel,
.service-card,
.process-step,
.cta-panel,
.partner-logo {
  border: 1px solid var(--site-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--site-surface);
  border-radius: 1.5rem;
  box-shadow: var(--site-shadow);
  backdrop-filter: blur(16px);
}

.point-card {
  height: 100%;
  padding: 1.15rem 1rem;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.point-card:hover,
.service-card:hover,
.process-step:hover,
.partner-logo:hover {
  transform: translateY(-5px);
  border-color: var(--site-border-strong);
}

.point-card strong,
.highlight-item strong {
  display: block;
  color: var(--site-text);
  margin-bottom: .35rem;
  font-size: 1.05rem;
}

.point-card span,
.highlight-item p {
  color: var(--site-muted);
  font-size: .95rem;
  line-height: 1.55;
}

.robot-stage {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-glow {
  position: absolute;
  width: 82%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.22), rgba(95, 140, 255, 0.10) 46%, transparent 72%);
  filter: blur(14px);
}

.robot-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: pulseRing 8s linear infinite;
}

.robot-ring-one {
  width: 76%;
  aspect-ratio: 1 / 1;
}

.robot-ring-two {
  width: 92%;
  aspect-ratio: 1 / 1;
  animation-delay: -4s;
}

.hero-robot {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  max-height: 700px;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.48));
  animation: robotHover 5.6s ease-in-out infinite;
}

.floating-tag {
  position: absolute;
  z-index: 3;
  padding: .82rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 18, 0.82);
  box-shadow: var(--site-shadow);
  color: var(--site-text);
  font-size: .84rem;
  font-weight: 800;
  animation: floatTag 6s ease-in-out infinite;
}

.tag-one { top: 12%; right: 0; }
.tag-two { bottom: 24%; left: -3%; animation-delay: -2s; }
.tag-three { bottom: 8%; right: 6%; animation-delay: -3.2s; }

.content-panel {
  position: relative;
  height: 100%;
  padding: 2rem;
}

.highlight-panel {
  background:
    linear-gradient(180deg, rgba(95, 140, 255, 0.12), rgba(10, 15, 23, 0.96)),
    rgba(12, 18, 28, 0.94);
}

.highlight-item + .highlight-item {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 2.8rem;
}

.service-grid {
  margin-top: .4rem;
}

.service-card {
  height: 100%;
  padding: 1.5rem;
  transition: transform .22s ease, border-color .22s ease;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--site-accent), #6f86b8);
}

.service-card h3,
.process-step h3 {
  color: var(--site-text);
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: .8rem;
}

.service-actions {
  margin-top: 2.1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  padding: 1.25rem;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--site-text);
  font-weight: 900;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 61, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--site-surface);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 120px;
  padding: 1.2rem 1.4rem;
  text-decoration: none;
}

.partner-logo img {
  max-width: 180px;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(.08) contrast(1.02);
}

.site-footer {
  position: relative;
  margin-top: 2rem;
  padding: 2rem 0 2.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 10, 18, 0.72);
  backdrop-filter: blur(18px);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 1rem;
  align-items: center;
}

.footer-brand strong {
  display: block;
  color: var(--site-text);
  font-size: 1.05rem;
}

.footer-brand span {
  display: block;
  margin-top: .35rem;
  color: var(--site-muted);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  color: var(--site-muted);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--site-border);
  color: var(--site-text);
  background: rgba(255, 255, 255, 0.04);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--site-border-strong);
  background: rgba(255, 255, 255, 0.08);
}

.scroll-cue,
.degradado {
  display: none;
}

@keyframes robotHover {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes floatTag {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseRing {
  0% { transform: scale(.98); opacity: .35; }
  50% { opacity: .65; }
  100% { transform: scale(1.05); opacity: .35; }
}

@keyframes floatAmbient {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -14px, 0) scale(1.05); }
}

@media (max-width: 1199.98px) {
  .site-nav-actions {
    margin-left: 0;
    padding-top: 1rem;
  }

  .site-nav-links {
    margin-top: 1rem;
  }

  .hero-industrial {
    padding-top: 5rem;
  }

  .robot-stage {
    min-height: 540px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .site-brand-copy {
    display: none;
  }

  .site-header {
    padding: .7rem 0;
  }

  .landing-industrial .section-shell {
    padding: 4.2rem 0;
  }

  .hero-industrial {
    min-height: auto;
    padding: 4.8rem 0 4rem;
  }

  .hero-carousel .carousel-item,
  .hero-carousel .hero-media {
    min-height: 100%;
  }

  .robot-stage {
    min-height: 420px;
  }

  .floating-tag {
    font-size: .74rem;
  }

  .tag-two {
    left: 0;
  }

  .partners-logos {
    gap: .8rem;
  }

  .partner-logo {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* White / Tesla-like override layer */
body.site-body {
  color: #111827;
  background:
    radial-gradient(circle at 20% 12%, rgba(37, 92, 255, 0.08), transparent 25%),
    radial-gradient(circle at 78% 0%, rgba(148, 163, 184, 0.10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%) !important;
}

body.site-body::before {
  opacity: .14;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
}

.site-header {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
}

.site-brand,
.site-nav-links .nav-link,
.nav-contact-pill,
.btn-navicon {
  color: #111827 !important;
}

.site-nav-links .nav-link {
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .82rem;
}

.site-nav-links .nav-link::after {
  background: #111827;
}

.nav-contact-pill,
.btn-navicon,
.btn-site-cta,
.btn-industrial,
.btn-industrial-secondary {
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  box-shadow: none !important;
}

.nav-contact-pill,
.btn-navicon,
.btn-industrial-secondary {
  background: #d9dee7 !important;
  border: 1px solid #c4ccd8 !important;
  color: #111827 !important;
}

.btn-site-cta,
.btn-industrial {
  background: #d9dee7 !important;
  border: 1px solid #c4ccd8 !important;
  color: #111827 !important;
}

.nav-contact-pill:hover,
.btn-navicon:hover,
.btn-industrial-secondary:hover,
.btn-site-cta:hover,
.btn-industrial:hover {
  background: #2f6cff !important;
  border-color: #2f6cff !important;
  color: #ffffff !important;
}

.site-toggler {
  border: 1px solid #b7c0cc !important;
  border-radius: 0 !important;
  background: #cfd6df !important;
  padding: .55rem .7rem !important;
  color: #eaeaea !important;
  box-shadow: none !important;
  min-width: 52px;
  min-height: 44px;
}

.site-toggler:focus {
  box-shadow: 0 0 0 .15rem rgba(127, 141, 160, .18) !important;
}

.site-toggler:hover,
.site-toggler:active,
.site-toggler[aria-expanded="true"] {
  background: #bfc7d3 !important;
  border-color: #aeb8c6 !important;
  color: #ffffff !important;
}

.site-toggler .navbar-toggler-icon {
  width: 1.1em;
  height: 1.1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%2817,24,39,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.hero-industrial {
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(244,247,251,.92)) !important;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(245,248,253,0.88) 48%, rgba(255,255,255,0.94) 100%),
    linear-gradient(180deg, rgba(37, 92, 255, 0.04), transparent 28%) !important;
}

.hero-title,
.section-title,
.services-title,
.service-card h3,
.process-step h3,
.point-card strong,
.highlight-item strong,
.service-tile-body h2 {
  color: #111827 !important;
}

.hero-title {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-title .split-word {
  color: #0b1220 !important;
}

.hero-copy,
.section-description,
.landing-industrial p,
.services-lead,
.service-tile-body p {
  color: #4a566a !important;
}

.hero-actions .btn-industrial-secondary,
.hero-chip,
.point-card span {
  color: #0f1728 !important;
}

.hero-chip {
  background: #f7f9fc !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
}

.btn-industrial-secondary {
  color: #0f1728 !important;
}

.hero-copy {
  max-width: 720px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.section-kicker,
.hero-eyebrow {
  color: #091537 !important;
  background: rgba(29, 78, 216, 0.08) !important;
  border: 1px solid rgba(29, 78, 216, 0.14) !important;
}

.point-card,
.content-panel,
.service-card,
.process-step,
.cta-panel,
.partner-logo,
.service-tile,
.services-empty {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  border-radius: 1rem !important;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08) !important;
}

.floating-tag {
  background: rgba(255,255,255,.9) !important;
  color: #111827 !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
}

.site-footer {
  background: rgba(255, 255, 255, 0.94) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.social-links a {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
}

.services-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%) !important;
}

.service-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.service-card-wide {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
  background:
    linear-gradient(135deg, #ffffff 0%, #f6f9fd 100%) !important;
}

.service-card-wide::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 34%;
  background: linear-gradient(135deg, rgba(37, 92, 255, 0.12), rgba(37, 92, 255, 0.03));
}

.service-card-body {
  position: relative;
  z-index: 1;
  padding: 2rem 2.25rem 2rem 2rem;
  max-width: 720px;
}

.service-card-wide h3 {
  margin-bottom: .75rem;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.service-card-wide p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.03rem;
  line-height: 1.75;
}

.services-hero {
  padding: 4.25rem 0 2.5rem;
}

.services-grid-section {
  padding: 0 0 4.5rem;
}

.service-tile-media {
  aspect-ratio: 16 / 10;
  background: #eef2f7;
}

.service-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Final interaction layer */
.service-card:hover .service-hover-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.service-card-body .service-hover-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}

html[data-bs-theme="light"] .btn,
html[data-bs-theme="light"] .btn-primary,
html[data-bs-theme="light"] .btn-outline-light,
html[data-bs-theme="light"] .btn-outline-primary {
  border-radius: 0 !important;
}

html[data-bs-theme="dark"] body.site-body {
  color: #e5ecf7 !important;
  background:
    radial-gradient(circle at 20% 12%, rgba(79, 132, 255, 0.16), transparent 25%),
    radial-gradient(circle at 78% 0%, rgba(148, 163, 184, 0.10), transparent 22%),
    linear-gradient(180deg, #0a0f17 0%, #05070b 100%) !important;
}

html[data-bs-theme="dark"] body.site-body::before {
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

html[data-bs-theme="dark"] .site-header,
html[data-bs-theme="dark"] .site-header.is-scrolled {
  background: rgba(6, 10, 18, 0.96) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

html[data-bs-theme="dark"] .site-brand,
html[data-bs-theme="dark"] .site-nav-links .nav-link,
html[data-bs-theme="dark"] .nav-contact-pill,
html[data-bs-theme="dark"] .btn-navicon {
  color: #f3f7ff !important;
}

html[data-bs-theme="dark"] .site-nav-links .nav-link::after {
  background: #f3f7ff;
}

html[data-bs-theme="dark"] .nav-contact-pill,
html[data-bs-theme="dark"] .btn-navicon,
html[data-bs-theme="dark"] .btn-industrial-secondary,
html[data-bs-theme="dark"] .btn-site-cta,
html[data-bs-theme="dark"] .btn-industrial {
  background: #111827 !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: #f3f7ff !important;
}

html[data-bs-theme="dark"] .btn-site-cta:hover,
html[data-bs-theme="dark"] .btn-industrial:hover,
html[data-bs-theme="dark"] .nav-contact-pill:hover,
html[data-bs-theme="dark"] .btn-navicon:hover,
html[data-bs-theme="dark"] .btn-industrial-secondary:hover {
  background: #2f6cff !important;
  border-color: #2f6cff !important;
  color: #ffffff !important;
}

html[data-bs-theme="dark"] .hero-industrial {
  background: linear-gradient(180deg, rgba(12, 16, 24, 0.98), rgba(9, 13, 20, 0.95)) !important;
}

html[data-bs-theme="dark"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 14, 0.95) 0%, rgba(5, 8, 14, 0.72) 48%, rgba(5, 8, 14, 0.90) 100%),
    linear-gradient(180deg, rgba(79, 132, 255, 0.10), transparent 28%) !important;
}

html[data-bs-theme="dark"] .hero-title,
html[data-bs-theme="dark"] .section-title,
html[data-bs-theme="dark"] .services-title,
html[data-bs-theme="dark"] .service-card h3,
html[data-bs-theme="dark"] .process-step h3,
html[data-bs-theme="dark"] .point-card strong,
html[data-bs-theme="dark"] .highlight-item strong,
html[data-bs-theme="dark"] .service-tile-body h2 {
  color: #f3f7ff !important;
}

html[data-bs-theme="dark"] .hero-copy,
html[data-bs-theme="dark"] .section-description,
html[data-bs-theme="dark"] .landing-industrial p,
html[data-bs-theme="dark"] .services-lead,
html[data-bs-theme="dark"] .service-tile-body p {
  color: #b8c3d6 !important;
}

html[data-bs-theme="dark"] .point-card,
html[data-bs-theme="dark"] .content-panel,
html[data-bs-theme="dark"] .service-card,
html[data-bs-theme="dark"] .process-step,
html[data-bs-theme="dark"] .cta-panel,
html[data-bs-theme="dark"] .partner-logo,
html[data-bs-theme="dark"] .service-tile,
html[data-bs-theme="dark"] .services-empty {
  background: rgba(11, 17, 26, 0.94) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22) !important;
}

html[data-bs-theme="dark"] .site-footer {
  background: rgba(6, 10, 18, 0.94) !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

html[data-bs-theme="dark"] .social-links a {
  background: #111827 !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  color: #f3f7ff !important;
}

html[data-bs-theme="light"] body.site-body {
  color: #111827 !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%) !important;
}

html[data-bs-theme="light"] .site-header,
html[data-bs-theme="light"] .site-footer,
html[data-bs-theme="light"] .point-card,
html[data-bs-theme="light"] .content-panel,
html[data-bs-theme="light"] .service-card,
html[data-bs-theme="light"] .process-step,
html[data-bs-theme="light"] .cta-panel,
html[data-bs-theme="light"] .partner-logo,
html[data-bs-theme="light"] .service-tile,
html[data-bs-theme="light"] .services-empty {
  background: #ffffff !important;
}

/* Clean overlay override */
.hero-industrial,
.hero-overlay,
.ambient-grid,
.ambient-orb,
.robot-glow {
  background: transparent !important;
}

.ambient-grid {
  opacity: .06 !important;
}

.ambient-orb-one,
.ambient-orb-two {
  background: transparent !important;
}

.robot-glow {
  filter: none !important;
}

.hero-chip,
.floating-tag,
.point-card,
.content-panel,
.service-card,
.process-step,
.cta-panel,
.partner-logo,
.service-tile,
.services-empty {
  background: #ffffff !important;
}

html[data-bs-theme="dark"] .hero-chip,
html[data-bs-theme="dark"] .floating-tag,
html[data-bs-theme="dark"] .point-card,
html[data-bs-theme="dark"] .content-panel,
html[data-bs-theme="dark"] .service-card,
html[data-bs-theme="dark"] .process-step,
html[data-bs-theme="dark"] .cta-panel,
html[data-bs-theme="dark"] .partner-logo,
html[data-bs-theme="dark"] .service-tile,
html[data-bs-theme="dark"] .services-empty {
  background: rgba(11, 17, 26, 0.94) !important;
}

/* Process cards */
.process-stack {
  display: grid;
  gap: 1rem;
}

.process-step-wide {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  width: 100%;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  background: linear-gradient(135deg, #ffffff 0%, #f3f6fb 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  border-radius: 0 !important;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.50), 0 8px 24px rgba(15, 23, 42, 0.08) !important;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.process-step-wide::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 28%;
  background: linear-gradient(135deg, rgba(37, 92, 255, 0.08), rgba(37, 92, 255, 0.02));
  opacity: .35;
}

.process-step-body {
  position: relative;
  z-index: 1;
  padding: 2.15rem 2.5rem 2.15rem 2.35rem;
}

.process-step-wide h3 {
  margin-bottom: .7rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -.03em;
}

.process-step-wide p {
  margin: 0;
  max-width: 64ch;
}

.process-step-wide:hover {
  transform: translateX(12px);
  background: #2f6cff !important;
  border-color: #2f6cff !important;
  box-shadow: 0 16px 34px rgba(47, 108, 255, 0.20) !important;
}

.process-step-wide:hover h3,
.process-step-wide:hover p {
  color: #ffffff !important;
}

.process-step-wide:hover::before {
  opacity: 0;
}

/* Menu nav parallelogram */
.site-nav-links {
  gap: .7rem;
}

.site-nav-links .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 3rem;
  padding: .68rem 1.2rem;
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  background: #2b313a !important;
  border: 1px solid #1d2229 !important;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
  overflow: hidden;
}

.site-nav-links .nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47, 108, 255, 0.0), rgba(47, 108, 255, 0.0));
  transition: opacity .22s ease;
  opacity: 0;
}

.site-nav-links .nav-link:hover,
.site-nav-links .nav-link:focus,
.site-nav-links .nav-link.active {
  color: #ffffff !important;
  background: #2f6cff !important;
  border-color: #2f6cff !important;
  transform: translateX(6px);
  box-shadow: 0 12px 28px rgba(47, 108, 255, 0.22);
}

.site-nav-links .nav-link:hover::after,
.site-nav-links .nav-link:focus::after,
.site-nav-links .nav-link.active::after {
  opacity: 1;
}

@media (max-width: 1199.98px) {
  .site-nav-links .nav-link {
    width: 100%;
    min-width: 100%;
  }
}

/* Services parallelogram */
.service-stack {
  display: grid;
  gap: 1rem;
}

.service-card-wide {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 185px;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  background: linear-gradient(135deg, #2b313a 0%, #1f242b 100%) !important;
  border: 1px solid #171b21 !important;
  border-radius: 0 !important;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.40), 0 8px 24px rgba(15, 23, 42, 0.08) !important;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-card-wide::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 28%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
  opacity: .55;
}

.service-card-body {
  position: relative;
  z-index: 1;
  padding: 2.15rem 2.5rem 2.15rem 2.35rem;
}

.service-card-wide h3,
.service-card-wide p {
  color: #ffffff !important;
}

.service-card-wide h3 {
  margin-bottom: .7rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -.03em;
}

.service-card-wide p {
  margin: 0;
  max-width: 64ch;
}

.service-card-wide:hover {
  transform: translateX(12px);
  background: #2f6cff !important;
  border-color: #2f6cff !important;
  box-shadow: 0 16px 34px rgba(47, 108, 255, 0.20) !important;
}

.service-card-wide:hover::before {
  opacity: 0;
}

.service-card-wide:hover h3,
.service-card-wide:hover p {
  color: #ffffff !important;
}

/* 2026 redesign layer */
:root {
  --brand-blue: #2d67c7;
  --brand-blue-deep: #1f4f9d;
  --brand-gray-950: #10151d;
  --brand-gray-900: #1b2430;
  --brand-gray-700: #4b5563;
  --brand-gray-300: #d6dde6;
  --brand-gray-200: #e7edf4;
  --brand-gray-100: #f5f7fa;
}

body.site-body {
  background: #ffffff !important;
  color: var(--brand-gray-950) !important;
}

.landing-redesign .site-page-shell {
  padding-top: 0 !important;
}

.landing-redesign .tesla-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding: 3.75rem 0 2.5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.12)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.76) 42%, rgba(255, 255, 255, 0.54) 100%);
}

.tesla-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(135deg, #dbe6f5, #f8fafc);
}

.tesla-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.02) brightness(.66);
}

.tesla-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 40%, rgba(255, 255, 255, 0.44) 100%),
    linear-gradient(180deg, rgba(16, 21, 29, 0.08), rgba(16, 21, 29, 0.16));
}

.tesla-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 2.5rem;
  align-items: end;
}

.tesla-kicker,
.landing-redesign .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: .55rem 1rem;
  margin-bottom: 1.35rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(45, 103, 199, 0.22);
  color: var(--brand-blue-deep);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tesla-title {
  max-width: 10.5ch;
  margin: 0;
  color: var(--brand-gray-950);
  font-size: clamp(3.25rem, 8vw, 6.8rem);
  line-height: .96;
  letter-spacing: -.07em;
  font-weight: 800;
}

.tesla-lead {
  max-width: 58ch;
  margin: 1.75rem 0 0;
  color: var(--brand-gray-700);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.8;
}

.tesla-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.tesla-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.tesla-meta-item {
  padding: 1.1rem 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 21, 29, 0.08);
  backdrop-filter: blur(8px);
}

.tesla-meta-item strong,
.tesla-band-grid strong {
  display: block;
  color: var(--brand-gray-950);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tesla-meta-item span,
.tesla-band-grid span {
  display: block;
  margin-top: .35rem;
  color: var(--brand-gray-700);
  line-height: 1.6;
}

.tesla-hero-visual {
  display: grid;
  gap: 1rem;
}

.tesla-visual-frame {
  position: relative;
  min-height: 690px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 246, 250, 0.84));
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 30px 80px rgba(16, 21, 29, 0.12);
  backdrop-filter: blur(8px);
}

.tesla-visual-topline,
.tesla-visual-notes {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.tesla-visual-topline span {
  color: var(--brand-gray-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tesla-visual-stage {
  position: relative;
  min-height: 560px;
  margin: 1rem 0;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(45, 103, 199, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(16, 21, 29, 0.04), rgba(16, 21, 29, 0));
}

.tesla-visual-stage::after {
  content: "";
  position: absolute;
  inset: auto 8% 2.25rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(27, 36, 48, 0.44), transparent);
}

.tesla-robot {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(16, 21, 29, 0.16));
  animation: robotFloat 6.5s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

@keyframes robotFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.tesla-visual-notes div {
  flex: 1;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 21, 29, 0.12);
}

.tesla-visual-notes strong {
  display: block;
  color: var(--brand-gray-950);
  font-size: .95rem;
}

.tesla-visual-notes span {
  display: block;
  margin-top: .25rem;
  color: var(--brand-gray-700);
}

.tesla-media-strip .hero-media-frame {
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(16, 21, 29, 0.08);
}

.tesla-media-strip .hero-media {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.tesla-band {
  padding: 0 0 1.5rem;
  background: #ffffff;
}

.tesla-band-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 1px;
  background: rgba(16, 21, 29, 0.12);
}

.tesla-band-intro,
.tesla-stat {
  min-height: 150px;
  padding: 1.75rem;
  background: #f6f8fb;
}

.tesla-band-label {
  display: inline-block;
  margin-bottom: .9rem;
  color: var(--brand-blue-deep);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tesla-band-intro p {
  max-width: 34ch;
  margin: 0;
  color: var(--brand-gray-700);
  line-height: 1.8;
}

.tesla-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.tesla-section:nth-of-type(even) {
  background: #f7f9fc;
}

.tesla-story-grid,
.tesla-process-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: start;
}

.tesla-story-text p,
.landing-redesign .section-description,
.tesla-service-card p,
.tesla-process-card p,
.tesla-cta-panel p {
  color: var(--brand-gray-700) !important;
  font-size: 1.02rem;
  line-height: 1.85;
}

.tesla-heading {
  margin-bottom: 2.25rem;
}

.landing-redesign .section-title {
  max-width: 16ch;
  margin: 0;
  color: var(--brand-gray-950) !important;
  font-size: clamp(2rem, 4.5vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.tesla-service-rail,
.tesla-process-list {
  display: grid;
  gap: 1rem;
}

.tesla-service-card,
.tesla-process-card {
  position: relative;
  min-height: 200px;
  padding: 1.65rem 1.9rem 1.85rem 1.9rem;
  overflow: hidden;
  background: var(--brand-gray-900);
  border: 1px solid rgba(16, 21, 29, 0.7);
  border-radius: 0;
  clip-path: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, filter .25s ease;
}

.tesla-process-card {
  background: linear-gradient(135deg, #ffffff, #edf2f8);
  border-color: rgba(16, 21, 29, 0.08);
  box-shadow: 0 18px 35px rgba(16, 21, 29, 0.08);
}

.tesla-service-card::before,
.tesla-process-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent 0%, rgba(110, 161, 255, 0.80) 50%, transparent 100%);
  opacity: .65;
  transition: opacity .25s ease, box-shadow .25s ease, filter .25s ease;
}

.tesla-service-card::before {
  left: 0;
}

.tesla-process-card::before {
  left: 0;
}

.tesla-service-card::after,
.tesla-process-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent 0%, rgba(110, 161, 255, 0.80) 50%, transparent 100%);
  opacity: .55;
  transition: opacity .25s ease, box-shadow .25s ease, filter .25s ease;
}

.tesla-service-card:hover,
.tesla-process-card:hover {
  transform: translateY(-4px);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 24px 44px rgba(45, 103, 199, 0.22);
  filter: saturate(1.05);
}

.tesla-service-tag {
  display: inline-block;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tesla-service-card h3,
.tesla-service-card p,
.tesla-process-card h3,
.tesla-process-card p {
  position: relative;
  z-index: 1;
  transition: color .2s ease;
  max-width: 62ch;
  line-height: 1.8;
}

.tesla-service-card h3,
.tesla-service-card p,
.tesla-inline-link {
  color: #ffffff !important;
}

.tesla-process-card h3 {
  color: var(--brand-gray-950);
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
  letter-spacing: -.04em;
}

.tesla-process-card p {
  margin-bottom: 0;
}

.tesla-service-card p {
  margin-bottom: 0;
}

.tesla-process-card h3,
.tesla-service-card h3 {
  margin-bottom: .75rem;
}

.tesla-process-card:hover h3,
.tesla-process-card:hover p,
.tesla-process-card:hover .tesla-inline-link,
.tesla-service-card:hover .tesla-service-tag {
  color: #ffffff !important;
}

.tesla-service-card:hover::before,
.tesla-service-card:hover::after,
.tesla-process-card:hover::before,
.tesla-process-card:hover::after {
  opacity: 1;
  box-shadow: 0 0 18px rgba(110, 161, 255, 0.45);
  filter: brightness(1.2);
}

.tesla-inline-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 1.5rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}

.tesla-service-card h3,
.tesla-process-card h3 {
  font-weight: 700 !important;
  letter-spacing: -.03em;
}

.tesla-service-card p,
.tesla-process-card p {
  font-size: .98rem;
}

.tesla-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: 2rem;
  background: linear-gradient(135deg, #f5f8fc, #e8eef7) !important;
  border: 1px solid rgba(16, 21, 29, 0.08);
}

.tesla-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.tesla-partner-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tesla-partner-card {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #f6f8fb;
  border: 1px solid rgba(16, 21, 29, 0.08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.tesla-partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 103, 199, 0.34);
  box-shadow: 0 18px 36px rgba(16, 21, 29, 0.08);
}

.tesla-partner-card img {
  max-width: 220px;
  max-height: 90px;
  object-fit: contain;
}

.site-header {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 21, 29, 0.08) !important;
}

.site-brand-logo {
  max-height: 68px;
  width: auto;
}

.site-nav-links .nav-link,
.btn-site-cta,
.btn-industrial-secondary,
.nav-contact-pill,
.btn-navicon,
.site-toggler {
  border-radius: 0 !important;
}

.site-nav-links .nav-link {
  min-width: 126px;
  background: var(--brand-gray-900) !important;
  border-color: var(--brand-gray-900) !important;
  white-space: nowrap;
}

.site-nav-links .nav-link:hover,
.site-nav-links .nav-link:focus,
.site-nav-links .nav-link.active,
.btn-site-cta:hover,
.btn-industrial-secondary:hover,
.nav-contact-pill:hover,
.btn-navicon:hover,
.site-toggler:hover {
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
  color: #ffffff !important;
}

.btn-site-cta,
.btn-industrial-secondary,
.nav-contact-pill,
.btn-navicon,
.site-toggler {
  min-height: 48px;
  background: #cfd7e3 !important;
  border: 1px solid #b7c1ce !important;
  color: var(--brand-gray-950) !important;
  box-shadow: none !important;
}

.btn-site-cta {
  background: var(--brand-gray-900) !important;
  border-color: var(--brand-gray-900) !important;
  color: #ffffff !important;
}

.site-toggler {
  width: 68px;
  height: 56px;
  padding: 0;
}

.site-toggler .navbar-toggler-icon {
  filter: grayscale(1) brightness(.2);
}

@media (max-width: 1199.98px) {
  .tesla-hero-grid,
  .tesla-story-grid,
  .tesla-process-shell,
  .tesla-cta-panel,
  .tesla-band-grid {
    grid-template-columns: 1fr;
  }

  .tesla-visual-frame {
    min-height: auto;
  }

  .tesla-visual-stage {
    min-height: 420px;
  }

  .tesla-meta {
    grid-template-columns: 1fr;
  }

  .site-nav-links .nav-link {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .landing-redesign .tesla-hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .tesla-title {
    max-width: none;
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .tesla-visual-stage {
    min-height: 320px;
  }

  .tesla-band-intro,
  .tesla-stat,
  .tesla-service-card,
  .tesla-process-card,
  .tesla-cta-panel,
  .tesla-partner-card {
    clip-path: none;
  }

  .tesla-partner-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tesla-robot {
    animation: none !important;
    transform: none !important;
  }
}

/* Tesla-style typography override */
:root {
  --site-font: "Gotham", "Gotham SSm", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html,
body,
button,
input,
select,
textarea,
.site-header,
.site-nav-links,
.btn,
.tesla-title,
.tesla-lead,
.tesla-kicker,
.section-kicker,
.section-title,
.section-description,
.tesla-meta-item,
.tesla-service-card,
.tesla-process-card,
.tesla-band-grid,
.tesla-cta-panel,
.tesla-partner-card {
  font-family: var(--site-font) !important;
}

.tesla-title,
.landing-redesign .section-title,
.tesla-service-card h3,
.tesla-process-card h3,
.tesla-meta-item strong,
.tesla-band-grid strong,
.tesla-service-tag,
.tesla-inline-link,
.site-nav-links .nav-link,
.btn-site-cta,
.btn-industrial-secondary,
.nav-contact-pill,
.btn-navicon,
.site-toggler {
  font-weight: 600 !important;
  letter-spacing: -.02em;
}

.tesla-title {
  line-height: .92 !important;
}

.landing-redesign .section-title {
  line-height: 1.02 !important;
}

.site-nav-links .nav-link {
  letter-spacing: .08em !important;
}

/* Final Tesla-like override */
.landing-redesign .tesla-hero-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
}

.landing-redesign .tesla-hero-copy {
  padding-right: 1rem;
}

.landing-redesign .tesla-title {
  width: 100%;
  max-width: 14.5ch;
  font-size: clamp(2.85rem, 4.95vw, 5.15rem);
  line-height: .92;
  text-wrap: balance;
}

.landing-redesign .tesla-hero-visual {
  align-self: stretch;
}

.landing-redesign .tesla-visual-frame {
  min-height: 640px;
}

.site-nav-links .nav-link,
.site-toggler {
  position: relative;
  overflow: hidden;
  border-radius: 0 !important;
  background: #fbfbfb !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #045e9a !important;
  text-transform: uppercase;
}

.site-nav-links .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 3rem;
  padding: .74rem 1.18rem;
  clip-path: none !important;
  box-shadow: none !important;
}

.site-nav-links .nav-link::before,
.site-nav-links .nav-link::after,
.site-toggler::before,
.site-toggler::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 100%;
  opacity: .55;
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

.site-nav-links .nav-link::before,
.site-toggler::before {
  left: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(110, 161, 255, .22) 50%, transparent 100%);
}

.site-nav-links .nav-link::after,
.site-toggler::after {
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(110, 161, 255, .22) 50%, transparent 100%);
}

.site-nav-links .nav-link:hover,
.site-nav-links .nav-link:focus,
.site-nav-links .nav-link.active,
.site-toggler:hover,
.site-toggler:focus {
  background: #2f6cff !important;
  border-color: #2f6cff !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.site-nav-links .nav-link:hover::before,
.site-nav-links .nav-link:hover::after,
.site-nav-links .nav-link:focus::before,
.site-nav-links .nav-link:focus::after,
.site-nav-links .nav-link.active::before,
.site-nav-links .nav-link.active::after,
.site-toggler:hover::before,
.site-toggler:hover::after,
.site-toggler:focus::before,
.site-toggler:focus::after {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(110, 161, 255, .55));
}

.site-nav-links .nav-link::after {
  transform: none !important;
}

.site-nav-links .nav-link:hover::after,
.site-nav-links .nav-link:focus::after,
.site-nav-links .nav-link.active::after {
  transform: none !important;
}

.site-toggler {
  width: 68px;
  height: 54px;
  padding: 0;
}

.site-toggler .navbar-toggler-icon {
  filter: grayscale(0) brightness(1.85) contrast(1.1);
}

.site-brand-logo {
  max-height: 64px;
}

/* Services visibility override */
.services-page .service-stack {
  display: grid;
  gap: 1.25rem;
}

.services-page .service-card-wide,
.services-page .service-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100%;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08) !important;
  clip-path: none !important;
  overflow: hidden;
}

.services-page .service-tile-media {
  flex: 0 0 34%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: linear-gradient(135deg, #eef3f9, #dce7f5);
  overflow: hidden;
}

.services-page .service-media,
.services-page .service-media-empty {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.services-page .service-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 600;
  letter-spacing: .04em;
}

.services-page .service-card-body {
  flex: 1 1 auto;
  padding: 1.45rem 1.6rem;
  color: #0f172a !important;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1b4ed8 #e6edf7;
}

.services-page .service-card-body h3 {
  margin: 0 0 .7rem;
  color: #0f172a !important;
  font-size: 1.6rem;
  line-height: 1.12;
}

.services-page .service-card-body p {
  margin: 0;
  color: #334155 !important;
  line-height: 1.75;
}

.services-page .service-card-body::-webkit-scrollbar,
.portfolio-page .portfolio-card-body::-webkit-scrollbar {
  width: 8px;
}

.services-page .service-card-body::-webkit-scrollbar-track,
.portfolio-page .portfolio-card-body::-webkit-scrollbar-track {
  background: #e6edf7;
  border-radius: 999px;
}

.services-page .service-card-body::-webkit-scrollbar-thumb,
.portfolio-page .portfolio-card-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #9db7ff, #1b4ed8);
  border-radius: 999px;
}

.services-page .service-hover-btn {
  margin-top: 1.2rem;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  align-self: start;
}

.services-page .service-card-wide:hover,
.services-page .service-card:hover {
  transform: translateY(-4px);
}

/* Portfolio/blog/shop visibility override */
.portfolio-page .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.portfolio-page .portfolio-card,
.portfolio-page .service-card-wide {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.portfolio-page .portfolio-card {
  overflow: hidden;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08) !important;
}

.portfolio-page .portfolio-media-wrap,
.portfolio-page .portfolio-media-empty {
  aspect-ratio: 4 / 3;
  min-height: 280px;
  background: linear-gradient(135deg, #eef3f9, #dce7f5);
  overflow: hidden;
}

.portfolio-page .portfolio-media {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #ffffff;
  padding: 0;
}

.portfolio-page .portfolio-card-body {
  padding: 1.3rem 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1b4ed8 #e6edf7;
}

.portfolio-page .portfolio-card-body h5 {
  margin-bottom: .65rem;
  color: #0f172a !important;
}

.portfolio-page .portfolio-card-body p,
.portfolio-page .portfolio-card-body .fw-bold {
  color: #334155 !important;
}

.portfolio-page .portfolio-card-body h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

@media (max-width: 1199.98px) {
  .portfolio-page .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page .service-card-wide,
  .services-page .service-card {
    flex-direction: row;
  }

  .services-page .service-tile-media {
    flex-basis: 38%;
  }
}

@media (max-width: 767.98px) {
  .portfolio-page .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .services-page .service-card-wide,
  .services-page .service-card {
    flex-direction: column;
  }

  .services-page .service-tile-media,
  .services-page .service-media,
  .services-page .service-media-empty,
  .portfolio-page .portfolio-media-wrap,
  .portfolio-page .portfolio-media-empty,
  .portfolio-page .portfolio-media {
    min-height: 0;
  }

  .services-page .service-card-body,
  .portfolio-page .portfolio-card-body {
    max-height: none;
    overflow: visible;
  }
}

