:root {
  --bg-a: #edf7e8;
  --bg-b: #f8fbf2;
  --bg-c: #fffdf6;
  --ink: #161b1f;
  --muted: rgba(22, 27, 31, .72);
  --accent: #84bd38;
  --accent-rgb: 132, 189, 56;
  --title-rgb: 132, 189, 56;
  --wallpaper-image: radial-gradient(circle at 50% 50%, rgba(132,189,56,.10), transparent 40%);
  --wallpaper-opacity: .85;
  --nav-pad: clamp(24px, 3vw, 56px);
  --page-bg: #f4f6f9;
  --page-color: #161b1f;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--bg-a);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
button, a { font: inherit; color: inherit; }
button { border: 0; padding: 0; background: transparent; cursor: pointer; }
a { text-decoration: none; }
img, svg, video { display: block; }

.hero {
  position: sticky;
  top: 0;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 74%, rgba(var(--accent-rgb), .12), transparent 28%),
    radial-gradient(circle at 25% 18%, rgba(255,255,255,.72), transparent 18%),
    linear-gradient(135deg, var(--bg-a) 0%, var(--bg-b) 56%, var(--bg-c) 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.wallpaper {
  position: absolute;
  inset: 0;
  background-image: var(--wallpaper-image);
  background-size: cover;
  background-position: center;
  opacity: var(--wallpaper-opacity);
  filter: saturate(1.03);
}
.wallpaper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.04) 34%, rgba(255,255,255,.18) 100%);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: .58;
}
.glow-a {
  width: min(34vw, 520px);
  height: min(34vw, 520px);
  right: 6vw;
  bottom: 8vh;
  background: rgba(var(--accent-rgb), .18);
}
.glow-b {
  width: min(16vw, 220px);
  height: min(16vw, 220px);
  left: 14vw;
  top: 11vh;
  background: rgba(255,255,255,.94);
}
.grain {
  position: absolute;
  inset: 0;
  opacity: .028;
  background-image: radial-gradient(rgba(0,0,0,.55) .7px, transparent .8px);
  background-size: 10px 10px;
}

.design-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.scene-panel,
.scene-floor,
.accent-ring,
.accent-pill,
.accent-line,
.accent-dot {
  position: absolute;
  display: block;
}
.scene-panel {
  display: none !important;
  display: none !important;
  left: 53%;
  top: 51.4%;
  width: min(43vw, 630px);
  height: min(60vh, 680px);
  transform: translate(-50%, -50%);
  border-radius: 48px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.26), rgba(255,255,255,.08)),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.64), transparent 18%),
    radial-gradient(circle at 80% 72%, rgba(var(--accent-rgb), .14), transparent 26%);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
  backdrop-filter: blur(5px);
  opacity: .82;
}
.scene-floor {
  left: 53%;
  bottom: 13.5%;
  width: min(29vw, 420px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), .24), transparent);
}
.accent-ring {
  left: 68%;
  top: 28%;
  width: clamp(78px, 8vw, 124px);
  height: clamp(78px, 8vw, 124px);
  border: 1.4px solid rgba(var(--accent-rgb), .18);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(var(--accent-rgb), .03);
}
.accent-pill {
  left: 29%;
  top: 64%;
  width: clamp(78px, 7vw, 118px);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .02), rgba(var(--accent-rgb), .22));
}
.accent-line {
  width: 1px;
  background: linear-gradient(180deg, rgba(var(--accent-rgb), .02), rgba(var(--accent-rgb), .24), rgba(var(--accent-rgb), .02));
}
.accent-line-a { left: 61.2%; top: 22%; height: clamp(110px, 14vw, 200px); }
.accent-line-b { left: 71%; top: 58%; height: clamp(70px, 9vw, 130px); }
.accent-dot {
  left: 72%;
  top: 40%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .54);
  box-shadow: 0 0 0 10px rgba(var(--accent-rgb), .06);
}

 .nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 2147483647;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  column-gap: 10px;
  height: 72px;
  padding: 18px 18px;
  pointer-events: none;
  transition: filter .28s ease, color .28s ease;
}
.brand { justify-self: start; pointer-events: auto; position: relative; z-index: 2147483647; }
.brand img {
  width: 138px;
  height: auto;
  object-fit: contain;
  transition: filter .28s ease, opacity .28s ease;
}
.menu-shell {
  display: none;
  justify-self: center;
  position: relative;
  z-index: 2147483647;
  padding: 14px 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.52), 0 12px 36px rgba(16,22,26,.035);
  backdrop-filter: blur(12px);
}
.menu {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 48px);
}
.menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 22px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -.035em;
  color: rgba(22, 27, 31, .82);
}
.menu-layer { display: inline-flex; gap: 0; }
.menu-layer.is-bottom { position: absolute; inset: 0 auto auto 0; opacity: 0; }
.menu-letter { display: inline-block; white-space: pre; }

.menu-toggle {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68), 0 10px 26px rgba(16,22,26,.06);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  justify-self: center;
  position: relative;
  z-index: 2147483647;
  pointer-events: auto;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(22,27,31,.88);
  transform-origin: center;
  transition: background-color .28s ease;
}

.nav.is-dark .brand img {
  filter: brightness(0) invert(1);
}

