.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}
html { scroll-behavior: smooth; }
.max-w-container { max-width: 1440px; }
.sticky-container { height: 300vh; }
.sticky-content { position: sticky; top: 0; min-height: 100vh; display: flex; align-items: center; }

/* Reveal animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; }

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }
.delay-5 { transition-delay: 0.65s; }

/* Automation hero */
.auto-hero {
  position: relative;
  min-height: calc(100vh - 7rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 165, 0, 0.07), transparent 42%),
    #0b0b0b;
}
.auto-hero__luma,
.auto-page-hero__luma {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.auto-hero__vignette,
.auto-page-hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 78% 68% at 50% 42%, transparent 26%, rgba(11, 11, 11, 0.55) 72%, rgba(11, 11, 11, 0.92) 100%);
}
.auto-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
}
.auto-hero__glow--a {
  width: min(46vw, 480px);
  height: min(46vw, 480px);
  top: -12%;
  right: 4%;
  background: rgba(255, 165, 0, 0.14);
  animation: autoHeroGlowDriftA 14s ease-in-out infinite;
}
.auto-hero__glow--b {
  width: min(34vw, 360px);
  height: min(34vw, 360px);
  bottom: -6%;
  left: -4%;
  background: rgba(133, 84, 0, 0.12);
  animation: autoHeroGlowDriftB 18s ease-in-out infinite;
}
@keyframes autoHeroGlowDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
  50% { transform: translate(-24px, 18px) scale(1.08); opacity: 1; }
}
@keyframes autoHeroGlowDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.65; }
  50% { transform: translate(20px, -16px) scale(1.06); opacity: 0.9; }
}
.auto-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,165,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,165,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  animation: gridDrift 28s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.auto-hero__orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.auto-hero__orb--a {
  width: 420px;
  height: 420px;
  background: rgba(255, 165, 0, 0.22);
  top: -8%;
  right: 5%;
  animation: floatOrb 9s ease-in-out infinite;
}
.auto-hero__orb--b {
  width: 320px;
  height: 320px;
  background: rgba(255, 184, 0, 0.12);
  bottom: 5%;
  left: -5%;
  animation: floatOrb 11s ease-in-out infinite reverse;
}
.auto-hero__content { position: relative; z-index: 2; }
.auto-hero__brand {
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.auto-hero__title {
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}
.auto-hero__sub {
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}
.auto-hero__cta {
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}
.auto-hero__stats {
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
}

.hover-lift {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.hover-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 165, 0, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.pulse-glow {
  animation: pulseGlow 3.2s ease-in-out infinite;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, 30px) scale(1.08); }
}
@keyframes gridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(64px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.35); }
  50% { box-shadow: 0 0 28px 4px rgba(255, 165, 0, 0.25); }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up, .fade-in, .fade-in-left, .fade-in-right, .scale-in,
  .auto-hero__brand, .auto-hero__title, .auto-hero__sub, .auto-hero__cta, .auto-hero__stats {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .auto-hero__grid, .auto-hero__orb, .auto-hero__glow, .pulse-glow { animation: none !important; }
  .hero-copy { opacity: 1 !important; transform: none !important; }
}

/* Services — shared premium visual system */
.services-premium main {
  background:
    radial-gradient(circle at 8% 9%, rgba(255, 165, 0, 0.07), transparent 24rem),
    radial-gradient(circle at 92% 38%, rgba(133, 84, 0, 0.045), transparent 28rem),
    #f9f9f7;
}
.services-premium main > section {
  position: relative;
  isolation: isolate;
}
.services-premium main > section:first-child {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: clamp(5rem, 9vw, 8rem) !important;
  padding-bottom: clamp(5rem, 9vw, 8rem) !important;
  background:
    radial-gradient(circle at 50% -15%, rgba(255, 183, 42, 0.34), transparent 39%),
    linear-gradient(145deg, #fffdf8 0%, #f9f9f7 54%, #f2ede5 100%) !important;
  border-bottom: 1px solid rgba(133, 84, 0, 0.12);
}
.services-premium main > section:first-child::before {
  content: '';
  position: absolute;
  width: min(72vw, 900px);
  aspect-ratio: 1;
  left: 50%;
  top: -130%;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 165, 0, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 165, 0, 0.025),
    0 0 0 140px rgba(255, 165, 0, 0.018);
  pointer-events: none;
  animation: serviceHaloDrift 14s ease-in-out infinite alternate;
}
.services-premium main > section:first-child::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image: linear-gradient(rgba(133, 84, 0, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(133, 84, 0, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 82%);
}
.services-premium main > section:first-child h1 {
  max-width: 1050px;
  font-size: clamp(2.75rem, 6vw, 5.6rem) !important;
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: #171817;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255,255,255,.9);
  animation: serviceHeroIn .75s cubic-bezier(.2,.72,.25,1) both;
}
.services-premium main > section:first-child p {
  position: relative;
  max-width: 760px;
  line-height: 1.75;
  animation: serviceHeroIn .75s .1s cubic-bezier(.2,.72,.25,1) both;
}
.services-premium main > section:first-child p:first-of-type {
  color: #855400;
  font-weight: 700;
}
.services-premium main > section:not(:first-child) {
  padding-top: clamp(4.5rem, 7vw, 7rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
}
.services-premium main > section.bg-surface-container {
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.22)),
    #efefec !important;
  border-top: 1px solid rgba(0,0,0,.045);
  border-bottom: 1px solid rgba(0,0,0,.045);
}
.services-premium main h2 {
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}
.services-premium main h2 + p,
.services-premium main h2 + div > p:first-child {
  line-height: 1.8;
}
.services-premium main :is(a, div)[class*="rounded-2xl"]:not(.nav-dropdown__menu),
.services-premium main :is(a, div)[class*="rounded-3xl"] {
  border-color: rgba(133, 84, 0, 0.13) !important;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(250,248,243,.88));
  box-shadow: 0 10px 35px -25px rgba(34, 25, 12, 0.38), inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .28s cubic-bezier(.2,.75,.25,1), box-shadow .28s ease, border-color .28s ease;
}
.services-premium main a[class*="rounded-2xl"]:hover,
.services-premium main a[class*="rounded-3xl"]:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 165, 0, 0.48) !important;
  box-shadow: 0 24px 48px -27px rgba(63, 42, 7, 0.42), 0 0 0 1px rgba(255,165,0,.06);
}
.services-premium main :is(a, div)[class*="rounded-2xl"] h3,
.services-premium main :is(a, div)[class*="rounded-3xl"] h3 {
  letter-spacing: -0.025em;
}
.services-premium main details {
  border: 1px solid rgba(133, 84, 0, 0.13) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.82) !important;
  box-shadow: 0 12px 32px -28px rgba(0,0,0,.42);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.services-premium main details[open] {
  border-color: rgba(255, 165, 0, 0.42) !important;
  box-shadow: 0 18px 40px -30px rgba(133,84,0,.48);
}
.services-premium main details summary {
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 650;
}
.services-premium main details > :not(summary) {
  padding-left: 1.35rem;
  padding-right: 1.35rem;
  padding-bottom: 1.25rem;
}
.services-premium main a.bg-primary-container,
.services-premium main a[class*="bg-primary-container"] {
  box-shadow: 0 12px 30px -14px rgba(133, 84, 0, 0.7);
  border: 1px solid rgba(104,64,0,.12);
}
.services-premium main > section:last-child {
  overflow: hidden;
  margin: 2rem clamp(1rem, 4vw, 4rem) 0;
  border-radius: 30px;
  color: #fff;
  box-shadow: 0 30px 70px -35px rgba(0,0,0,.5);
}
.services-premium main > section:last-child h2 {
  color: #fff;
}
.services-premium main > section:last-child p {
  color: rgba(255,255,255,.7) !important;
}
.services-premium .service-motion-section {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .68s ease, transform .68s cubic-bezier(.2,.72,.25,1);
}
.services-premium .service-motion-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.services-premium .service-motion-item {
  opacity: 0;
  transform: translateY(14px) scale(.992);
  transition: opacity .55s var(--service-delay, 0ms) ease, transform .55s var(--service-delay, 0ms) cubic-bezier(.2,.72,.25,1), box-shadow .28s ease, border-color .28s ease;
}
.services-premium .service-motion-section.is-visible .service-motion-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@keyframes serviceHeroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes serviceHaloDrift {
  from { transform: translateX(-50%) translateY(-8px) scale(.98); }
  to { transform: translateX(-50%) translateY(10px) scale(1.025); }
}
@keyframes serviceCtaGlow {
  from { opacity: .45; transform: scale(.88); }
  to { opacity: .8; transform: scale(1.08); }
}
@keyframes ctaBandGradientFlow {
  0%, 100% {
    background-position: 0% 42%, 100% 72%, 52% 8%;
    opacity: 0.88;
  }
  33% {
    background-position: 72% 18%, 28% 88%, 82% 48%;
    opacity: 1;
  }
  66% {
    background-position: 22% 88%, 86% 22%, 12% 58%;
    opacity: 0.92;
  }
}
@keyframes ctaBandOrbDrift {
  0%, 100% {
    opacity: 0.42;
    transform: translate(0, 0) scale(0.9);
  }
  50% {
    opacity: 0.78;
    transform: translate(-14px, -20px) scale(1.12);
  }
}
@keyframes ctaBandOrbDriftAlt {
  0%, 100% {
    opacity: 0.28;
    transform: translate(0, 0) scale(0.85);
  }
  50% {
    opacity: 0.55;
    transform: translate(18px, 12px) scale(1.08);
  }
}