.nav.is-dark .menu-toggle {
  background: rgba(11, 17, 24, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 26px rgba(0,0,0,.16);
}

.nav.is-dark .menu-toggle span {
  background: rgba(255,255,255,.92);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu__backdrop {
  position: absolute; inset: 0;
  background: rgba(237, 247, 232, .38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.mobile-menu__panel {
  position: absolute;
  top: 92px;
  left: 18px;
  right: 18px;
  width: auto;
  z-index: 2147483647;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 28px 50px rgba(16,22,26,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform-origin: top center;
}
.mobile-menu__nav {
  display: grid;
  gap: 8px;
}
.mobile-menu__nav a {
  position: relative;
  display: block;
  padding: 16px 16px;
  border-radius: 18px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(22,27,31,.92);
  background: rgba(255,255,255,.38);
  overflow: hidden;
}
.mobile-menu__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.mobile-action {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 16px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.42);
  color: rgba(22,27,31,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.mobile-action svg {
  width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.05; stroke-linecap: round; stroke-linejoin: round;
}
.mobile-action span { font-size: 12px; font-weight: 600; letter-spacing: -.02em; }

.actions {
  justify-self: end;
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: 70px;
}
.icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: rgba(22, 27, 31, .92);
}
.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-word {
  position: absolute;
  z-index: 2;
  left: 3vw;
  right: 3vw;
  top: 14svh;
  margin: 0;
  color: rgba(var(--title-rgb), .16);
  font-size: clamp(120px, 17vw, 280px);
  line-height: .8;
  font-weight: 800;
  letter-spacing: -.085em;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  text-transform: none;
}
.hero-word .char { display: inline-block; will-change: transform, opacity; opacity: 1; }

.side-nav {
  position: absolute;
  top: 46%;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 4.4vw, 66px);
  height: clamp(48px, 4.4vw, 66px);
  border-radius: 999px;
  color: rgba(22,27,31,.72);
  opacity: .92;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(255, 255, 255, .56);
  box-shadow: 0 18px 44px rgba(16, 22, 26, .10);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}
.side-prev { left: clamp(18px, 4vw, 56px); }
.side-next { right: clamp(18px, 4vw, 56px); }
.side-nav svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-stage {
  position: absolute;
  z-index: 10;
  left: 53%;
  top: 50.6%;
  width: min(68vw, 980px);
  height: min(88svh, 880px);
  transform: translate(-50%, -50%);
  perspective: 1800px;
  cursor: none;
}
.product-stage:active { cursor: grabbing; }
.product-rig {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  isolation: isolate;
  will-change: transform;
}
.product-img {
  position: absolute;
  left: 50%;
  top: 50.2%;
  z-index: 4;
  height: clamp(530px, 70svh, 790px);
  width: auto;
  max-width: min(34vw, 390px);
  object-fit: contain;
  object-position: center center;
  transform: translate(-50%, -50%);
  transform-origin: 50% 62%;
  filter: drop-shadow(0 38px 32px rgba(14, 20, 24, .12));
  will-change: transform, opacity, filter;
  user-select: none;
  pointer-events: none;
}
.product-img.is-active { z-index: 4; pointer-events: auto; }
.product-img.is-next { z-index: 3; }
.product-shadow {
  position: absolute;
  left: 50%;
  bottom: 7.6%;
  z-index: 0;
  width: clamp(250px, 24vw, 390px);
  height: clamp(54px, 5.2vw, 82px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(14,20,24,.34) 0%, rgba(14,20,24,.20) 34%, rgba(14,20,24,.08) 57%, transparent 76%);
  filter: blur(17px);
  opacity: .94;
}
.product-shadow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 52%;
  height: 18%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(14,20,24,.20);
  filter: blur(4px);
}
.product-shadow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 78%;
  height: 58%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), .10), transparent 70%);
  filter: blur(8px);
}

.scene-prop {
  position: absolute;
  left: var(--prop-x, 22%);
  top: var(--prop-y, 61%);
  z-index: 20;
  width: var(--prop-size, 220px);
  height: var(--prop-size, 220px);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(var(--prop-scale, 1));
  will-change: transform, opacity;
  transform-style: preserve-3d;
}
.scene-prop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 78%;
  height: 20%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(10,14,16,.24), rgba(10,14,16,0) 72%);
  filter: blur(12px);
  opacity: .7;
}
.scene-prop-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(12,18,22,.18));
  transform: translateZ(0);
  user-select: none;
  -webkit-user-drag: none;
}

.pin {
  display: none !important;
  position: absolute;
  z-index: 8;
  width: clamp(32px, 2.6vw, 48px);
  height: clamp(32px, 2.6vw, 48px);
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 16px 35px rgba(0,0,0,.16);
}
.pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24%;
  height: 24%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #111;
}
.pin::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}
.pin-one { left: 39%; top: 27%; }
.pin-two { left: 56%; top: 63%; width: clamp(28px, 2.1vw, 40px); height: clamp(28px, 2.1vw, 40px); }

.copy {
  position: absolute;
  z-index: 18;
  left: var(--nav-pad);
  bottom: clamp(34px, 4.7vw, 64px);
  width: min(390px, 31vw);
}
.copy h2 {
  margin: 0 0 14px;
  font-size: clamp(20px, 1.75vw, 34px);
  line-height: 1.08;
  letter-spacing: -.06em;
  font-weight: 700;
}
.copy p {
  margin: 0 0 26px;
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.45;
  letter-spacing: -.03em;
  color: var(--muted);
}
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 236px;
  height: 68px;
  padding: 0 14px 0 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: #20262a;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.035em;
  box-shadow: 0 12px 24px rgba(14, 20, 24, .08);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.cta::before {
  content: "";
  position: absolute;
  left: 42%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(var(--cta-fill-scale, .12));
  background: rgba(var(--accent-rgb), .18);
  opacity: var(--cta-fill-opacity, 0);
}
.cta-text { position: relative; z-index: 2; }
.cta-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(var(--accent-rgb), .95);
  box-shadow: 0 10px 18px rgba(var(--accent-rgb), .22);
  flex: 0 0 52px;
}
.cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-card {
  position: absolute;
  z-index: 18;
  right: var(--nav-pad);
  bottom: clamp(34px, 4.6vw, 64px);
  width: clamp(210px, 16vw, 300px);
  aspect-ratio: 2.48 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
  box-shadow: 0 16px 36px rgba(16, 22, 26, .14);
}
.video-fill {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(var(--accent-rgb), .86);
  opacity: .96;
  z-index: 1;
}
.video-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.play {
  position: absolute;
  right: 18px;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 24px rgba(0,0,0,.16);
}

.morph-play {
  --play-color: #0b1118;
  --play-bg: rgba(255, 255, 255, .94);
  --play-bg-hover: #ffffff;
  color: var(--play-color);
  background: var(--play-bg);
  isolation: isolate;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), background-color .35s ease, color .35s ease, box-shadow .35s ease;
}

.morph-play::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(var(--accent-rgb), .14);
  transform: scale(.72);
  opacity: 0;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), opacity .35s ease;
}

.morph-play__shape {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
}

.morph-play__triangle {
  position: absolute;
  inset: 3px 2px 3px 5px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform-origin: center;
  transition: clip-path .45s cubic-bezier(.16, 1, .3, 1), transform .45s cubic-bezier(.16, 1, .3, 1), opacity .28s ease;
}

.morph-play__pause {
  position: absolute;
  inset: 3px 4px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transform: scale(.7) rotate(-8deg);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), opacity .28s ease;
}

.morph-play__pause i {
  display: block;
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: currentColor;
}

.video-card:hover .morph-play,
.showreel-video:hover .morph-play,
.ref-video-card:hover .morph-play {
  background: var(--play-bg-hover);
  color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.showreel-video:hover .morph-play,
.ref-video-card:hover .morph-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card:hover .morph-play::before,
.showreel-video:hover .morph-play::before,
.ref-video-card:hover .morph-play::before {
  opacity: 1;
  transform: scale(1);
}

.video-card:hover .morph-play__triangle,
.showreel-video:hover .morph-play__triangle,
.ref-video-card:hover .morph-play__triangle {
  opacity: 0;
  transform: scale(.58) rotate(12deg);
}

.video-card:hover .morph-play__pause,
.showreel-video:hover .morph-play__pause,
.ref-video-card:hover .morph-play__pause {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.slider-ui {
  position: absolute;
  z-index: 19;
  left: 50%;
  bottom: clamp(28px, 2.8vw, 42px);
  transform: translateX(-50%);
}
.status-wrap { display: flex; flex-direction: column; align-items: center; gap: 7px; min-width: 110px; }
.count {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(22, 27, 31, .62);
}
.progress {
  position: relative;
  width: 98px;
  height: 3px;
  border-radius: 999px;
  background: rgba(22, 27, 31, .14);
  overflow: hidden;
}
.progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: var(--ink);
}

.drag-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 70;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  color: rgba(17,20,22,.86);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.03em;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  scale: .88;
  box-shadow: 0 14px 36px rgba(0,0,0,.09);
}
.drag-arrow { color: rgba(var(--accent-rgb), .95); font-size: 18px; line-height: 1; }