/* Animated amber mesh — dark gradient CTA bands site-wide */
:is(
  .svc-cta-band,
  .auto-cta-band,
  .page-pro-cta-band,
  .careers-premium .careers-cta-premium,
  .services-premium main > section:last-child,
  .page-pro-panel--ink,
  .achievements-premium .ach-mission
) {
  position: relative;
  background: linear-gradient(135deg, #141414 0%, #1a1812 48%, #1c1812 100%) !important;
  isolation: isolate;
}
:is(
  .svc-cta-band,
  .auto-cta-band,
  .page-pro-cta-band,
  .careers-premium .careers-cta-premium,
  .services-premium main > section:last-child,
  .page-pro-panel--ink,
  .achievements-premium .ach-mission
)::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 62% 75% at 14% 42%, rgba(255, 165, 0, 0.28), transparent 58%),
    radial-gradient(ellipse 48% 58% at 92% 88%, rgba(255, 184, 0, 0.16), transparent 56%),
    radial-gradient(ellipse 38% 42% at 72% 18%, rgba(133, 84, 0, 0.12), transparent 52%);
  background-size: 200% 200%, 180% 180%, 160% 160%;
  animation: ctaBandGradientFlow 9s ease-in-out infinite;
}
:is(
  .svc-cta-band,
  .auto-cta-band,
  .page-pro-cta-band,
  .careers-premium .careers-cta-premium,
  .services-premium main > section:last-child
)::after {
  content: '';
  position: absolute;
  width: clamp(200px, 28vw, 280px);
  height: clamp(200px, 28vw, 280px);
  right: -80px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(255, 165, 0, 0.2);
  filter: blur(8px);
  animation: ctaBandOrbDrift 4.5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
.site-cta-band {
  margin: 2rem clamp(1rem, 4vw, 4rem) 0;
  border-radius: 30px;
  box-shadow: 0 30px 70px -35px rgba(0, 0, 0, 0.55);
}
@media (max-width: 767px) {
  .site-cta-band {
    margin-left: .75rem;
    margin-right: .75rem;
    border-radius: 22px;
  }
}
.page-pro-panel--ink,
.achievements-premium .ach-mission {
  position: relative;
  overflow: hidden;
}
.page-pro-panel--ink > *,
.achievements-premium .ach-mission > * {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  :is(
    .svc-cta-band,
    .auto-cta-band,
    .page-pro-cta-band,
    .careers-premium .careers-cta-premium,
    .services-premium main > section:last-child,
    .page-pro-panel--ink,
    .achievements-premium .ach-mission
  )::before,
  :is(
    .svc-cta-band,
    .auto-cta-band,
    .page-pro-cta-band,
    .careers-premium .careers-cta-premium,
    .services-premium main > section:last-child
  )::after {
    animation: none !important;
  }
}
@media (max-width: 767px) {
  .services-premium main > section:first-child {
    min-height: 360px;
  }
  .services-premium main > section:not(:first-child) {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .services-premium main > section:last-child {
    margin-left: .75rem;
    margin-right: .75rem;
    border-radius: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .services-premium main a[class*="rounded"] {
    transition: none;
  }
  .services-premium main > section:first-child:not(.svc-hero)::before,
  .services-premium main > section:first-child:not(.svc-hero) h1,
  .services-premium main > section:first-child:not(.svc-hero) p,
  .services-premium main > section:last-child:not(.svc-cta-band)::after,
  .svc-hero__mesh,
  .svc-hero__grid,
  .svc-hero__aurora,
  .svc-hero__shimmer,
  .svc-hero__ring,
  .svc-hero__orb,
  .svc-hero__spark,
  .svc-hero__brand,
  .svc-hero__title,
  .svc-hero__sub,
  .svc-crumb {
    animation: none !important;
  }
  .services-premium .service-motion-section,
  .services-premium .service-motion-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Service components (commercial-grade) ── */
.svc-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(5rem, 9vw, 8rem) !important;
  padding-bottom: clamp(4.5rem, 8vw, 7rem) !important;
  background:
    radial-gradient(circle at 50% -15%, rgba(255, 183, 42, 0.34), transparent 39%),
    linear-gradient(145deg, #fffdf8 0%, #f9f9f7 54%, #f2ede5 100%) !important;
  border-bottom: 1px solid rgba(133, 84, 0, 0.12);
}
.svc-hero__mesh {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    conic-gradient(from 0deg at 50% 50%, rgba(255, 165, 0, 0.18), rgba(255, 200, 80, 0.06), rgba(133, 84, 0, 0.04), rgba(255, 165, 0, 0.16));
  opacity: 0.55;
  animation: svcHeroMeshSpin 10s linear infinite;
}
.svc-hero--sub .svc-hero__mesh {
  opacity: 0.38;
  animation-duration: 14s;
}
.svc-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(133, 84, 0, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 84, 0, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 42%, #000 15%, transparent 72%);
}
.svc-hero--hub .svc-hero__grid {
  animation: svcHeroGridDrift 8s linear infinite;
}
.svc-hero--sub .svc-hero__grid {
  opacity: 0.28;
  animation: svcHeroGridDrift 12s linear infinite;
}
.svc-hero__aurora {
  position: absolute;
  inset: -40% -20%;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 165, 0, 0.22) 46%,
    rgba(255, 210, 100, 0.32) 50%,
    rgba(255, 165, 0, 0.22) 54%,
    transparent 62%
  );
  transform: translateX(-55%) rotate(-6deg);
  animation: svcHeroAuroraSweep 4.5s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}
.svc-hero--sub .svc-hero__aurora {
  opacity: 0.65;
  animation-duration: 6.5s;
}
.svc-hero__shimmer {
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 165, 0, 0.18) 50%,
    rgba(255, 255, 255, 0.55) 52%,
    transparent
  );
  transform: skewX(-18deg);
  animation: svcHeroShimmer 3.8s ease-in-out infinite;
}
.svc-hero--sub .svc-hero__shimmer {
  width: 45%;
  opacity: 0.55;
  animation-duration: 5.2s;
}
.svc-hero__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  transform: translate(-50%, -58%);
}
.svc-hero__ring--outer {
  width: min(88vw, 980px);
  height: min(88vw, 980px);
  border-color: rgba(255, 165, 0, 0.22);
  border-style: dashed;
  border-width: 1px;
  box-shadow:
    0 0 0 1px rgba(255, 165, 0, 0.06),
    inset 0 0 40px rgba(255, 165, 0, 0.04);
  animation: svcHeroRingSpin 14s linear infinite;
}
.svc-hero__ring--inner {
  width: min(58vw, 640px);
  height: min(58vw, 640px);
  border: 2px solid transparent;
  border-top-color: rgba(255, 165, 0, 0.55);
  border-right-color: rgba(255, 165, 0, 0.18);
  animation: svcHeroRingSpin 7s linear infinite reverse;
}
.svc-hero__ring--sub {
  width: min(72vw, 780px);
  height: min(72vw, 780px);
  border-color: rgba(255, 165, 0, 0.16);
  border-style: dashed;
  box-shadow: inset 0 0 30px rgba(255, 165, 0, 0.05);
  animation: svcHeroRingSpin 18s linear infinite;
}
.svc-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(44px);
  will-change: transform;
}
.svc-hero--hub .svc-hero__orb--a {
  width: min(36vw, 380px);
  height: min(36vw, 380px);
  top: -8%;
  right: 4%;
  background: rgba(255, 165, 0, 0.32);
  animation: svcHeroOrbA 5.5s ease-in-out infinite;
}
.svc-hero--hub .svc-hero__orb--b {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  bottom: -2%;
  left: -2%;
  background: rgba(255, 200, 60, 0.24);
  animation: svcHeroOrbB 6.2s ease-in-out infinite;
}
.svc-hero--hub .svc-hero__orb--c {
  width: min(20vw, 200px);
  height: min(20vw, 200px);
  top: 42%;
  left: 62%;
  background: rgba(133, 84, 0, 0.16);
  animation: svcHeroOrbC 4.8s ease-in-out infinite;
}
.svc-hero--sub .svc-hero__orb--a {
  width: min(30vw, 300px);
  height: min(30vw, 300px);
  top: -6%;
  right: 6%;
  background: rgba(255, 165, 0, 0.22);
  animation: svcHeroOrbA 7s ease-in-out infinite;
}
.svc-hero--sub .svc-hero__orb--b {
  width: min(22vw, 220px);
  height: min(22vw, 220px);
  bottom: 0;
  left: 4%;
  background: rgba(255, 200, 60, 0.16);
  animation: svcHeroOrbB 8s ease-in-out infinite reverse;
}
.svc-hero__spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: #ffa500;
  box-shadow: 0 0 12px 2px rgba(255, 165, 0, 0.65);
}
.svc-hero--hub .svc-hero__spark--1 { left: 12%; top: 28%; animation: svcHeroSparkFly1 3.2s ease-in-out infinite; }
.svc-hero--hub .svc-hero__spark--2 { left: 78%; top: 22%; animation: svcHeroSparkFly2 3.8s ease-in-out .4s infinite; }
.svc-hero--hub .svc-hero__spark--3 { left: 24%; top: 68%; animation: svcHeroSparkFly3 4.1s ease-in-out .8s infinite; }
.svc-hero--hub .svc-hero__spark--4 { left: 68%; top: 62%; animation: svcHeroSparkFly1 3.5s ease-in-out 1.2s infinite reverse; }
.svc-hero--hub .svc-hero__spark--5 { left: 48%; top: 18%; animation: svcHeroSparkFly2 2.9s ease-in-out .6s infinite; }
.svc-hero--hub .svc-hero__spark--6 { left: 86%; top: 48%; animation: svcHeroSparkFly3 3.6s ease-in-out 1s infinite; }
.svc-hero--sub .svc-hero__spark--1 { left: 18%; top: 32%; animation: svcHeroSparkFly1 4.5s ease-in-out infinite; }
.svc-hero--sub .svc-hero__spark--2 { left: 72%; top: 26%; animation: svcHeroSparkFly2 5s ease-in-out .5s infinite; }
.svc-hero--sub .svc-hero__spark--3 { left: 52%; top: 70%; animation: svcHeroSparkFly3 4.8s ease-in-out 1s infinite; }
@keyframes svcHeroMeshSpin {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.05); }
}
@keyframes svcHeroGridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(48px); }
}
@keyframes svcHeroAuroraSweep {
  0% { transform: translateX(-60%) rotate(-6deg); opacity: 0; }
  12% { opacity: 1; }
  50% { transform: translateX(15%) rotate(-6deg); opacity: 1; }
  88% { opacity: 0.85; }
  100% { transform: translateX(75%) rotate(-6deg); opacity: 0; }
}
@keyframes svcHeroShimmer {
  0% { left: -120%; opacity: 0; }
  15% { opacity: 1; }
  50% { left: 130%; opacity: 1; }
  85% { opacity: 0; }
  100% { left: 130%; opacity: 0; }
}
@keyframes svcHeroRingSpin {
  from { transform: translate(-50%, -58%) rotate(0deg); }
  to { transform: translate(-50%, -58%) rotate(360deg); }
}
@keyframes svcHeroOrbA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-36px, 28px) scale(1.12); }
  66% { transform: translate(24px, -18px) scale(0.94); }
}
@keyframes svcHeroOrbB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(32px, -34px) scale(1.1); }
}
@keyframes svcHeroOrbC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-28px, 22px) scale(1.08); }
}
@keyframes svcHeroSparkFly1 {
  0%, 100% { transform: translate(0, 0) scale(0.6); opacity: 0.2; }
  50% { transform: translate(28px, -38px) scale(1.2); opacity: 1; }
}
@keyframes svcHeroSparkFly2 {
  0%, 100% { transform: translate(0, 0) scale(0.5); opacity: 0.15; }
  50% { transform: translate(-32px, -30px) scale(1.15); opacity: 0.95; }
}
@keyframes svcHeroSparkFly3 {
  0%, 100% { transform: translate(0, 0) scale(0.55); opacity: 0.2; }
  50% { transform: translate(22px, 34px) scale(1.1); opacity: 0.9; }
}
.svc-hero__inner {
  position: relative;
  z-index: 1;
}
.svc-hero__brand {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #171817;
  margin-bottom: 1.25rem;
  animation: serviceHeroIn .8s cubic-bezier(.2,.72,.25,1) both;
}
.svc-hero__brand span {
  color: #ffa500;
}
.svc-crumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: 1rem;
  animation: serviceHeroIn .75s .06s cubic-bezier(.2,.72,.25,1) both;
}
.svc-hero__title {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 5.5vw, 4.75rem) !important;
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #171817;
  text-wrap: balance;
  margin-bottom: 1.25rem;
  animation: serviceHeroIn .75s .12s cubic-bezier(.2,.72,.25,1) both;
}
.svc-hero__sub {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
  color: #534433;
  animation: serviceHeroIn .75s .2s cubic-bezier(.2,.72,.25,1) both;
}
.svc-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  animation: serviceHeroIn .75s .28s cubic-bezier(.2,.72,.25,1) both;
}
.svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.75rem;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.svc-btn--primary {
  background: #ffa500;
  color: #0b0b0b;
  border: 1px solid rgba(104, 64, 0, 0.12);
  box-shadow: 0 12px 30px -14px rgba(133, 84, 0, 0.7);
}
.svc-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -16px rgba(133, 84, 0, 0.75);
}
.svc-btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: #1a1c1b;
  border: 1px solid rgba(133, 84, 0, 0.22);
}
.svc-btn--ghost:hover {
  background: #fff;
  border-color: rgba(255, 165, 0, 0.45);
  transform: translateY(-2px);
}
.svc-btn--lg {
  padding: 1rem 2rem;
}
.svc-section {
  position: relative;
}
.svc-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: .75rem;
}
.svc-section-title {
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}
.svc-prose {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.svc-prose p {
  line-height: 1.8;
}
.svc-card,
.services-premium .svc-card {
  border: 1px solid rgba(133, 84, 0, 0.13) !important;
  border-radius: 1.25rem !important;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(250,248,243,.88)) !important;
  box-shadow: 0 10px 35px -25px rgba(34, 25, 12, 0.38), inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .28s cubic-bezier(.2,.75,.25,1), box-shadow .28s ease, border-color .28s ease;
}
a.svc-card:hover,
.services-premium a.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 165, 0, 0.48) !important;
  box-shadow: 0 24px 48px -27px rgba(63, 42, 7, 0.42), 0 0 0 1px rgba(255,165,0,.06);
}
.svc-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .85rem;
  background: rgba(255, 165, 0, 0.12);
  color: #855400;
  margin-bottom: 1rem;
}
.svc-card__index {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffa500;
  margin-bottom: .35rem;
}
.svc-check {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(133, 84, 0, 0.13);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(250,248,243,.88));
  box-shadow: 0 8px 28px -22px rgba(34, 25, 12, 0.35);
}
.svc-check .material-symbols-outlined {
  color: #ffa500;
  flex-shrink: 0;
}
.svc-hub-card {
  display: block;
  padding: 2rem;
  height: 100%;
}
.svc-hub-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #855400;
  margin-top: auto;
}
.svc-hub-card__link .material-symbols-outlined {
  font-size: 18px;
  transition: transform .2s ease;
}
a.svc-hub-card:hover .svc-hub-card__link .material-symbols-outlined {
  transform: translateX(4px);
}
.svc-spotlight {
  border-radius: 1.5rem;
  border: 1px solid rgba(133, 84, 0, 0.13);
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(250,248,243,.85)),
    #f4f4f2;
  box-shadow: 0 24px 50px -32px rgba(0,0,0,.18);
}
.svc-cta-band {
  position: relative;
  overflow: hidden;
  margin: 2rem clamp(1rem, 4vw, 4rem) 0;
  border-radius: 30px;
  color: #fff;
  box-shadow: 0 30px 70px -35px rgba(0,0,0,.5);
}
.svc-cta-band__inner {
  position: relative;
  z-index: 1;
}
.svc-cta-band__sub {
  color: rgba(255,255,255,.68);
}
.svc-cta-band h2 {
  color: #fff;
}
.svc-faq-item {
  border: 1px solid rgba(133, 84, 0, 0.13);
  border-radius: 1rem;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 32px -28px rgba(0,0,0,.42);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.svc-faq-item.is-open,
.svc-faq-item:has([data-faq-panel]:not(.hidden)) {
  border-color: rgba(255, 165, 0, 0.42);
  box-shadow: 0 18px 40px -30px rgba(133,84,0,.48);
}
.services-premium main > section:last-child.svc-cta-band,
.services-premium .svc-cta-band {
  overflow: hidden;
}
@media (max-width: 767px) {
  .svc-hero { min-height: 360px; }
  .svc-cta-band {
    margin-left: .75rem;
    margin-right: .75rem;
    border-radius: 22px;
  }
}

/* Products — premium commercial showcase */
.products-premium main {
  background:
    radial-gradient(circle at 0 25%, rgba(255,165,0,.07), transparent 28rem),
    radial-gradient(circle at 100% 62%, rgba(133,84,0,.055), transparent 30rem),
    #f9f9f7;
}
.products-premium .prod-hero {
  border-bottom: 1px solid rgba(133,84,0,.1);
}
.products-premium .prod-stat {
  border: 1px solid rgba(133,84,0,.12);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 30px -24px rgba(34,25,12,.35);
}
.products-premium .prod-section {
  position: relative;
}
.products-premium .prod-section--wash {
  background:
    linear-gradient(135deg, rgba(255,255,255,.65), rgba(255,255,255,.16)),
    #eeeee9;
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.products-premium .prod-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: .75rem;
}
.products-premium .prod-section-title {
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}
.products-premium .prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 2rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(133,84,0,.15);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(249,246,239,.92));
  box-shadow: 0 24px 60px -38px rgba(44,31,10,.45), inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .32s cubic-bezier(.2,.72,.25,1), box-shadow .32s ease, border-color .32s ease;
}
.products-premium .prod-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #855400, #ffa500, #ffd27a);
  opacity: .9;
}
.products-premium .prod-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,165,0,.48);
  box-shadow: 0 34px 70px -38px rgba(66,42,4,.5), 0 0 0 1px rgba(255,165,0,.06);
}
.products-premium .prod-card--featured {
  background: linear-gradient(145deg, rgba(255,252,245,.98), rgba(255,244,220,.9));
}
.products-premium .prod-card__index {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffa500;
  margin-bottom: .85rem;
}
.products-premium .prod-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .95rem;
  background: rgba(255,165,0,.14);
  color: #855400;
  font-size: 1.65rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 25px -16px rgba(133,84,0,.65);
  transition: transform .28s ease;
}
.products-premium .prod-card:hover .prod-card__icon {
  transform: rotate(-4deg) scale(1.06);
}
.products-premium .prod-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: .45rem;
}
.products-premium .prod-card__title {
  letter-spacing: -.04em;
  line-height: 1.15;
}
.products-premium .prod-card__features {
  flex: 1;
}
.products-premium .prod-check {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .92rem;
  line-height: 1.45;
  color: #1a1c1b;
}
.products-premium .prod-check .material-symbols-outlined {
  color: #ffa500;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.products-premium .prod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  align-self: flex-start;
  min-width: 120px;
  padding: .85rem 1.75rem;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease;
}
.products-premium .prod-btn--primary {
  background: #ffa500;
  color: #0b0b0b;
  border: 1px solid rgba(104,64,0,.12);
  box-shadow: 0 14px 28px -15px rgba(133,84,0,.72);
}
.products-premium .prod-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -14px rgba(133,84,0,.78);
}
.products-premium .prod-step {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(133,84,0,.12);
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 42px -34px rgba(0,0,0,.5);
  transition: transform .28s ease, border-color .28s ease;
}
.products-premium .prod-step::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ffa500;
  transition: width .35s ease;
}
.products-premium .prod-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255,165,0,.35);
}
.products-premium .prod-step:hover::after {
  width: 100%;
}
.products-premium .prod-step__num {
  display: inline-flex;
  color: #855400;
  font-weight: 700;
  margin-bottom: 1rem;
}
.products-premium .prod-cta {
  margin: 3rem clamp(1rem,4vw,4rem) 0;
  border-radius: 32px;
}
.products-premium .prod-motion-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .68s ease, transform .68s cubic-bezier(.2,.72,.25,1);
}
.products-premium .prod-motion-section.is-visible {
  opacity: 1;
  transform: none;
}
.products-premium .prod-motion-item {
  opacity: 0;
  transform: translateY(16px) scale(.99);
  transition: opacity .55s var(--prod-delay,0ms) ease, transform .55s var(--prod-delay,0ms) cubic-bezier(.2,.72,.25,1);
}
.products-premium .prod-motion-section.is-visible .prod-motion-item {
  opacity: 1;
  transform: none;
}
@media (max-width: 767px) {
  .products-premium .prod-cta {
    margin-left: .75rem;
    margin-right: .75rem;
    border-radius: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .products-premium .prod-motion-section,
  .products-premium .prod-motion-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Homepage 3D logo reveal hero — light */
.hero-reveal {
  background:
    radial-gradient(ellipse 80% 50% at 50% 18%, rgba(255,165,0,0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255,165,0,0.06), transparent 50%),
    #f9f9f7;
}
.hero-particles {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-reveal__vignette {
  background:
    linear-gradient(to bottom, transparent 50%, rgba(249,249,247,0.92) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(217,195,172,0.12) 100%);
}
#logo-reveal {
  flex-shrink: 0;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
#logo-reveal canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
#logo-reveal.is-settled {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.hero-reveal.is-revealed #logo-reveal {
  /* keep logo stacked above copy */
  order: 0;
}
.hero-copy {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  order: 1;
}
.hero-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Home: transparent header → opaque on scroll */
.site-header-stack--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.site-nav--transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}
.site-nav--transparent .site-nav__brand,
.site-nav--transparent .site-nav__menu-btn {
  color: #1a1c1b;
}
.site-nav--transparent .site-nav__link {
  color: #534433 !important;
  background: transparent !important;
}
.site-nav--transparent .site-nav__link:hover {
  color: #1a1c1b !important;
  background: rgba(255, 165, 0, 0.12) !important;
}
.site-nav--transparent .site-nav__link.text-on-surface,
.site-nav--transparent .site-nav__link.bg-soft-wash {
  color: #1a1c1b !important;
  background: rgba(255, 165, 0, 0.12) !important;
}
.site-nav--transparent.is-scrolled {
  background: rgba(249, 249, 247, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0px 24px 48px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.site-nav--transparent.is-scrolled .site-nav__brand,
.site-nav--transparent.is-scrolled .site-nav__menu-btn {
  color: #1a1c1b;
}
.site-nav--transparent.is-scrolled .site-nav__link {
  color: #534433 !important;
  background: transparent !important;
}
.site-nav--transparent.is-scrolled .site-nav__link:hover {
  color: #1a1c1b !important;
  background: rgba(255, 165, 0, 0.12) !important;
}
.site-nav--transparent.is-scrolled .site-nav__link.text-on-surface,
.site-nav--transparent.is-scrolled .site-nav__link.bg-soft-wash {
  color: #1a1c1b !important;
  background: rgba(255, 165, 0, 0.12) !important;
}
.site-nav--transparent.is-menu-open {
  background: rgba(249, 249, 247, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.site-nav--transparent.is-menu-open .site-nav__brand,
.site-nav--transparent.is-menu-open .site-nav__menu-btn {
  color: #1a1c1b;
}
body.has-transparent-nav .hero-reveal {
  /* header stack overlays hero */
  min-height: 100vh;
}
@media (max-height: 760px) and (min-width: 768px) {
  body.has-transparent-nav .hero-reveal {
    justify-content: flex-start;
  }
}

/* Services nav dropdown (original-style) */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 16px;
  /* Invisible hover bridge between the trigger and the menu. */
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  max-height: min(70vh, 480px);
  overflow-y: auto;
  padding: 12px 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 60;
}
.nav-dropdown__caret {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
}
.nav-dropdown__item {
  display: block;
  padding: 10px 22px;
  color: #534433;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav-dropdown__item:hover {
  color: #1a1c1b;
  background: rgba(255, 165, 0, 0.1);
}
.nav-dropdown__trigger {
  position: relative;
}
.nav-dropdown__trigger::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  top: -2px;
  height: 2px;
  background: #ffa500;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown.is-open .nav-dropdown__trigger::after,
.nav-dropdown__trigger.text-on-surface::after,
.nav-dropdown__trigger.bg-soft-wash::after {
  opacity: 1;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .nav-dropdown__trigger .material-symbols-outlined,
.nav-dropdown.is-open .nav-dropdown__trigger .material-symbols-outlined,
.nav-dropdown:focus-within .nav-dropdown__trigger .material-symbols-outlined {
  transform: rotate(180deg);
}
.nav-dropdown__trigger .material-symbols-outlined {
  transition: transform 0.2s ease;
}
.nav-dropdown--start .nav-dropdown__menu {
  left: 0;
  top: 100%;
  min-width: max-content;
  max-height: none;
  height: auto;
  overflow: visible;
  padding: 4px 0;
  transform: none;
}
.nav-dropdown--start .nav-dropdown__caret {
  display: none;
}
.nav-dropdown--start .nav-dropdown__item {
  padding: 8px 16px;
}
.nav-dropdown--start:hover .nav-dropdown__menu,
.nav-dropdown--start.is-open .nav-dropdown__menu,
.nav-dropdown--start:focus-within .nav-dropdown__menu {
  transform: none;
}

/* Founder page — immersive corporate */
.founder-pro {
  background: #f9f9f7;
}
.founder-pro-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #070707;
  min-height: calc(100vh - 4.5rem);
  min-height: calc(100dvh - 4.5rem);
  display: flex;
  flex-direction: column;
}
.founder-pro-hero__mesh,
.founder-pro-hero__grid,
.founder-pro-hero__glow {
  z-index: 0;
}
.founder-pro-hero__cutout {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}
.founder-pro-hero__cutout-rail {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.founder-pro-hero__cutout img {
  display: block;
  height: calc(100% - 0.5rem);
  width: auto;
  max-width: min(42%, 520px);
  object-fit: contain;
  object-position: right bottom;
  image-rendering: auto;
  opacity: 0;
  transform: translate3d(28px, 36px, 0) scale(0.94);
  filter: blur(6px);
  transform-origin: 85% 100%;
  will-change: opacity, transform, filter;
}
.founder-pro-hero__cutout.is-animated img {
  animation: founderCutoutIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}
@keyframes founderCutoutIn {
  0% {
    opacity: 0;
    transform: translate3d(28px, 36px, 0) scale(0.94);
    filter: blur(6px);
  }
  55% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}
@media (max-width: 1023px) {
  .founder-pro-hero__cutout img {
    max-width: min(52%, 420px);
  }
}
@media (max-width: 767px) {
  .founder-pro-hero__cutout img {
    max-width: 68%;
  }
  .founder-pro-hero__cutout.is-animated img {
    animation-name: founderCutoutInMobile;
  }
  @keyframes founderCutoutInMobile {
    0% {
      opacity: 0;
      transform: translate3d(18px, 28px, 0) scale(0.96);
      filter: blur(4px);
    }
    100% {
      opacity: 0.4;
      transform: translate3d(0, 0, 0) scale(1);
      filter: blur(0);
    }
  }
}
.founder-pro-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 12% 88%, rgba(255, 165, 0, 0.22), transparent 58%),
    radial-gradient(ellipse 45% 40% at 88% 10%, rgba(255, 184, 0, 0.08), transparent 52%),
    linear-gradient(180deg, #070707 0%, #101010 52%, #070707 100%);
}
.founder-pro-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  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, #000 0%, transparent 92%);
}
.founder-pro-hero__glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
}
.founder-pro-hero__glow--a {
  width: 520px;
  height: 520px;
  left: -10%;
  bottom: -20%;
  background: rgba(255, 165, 0, 0.18);
  animation: floatOrb 11s ease-in-out infinite;
}
.founder-pro-hero__glow--b {
  width: 320px;
  height: 320px;
  right: 8%;
  top: 8%;
  background: rgba(255, 184, 0, 0.1);
  animation: floatOrb 13s ease-in-out infinite reverse;
}
.founder-pro-hero__inner {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: inherit;
}
.founder-pro-hero__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.founder-pro-hero__brand {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.founder-pro-hero__brand span {
  color: #ffa500;
}
.founder-pro-hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 165, 0, 0.85);
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}
.founder-pro-hero__layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
  align-content: start;
  flex: 0 0 auto;
}
.founder-pro-hero__copy {
  max-width: 36rem;
  position: relative;
  z-index: 3;
}
@media (min-width: 1024px) {
  .founder-pro-hero__copy {
    padding-top: 2.75rem;
  }
}
.founder-pro-hero__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.85rem;
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}
.founder-pro-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}
.founder-pro-hero__lead {
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.26s both;
}
.founder-pro-hero__quote {
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 165, 0, 0.55);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}
.founder-pro-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}
.founder-pro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.45rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.founder-pro-btn .material-symbols-outlined {
  font-size: 1.05rem;
}
.founder-pro-btn--primary {
  background: #ffa500;
  color: #0b0b0b;
  box-shadow: 0 12px 32px rgba(255, 165, 0, 0.22);
}
.founder-pro-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 165, 0, 0.3);
}
.founder-pro-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.founder-pro-btn--ghost:hover {
  border-color: rgba(255, 165, 0, 0.45);
  background: rgba(255, 165, 0, 0.08);
}
.founder-pro-btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.founder-pro-hero__portrait {
  margin: 0;
  max-width: 420px;
  margin-inline: auto;
}
.founder-pro-hero__portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}
.founder-pro-hero__portrait-mask {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.founder-pro-hero__portrait-mask img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(62vh, 580px);
  object-fit: contain;
  object-position: center bottom;
}
[data-founder-reveal].is-revealed .founder-pro-hero__portrait-mask {
  opacity: 1;
}
.founder-pro-hero__portrait-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: rgba(7, 7, 7, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.founder-pro-hero__portrait-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.founder-pro-hero__portrait-role {
  margin-top: 0.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 165, 0, 0.85);
}
.founder-pro-hero__stats {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 1px;
  margin-top: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .founder-pro-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.founder-pro-stat {
  padding: 1.25rem 1.1rem;
  background: rgba(7, 7, 7, 0.88);
}
.founder-pro-stat__value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffa500;
  line-height: 1;
}
.founder-pro-stat__label {
  margin-top: 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.founder-pro-stat__note {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}
.founder-pro-section {
  position: relative;
}
.founder-pro-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: 0.85rem;
}
.founder-pro-eyebrow--light {
  color: rgba(255, 165, 0, 0.85);
}
.founder-pro-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1a1c1b;
}
.founder-pro-title--light {
  color: #fff;
}
.founder-pro-section-head {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}
.founder-pro-section-head--center {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}
.founder-pro-profile {
  background: #fff;
  border-top: 1px solid rgba(217, 195, 172, 0.35);
}
.founder-pro-profile__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .founder-pro-profile__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem;
    align-items: start;
  }
}
.founder-pro-profile__intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #534433;
}
.founder-pro-profile__intro p + p {
  margin-top: 1rem;
}
.founder-pro-credentials {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.founder-pro-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #1a1c1b;
}
.founder-pro-credentials .material-symbols-outlined {
  color: #ffa500;
  font-size: 1.2rem;
  margin-top: 0.05rem;
}
.founder-pro-pillars {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .founder-pro-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.founder-pro-pillar {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(217, 195, 172, 0.35);
  background: linear-gradient(180deg, #fff, #f9f9f7);
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.18);
}
.founder-pro-pillar__icon {
  color: #ffa500;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.founder-pro-pillar__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.founder-pro-pillar__copy {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #534433;
}
.founder-pro-panel {
  border-radius: 1.35rem;
  border: 1px solid rgba(217, 195, 172, 0.35);
  background: #fff;
  box-shadow: 0 28px 60px -34px rgba(0, 0, 0, 0.18);
}
.founder-pro-panel--ink {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(255, 165, 0, 0.16), transparent 55%),
    linear-gradient(145deg, #101010 0%, #070707 100%);
  box-shadow: 0 32px 70px -34px rgba(0, 0, 0, 0.45);
}
.founder-pro-story__grid {
  display: grid;
  gap: 2rem;
  padding: 2rem 1.5rem;
}
@media (min-width: 1024px) {
  .founder-pro-story__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    padding: 2.75rem 2.5rem;
  }
}
.founder-pro-story__copy {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
}
.founder-pro-story__copy p + p {
  margin-top: 1rem;
}
.founder-pro-story__timeline {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}
@media (min-width: 1024px) {
  .founder-pro-story__timeline {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0;
    padding-left: 2rem;
  }
}
.founder-pro-story__timeline-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 1rem;
}
.founder-pro-timeline-h {
  display: grid;
  gap: 1rem;
}
.founder-pro-timeline-h__item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.founder-pro-timeline-h__index {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 165, 0, 0.75);
}
.founder-pro-timeline-h__year {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
}
.founder-pro-timeline-h__title {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.founder-pro-timeline-h__copy {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}
.founder-pro-impact {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 165, 0, 0.1), transparent 60%),
    #f4f4f2;
  border-top: 1px solid rgba(217, 195, 172, 0.35);
  border-bottom: 1px solid rgba(217, 195, 172, 0.35);
}
.founder-pro-impact__head {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}
.founder-pro-impact__showcase {
  text-align: center;
  margin: 2.5rem auto 2rem;
}
.founder-pro-impact__value {
  font-size: clamp(4.5rem, 16vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(180deg, #ffa500 0%, #ffb84d 45%, #c47a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.founder-pro-impact__caption {
  max-width: 34rem;
  margin: 1rem auto 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #534433;
}
.founder-pro-impact__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .founder-pro-impact__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }
}
.founder-pro-impact__narrative {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #534433;
}
.founder-pro-impact__narrative p + p {
  margin-top: 1rem;
}
.founder-pro-impact__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(217, 195, 172, 0.35);
  background: rgba(217, 195, 172, 0.35);
}
.founder-pro-metric {
  padding: 1.35rem 1rem;
  text-align: center;
  background: #fff;
}
.founder-pro-metric__value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffa500;
  line-height: 1;
}
.founder-pro-metric__label {
  margin-top: 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #534433;
}
.founder-pro-jobs {
  background: #fff;
}
.founder-pro-jobs__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .founder-pro-jobs__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
  }
}
.founder-pro-jobs__lead {
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #534433;
  max-width: 34rem;
}
.founder-pro-jobs__cards {
  display: grid;
  gap: 1rem;
}
.founder-pro-jobs-card {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(217, 195, 172, 0.35);
  background: #f9f9f7;
}
.founder-pro-jobs-card .material-symbols-outlined {
  color: #ffa500;
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}
.founder-pro-jobs-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.founder-pro-jobs-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #534433;
}
.founder-pro-connect {
  background: #101010;
  color: #fff;
}
.founder-pro-connect__sub {
  margin-top: 0.85rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}