.video-modal {
  width: min(1120px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 30px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.video-modal::backdrop {
  background: rgba(7, 10, 12, .64);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.video-modal__inner {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 46px 110px rgba(0,0,0,.42);
  transform-origin: 50% 50%;
}
.video-frame-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame-shell iframe,
.video-frame-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.close-video {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.62);
  background: rgba(255,255,255,.86);
  color: #111;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}

@media (max-width: 1050px) {
  .hero-word { left: 4vw; right: 4vw; top: 16svh; font-size: clamp(92px, 18vw, 220px); }
  .product-stage { left: 53%; top: 50%; width: 78vw; }
  .product-img { height: clamp(500px, 66svh, 730px); max-width: min(40vw, 360px); }
  .scene-panel { width: min(48vw, 560px); height: min(52vh, 580px); }
  .copy { width: min(340px, 36vw); }
}

@media (max-width: 740px) {
  .nav {
    height: 72px;
    padding: 18px 18px;
    grid-template-columns: 1fr auto auto;
    column-gap: 10px;
  }
  .brand img { width: 138px; }
  .menu-shell { display: none; }
  .menu-toggle { display: inline-flex; }
  .actions { display: none; }
  .icon { width: 25px; height: 25px; }

  .hero-word {
    left: 50%;
    right: auto;
    top: 14svh;
    transform: translateX(-50%);
    font-size: clamp(62px, 18vw, 112px);
    letter-spacing: -.09em;
  }

  .side-nav {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .side-nav svg { width: 28px; height: 28px; }
  .side-prev { left: 16px; }
  .side-next { right: 16px; }

  .scene-panel {
    left: 50%;
    top: 38%;
    width: calc(100vw - 44px);
    height: 36svh;
    border-radius: 28px;
  }
  .scene-floor { left: 50%; bottom: 20.5%; width: 52vw; }

  .product-stage {
    left: 50%;
    top: 41.5%;
    width: 100vw;
    height: 52svh;
  }
  .product-img {
    top: 49%;
    height: clamp(350px, 48svh, 500px);
    max-width: min(70vw, 270px);
  }
  .product-shadow { bottom: 11%; width: 210px; height: 48px; }
  .scene-prop { left: 33%; top: 62%; width: 148px; height: 148px; z-index: 30; }
  .scene-prop::after { bottom: 6%; }
  .pin-one { left: 31%; top: 28%; }
  .pin-two { left: 58%; top: 60%; }

  .accent-ring { left: 73%; top: 24%; width: 70px; height: 70px; }
  .accent-pill { left: 12%; top: 55%; width: 64px; }
  .accent-line-a { left: 65%; top: 24%; height: 80px; }
  .accent-line-b { left: 78%; top: 52%; height: 62px; }
  .accent-dot { left: 79%; top: 36%; width: 10px; height: 10px; }

  .copy {
    left: 18px;
    right: 18px;
    bottom: 104px;
    width: auto;
    max-width: 320px;
  }
  .copy h2 { margin-bottom: 10px; font-size: 18px; }
  .copy p { margin-bottom: 16px; font-size: 14px; max-width: 270px; }
  .cta { min-width: 0; height: 56px; padding: 0 10px 0 18px; font-size: 14px; }
  .cta-icon { width: 44px; height: 44px; flex-basis: 44px; }

  .video-card {
    width: 124px;
    right: 18px;
    bottom: 28px;
    border-radius: 10px;
  }
  .video-fill, .play { right: 10px; width: 42px; height: 42px; }

  .slider-ui { bottom: 30px; }
  .status-wrap { min-width: 88px; }
  .progress { width: 74px; }

  .drag-cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}



/* =========================
   Custom Bespoke Premium Sections Style
   ========================= */

.home-main {
  position: relative;
  z-index: 60;
  margin-top: 0;
  background-color: var(--page-bg);
  color: var(--page-color);
  transition: background-color 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), color 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 -30px 80px rgba(22, 27, 31, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* --- AMBIENT BACKDROP GLOWS --- */
.ambient-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.ambient-blob {
  position: absolute;
  width: min(50vw, 680px);
  height: min(50vw, 680px);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.11;
  will-change: transform;
  transform: translateZ(0);
}
.blob-1 {
  background: rgba(132, 189, 56, 0.18);
  top: 8%;
  left: -15%;
}
.blob-2 {
  background: rgba(47, 142, 219, 0.32);
  top: 42%;
  right: -15%;
}
.blob-3 {
  background: rgba(215, 163, 70, 0.28);
  top: 78%;
  left: 8%;
}

.container {
  width: min(1280px, 100vw - clamp(32px, 7vw, 112px));
  margin-inline: auto;
}

.sec-header {
  margin-bottom: clamp(48px, 6vw, 84px);
  max-width: 920px;
}

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 14px;
}

.sec-title {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 82px);
  line-height: .84;
  letter-spacing: -.085em;
  font-weight: 800;
  color: #161b1f;
}

/* --- SHOWREEL --- */
.sec-showreel {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  background: transparent;
  color: var(--page-color);
  overflow: hidden;
}

.showreel-sticky {
  position: relative;
  top: auto;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 40px) clamp(22px, 4vw, 72px);
}

.showreel-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  background: transparent;
  border: 0;
  box-shadow: none;
  transform-origin: center;
  will-change: transform;
}

.showreel-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: min(860px, calc(100vw - 44px));
  padding: 0;
  text-align: center;
  will-change: transform, opacity;
}

.showreel-copy .eyebrow {
  color: var(--accent);
}

.showreel-title {
  margin: 0 0 20px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(38px, 5.2vw, 88px);
  line-height: .84;
  letter-spacing: -.085em;
  font-weight: 800;
  color: var(--page-color);
}

.showreel-copy p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.42;
  letter-spacing: -0.035em;
}

.showreel-cta {
  width: fit-content;
  margin-top: 34px;
  padding: 14px 30px;
  border-radius: 999px;
  background: #ffffff;
  color: #139fda;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.showreel-video {
  position: relative;
  width: min(560px, calc(100vw - 80px));
  height: clamp(220px, 34svh, 390px);
  margin-inline: auto;
  overflow: hidden;
  background: #0b1118;
  color: #161b1f;
  border-radius: clamp(18px, 2.2vw, 32px);
  box-shadow: 0 34px 90px rgba(22,27,31,.14);
  transform-origin: center;
  will-change: transform, width, height;
}

.showreel-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
}

.showreel-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(62px, 7vw, 104px);
  height: clamp(62px, 7vw, 104px);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: #0b1118;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

/* --- LOGO CLOUD (TOEPASSINGEN) --- */
.sec-logos {
  position: relative;
  z-index: 1;
  padding: clamp(74px, 8vw, 120px) 0 clamp(44px, 5vw, 68px) 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.logo-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 20px;
  --mouse-x: 50%;
  --mouse-y: 50%;
  background: radial-gradient(120px circle at var(--mouse-x) var(--mouse-y), rgba(var(--accent-rgb), 0.08), transparent 80%), rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 27, 31, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.logo-badge:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 36px var(--glow-color);
  background: radial-gradient(120px circle at var(--mouse-x) var(--mouse-y), rgba(var(--accent-rgb), 0.15), transparent 80%), #ffffff;
}

.badge-icon {
  font-size: 22px;
}

.badge-label {
  font-size: 15px;
  font-weight: 650;
  color: #161b1f;
  letter-spacing: -0.025em;
}

/* --- PRODUCTS SHOWCASE --- */
.sec-products {
  position: relative;
  z-index: 1;
  padding: clamp(44px, 5vw, 68px) 0;
}

.product-category {
  margin-bottom: clamp(62px, 7vw, 98px);
}

.category-title {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(28px, 2.6vw, 44px);
  margin: 0 0 8px 0;
  font-weight: 800;
  color: inherit;
  letter-spacing: -0.07em;
}

.category-subtitle {
  margin: 0 0 34px 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.product-card {
  position: relative;
  --mouse-x: 50%;
  --mouse-y: 50%;
  background: radial-gradient(280px circle at var(--mouse-x) var(--mouse-y), rgba(var(--accent-glow-rgb), 0.07), transparent 80%), rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(22, 27, 31, 0.05);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.015);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.product-card:hover {
  border-color: var(--accent-glow);
  box-shadow: 0 24px 54px rgba(var(--accent-glow-rgb), 0.18);
  background: radial-gradient(280px circle at var(--mouse-x) var(--mouse-y), rgba(var(--accent-glow-rgb), 0.13), transparent 80%), #ffffff;
}

.parallax-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.7) 0%, rgba(22, 27, 31, 0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(26px);
  transform-style: preserve-3d;
}

.parallax-wrap img {
  width: auto;
  height: 115%;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(22, 27, 31, 0.08));
  pointer-events: none;
  transform: translateY(0);
}

.product-info h4 {
  transform: translateZ(20px);
}
.product-info p, .product-tags {
  transform: translateZ(12px);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tags span {
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(22, 27, 31, 0.04);
  color: rgba(22, 27, 31, 0.58);
}

.product-info h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #161b1f;
  letter-spacing: -0.03em;
}

.product-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  letter-spacing: -0.015em;
}

/* --- AANPAK --- */
.sec-approach {
  position: relative;
  z-index: 4;
  height: 100svh;
  min-height: 100svh;
  padding: clamp(76px, 7vw, 112px) 0;
  background: #0b1118;
  color: #f8fbf2;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.sec-approach::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0b1118;
  pointer-events: none;
}

.sec-approach .sec-title {
  color: #f8fbf2;
}

.sec-approach .eyebrow {
  color: var(--accent);
}

.sec-approach .container {
  position: relative;
  z-index: 2;
}

.sec-approach .sec-header {
  color: #f8fbf2;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.approach-card {
  position: relative;
  --mouse-x: 50%;
  --mouse-y: 50%;
  opacity: 0;
  visibility: hidden;
  background: radial-gradient(260px circle at var(--mouse-x) var(--mouse-y), rgba(132, 189, 56, 0.08), transparent 80%), rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: opacity, transform;
}

.timeline-line-container {
  position: absolute;
  left: clamp(34px, 7vw, 112px);
  right: clamp(34px, 7vw, 112px);
  top: 58%;
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  z-index: 1;
  pointer-events: none;
}

.timeline-line-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #53b7a5);
  box-shadow: 0 0 16px rgba(132, 189, 56, 0.6);
  will-change: width;
}

.step-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 22px;
  filter: drop-shadow(0 0 8px rgba(132, 189, 56, 0.3));
  transform: translateZ(24px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease, filter 0.4s ease;
}

.approach-card:hover .step-icon {
  transform: translateZ(36px) scale(1.08);
  color: #ffffff;
  filter: drop-shadow(0 0 14px var(--accent));
}

.approach-card:hover {
  border-color: rgba(132, 189, 56, 0.4);
  background: radial-gradient(260px circle at var(--mouse-x) var(--mouse-y), rgba(132, 189, 56, 0.12), transparent 80%), rgba(255, 255, 255, 0.065);
  box-shadow: 0 20px 48px rgba(132, 189, 56, 0.12);
}

.approach-card:hover .step-num {
  -webkit-text-stroke-color: var(--accent);
  color: rgba(132, 189, 56, 0.08);
  transform: translateZ(40px);
}

.step-num {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(54px, 5vw, 76px);
  line-height: 1;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 6px;
  transform: translateZ(32px);
}

.approach-card h4 {
  margin: 0 0 12px 0;
  font-size: 21px;
  font-weight: 700;
  color: #f8fbf2;
  letter-spacing: -0.03em;
  transform: translateZ(22px);
}

.step-desc {
  margin: 0 0 24px 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(248, 251, 242, 0.72);
  transform: translateZ(14px);
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transform: translateZ(14px);
}

.step-tags span {
  font-size: 11px;
  font-weight: 650;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
}

.approach-card:hover .step-tags span {
  border-color: rgba(132, 189, 56, 0.25);
  background: rgba(132, 189, 56, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 980px) {
  .sec-approach {
    height: auto;
    min-height: 100svh;
  }

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

  .timeline-line-container {
    left: 50%;
    top: 10%;
    bottom: 5%;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }

  .timeline-line-progress {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--accent), #53b7a5);
  }
}

.step-details li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
}

/* --- PRACTICAL ADVICE --- */
.sec-advice {
  position: relative;
  z-index: 1;
  padding: clamp(74px, 8vw, 120px) 0;
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.advice-card {
  position: relative;
  background: #161b1f;
  color: #ffffff;
  border-radius: 32px;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(22, 27, 31, 0.05);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
  transform-style: preserve-3d;
}

.advice-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(132, 189, 56, 0.14);
  filter: blur(48px);
  pointer-events: none;
  z-index: -1;
  transition: all 0.45s ease;
}

.advice-card:hover {
  box-shadow: 0 28px 58px rgba(22, 27, 31, 0.15);
}

.advice-card:hover::after {
  background: rgba(132, 189, 56, 0.22);
  transform: scale(1.1);
}

.card-tag {
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

  .advice-card h4 {
    transform: translateZ(24px);
  }
  .advice-card p, .advice-card .card-tag {
    transform: translateZ(14px);
  }

.advice-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.015em;
}