.founder-pro-connect .founder-pro-eyebrow,
.founder-pro-connect .founder-pro-title {
  color: #fff;
}
.founder-pro-connect__slider {
  max-width: 40rem;
  margin-inline: auto;
}
.founder-pro-forward {
  background: #fff;
}
.founder-pro-forward__panel {
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(217, 195, 172, 0.35);
  background: linear-gradient(180deg, #fff, #f9f9f7);
}
@media (min-width: 768px) {
  .founder-pro-forward__panel {
    padding: 2.5rem 2.25rem;
  }
}
.founder-pro-forward__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #534433;
}
@media (min-width: 768px) {
  .founder-pro-forward__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.founder-pro-cta .founder-pro-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* About Me — legacy + social slider */
.about-me-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 18% 88%, rgba(255, 165, 0, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 12%, rgba(255, 184, 0, 0.10), transparent 50%),
    linear-gradient(180deg, #0b0b0b 0%, #111111 55%, #0b0b0b 100%);
  pointer-events: none;
}
.about-me-hero__wash--subtle {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 165, 0, 0.14), transparent 55%);
}
.about-me-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}
.about-me-hero__orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(70px);
  pointer-events: none;
}
.about-me-hero__orb--a {
  width: 480px;
  height: 480px;
  background: rgba(255, 165, 0, 0.2);
  bottom: -18%;
  left: -8%;
  animation: floatOrb 10s ease-in-out infinite;
}
.about-me-hero__orb--b {
  width: 280px;
  height: 280px;
  background: rgba(255, 184, 0, 0.12);
  top: 12%;
  right: 8%;
  animation: floatOrb 12s ease-in-out infinite reverse;
}
.about-me-hero__orb--c {
  width: 360px;
  height: 360px;
  background: rgba(255, 165, 0, 0.12);
  top: 20%;
  right: -10%;
  animation: floatOrb 11s ease-in-out infinite;
}
.about-me-hero__brand {
  animation: heroIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.about-me-hero__eyebrow {
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.about-me-hero__title {
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}
.about-me-hero__sub {
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}
.founder-social-section__orb {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 10%;
  right: -8%;
  border-radius: 9999px;
  background: rgba(255, 165, 0, 0.12);
  filter: blur(70px);
  pointer-events: none;
}
.founder-social-slider__viewport {
  position: relative;
  overflow: visible;
}
.founder-social-slider__track {
  display: grid;
}
.founder-social-slider__slide {
  grid-area: 1 / 1;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateX(1.25rem) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}
.founder-social-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.founder-social-slider__card {
  text-align: center;
  padding: 2rem 1.5rem 1.85rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top, rgba(255, 165, 0, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.founder-social-slider__slide--linkedin .founder-social-slider__icon {
  color: #0a66c2;
}
.founder-social-slider__slide--facebook .founder-social-slider__icon {
  color: #1877f2;
}
.founder-social-slider__slide--instagram .founder-social-slider__icon {
  color: #e4405f;
}
.founder-social-slider__slide--x .founder-social-slider__icon {
  color: #fff;
}
.founder-social-slider__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.founder-social-slider__network {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.2rem;
  line-height: 1.15;
}
.founder-social-slider__handle {
  display: block;
  max-width: 18rem;
  margin: 0 auto 0.75rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.42);
  word-break: break-all;
}
.founder-social-slider__copy {
  max-width: 28rem;
  margin: 0 auto 1.25rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  font-size: 0.92rem;
}
.founder-social-slider__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 9999px;
  background: #ffa500;
  color: #0b0b0b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.founder-social-slider__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 165, 0, 0.28);
}
.founder-social-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.founder-social-slider__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.founder-social-slider__nav:hover {
  border-color: rgba(255, 165, 0, 0.45);
  background: rgba(255, 165, 0, 0.12);
  transform: translateY(-1px);
}
.founder-social-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.founder-social-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  transition: width 0.25s ease, background 0.25s ease;
}
.founder-social-slider__dot.is-active {
  width: 1.6rem;
  background: #ffa500;
}
.about-me-hero__meta > div > div {
  opacity: 0;
  animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.about-me-milestone {
  font-size: clamp(5rem, 18vw, 12rem);
  letter-spacing: -0.04em;
}

/* Founder portrait — simple professional fade-in */
.founder-reveal__stage {
  isolation: isolate;
}
.founder-reveal__glow {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 4%;
  height: 28%;
  background: radial-gradient(ellipse at center, rgba(255, 165, 0, 0.18), transparent 70%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.9s ease 0.15s;
}
.founder-reveal.is-revealed .founder-reveal__glow {
  opacity: 1;
}
.founder-reveal__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(244, 244, 242, 0.9) 0%, rgba(238, 238, 236, 0.65) 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.08);
}
.founder-reveal__mask {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.founder-reveal.is-revealed .founder-reveal__mask {
  opacity: 1;
}
.founder-reveal__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.02) contrast(1.03);
  transform: none;
}
.founder-reveal__shutter,
.founder-reveal__accent {
  display: none;
}
.founder-reveal__caption {
  opacity: 0;
  transition: opacity 0.85s ease 0.25s;
}
.founder-reveal.is-revealed .founder-reveal__caption {
  opacity: 1;
}

/* Home — We are EcomHutsy commercial portrait */
.founder-home-shot__frame {
  position: relative;
}
.founder-home-shot__img {
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.founder-home-shot:hover .founder-home-shot__img {
  transform: scale(1.03);
}
.founder-home-shot__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(11, 11, 11, 0.45) 100%),
    linear-gradient(90deg, rgba(11, 11, 11, 0.08), transparent 40%);
  pointer-events: none;
}
.founder-home-shot__badge {
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .founder-reveal__mask,
  .founder-reveal__caption,
  .founder-reveal__glow {
    transition: none !important;
    opacity: 1 !important;
  }
  .founder-home-shot:hover .founder-home-shot__img {
    transform: none;
  }
}

.about-me-portrait {
  border-radius: 1.25rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}
.about-me-portrait__ring {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(255, 165, 0, 0.28);
  border-radius: 0.85rem;
  pointer-events: none;
}
.about-me-portrait__mono {
  animation: aboutMePulse 4.5s ease-in-out infinite;
}
.about-me-portrait__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(255, 165, 0, 0.08) 50%, transparent 60%);
  background-size: 200% 200%;
  animation: aboutMeShine 7s ease-in-out infinite;
  pointer-events: none;
}
.about-me-timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #ffa500;
  box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.18);
  flex-shrink: 0;
  margin-top: 6px;
}
.about-me-timeline__line {
  width: 1px;
  flex: 1;
  min-height: 2.5rem;
  margin-top: 8px;
  background: linear-gradient(180deg, rgba(255, 165, 0, 0.55), rgba(217, 195, 172, 0.25));
}

@keyframes aboutMePulse {
  0%, 100% { opacity: 0.88; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
@keyframes aboutMeShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .founder-pro-hero__glow,
  .about-me-hero__orb,
  .about-me-portrait__mono,
  .about-me-portrait__shine {
    animation: none !important;
  }
  .founder-pro-hero__cutout img,
  .founder-pro-hero__cutout.is-animated img {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
  .founder-pro-hero__brand,
  .founder-pro-hero__eyebrow,
  .founder-pro-hero__kicker,
  .founder-pro-hero__title,
  .founder-pro-hero__lead,
  .founder-pro-hero__quote,
  .founder-pro-hero__actions,
  .founder-pro-hero__portrait-mask,
  .about-me-hero__brand,
  .about-me-hero__eyebrow,
  .about-me-hero__title,
  .about-me-hero__sub,
  .about-me-hero__meta > div > div {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  [data-founder-reveal].is-revealed .founder-pro-hero__portrait-mask,
  .founder-reveal__mask,
  .founder-reveal__caption,
  .founder-reveal__glow {
    transition: none !important;
    opacity: 1 !important;
  }
  .founder-home-shot:hover .founder-home-shot__img {
    transform: none;
  }
}

#form {
  scroll-margin-top: 6.5rem;
}
.pk-map {
  min-height: 480px;
}
.pk-map__leaflet {
  height: 520px;
  width: 100%;
  z-index: 1;
  background: #eef0ec;
}
.pk-map .leaflet-container {
  font-family: Inter, sans-serif;
  background: #eef0ec;
}
.pk-map .leaflet-control-attribution {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.85);
}
.pk-map-marker {
  position: relative;
  width: 18px;
  height: 18px;
}
.pk-map-marker__dot {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: #ffa500;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  margin: 1px auto 0;
  transition: transform 0.15s ease, background 0.15s ease;
}
.pk-map-marker.is-active .pk-map-marker__dot,
.pk-map-marker:hover .pk-map-marker__dot {
  background: #855400;
  transform: scale(1.2);
}
.pk-map-marker__pulse {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: rgba(255, 165, 0, 0.4);
  transform: translate(-50%, -50%);
  animation: pkPinPulse 2s ease-out infinite;
  pointer-events: none;
}
.pk-leaflet-tooltip.leaflet-tooltip {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  white-space: normal;
  max-width: none;
}
.pk-leaflet-tooltip.leaflet-tooltip::before {
  display: none;
}
.pk-map__tooltip-card {
  width: 260px;
  max-width: min(260px, 72vw);
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  color: #1a1c1b;
}
.pk-map__tooltip-card p {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.pk-map__tooltip-card p:first-child {
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 6px;
}
.pk-map__tooltip-card p:last-child {
  font-size: 12px;
  color: #534433;
  line-height: 1.45;
  margin: 0;
}
.pk-map__city-chip {
  border: 1px solid rgba(217, 195, 172, 0.5);
  background: #fff;
  border-radius: 9999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #534433;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.pk-map__city-chip:hover,
.pk-map__city-chip.is-active {
  background: rgba(255, 165, 0, 0.14);
  border-color: #ffa500;
  color: #1a1c1b;
}
@keyframes pkPinPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}
@media (max-width: 767px) {
  .pk-map__leaflet { height: 420px; }
}
@media (prefers-reduced-motion: reduce) {
  .pk-map-marker__pulse { animation: none !important; }
}

/* ── Company pages — premium / professional ── */
.page-pro-hero {
  position: relative;
  overflow: hidden;
  background: #f9f9f7;
}
.page-pro-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 8% 0%, rgba(255, 165, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 40% at 92% 18%, rgba(26, 28, 27, 0.05), transparent 50%),
    linear-gradient(180deg, #f4f4f2 0%, #f9f9f7 48%, #eeeeec 100%);
}
.page-pro-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(26, 28, 27, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 28, 27, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}
.page-pro-hero__brand {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.page-pro-hero__eyebrow {
  animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}
.page-pro-hero__title {
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}
.page-pro-hero__sub {
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.26s both;
}
.page-pro-hero__cta {
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both;
}
.page-pro-stat {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.25rem;
}
.page-pro-stat__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  color: #ffa500;
  line-height: 1;
}
.page-pro-stat__label {
  margin-top: 0.4rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #534433;
}
.page-pro-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}
.page-pro-panel {
  background: #fff;
  border: 1px solid rgba(217, 195, 172, 0.35);
  border-radius: 1.25rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 24px 48px -28px rgba(0, 0, 0, 0.12);
}
.page-pro-panel--ink {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 28px 60px -30px rgba(0, 0, 0, 0.45);
}
.page-pro-rail {
  position: relative;
  padding-left: 1.25rem;
}
.page-pro-rail::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffa500, rgba(255, 165, 0, 0.15));
}
.page-pro-feature {
  position: relative;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.page-pro-feature:last-child {
  border-bottom: 0;
}
.page-pro-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: rgba(255, 165, 0, 0.12);
  color: #855400;
}
.page-pro-form input,
.page-pro-form select,
.page-pro-form textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.page-pro-form input:focus,
.page-pro-form select:focus,
.page-pro-form textarea:focus {
  outline: none;
  border-color: #ffa500;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.18);
}
.page-pro-job {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-pro-job:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -28px rgba(0, 0, 0, 0.2);
}
.page-pro-milestone {
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(135deg, #1a1c1b 20%, #855400 55%, #ffa500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-pro-cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-pro-shift-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-pro-shift-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.18);
}
.page-pro-shift-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(255, 165, 0, 0.12);
  color: #855400;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.page-pro-shift-card__time {
  letter-spacing: -0.02em;
}