/* --- CONTACT --- */
.sec-contact {
  position: relative;
  z-index: 1;
  padding: clamp(74px, 8vw, 120px) 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-panel h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -0.075em;
  margin: 0;
  color: #161b1f;
}

.contact-info-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: -0.015em;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.email-link {
  font-size: 24px;
  font-weight: 700;
  color: #161b1f;
  border-bottom: 2px solid rgba(22, 27, 31, 0.08);
  width: fit-content;
  transition: all 0.3s ease;
  padding-bottom: 4px;
  letter-spacing: -0.02em;
}

.email-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.location {
  font-size: 14px;
  color: rgba(22, 27, 31, 0.4);
  font-weight: 500;
}

.contact-form-panel {
  background: rgba(247, 250, 242, 0.65);
  border: 1px solid rgba(22, 27, 31, 0.05);
  border-radius: 36px;
  padding: clamp(24px, 3.5vw, 44px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.015);
}

.glass-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(22, 27, 31, 0.08);
  background: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 500;
  color: #161b1f;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(132, 189, 56, 0.1);
}

.form-group label {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 15px;
  color: rgba(22, 27, 31, 0.42);
  font-weight: 500;
  pointer-events: none;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 12px;
  font-size: 11px;
  font-weight: 750;
  color: var(--accent);
  background: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.015);
  border: 1px solid rgba(22, 27, 31, 0.04);
}

.form-group select:focus ~ label,
.form-group select:valid ~ label {
  top: -10px;
  left: 12px;
  font-size: 11px;
  font-weight: 750;
  color: var(--accent);
  background: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.015);
  border: 1px solid rgba(22, 27, 31, 0.04);
}

/* Custom styles for select layout */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23161b1f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 42px;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  border: none;
  border-radius: 16px;
  padding: 18px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(132, 189, 56, 0.22);
}

.submit-btn:hover {
  background: #73a92d;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(132, 189, 56, 0.3);
}

.submit-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.submit-btn:hover svg {
  transform: translateX(4px);
}

/* --- FOOTER --- */
.sec-footer {
  position: relative;
  z-index: 2;
  min-height: clamp(620px, 72svh, 860px);
  background:
    radial-gradient(900px circle at 14% 0%, rgba(132, 189, 56, 0.08), transparent 48%),
    radial-gradient(760px circle at 86% 100%, rgba(179, 139, 215, 0.13), transparent 46%),
    radial-gradient(820px circle at 60% 12%, rgba(83, 168, 230, 0.08), transparent 42%),
    linear-gradient(180deg, #f8f6ef 0%, #f3f2ea 100%);
  color: #161b1f;
  overflow: hidden;
  padding: clamp(88px, 10vw, 156px) clamp(24px, 4.8vw, 88px) clamp(120px, 15vw, 220px);
  isolation: isolate;
}

.sec-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: clamp(70px, 9vw, 120px);
  z-index: 4;
  pointer-events: none;
  filter: blur(14px);
  opacity: 0.82;
}

.footer-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(520px, 1.35fr);
  gap: clamp(56px, 9vw, 150px);
  align-items: start;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(34px, 5vw, 58px);
}

.footer-star {
  width: clamp(130px, 10vw, 190px);
  height: auto;
  object-fit: contain;
  transform: none;
}

.footer-heading {
  margin: 0;
  max-width: 560px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(38px, 4.7vw, 76px);
  line-height: .9;
  letter-spacing: -.085em;
  font-weight: 800;
  color: #161b1f;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: clamp(58px, 8vw, 116px) clamp(62px, 9vw, 132px);
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-label {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.2;
  color: rgba(22, 27, 31, 0.34);
  letter-spacing: -0.02em;
}

.footer-col a,
.footer-col span {
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.14;
  letter-spacing: -.055em;
  font-weight: 600;
  color: rgba(22, 27, 31, 0.92);
  transition: color 0.28s ease, transform 0.28s ease;
}

.footer-col a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-bg-name {
  position: absolute;
  z-index: 1;
  left: clamp(12px, 2vw, 44px);
  right: 0;
  bottom: clamp(-44px, -3vw, -14px);
  font-size: clamp(128px, 24vw, 420px);
  line-height: 0.72;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: rgba(132, 189, 56, 0.18);
  white-space: nowrap;
  pointer-events: none;
}

.footer-bottom {
  position: absolute;
  z-index: 5;
  left: clamp(24px, 4.8vw, 88px);
  right: clamp(24px, 4.8vw, 88px);
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: rgba(22, 27, 31, 0.46);
}

/* --- REFERENTIES --- */
.sec-references {
  position: relative;
  z-index: 1;
  padding: clamp(86px, 10vw, 150px) 0;
  transition: color 0.8s ease;
  overflow: hidden;
}

.sec-references .sec-title {
  color: inherit;
}

.sec-references .container {
  display: block;
  width: min(1520px, 100vw - clamp(28px, 5vw, 84px));
}

.references-story {
  position: relative;
  min-height: 430svh;
}

.references-pin {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(42px, 7vw, 120px);
  padding: clamp(96px, 10vw, 150px) 0 clamp(70px, 8vw, 120px);
}

.sec-references .sec-header {
  position: relative;
  top: auto;
  z-index: 2;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: min(820px, 100%);
  margin: 0;
  text-align: center;
}

.references-grid {
  display: block;
  perspective: 1200px;
  position: relative;
  z-index: 3;
  height: min(78svh, 760px);
  min-height: 560px;
  padding: 0;
  margin-top: 0;
  overflow: visible;
}

.ref-card {
  position: absolute;
  width: clamp(360px, 38vw, 560px);
  min-height: clamp(300px, 31vw, 460px);
  background:
    radial-gradient(360px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--accent-rgb), 0.13), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(22, 27, 31, 0.075);
  border-radius: 28px;
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 42px);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.ref-card:nth-child(1) {
  left: 0;
  top: 9%;
}