/* ── About page — commercial corporate ── */
.about-corp {
  background: #f9f9f7;
}
.about-corp-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: 0.85rem;
}
.about-corp-eyebrow--on-dark {
  color: rgba(255, 165, 0, 0.9);
}
.about-corp-title {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #1a1c1b;
}
.about-corp-title--light {
  color: #fff;
}
.about-corp-lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #534433;
}
.about-corp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.45rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.about-corp-btn--primary {
  background: #ffa500;
  color: #0b0b0b;
  box-shadow: 0 12px 28px rgba(255, 165, 0, 0.22);
}
.about-corp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 165, 0, 0.3);
}
.about-corp-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.about-corp-btn--ghost:hover {
  border-color: rgba(255, 165, 0, 0.45);
  background: rgba(255, 165, 0, 0.1);
}
.about-corp-btn--outline {
  border: 1px solid rgba(217, 195, 172, 0.7);
  color: #1a1c1b;
  background: #fff;
}
.about-corp-btn--outline:hover {
  border-color: rgba(255, 165, 0, 0.55);
  background: rgba(255, 165, 0, 0.08);
}
.about-corp-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #070707;
  padding: 4.5rem 0 3.5rem;
}
.about-corp-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 12% 90%, rgba(255, 165, 0, 0.2), transparent 58%),
    radial-gradient(ellipse 40% 35% at 88% 12%, rgba(255, 184, 0, 0.08), transparent 52%),
    linear-gradient(180deg, #070707 0%, #101010 55%, #070707 100%);
}
.about-corp-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  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, #000 0%, transparent 90%);
}
.about-corp-hero__inner {
  position: relative;
  z-index: 1;
}
.about-corp-hero__brand {
  font-size: clamp(2.1rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.about-corp-hero__brand span {
  color: #ffa500;
}
.about-corp-hero__layout {
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 1024px) {
  .about-corp-hero__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 2.75rem;
    align-items: end;
  }
}
.about-corp-hero__title {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}
.about-corp-hero__lead {
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.about-corp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}
.about-corp-hero__stats {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.about-corp-stat {
  padding: 1.15rem 1.1rem;
  background: rgba(7, 7, 7, 0.88);
}
.about-corp-stat__value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffa500;
  line-height: 1;
}
.about-corp-stat__label {
  margin-top: 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.about-corp-stat__note {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
}
.about-corp-section--light {
  background: #fff;
  border-top: 1px solid rgba(217, 195, 172, 0.28);
  border-bottom: 1px solid rgba(217, 195, 172, 0.28);
}
.about-corp-split {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 1024px) {
  .about-corp-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: start;
  }
}
.about-corp-split--tight {
  margin-bottom: 2rem;
}
.about-corp-split__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #534433;
}
.about-corp-split__body p + p {
  margin-top: 1rem;
}
.about-corp-ceo {
  display: grid;
  gap: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(255, 165, 0, 0.16), transparent 55%),
    linear-gradient(145deg, #121212 0%, #070707 100%);
  color: #fff;
  box-shadow: 0 32px 70px -34px rgba(0, 0, 0, 0.45);
}
@media (min-width: 1024px) {
  .about-corp-ceo {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}
.about-corp-ceo__meta {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 1024px) {
  .about-corp-ceo__meta {
    padding: 2.75rem 2.5rem;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.about-corp-ceo__role {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.about-corp-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffa500;
  text-decoration: none;
}
.about-corp-link-arrow:hover {
  color: #fff;
}
.about-corp-link-arrow .material-symbols-outlined {
  font-size: 1.1rem;
}
.about-corp-ceo__copy {
  padding: 2rem 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
}
@media (min-width: 1024px) {
  .about-corp-ceo__copy {
    padding: 2.75rem 2.5rem;
  }
}
.about-corp-ceo__copy p + p {
  margin-top: 1rem;
}
.about-corp-milestone {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 165, 0, 0.1), transparent 60%),
    #f4f4f2;
}
.about-corp-milestone__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 1.5rem;
}
.about-corp-milestone__value {
  text-align: center;
  font-size: clamp(4.5rem, 16vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(180deg, #ffa500 0%, #ffb84d 45%, #c47a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1.75rem;
}
.about-corp-milestone__copy {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #534433;
}
.about-corp-milestone__copy p + p {
  margin-top: 1rem;
}
.about-corp-milestone__sub {
  margin-top: 1.25rem !important;
  font-size: 0.92rem !important;
  font-weight: 600;
  color: #855400 !important;
}
.about-corp-pillars {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .about-corp-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.about-corp-pillar {
  padding: 1.5rem 1.35rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(217, 195, 172, 0.4);
  background: linear-gradient(180deg, #fff, #f9f9f7);
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.16);
}
.about-corp-pillar__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.about-corp-pillar__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #534433;
}
.about-corp-services {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 1024px) {
  .about-corp-services {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: stretch;
  }
}
.about-corp-services__intro,
.about-corp-services__panel {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #534433;
}
.about-corp-services__intro p + p,
.about-corp-services__panel p + p {
  margin-top: 1rem;
}
.about-corp-services__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.about-corp-services__panel {
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(217, 195, 172, 0.4);
  background: #fff;
  box-shadow: 0 24px 50px -34px rgba(0, 0, 0, 0.16);
}
.about-corp-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}
.about-corp-chip-list li {
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 165, 0, 0.1);
  color: #855400;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-corp-people {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 165, 0, 0.14), transparent 55%),
    #0d0d0d;
  color: #fff;
}
.about-corp-people__kicker {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 165, 0, 0.85);
}
.about-corp-people__copy {
  max-width: 44rem;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
}
.about-corp-office-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .about-corp-office-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.about-corp-office {
  padding: 1.5rem 1.35rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(217, 195, 172, 0.4);
  background: #fff;
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.14);
}
.about-corp-office__region {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: 0.65rem;
}
.about-corp-office__company {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.about-corp-office__address {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #534433;
  margin-bottom: 1rem;
}
.about-corp-office__contact {
  font-size: 0.85rem;
  color: #1a1c1b;
  margin-top: 0.25rem;
}
.about-corp-office__contact span {
  color: #534433;
  margin-right: 0.35rem;
}
.about-corp-map-panel {
  background: #fff;
  border: 1px solid rgba(217, 195, 172, 0.4);
  border-radius: 1.15rem;
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.14);
}
.about-corp-reasons {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about-corp-reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .about-corp-reasons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.about-corp-reason {
  position: relative;
  padding: 1.5rem 1.35rem 1.5rem 1.5rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(217, 195, 172, 0.4);
  background: #fff;
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.14);
}
.about-corp-reason__index {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(133, 84, 0, 0.45);
}
.about-corp-reason__icon {
  color: #ffa500;
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}
.about-corp-reason__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.about-corp-reason__body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #534433;
}
.about-corp-closing {
  max-width: 52rem;
}
.about-corp-closing__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #534433;
}
@media (min-width: 768px) {
  .about-corp-closing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.75rem;
  }
}
.about-corp-closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.about-corp-hero .about-corp-eyebrow {
  color: rgba(255, 165, 0, 0.9);
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}
@media (prefers-reduced-motion: reduce) {
  .about-corp-hero__brand,
  .about-corp-hero .about-corp-eyebrow,
  .about-corp-hero__title,
  .about-corp-hero__lead,
  .about-corp-hero__actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Careers page — premium ── */
.careers-premium {
  --careers-gold: #ffa500;
  --careers-gold-dim: rgba(255, 165, 0, 0.14);
  --careers-ink: #0c0c0c;
}
.careers-premium .careers-hero {
  min-height: clamp(520px, 72vh, 680px);
  display: flex;
  align-items: center;
  padding-bottom: 5rem;
}
.careers-premium .careers-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.careers-premium .careers-hero__orb--1 {
  width: 28rem;
  height: 28rem;
  top: -6rem;
  right: 8%;
  background: rgba(255, 165, 0, 0.18);
}
.careers-premium .careers-hero__orb--2 {
  width: 18rem;
  height: 18rem;
  bottom: 10%;
  left: 4%;
  background: rgba(133, 84, 0, 0.08);
}
.careers-premium .careers-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.16), rgba(255, 165, 0, 0.06));
  border: 1px solid rgba(255, 165, 0, 0.28);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: 1.25rem;
}
.careers-premium .careers-badge__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ffa500;
  box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.22);
  animation: careersPulse 2s ease-in-out infinite;
}
@keyframes careersPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.92); }
}
.careers-premium .careers-hero__title-gradient {
  background: linear-gradient(135deg, #1a1c1b 0%, #1a1c1b 45%, #855400 72%, #ffa500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.careers-premium .careers-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid rgba(217, 195, 172, 0.35);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}
.careers-premium .careers-stat-strip__item {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.careers-premium .careers-stat-strip__item:last-child {
  border-right: 0;
}
.careers-premium .careers-stat-strip__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffa500;
  line-height: 1.1;
}
.careers-premium .careers-stat-strip__label {
  margin-top: 0.35rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #534433;
}
.careers-premium .careers-hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #111 0%, #1a1a1a 55%, #222 100%);
  border: 1px solid rgba(255, 165, 0, 0.18);
  border-radius: 1.5rem;
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 32px 64px -24px rgba(0, 0, 0, 0.55);
}
.careers-premium .careers-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 165, 0, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(255, 165, 0, 0.08), transparent 50%);
  pointer-events: none;
}
.careers-premium .careers-hero-card__inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.careers-premium .careers-hero-card__tag {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 165, 0, 0.15);
  border: 1px solid rgba(255, 165, 0, 0.3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb95c;
  margin-bottom: 1.25rem;
}
.careers-premium .careers-hero-card__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}
.careers-premium .careers-hero-card__list li:last-child {
  border-bottom: 0;
}
.careers-premium .careers-hero-card__list .material-symbols-outlined {
  color: #ffa500;
  font-size: 1.125rem;
}
.careers-premium .careers-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb020 0%, #ffa500 45%, #e89400 100%);
  color: #1a1c1b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 8px 24px -8px rgba(255, 165, 0, 0.55),
    0 0 0 0 rgba(255, 165, 0, 0.35);
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease,
    background 0.28s ease;
  animation: careersBtnPulse 2.8s ease-in-out infinite;
}
.careers-premium .careers-btn-primary__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.careers-premium .careers-btn-primary__icon {
  font-size: 1.125rem;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.careers-premium .careers-btn-primary .material-symbols-outlined {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.careers-premium .careers-btn-primary--hero {
  padding: 1.1rem 2.5rem;
  font-size: 13px;
  letter-spacing: 0.16em;
  min-width: 14rem;
}
.careers-premium .careers-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 16px 36px -12px rgba(255, 165, 0, 0.72),
    0 0 0 6px rgba(255, 165, 0, 0.12);
  animation: none;
}
.careers-premium .careers-btn-primary:hover .careers-btn-primary__shine {
  transform: translateX(130%);
}
.careers-premium .careers-btn-primary:hover .careers-btn-primary__icon,
.careers-premium .careers-btn-primary:hover .material-symbols-outlined {
  transform: translateX(4px);
}
.careers-premium .careers-btn-primary:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 10px 24px -12px rgba(255, 165, 0, 0.55);
}
@keyframes careersBtnPulse {
  0%, 100% { box-shadow: 0 8px 24px -8px rgba(255, 165, 0, 0.55), 0 0 0 0 rgba(255, 165, 0, 0.28); }
  50% { box-shadow: 0 10px 28px -8px rgba(255, 165, 0, 0.62), 0 0 0 8px rgba(255, 165, 0, 0); }
}
.careers-premium .careers-hero-apply {
  margin-top: 3rem;
  padding: 2rem 1.5rem 2.25rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(217, 195, 172, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 249, 240, 0.78) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 48px -32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.careers-premium .careers-hero-apply__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto 2rem;
}
.careers-premium .careers-hero-apply__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 165, 0, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.careers-premium .careers-hero-apply__step:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 165, 0, 0.28);
  box-shadow: 0 12px 28px -22px rgba(255, 165, 0, 0.45);
}
.careers-premium .careers-hero-apply__step-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 0.85rem;
  background: rgba(255, 165, 0, 0.12);
  color: #855400;
  font-size: 1.35rem;
}
.careers-premium .careers-hero-apply__step-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: 0.15rem;
}
.careers-premium .careers-hero-apply__step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1c1b;
  margin-bottom: 0.15rem;
}
.careers-premium .careers-hero-apply__step-desc {
  font-size: 0.8125rem;
  color: #534433;
  line-height: 1.45;
}
.careers-premium .careers-hero-apply__connector {
  display: none;
}
.careers-premium .careers-hero-apply__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 165, 0, 0.12);
}
.careers-premium .careers-hero-apply__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: 1rem;
}
.careers-premium .careers-hero-apply__note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #534433;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .careers-premium .careers-hero-apply {
    padding: 2.25rem 2rem 2.5rem;
  }
  .careers-premium .careers-hero-apply__steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
  }
  .careers-premium .careers-hero-apply__connector {
    display: block;
    width: 2rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 165, 0, 0.15), rgba(255, 165, 0, 0.55), rgba(255, 165, 0, 0.15));
  }
  .careers-premium .careers-hero-apply__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
  }
}
.careers-premium .careers-section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.careers-premium .careers-section-head__line {
  width: 3rem;
  height: 3px;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ffa500, transparent);
}
.careers-premium .careers-qual-card {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(217, 195, 172, 0.3);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.careers-premium .careers-qual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, #ffa500, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.careers-premium .careers-qual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 165, 0, 0.35);
  box-shadow: 0 28px 56px -32px rgba(0, 0, 0, 0.18);
}
.careers-premium .careers-qual-card:hover::before {
  opacity: 1;
}
.careers-premium .careers-qual-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.18), rgba(255, 165, 0, 0.06));
  color: #855400;
  font-size: 1.5rem;
}
.careers-premium .careers-highlight-banner {
  position: relative;
  overflow: hidden;
  padding: 2rem 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #fff9f0 0%, #fff 50%, #f9f9f7 100%);
  border: 1px solid rgba(255, 165, 0, 0.22);
  box-shadow: 0 20px 48px -32px rgba(255, 165, 0, 0.25);
}
.careers-premium .careers-highlight-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.12), transparent 70%);
  pointer-events: none;
}
.careers-premium .careers-shift-card--day {
  background: linear-gradient(145deg, #fffdf8 0%, #fff 60%, #fff9ee 100%);
  border-color: rgba(255, 165, 0, 0.25);
}
.careers-premium .careers-shift-card--day .careers-shift-card__badge {
  background: rgba(255, 165, 0, 0.14);
  color: #855400;
}
.careers-premium .careers-shift-card--night {
  background: linear-gradient(145deg, #141820 0%, #0f1218 60%, #1a2030 100%);
  border-color: rgba(107, 211, 255, 0.18);
  color: #fff;
}
.careers-premium .careers-shift-card--night .careers-shift-card__badge {
  background: rgba(107, 211, 255, 0.12);
  color: #6bd3ff;
}
.careers-premium .careers-shift-card--night .text-muted-text {
  color: rgba(255, 255, 255, 0.58) !important;
}
.careers-premium .careers-shift-card--night .careers-shift-card__time {
  color: #6bd3ff !important;
}
.careers-premium .careers-shift-card--night .page-pro-shift-card__icon {
  background: rgba(107, 211, 255, 0.12);
  color: #6bd3ff;
}
.careers-premium .careers-shift-card__badge {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.careers-premium .careers-culture-card {
  padding: 2rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(217, 195, 172, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.careers-premium .careers-culture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.15);
}
.careers-premium .careers-culture-card__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(255, 165, 0, 0.35), rgba(255, 165, 0, 0.08));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.careers-premium .careers-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: careers-step;
}
.careers-premium .careers-process__step {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(217, 195, 172, 0.28);
}
.careers-premium .careers-process__step::before {
  counter-increment: careers-step;
  content: counter(careers-step, decimal-leading-zero);
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffa500;
  margin-bottom: 1rem;
}
.careers-premium .careers-apply-sidebar {
  position: sticky;
  top: 7rem;
}
.careers-premium .careers-apply-info {
  padding: 2rem;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, #111 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 165, 0, 0.15);
  color: #fff;
  box-shadow: 0 28px 60px -32px rgba(0, 0, 0, 0.45);
}
.careers-premium .careers-apply-info__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.careers-premium .careers-apply-info__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.careers-premium .careers-apply-info__icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: rgba(255, 165, 0, 0.12);
  color: #ffa500;
  font-size: 1.125rem;
}
.careers-premium .careers-form-panel {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(217, 195, 172, 0.35);
  border-radius: 1.5rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 40px 80px -40px rgba(0, 0, 0, 0.14);
}
.careers-premium .careers-form-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffa500, #ffb95c, #ffa500);
}
.careers-premium .careers-form-panel__header {
  padding: 2.5rem 2.5rem 0;
}
.careers-premium .careers-form-panel__body {
  padding: 2rem 2.5rem 2.5rem;
}
.careers-premium .careers-file-zone {
  padding: 2rem;
  border-radius: 1rem;
  border: 2px dashed rgba(255, 165, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.04), rgba(255, 165, 0, 0.01));
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.careers-premium .careers-file-zone:hover {
  border-color: rgba(255, 165, 0, 0.55);
  background: rgba(255, 165, 0, 0.06);
}
.careers-premium .careers-file-zone .material-symbols-outlined {
  font-size: 2rem;
  color: #ffa500;
  margin-bottom: 0.5rem;
}
.careers-premium .careers-form input,
.careers-premium .careers-form select {
  background: #f9f9f7;
  border-color: rgba(217, 195, 172, 0.45);
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.careers-premium .careers-form input:focus,
.careers-premium .careers-form select:focus {
  background: #fff;
  border-color: #ffa500;
  box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.12);
}
.careers-premium .careers-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a1c1b 0%, #2f3130 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 165, 0, 0.25);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.careers-premium .careers-submit-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 165, 0, 0.45);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 165, 0, 0.15);
}
.careers-premium .careers-submit-btn .material-symbols-outlined {
  font-size: 1.125rem;
  color: #ffa500;
}
.careers-premium .careers-cta-premium {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.careers-premium .careers-cta-premium__grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .careers-premium .careers-stat-strip {
    grid-template-columns: 1fr;
  }
  .careers-premium .careers-stat-strip__item {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .careers-premium .careers-stat-strip__item:last-child {
    border-bottom: 0;
  }
  .careers-premium .careers-process {
    grid-template-columns: 1fr;
  }
  .careers-premium .careers-form-panel__header,
  .careers-premium .careers-form-panel__body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .careers-premium .careers-badge__dot {
    animation: none;
  }
  .careers-premium .careers-qual-card:hover,
  .careers-premium .careers-culture-card:hover,
  .careers-premium .careers-btn-primary:hover,
  .careers-premium .careers-submit-btn:hover {
    transform: none;
    animation: none;
  }
  .careers-premium .careers-hero-apply__step:hover {
    transform: none;
  }
}

/* ── Careers questionnaire ── */
.careers-premium .careers-questionnaire {
  position: relative;
}
.careers-premium .careers-q-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.careers-premium .careers-q-progress__bar {
  height: 100%;
  width: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffa500, #ffb95c);
  transition: width 0.35s ease;
}
.careers-premium .careers-q-step {
  animation: careersQIn 0.35s ease both;
}
@keyframes careersQIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.careers-premium .careers-q-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.careers-premium .careers-q-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.careers-premium .careers-q-option {
  position: relative;
  cursor: pointer;
}
.careers-premium .careers-q-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.careers-premium .careers-q-option span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 195, 172, 0.45);
  background: #f9f9f7;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.careers-premium .careers-q-option input:checked + span {
  border-color: #ffa500;
  background: rgba(255, 165, 0, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.12);
  color: #855400;
}
.careers-premium .careers-q-option:hover span {
  border-color: rgba(255, 165, 0, 0.45);
}
.careers-premium .careers-q-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.careers-flow .careers-q-fields[hidden],
.careers-premium .careers-q-fields[hidden],
.careers-flow .careers-flow__field[hidden] {
  display: none !important;
}
.careers-premium .careers-q-block {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 0.85rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.55;
}
.careers-premium .careers-q-block .material-symbols-outlined {
  font-size: 1.125rem;
  vertical-align: middle;
  margin-right: 0.35rem;
}
.careers-premium .careers-q-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.careers-premium .careers-q-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb020 0%, #ffa500 100%);
  color: #1a1c1b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.careers-premium .careers-q-btn-prev {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 195, 172, 0.5);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #534433;
}
.careers-premium .careers-q-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 165, 0, 0.08);
  border: 1px solid rgba(255, 165, 0, 0.2);
  font-size: 0.8125rem;
  color: #855400;
  line-height: 1.5;
}
.careers-premium .careers-application-locked {
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 1.25rem;
  border: 1px dashed rgba(217, 195, 172, 0.5);
  background: rgba(255, 255, 255, 0.5);
  color: #534433;
}

/* ── Careers full-screen apply flow (premium) ── */
html.careers-flow-open,
body.careers-flow-open {
  overflow: hidden !important;
  height: 100%;
}
.careers-flow {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
.careers-flow[hidden] {
  display: none !important;
}
.careers-flow__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.careers-flow--visible .careers-flow__backdrop {
  opacity: 1;
}
.careers-flow__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100dvh;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(255, 165, 0, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(255, 165, 0, 0.05), transparent 50%),
    linear-gradient(180deg, #faf9f6 0%, #f3f1ec 100%);
  box-shadow:
    0 0 0 1px rgba(255, 165, 0, 0.14),
    0 32px 80px -24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition:
    opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.careers-flow--visible .careers-flow__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.careers-flow__header {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 165, 0, 0.12);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.careers-flow__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: 0.15rem;
}
.careers-flow__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1c1b;
  transition: opacity 0.25s ease;
}
.careers-flow__header-center {
  min-width: 10rem;
  text-align: center;
}
.careers-flow__phase {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #534433;
  margin-bottom: 0.45rem;
}
.careers-flow__progress {
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}
.careers-flow__progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9f00, #ffb95c, #ffa500);
  background-size: 200% 100%;
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  animation: careersProgressShimmer 2.8s ease-in-out infinite;
}
@keyframes careersProgressShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.careers-flow__close {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(249, 249, 247, 0.9);
  color: #1a1c1b;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.careers-flow__close:hover {
  background: #fff;
  border-color: rgba(255, 165, 0, 0.4);
  box-shadow: 0 4px 14px -6px rgba(255, 165, 0, 0.45);
  transform: rotate(90deg);
}
.careers-flow__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.careers-flow__panel {
  display: none;
  min-height: 100%;
}
.careers-flow__panel--active {
  display: block;
}
.careers-flow__panel--enter .careers-flow__panel-inner {
  animation: careersPanelIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.careers-flow__panel-inner {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 1.5rem;
}
.careers-flow__panel-inner::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.55), transparent);
  pointer-events: none;
}
.careers-flow__panel-inner--form {
  max-width: 52rem;
}
.careers-flow__panel-card {
  position: relative;
  margin-top: 0.5rem;
  padding: 1.75rem 1.35rem 1.5rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 195, 172, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 48px -32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.careers-flow__intro {
  font-size: 0.9375rem;
  color: #534433;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.07), rgba(255, 165, 0, 0.02));
  border: 1px solid rgba(255, 165, 0, 0.14);
  position: relative;
}
.careers-flow__intro::before {
  content: 'info';
  font-family: 'Material Symbols Outlined';
  position: absolute;
  left: 0.85rem;
  top: 0.82rem;
  font-size: 1.125rem;
  color: #ffa500;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.careers-flow__label,
.careers-flow__sub-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #534433;
  margin-bottom: 0.5rem;
}
.careers-flow__sub-label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.careers-flow__field {
  margin-bottom: 1rem;
}
.careers-flow__field-group {
  margin-bottom: 1.25rem;
}
.careers-flow__field--full {
  grid-column: 1 / -1;
}
.careers-flow__input,
.careers-flow__select {
  width: 100%;
  padding: 0.9rem 1.05rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(217, 195, 172, 0.48);
  background: #fff;
  font-size: 0.9375rem;
  color: #1a1c1b;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) inset;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}
.careers-flow__input::placeholder {
  color: rgba(83, 68, 51, 0.45);
}
.careers-flow__input:hover,
.careers-flow__select:hover {
  border-color: rgba(255, 165, 0, 0.35);
}
.careers-flow__input:focus,
.careers-flow__select:focus {
  outline: none;
  border-color: #ffa500;
  box-shadow:
    0 0 0 4px rgba(255, 165, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.03) inset;
  transform: translateY(-1px);
}
.careers-flow__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 1.25rem;
}
.careers-flow__panel--enter .careers-flow__field {
  animation: careersFieldIn 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.careers-flow__panel--enter .careers-flow__field:nth-child(1) { animation-delay: 0.04s; }
.careers-flow__panel--enter .careers-flow__field:nth-child(2) { animation-delay: 0.07s; }
.careers-flow__panel--enter .careers-flow__field:nth-child(3) { animation-delay: 0.1s; }
.careers-flow__panel--enter .careers-flow__field:nth-child(4) { animation-delay: 0.13s; }
.careers-flow__panel--enter .careers-flow__field:nth-child(5) { animation-delay: 0.16s; }
.careers-flow__panel--enter .careers-flow__field:nth-child(6) { animation-delay: 0.19s; }
.careers-flow__panel--enter .careers-flow__field:nth-child(7) { animation-delay: 0.22s; }
.careers-flow__panel--enter .careers-flow__field:nth-child(8) { animation-delay: 0.25s; }
.careers-flow__panel--enter .careers-flow__field:nth-child(9) { animation-delay: 0.28s; }
.careers-flow__panel--enter .careers-flow__field:nth-child(10) { animation-delay: 0.31s; }
@keyframes careersFieldIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.careers-flow__alert {
  padding: 0.875rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  animation: careersAlertIn 0.35s ease both;
}
@keyframes careersAlertIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.careers-flow__alert--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.careers-flow__alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}
.careers-flow__footer {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255, 165, 0, 0.1);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.85) inset;
}
.careers-flow__footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #534433;
}
.careers-flow__footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-left: auto;
}
.careers-flow__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease,
    opacity 0.22s ease,
    background 0.22s ease;
}
.careers-flow__btn--ghost {
  border: 1px solid rgba(217, 195, 172, 0.55);
  background: #fff;
  color: #534433;
}
.careers-flow__btn--ghost:hover {
  border-color: rgba(255, 165, 0, 0.45);
  background: rgba(255, 165, 0, 0.04);
}
.careers-flow__btn--primary {
  background: linear-gradient(135deg, #ffb020 0%, #ffa500 100%);
  color: #1a1c1b;
  box-shadow: 0 10px 24px -12px rgba(255, 165, 0, 0.65);
}
.careers-flow__btn--primary:hover {
  box-shadow: 0 14px 28px -10px rgba(255, 165, 0, 0.75);
}
.careers-flow__btn--submit {
  background: linear-gradient(135deg, #1a1c1b 0%, #2f3130 100%);
  color: #fff;
  border: 1px solid rgba(255, 165, 0, 0.25);
  min-width: 12rem;
  box-shadow: 0 10px 24px -14px rgba(0, 0, 0, 0.55);
}
.careers-flow__btn--submit .material-symbols-outlined {
  color: #ffa500;
  transition: transform 0.22s ease;
}
.careers-flow__btn--submit:hover .material-symbols-outlined {
  transform: translateX(3px);
}
.careers-flow__btn:hover {
  transform: translateY(-2px);
}
.careers-flow__btn:active {
  transform: translateY(0);
}
.careers-flow__btn:disabled {
  opacity: 0.65;
  transform: none;
  cursor: not-allowed;
  box-shadow: none;
}

/* Questionnaire inside flow */
.careers-flow .careers-q-step--enter {
  animation: careersQStepIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes careersQStepIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes careersPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.careers-flow .careers-q-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #1a1c1b;
}
.careers-flow .careers-q-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.careers-flow .careers-q-option {
  position: relative;
  cursor: pointer;
}
.careers-flow .careers-q-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.careers-flow .careers-q-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 195, 172, 0.45);
  background: linear-gradient(180deg, #fff 0%, #f9f9f7 100%);
  font-size: 0.875rem;
  font-weight: 600;
  color: #534433;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.22s ease;
}
.careers-flow .careers-q-option:hover span {
  border-color: rgba(255, 165, 0, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -12px rgba(255, 165, 0, 0.55);
}
.careers-flow .careers-q-option input:checked + span {
  border-color: #ffa500;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.14), rgba(255, 165, 0, 0.06));
  box-shadow:
    0 0 0 3px rgba(255, 165, 0, 0.12),
    0 8px 20px -14px rgba(255, 165, 0, 0.55);
  color: #855400;
  transform: scale(1.02);
}
.careers-flow .careers-q-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 165, 0, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 240, 0.65));
}
.careers-flow .careers-q-fields--reveal {
  animation: careersFieldsReveal 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes careersFieldsReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 40rem;
  }
}
.careers-flow .careers-q-block {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #fef2f2, #fff5f5);
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.55;
  animation: careersAlertIn 0.3s ease both;
}
.careers-flow .careers-q-block--shake {
  animation: careersBlockShake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes careersBlockShake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(5px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
}
.careers-flow .careers-q-block .material-symbols-outlined {
  font-size: 1.125rem;
  vertical-align: middle;
  margin-right: 0.35rem;
}
.careers-flow .careers-q-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 165, 0, 0.08);
  border: 1px solid rgba(255, 165, 0, 0.2);
  font-size: 0.8125rem;
  color: #855400;
  line-height: 1.5;
}
.careers-flow .careers-q-options--stack {
  flex-direction: column;
  align-items: stretch;
}
.careers-flow .careers-q-options--stack .careers-q-option span {
  width: 100%;
  justify-content: center;
}
.careers-flow .careers-file-zone {
  padding: 1.85rem 1.35rem;
  border-radius: 1rem;
  border: 2px dashed rgba(255, 165, 0, 0.32);
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(255, 165, 0, 0.01));
  text-align: center;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.careers-flow .careers-file-zone:hover {
  border-color: rgba(255, 165, 0, 0.55);
  background: rgba(255, 165, 0, 0.07);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -20px rgba(255, 165, 0, 0.55);
}
.careers-flow .careers-file-zone .material-symbols-outlined {
  font-size: 2rem;
  color: #ffa500;
  margin-bottom: 0.5rem;
  transition: transform 0.25s ease;
}
.careers-flow .careers-file-zone:hover .material-symbols-outlined {
  transform: translateY(-3px);
}
.careers-flow .careers-flow__file {
  width: 100%;
  font-size: 0.8125rem;
}
.careers-flow .careers-flow__file::file-selector-button {
  margin-right: 0.75rem;
  padding: 0.55rem 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb020, #ffa500);
  color: #1a1c1b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.careers-flow .careers-flow__file::file-selector-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -8px rgba(255, 165, 0, 0.65);
}
.careers-flow .careers-flow__offices {
  margin: 1.25rem 0;
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(217, 195, 172, 0.4);
  box-shadow: 0 12px 28px -24px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.25s ease;
}
.careers-flow .careers-flow__offices:hover {
  box-shadow: 0 16px 32px -22px rgba(255, 165, 0, 0.25);
}
.careers-flow .careers-flow__offices-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #534433;
  margin-bottom: 0.85rem;
}
.careers-flow .careers-flow__offices-list {
  display: grid;
  gap: 0.85rem;
  max-height: 14rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}