.ref-card:nth-child(2) {
  right: 0;
  top: 24%;
}

.ref-card:nth-child(3) {
  left: 12%;
  top: 42%;
}

.ref-card:nth-child(4) {
  right: 8%;
  top: 60%;
}

.ref-card::before {
  content: "\"";
  position: absolute;
  top: clamp(16px, 2vw, 28px);
  right: clamp(22px, 3vw, 42px);
  font-size: clamp(84px, 10vw, 150px);
  line-height: 0.7;
  color: rgba(var(--accent-rgb), 0.16);
  pointer-events: none;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.ref-card:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  background:
    radial-gradient(360px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--accent-rgb), 0.18), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.68));
  box-shadow: 0 20px 48px rgba(var(--accent-rgb), 0.12);
}

.ref-image-wrap {
  position: absolute;
  left: clamp(26px, 3vw, 42px);
  bottom: clamp(26px, 3vw, 42px);
  width: 82px;
  height: 82px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 82px;
  transform: translateZ(20px);
  border: 1px solid rgba(22, 27, 31, 0.08);
  box-shadow: 0 14px 34px rgba(22, 27, 31, 0.1);
}

.ref-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ref-card:hover .ref-image-wrap img {
  transform: scale(1.06);
}

.ref-badge {
  position: absolute;
  top: auto;
  left: calc(100% + 14px);
  bottom: 3px;
  z-index: 2;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(22, 27, 31, 0.06);
  color: rgba(22, 27, 31, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(22, 27, 31, 0.08);
}

.ref-content {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 34px);
  transform: translateZ(14px);
  min-height: 100%;
}

.ref-quote {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(16px, 1.18vw, 21px);
  line-height: 1.42;
  letter-spacing: -0.035em;
  color: rgba(22, 27, 31, 0.82);
  font-style: normal;
}

.ref-author {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding-left: 104px;
  margin-top: auto;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 650;
  color: var(--accent);
  letter-spacing: -0.01em;
}

@media (max-width: 980px) {
  .references-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .ref-card {
    gap: 18px;
    min-height: 290px;
  }

  .ref-image-wrap {
    width: 70px;
    height: 70px;
    flex-basis: 70px;
    left: 24px;
    bottom: 24px;
  }

  .ref-author {
    min-height: 70px;
    padding-left: 90px;
  }

  .ref-badge {
    display: none;
  }
}

/* --- REVEAL EFFECTS --- */
[data-reveal="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
}
[data-reveal="stagger-cards"] > * {
  opacity: 0;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 980px) {
  .logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  
  .approach-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  
  .advice-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .sec-header {
    margin-bottom: 40px;
  }

  .sec-footer {
    min-height: 760px;
    padding: 82px 22px 150px;
  }

  .footer-heading {
    max-width: 340px;
    font-size: clamp(42px, 13vw, 64px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col {
    gap: 9px;
  }

  .footer-col a,
  .footer-col span {
    font-size: 19px;
    letter-spacing: -0.045em;
  }

  .footer-bg-name {
    left: 16px;
    bottom: 54px;
    font-size: 28vw;
  }

  .footer-bottom {
    left: 22px;
    right: 22px;
    bottom: 18px;
    flex-direction: column;
    gap: 6px;
  }
  
  .logo-badge {
    padding: 14px 20px;
    gap: 10px;
  }
  
  .badge-icon {
    font-size: 20px;
  }
  
  .badge-label {
    font-size: 14px;
  }
}

/* --- SCROLL DRAW SVG --- */
.scroll-draw-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
  opacity: 0.68;
  mix-blend-mode: normal;
}

#scroll-draw-path {
  vector-effect: non-scaling-stroke;
  will-change: stroke-dashoffset, stroke;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
  position: fixed;
  bottom: clamp(24px, 4vw, 42px);
  right: clamp(24px, 4vw, 42px);
  z-index: 99;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(16, 22, 26, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: #ffffff;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 14px 36px rgba(132, 189, 56, 0.2);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --- VIDEO INTERVIEWS CAROUSEL --- */
.video-interviews-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 96px);
  padding: clamp(80px, 9vw, 132px) 0 clamp(72px, 8vw, 116px);
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.video-interviews-section::before {
  content: none;
}

.video-section-title {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(32px, 4.1vw, 68px);
  line-height: .9;
  color: inherit;
  margin: 0 0 14px 0;
  font-weight: 800;
  letter-spacing: -.085em;
}

.video-section-subtitle {
  max-width: 560px;
  margin: 0 0 clamp(34px, 4vw, 58px) 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.45;
  color: currentColor;
  opacity: 0.7;
  letter-spacing: -0.015em;
}

.video-scroll-container {
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px clamp(28px, 6vw, 112px) 26px;
  overscroll-behavior-inline: contain;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: auto;
}

.video-scroll-container::-webkit-scrollbar {
  display: none;
}

.video-scroll-track {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 2.8vw, 46px);
  width: max-content;
  min-width: 100%;
  padding-bottom: 8px;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ref-video-card {
  position: relative;
  background:
    radial-gradient(420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--accent-rgb), 0.13), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, .90), rgba(255, 255, 255, .62));
  border: 1px solid rgba(22, 27, 31, 0.08);
  border-radius: 32px;
  padding: clamp(14px, 1.4vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 560px;
  flex: 0 0 clamp(430px, 45vw, 690px);
  cursor: pointer;
  text-align: left;
  scroll-snap-align: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  transform-style: preserve-3d;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(22, 27, 31, 0.08);
}