.careers-flow .careers-flow__offices-list li {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #534433;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}
.careers-flow .careers-flow__offices-list li:hover {
  transform: translateX(3px);
}
.careers-flow .careers-flow__offices-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.careers-flow .careers-flow__offices-list strong {
  display: block;
  color: #1a1c1b;
  font-size: 0.875rem;
  margin-bottom: 0.15rem;
}
@media (min-width: 768px) {
  .careers-flow__header {
    padding: 1.25rem 2rem;
    grid-template-columns: 1fr minmax(12rem, 16rem) auto;
  }
  .careers-flow__panel-inner {
    padding: 2.25rem 2rem 2rem;
  }
  .careers-flow__panel-card {
    padding: 2rem 1.75rem 1.75rem;
  }
  .careers-flow__footer {
    padding: 1.15rem 2rem;
  }
  .careers-flow__form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .careers-flow__title {
    font-size: 1.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .careers-flow__dialog,
  .careers-flow__backdrop,
  .careers-flow__progress-bar,
  .careers-flow .careers-q-step--enter,
  .careers-flow .careers-q-fields--reveal,
  .careers-flow__panel--enter .careers-flow__field,
  .careers-flow__alert,
  .careers-flow .careers-q-block,
  .careers-flow .careers-q-block--shake {
    animation: none !important;
    transition: none !important;
  }
  .careers-flow--visible .careers-flow__dialog {
    opacity: 1;
    transform: none;
  }
  .careers-flow--visible .careers-flow__backdrop {
    opacity: 1;
  }
  .careers-flow__btn:hover,
  .careers-flow .careers-q-option:hover span,
  .careers-flow .careers-q-option input:checked + span,
  .careers-flow__input:focus,
  .careers-flow .careers-file-zone:hover {
    transform: none;
  }
  .careers-flow__close:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-pro-hero__brand,
  .page-pro-hero__eyebrow,
  .page-pro-hero__title,
  .page-pro-hero__sub,
  .page-pro-hero__cta {
    animation: none !important;
  }
  .page-pro-job:hover {
    transform: none;
  }
  .page-pro-shift-card:hover {
    transform: none;
  }
}

/* ── Automation — commercial-grade dark theme ── */
.automation-premium {
  background: #0b0b0b;
}
.automation-premium main {
  background:
    radial-gradient(circle at 0 20%, rgba(255, 165, 0, 0.06), transparent 28rem),
    radial-gradient(circle at 100% 60%, rgba(255, 165, 0, 0.04), transparent 32rem),
    #0b0b0b;
}
.automation-premium main > section {
  position: relative;
  isolation: isolate;
}
.automation-premium .auto-section {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.automation-premium .auto-section--alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 40%),
    #121212;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.automation-premium .auto-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffa500;
  margin-bottom: 0.75rem;
}
.automation-premium .auto-section-title {
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}
.automation-premium .auto-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 16px 40px -28px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .28s cubic-bezier(.2,.75,.25,1), border-color .28s ease, box-shadow .28s ease;
}
a.auto-card:hover,
.automation-premium a.auto-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 165, 0, 0.45);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,.6), 0 0 0 1px rgba(255,165,0,.08);
}
.automation-premium .auto-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .85rem;
  background: rgba(255, 165, 0, 0.12);
  color: #ffa500;
  margin-bottom: 1rem;
}
.automation-premium .auto-stat {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  background: rgba(255,255,255,.04);
  padding: 1rem 0.75rem;
  backdrop-filter: blur(8px);
}
.automation-premium .auto-stat__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffa500;
  line-height: 1;
}
.automation-premium .auto-stat__label {
  margin-top: 0.35rem;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.automation-premium .auto-case-media {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  box-shadow: 0 24px 48px rgba(0,0,0,.35);
}
.automation-premium .auto-case-media img {
  display: block;
  width: 100%;
  height: auto;
}
.automation-premium .auto-case-media__caption {
  padding: .75rem 1rem;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.08);
}
.automation-premium .auto-case-chart-card {
  border-color: rgba(255, 165, 0, 0.2);
  background: linear-gradient(145deg, rgba(255, 165, 0, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 20px 48px -28px rgba(255, 165, 0, 0.22);
}
.automation-premium .auto-case-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5rem;
  min-height: 220px;
  padding: 1.5rem 1rem 0;
}
.automation-premium .auto-case-bars__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  min-width: 72px;
}
.automation-premium .auto-case-bars__track {
  width: 56px;
  height: 180px;
  border-radius: .65rem .65rem 0 0;
  background: rgba(255, 165, 0, 0.06);
  border: 1px solid rgba(255, 165, 0, 0.12);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.automation-premium .auto-case-bars__fill {
  width: 100%;
  border-radius: .65rem .65rem 0 0;
  height: 0;
  transform-origin: bottom center;
}
.automation-premium .auto-case-bars__fill--before {
  background: linear-gradient(180deg, rgba(133, 84, 0, 0.55), #855400);
  box-shadow: 0 0 18px rgba(133, 84, 0, 0.25);
}
.automation-premium .auto-case-bars__fill--after {
  background: linear-gradient(180deg, #ffb020, #ffa500);
  box-shadow: 0 0 22px rgba(255, 165, 0, 0.35);
}
.automation-premium .auto-motion-section.is-visible .auto-case-bars__fill--before {
  animation: autoCaseBarBefore 1.1s cubic-bezier(.2, .72, .25, 1) forwards;
}
.automation-premium .auto-motion-section.is-visible .auto-case-bars__fill--after {
  animation: autoCaseBarAfter 1.35s cubic-bezier(.2, .72, .25, 1) .18s forwards;
}
.automation-premium .auto-case-bars__label {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
}
@property --case-profit {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}
.automation-premium .auto-case-donut {
  --case-profit: 0;
  width: min(100%, 260px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(
    #ffa500 0 calc(var(--case-profit) * 1%),
    #855400 calc(var(--case-profit) * 1%) 100%
  );
  display: grid;
  place-items: center;
  position: relative;
  opacity: 0;
  transform: scale(0.88);
  filter: drop-shadow(0 0 24px rgba(255, 165, 0, 0.2));
}
.automation-premium .auto-motion-section.is-visible .auto-case-donut {
  animation: autoCaseDonutIn 0.55s cubic-bezier(.2, .72, .25, 1) forwards,
             autoCaseDonutGrow 1.65s cubic-bezier(.2, .72, .25, 1) 0.12s forwards;
}
.automation-premium .auto-case-donut::after {
  content: '';
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: #121212;
  border: 1px solid rgba(255, 165, 0, 0.12);
}
.automation-premium .auto-case-donut__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, .65);
}
.automation-premium .auto-case-donut__legend span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  opacity: 0;
  transform: translateY(6px);
}
.automation-premium .auto-motion-section.is-visible .auto-case-donut__legend span:nth-child(1) {
  animation: autoCaseLegendIn 0.5s ease 0.85s forwards;
}
.automation-premium .auto-motion-section.is-visible .auto-case-donut__legend span:nth-child(2) {
  animation: autoCaseLegendIn 0.5s ease 1s forwards;
}
.automation-premium .auto-case-donut__dot {
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  font-style: normal;
  flex-shrink: 0;
}
.automation-premium .auto-case-donut__dot--invest {
  background: #855400;
  box-shadow: 0 0 8px rgba(133, 84, 0, 0.45);
}
.automation-premium .auto-case-donut__dot--profit {
  background: #ffa500;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}
.automation-premium .auto-case-stats .auto-stat {
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.automation-premium .auto-motion-section.is-visible .auto-case-stats .auto-stat:nth-child(1) {
  animation: autoCaseStatIn 0.55s cubic-bezier(.2, .72, .25, 1) 0.2s forwards;
}
.automation-premium .auto-motion-section.is-visible .auto-case-stats .auto-stat:nth-child(2) {
  animation: autoCaseStatIn 0.55s cubic-bezier(.2, .72, .25, 1) 0.35s forwards;
}
.automation-premium .auto-motion-section.is-visible .auto-case-stats .auto-stat:nth-child(3) {
  animation: autoCaseStatIn 0.55s cubic-bezier(.2, .72, .25, 1) 0.5s forwards;
}
.automation-premium .auto-case-stats .auto-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 165, 0, 0.35);
  box-shadow: 0 16px 36px -18px rgba(255, 165, 0, 0.35);
}
@keyframes autoCaseBarBefore {
  to { height: 12%; }
}
@keyframes autoCaseBarAfter {
  to { height: 97%; }
}
@keyframes autoCaseDonutIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes autoCaseDonutGrow {
  to { --case-profit: 76; }
}
@keyframes autoCaseLegendIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes autoCaseStatIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.automation-premium .auto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.automation-premium .auto-btn--primary {
  background: #ffa500;
  color: #0b0b0b;
  box-shadow: 0 12px 30px -14px rgba(255, 165, 0, 0.55);
}
.automation-premium .auto-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(255, 165, 0, 0.65);
}
.automation-premium .auto-btn--ghost {
  background: rgba(255,255,255,.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.automation-premium .auto-btn--ghost:hover {
  border-color: rgba(255, 165, 0, 0.5);
  color: #ffa500;
  transform: translateY(-2px);
}
.automation-premium .auto-btn--lg {
  padding: 1rem 2rem;
}
.automation-premium .auto-tab {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  font-size: 0.875rem;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.automation-premium .auto-tab:hover,
.automation-premium .auto-tab.is-active {
  border-color: rgba(255, 165, 0, 0.45);
  color: #ffa500;
  background: rgba(255, 165, 0, 0.08);
}
.automation-premium .auto-quote {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding: 1.5rem;
}
.automation-premium .auto-faq-item {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  background: rgba(255,255,255,.04);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.automation-premium .auto-faq-item:has([data-faq-panel]:not(.hidden)) {
  border-color: rgba(255, 165, 0, 0.4);
  box-shadow: 0 16px 36px -24px rgba(255,165,0,.25);
}
.automation-premium .auto-form {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.25rem;
  background: linear-gradient(160deg, rgba(18,18,18,.95), rgba(11,11,11,.98));
  box-shadow: 0 24px 50px -30px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.05);
}
.automation-premium .auto-form input,
.automation-premium .auto-form select,
.automation-premium .auto-form textarea {
  transition: border-color .2s ease, box-shadow .2s ease;
}
.automation-premium .auto-form input:focus,
.automation-premium .auto-form select:focus,
.automation-premium .auto-form textarea:focus {
  outline: none;
  border-color: rgba(255, 165, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.15);
}
.automation-premium .auto-panel {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.25rem;
  background: #121212;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.automation-premium .auto-crumb {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.auto-page-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 165, 0, 0.06), transparent 45%),
    #0b0b0b;
}
.auto-page-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background:
    radial-gradient(ellipse 55% 50% at 10% 0%, rgba(255, 165, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 40% at 90% 30%, rgba(255, 165, 0, 0.08), transparent 50%);
}
.auto-page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 56rem;
}
.auto-page-hero__brand {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
  margin-bottom: 1rem;
  animation: heroIn .8s cubic-bezier(.2,.72,.25,1) both;
}
.auto-page-hero__brand span {
  color: #ffa500;
}
.auto-page-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
  animation: heroIn .75s .1s cubic-bezier(.2,.72,.25,1) both;
}
.auto-page-hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255,255,255,.68);
  max-width: 48rem;
  animation: heroIn .75s .18s cubic-bezier(.2,.72,.25,1) both;
}
.auto-page-hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  animation: heroIn .75s .26s cubic-bezier(.2,.72,.25,1) both;
}
.auto-cta-band {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(1rem, 4vw, 4rem) 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255,165,0,.15);
  box-shadow: 0 30px 70px -35px rgba(0,0,0,.65);
}
.auto-cta-band__inner {
  position: relative;
  z-index: 1;
}
.auto-cta-band__sub {
  color: rgba(255,255,255,.62);
}
.automation-premium .auto-prose {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.automation-premium .auto-prose p {
  line-height: 1.8;
  color: rgba(255,255,255,.62);
}
.automation-premium .auto-prose p + p {
  margin-top: 1rem;
}
.automation-premium .auto-motion-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.72,.25,1);
}
.automation-premium .auto-motion-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.automation-premium .auto-motion-item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s var(--auto-delay, 0ms) ease, transform .5s var(--auto-delay, 0ms) cubic-bezier(.2,.72,.25,1);
}
.automation-premium .auto-motion-section.is-visible .auto-motion-item {
  opacity: 1;
  transform: translateY(0);
}
.automation-premium .auto-hero .auto-stat {
  transition: transform .28s ease, border-color .28s ease;
}
.automation-premium .auto-hero .auto-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(255,165,0,.35);
}
@media (max-width: 767px) {
  .auto-cta-band {
    margin-left: .75rem;
    margin-right: .75rem;
    border-radius: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .auto-page-hero__brand,
  .auto-page-hero__title,
  .auto-page-hero__sub,
  .auto-page-hero__actions,
  .auto-hero__glow,
  .automation-premium .auto-motion-section,
  .automation-premium .auto-motion-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .auto-cta-band::after {
    animation: none !important;
  }
  .automation-premium .auto-case-bars__fill--before {
    height: 12% !important;
    animation: none !important;
  }
  .automation-premium .auto-case-bars__fill--after {
    height: 97% !important;
    animation: none !important;
  }
  .automation-premium .auto-case-donut {
    opacity: 1 !important;
    transform: none !important;
    --case-profit: 76 !important;
    animation: none !important;
  }
  .automation-premium .auto-case-donut__legend span,
  .automation-premium .auto-case-stats .auto-stat {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ── Automation header / nav ── */
.auto-topbar {
  background: #101010;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.auto-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 2.25rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.auto-topbar__phone,
.auto-topbar__email {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,.62);
  transition: color .2s ease;
}
.auto-topbar__phone:hover,
.auto-topbar__email:hover {
  color: #ffa500;
}
.auto-nav__bar {
  background: rgba(11,11,11,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.auto-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.auto-nav__logo {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  flex-shrink: 0;
}
.auto-nav__brand-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: nowrap;
}
.auto-nav__link,
.auto-nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0.75rem;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,.68);
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.auto-nav__link:hover,
.auto-nav-dropdown__trigger:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.auto-nav__link.is-active,
.auto-nav-dropdown__trigger.is-active {
  color: #ffa500;
  background: rgba(255,165,0,.1);
}
.auto-nav__cta {
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 9999px;
  background: #ffa500;
  color: #0b0b0b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px -12px rgba(255,165,0,.65);
  transition: transform .2s ease, box-shadow .2s ease;
}
.auto-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -12px rgba(255,165,0,.75);
}
.auto-nav__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #fff;
  transition: border-color .2s ease, background .2s ease;
}
.auto-nav__menu-btn:hover {
  border-color: rgba(255,165,0,.4);
  background: rgba(255,165,0,.08);
}
.auto-nav-dropdown {
  position: relative;
}
.auto-nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 18px;
  /* Invisible bridge — keeps :hover active while moving to the menu */
}
.auto-nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  padding: 6px 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(14,14,14,.98);
  box-shadow: 0 20px 44px -18px rgba(0,0,0,.8), 0 0 0 1px rgba(255,165,0,.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 80;
}
.auto-nav-dropdown:hover .auto-nav-dropdown__menu,
.auto-nav-dropdown.is-open .auto-nav-dropdown__menu,
.auto-nav-dropdown:focus-within .auto-nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.auto-nav-dropdown:hover .auto-nav-dropdown__trigger .material-symbols-outlined,
.auto-nav-dropdown.is-open .auto-nav-dropdown__trigger .material-symbols-outlined,
.auto-nav-dropdown:focus-within .auto-nav-dropdown__trigger .material-symbols-outlined {
  transform: rotate(180deg);
}
.auto-nav-dropdown__trigger .material-symbols-outlined {
  transition: transform .2s ease;
}
.auto-nav-dropdown__item {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.74);
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.auto-nav-dropdown__item:hover,
.auto-nav-dropdown__item.is-active {
  color: #ffa500;
  background: rgba(255,165,0,.08);
}
.auto-nav__mobile {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(11,11,11,.98);
  backdrop-filter: blur(12px);
}
.auto-nav__mobile-link {
  display: block;
  padding: 0.65rem 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
}
.auto-nav__mobile-link--sub {
  padding-left: 0.85rem;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}
.auto-nav__mobile-label {
  padding: 0.75rem 0 0.25rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,165,0,.85);
}
@media (max-width: 1279px) {
  .auto-nav__brand-text {
    font-size: 0.95rem;
  }
}

/* ── Achievements page — premium commercial ── */
.achievements-premium main {
  background:
    radial-gradient(circle at 4% 14%, rgba(255, 165, 0, 0.08), transparent 28rem),
    radial-gradient(circle at 96% 42%, rgba(133, 84, 0, 0.055), transparent 32rem),
    #f9f9f7;
}
.achievements-premium .ach-hero {
  border-bottom: 1px solid rgba(133, 84, 0, 0.1);
}
.achievements-premium .ach-hero-badge {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(133, 84, 0, 0.14) !important;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,248,235,.92)) !important;
  box-shadow: 0 24px 50px -32px rgba(44, 31, 10, 0.42);
}
.achievements-premium .ach-hero-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #855400, #ffa500, #ffd27a);
}
.achievements-premium .ach-hero-badge__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: .5rem;
}
.achievements-premium .ach-hero-badge__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #1a1c1b 10%, #855400 55%, #ffa500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .65rem;
}
.achievements-premium .ach-hero-badge__sub {
  font-size: .92rem;
  line-height: 1.55;
  color: #534433;
}
.achievements-premium .ach-stats-bar {
  border: 1px solid rgba(133, 84, 0, 0.14) !important;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(250,248,243,.94)) !important;
  box-shadow: 0 28px 60px -34px rgba(44, 31, 10, 0.45), inset 0 1px 0 rgba(255,255,255,.9);
}
.achievements-premium .ach-stat-card {
  position: relative;
  padding: 1.1rem 1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(133, 84, 0, 0.1);
  background: rgba(255,255,255,.72);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.achievements-premium .ach-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 165, 0, 0.35);
  box-shadow: 0 18px 36px -24px rgba(66, 42, 4, 0.35);
}
.achievements-premium .ach-stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: .75rem;
  background: rgba(255, 165, 0, 0.12);
  color: #855400;
  font-size: 1.25rem;
  margin-bottom: .85rem;
}
.achievements-premium .ach-stat-card__value {
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #855400;
  margin-bottom: .45rem;
}
.achievements-premium .ach-stat-card__label {
  font-size: .84rem;
  line-height: 1.45;
  color: #534433;
}
.achievements-premium .ach-section {
  position: relative;
}
.achievements-premium .ach-section--wash {
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.22)),
    #eeeee9;
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.achievements-premium .ach-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #855400;
  margin-bottom: .75rem;
}
.achievements-premium .ach-section-label--light {
  color: rgba(255, 165, 0, 0.92);
}
.achievements-premium .ach-section-title {
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}
.achievements-premium .ach-prose p {
  line-height: 1.75;
}
.achievements-premium .ach-prose--light p {
  color: rgba(255,255,255,.65);
}
.achievements-premium .ach-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .65rem;
}
.achievements-premium .ach-highlight-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .95rem 1.1rem;
  border-radius: .95rem;
  border: 1px solid rgba(133, 84, 0, 0.12);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(250,248,243,.88));
  box-shadow: 0 10px 28px -22px rgba(34, 25, 12, 0.35);
  font-size: .94rem;
  line-height: 1.5;
  color: #1a1c1b;
  transition: border-color .22s ease, transform .22s ease;
}
.achievements-premium .ach-highlight-item:hover {
  border-color: rgba(255, 165, 0, 0.32);
  transform: translateX(4px);
}
.achievements-premium .ach-highlight-item__icon {
  color: #ffa500;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.achievements-premium .ach-media {
  position: relative;
  margin: 0;
}
.achievements-premium .ach-media--editorial .ach-media__frame {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(133, 84, 0, 0.14);
  background: #fff;
  box-shadow: 0 32px 70px -36px rgba(44, 31, 10, 0.48), inset 0 1px 0 rgba(255,255,255,.9);
  aspect-ratio: 4 / 3;
}
.achievements-premium .ach-media--editorial .ach-media__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15,15,15,.42) 100%);
  pointer-events: none;
}
.achievements-premium .ach-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.72,.25,1);
}
.achievements-premium .ach-media:hover img {
  transform: scale(1.04);
}
.achievements-premium .ach-media__badge {
  position: absolute;
  left: 1rem;
  bottom: 3.35rem;
  z-index: 2;
  padding: .45rem .85rem;
  border-radius: 9999px;
  background: rgba(255, 165, 0, 0.94);
  color: #0b0b0b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -12px rgba(133, 84, 0, 0.65);
}
.achievements-premium .ach-media__caption {
  padding: .9rem 1.1rem;
  font-size: .76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #856a55;
  border: 1px solid rgba(133, 84, 0, 0.1);
  border-top: none;
  border-radius: 0 0 1.35rem 1.35rem;
  background: rgba(249, 246, 239, 0.96);
}
.achievements-premium .ach-story-grid {
  align-items: stretch;
}
.achievements-premium .ach-story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 1.75rem 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(133, 84, 0, 0.13);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(250,248,243,.9));
  box-shadow: 0 20px 48px -32px rgba(34, 25, 12, 0.4);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.achievements-premium .ach-story-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #855400, #ffa500);
}
.achievements-premium .ach-story-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 165, 0, 0.38);
  box-shadow: 0 28px 58px -30px rgba(63, 42, 7, 0.42);
}
.achievements-premium .ach-story-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.achievements-premium .ach-story-card__index {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ffa500;
}
.achievements-premium .ach-story-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .9rem;
  background: rgba(255, 165, 0, 0.14);
  color: #855400;
  font-size: 1.55rem;
}
.achievements-premium .ach-story-card__title {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.achievements-premium .ach-mission {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 165, 0, 0.14) !important;
  box-shadow: 0 32px 70px -36px rgba(0, 0, 0, 0.55);
}
.achievements-premium .ach-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
@media (min-width: 640px) {
  .achievements-premium .ach-partner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.achievements-premium .ach-partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem .75rem;
  border-radius: 1rem;
  border: 1px solid rgba(133, 84, 0, 0.12);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 28px -20px rgba(34, 25, 12, 0.35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #534433;
  transition: transform .22s ease, border-color .22s ease;
}
.achievements-premium .ach-partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 165, 0, 0.35);
}
.achievements-premium .ach-partner-card .material-symbols-outlined {
  color: #855400;
  font-size: 1.45rem;
}
.achievements-premium .ach-impact-num {
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #855400, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.achievements-premium .ach-cta {
  margin: 0 clamp(1rem, 4vw, 4rem) 0;
  border-radius: 32px;
  box-shadow: 0 30px 70px -38px rgba(0,0,0,.58);
}
.achievements-premium .ach-cta__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 165, 0, 0.92);
  margin-bottom: .75rem;
}
.achievements-premium .ach-motion-section {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.72,.25,1);
}
.achievements-premium .ach-motion-section.is-visible {
  opacity: 1;
  transform: none;
}
.achievements-premium .ach-motion-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ach-delay, 0ms) ease, transform .55s var(--ach-delay, 0ms) cubic-bezier(.2,.72,.25,1);
}
.achievements-premium .ach-motion-section.is-visible .ach-motion-item,
.achievements-premium .ach-motion-item.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 767px) {
  .achievements-premium .ach-cta {
    margin-left: .75rem;
    margin-right: .75rem;
    border-radius: 22px;
  }
  .achievements-premium .ach-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .achievements-premium .ach-motion-section,
  .achievements-premium .ach-motion-item,
  .achievements-premium .ach-media img,
  .achievements-premium .ach-story-card,
  .achievements-premium .ach-stat-card,
  .achievements-premium .ach-highlight-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── FAQ page — premium commercial ── */
.faq-premium main {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 165, 0, 0.07), transparent 24rem),
    radial-gradient(circle at 92% 40%, rgba(133, 84, 0, 0.045), transparent 28rem),
    #f9f9f7;
}
.faq-hero-panel a {
  transition: color .2s ease;
}
.faq-toolbar {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}
.faq-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(133, 84, 0, 0.16);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #534433;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.faq-filter:hover {
  border-color: rgba(255, 165, 0, 0.45);
  color: #1a1c1b;
}
.faq-filter.is-active {
  background: rgba(255, 165, 0, 0.14);
  border-color: #ffa500;
  color: #1a1c1b;
}
.faq-filter__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 9999px;
  background: rgba(133, 84, 0, 0.08);
  font-size: 10px;
  font-weight: 700;
}
.faq-filter.is-active .faq-filter__count {
  background: rgba(255, 165, 0, 0.22);
}
.faq-group__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(255, 165, 0, 0.12);
  color: #855400;
}
.faq-premium .faq-item {
  border: 1px solid rgba(133, 84, 0, 0.13);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(250,248,243,.88));
  box-shadow: 0 10px 32px -26px rgba(34, 25, 12, 0.35);
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.faq-premium .faq-item.open,
.faq-premium .faq-item:has([data-faq-panel]:not(.hidden)) {
  border-color: rgba(255, 165, 0, 0.42);
  box-shadow: 0 18px 40px -28px rgba(133, 84, 0, 0.35);
}
.faq-item__btn {
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  color: #1a1c1b;
}
.faq-item__icon {
  color: #ffa500;
  transition: transform .25s ease;
}
.faq-premium .faq-item.open .faq-item__icon,
.faq-premium .faq-item:has([data-faq-panel]:not(.hidden)) .faq-item__icon {
  transform: rotate(180deg);
}
.faq-item__panel {
  padding: 0 1.35rem 1.25rem;
  color: #534433;
  line-height: 1.75;
  font-size: 0.95rem;
}
.faq-group.is-hidden,
.faq-item.is-hidden {
  display: none !important;
}
.faq-ask {
  margin-top: 1rem;
}