.ref-video-card:hover {
  border-color: rgba(var(--accent-rgb), 0.42);
  background:
    radial-gradient(520px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--accent-rgb), 0.18), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .70));
  box-shadow: 0 28px 70px rgba(var(--accent-rgb), 0.15);
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  height: clamp(300px, 31vw, 460px);
  border-radius: 24px;
  overflow: hidden;
  transform: translateZ(20px);
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ref-video-card:hover .video-thumb-wrap img {
  transform: scale(1.06);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0) 42%, rgba(0,0,0,0.72) 100%),
    radial-gradient(360px circle at 50% 45%, rgba(255,255,255,0.12), transparent 70%);
  z-index: 1;
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 17, 24, 0.72);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.08);
}

.video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.ref-video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: #ffffff;
  color: var(--accent);
}

.video-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateZ(14px);
  padding: 4px 8px 8px;
}

.video-info h4 {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: .98;
  font-weight: 800;
  color: inherit;
  letter-spacing: -.055em;
}

.video-info p {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.4;
  color: inherit;
  opacity: 0.6;
}

@media (max-width: 740px) {
  .video-interviews-section {
    min-height: 82svh;
    justify-content: flex-start;
    padding-top: 54px;
    padding-bottom: 24px;
    padding-inline: 0;
  }

  .video-scroll-container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-right: 14px;
  }

  .ref-video-card {
    width: auto;
    flex-basis: min(84vw, 390px);
    border-radius: 26px;
  }

  .video-thumb-wrap {
    height: clamp(205px, 56vw, 260px);
    border-radius: 20px;
  }

  .video-play-btn {
    width: 54px;
    height: 54px;
  }
}

/* --- TYPE WEIGHTS --- */
body,
p,
a,
button,
label,
input,
textarea,
select,
span,
li,
.copy p,
.product-info p,
.category-subtitle,
.step-desc,
.contact-info-panel p,
.ref-quote,
.ref-author,
.video-info p,
.video-section-subtitle,
.badge-label,
.mobile-menu__nav a,
.mobile-action span {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-word,
.copy h2,
.sec-title,
.showreel-title,
.category-title,
.approach-card h4,
.contact-info-panel h2,
.footer-heading,
.footer-bg-name,
.video-section-title,
.video-info h4,
.product-info h4 {
  font-weight: 600;
}

.footer-col a,
.footer-col span,
.footer-col a:hover {
  font-weight: 500;
}

body, p, a, button, label, input, textarea, select, span, li, .copy p, .product-info p, .category-subtitle, .step-desc, .contact-info-panel p, .ref-quote, .ref-author, .video-info p, .video-section-subtitle, .badge-label, .mobile-menu__nav a, .mobile-action span {
    font-weight: 400;
}

/* --- DESKTOP MENU --- */
@media (min-width: 741px) {
  body.menu-open {
    overflow: auto;
  }

  .mobile-menu {
    inset: 88px 18px auto auto;
    z-index: 2147483646;
    width: fit-content;
    max-width: calc(100vw - 36px);
    height: auto;
    opacity: 0;
  }

  .mobile-menu__backdrop {
    display: none;
  }

  .mobile-menu__panel {
    position: relative;
    z-index: 2147483647;
    top: auto;
    left: auto;
    right: auto;
    width: fit-content;
    min-width: 320px;
    max-width: min(420px, calc(100vw - 36px));
    padding: 18px;
    margin-left: auto;
    transform-origin: top right;
  }

  .mobile-menu__nav a {
    white-space: nowrap;
  }

  .mobile-menu__actions {
    grid-template-columns: repeat(3, minmax(82px, 1fr));
  }
}




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

@media (max-width: 640px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 980px) {
  .references-story {
    min-height: auto;
  }

  .references-pin {
    min-height: auto;
    display: block;
    padding: clamp(40px, 8vw, 72px) 0 0;
  }

  .sec-references .sec-header {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    margin-bottom: clamp(22px, 5vw, 34px);
  }

  .references-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    height: auto;
    min-height: 0;
    perspective: none;
  }

  .ref-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100%;
    min-height: 0;
    transform: none !important;
  }
}

.scroll-draw-svg {
  opacity: 0.62;
}

#scroll-draw-path {
  filter: drop-shadow(0 0 8px rgba(64, 78, 74, 0.09));
}


.video-youtube-link {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #161b1f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 32px rgba(0,0,0,0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}



.video-frame-shell {
  position: relative;
}


.video-local-frame {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
  background: #000;
}


/* --- MOBILE HERO CONTROLS --- */
@media (max-width: 740px) {
  html {
    scroll-behavior: smooth;
  }

  .side-nav {
    display: inline-flex !important;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.52);
    border: 1px solid rgba(255,255,255,0.68);
    box-shadow: 0 18px 38px rgba(16, 22, 26, 0.12);
    backdrop-filter: blur(20px) saturate(1.28);
    -webkit-backdrop-filter: blur(20px) saturate(1.28);
  }

  .side-prev { left: 14px; }
  .side-next { right: 14px; }

  .side-nav svg {
    width: 26px;
    height: 26px;
  }

  .slider-ui {
    display: none !important;
  }

  .copy h2,
  .copy p {
    will-change: transform, opacity;
  }
}


.video-frame-shell iframe:not([hidden]),
.video-frame-shell video:not([hidden]) {
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 2;
  background: #000;
}

.video-frame-shell iframe[hidden],
.video-frame-shell video[hidden] {
  display: none !important;
}
