:root {
  --nav-offset: 6.6rem;
  --bg-0: #eaf6ff;
  --bg-1: #d3ecff;
  --bg-2: #bfe3ff;
  --ink: #052a4a;
  --ink-soft: #0b3d63;
  --muted: #4a6d8c;
  --brand: #0aa6ff;
  --brand-2: #0b6fb8;
  --deep: #062f52;
  --accent-orange: #ff8f1f;
  --card: rgba(255, 255, 255, 0.62);
  --card-solid: rgba(255, 255, 255, 0.86);
  --stroke: rgba(10, 110, 190, 0.18);
  --shadow-blue: rgba(10, 110, 190, 0.22);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, #ffffff 0%, var(--bg-0) 32%, transparent 60%),
    radial-gradient(circle at 85% 18%, rgba(10, 166, 255, 0.18), transparent 55%),
    radial-gradient(circle at 30% 92%, rgba(10, 166, 255, 0.16), transparent 55%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-2) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.4;
  animation: orb-float 14s ease-in-out infinite alternate;
}

.orb-a {
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgba(10, 166, 255, 0.35), rgba(10, 166, 255, 0));
  top: -8rem;
  left: -8rem;
}

.orb-b {
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(11, 111, 184, 0.32), rgba(11, 111, 184, 0));
  right: -4rem;
  top: 20rem;
  animation-duration: 18s;
}

.orb-c {
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(255, 143, 31, 0.16), rgba(255, 143, 31, 0));
  bottom: -10rem;
  left: 30%;
  animation-duration: 20s;
}

/* Animated water bubbles, everywhere */
.bubble-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -10vh;
  left: var(--x, 50%);
  width: var(--size, 14px);
  height: var(--size, 14px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95), rgba(180, 226, 255, 0.55) 55%, rgba(10, 130, 200, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.6), 0 0 6px rgba(10, 130, 200, 0.15);
  animation: bubble-rise var(--dur, 14s) linear var(--delay, 0s) infinite;
}

@keyframes bubble-rise {
  0% {
    transform: translate(0, 0) scale(0.7);
    opacity: 0;
  }
  10% {
    opacity: var(--op, 0.7);
  }
  50% {
    transform: translate(var(--drift, 30px), -55vh) scale(1);
  }
  90% {
    opacity: var(--op, 0.7);
  }
  100% {
    transform: translate(calc(var(--drift, 30px) * -0.5), -112vh) scale(0.85);
    opacity: 0;
  }
}

.top-nav {
  --nav-bg: rgba(255, 255, 255, 0.74);
  --nav-border: rgba(10, 110, 190, 0.16);
  --nav-shadow: rgba(10, 110, 190, 0.16);
  --nav-title: #062f52;
  --nav-tag: #4a7398;
  --nav-link: #0b3d63;
  --nav-link-hover: #0b6fb8;
  --nav-link-hover-bg: rgba(10, 166, 255, 0.1);
  --nav-underline: #0aa6ff;
  --nav-icon-bg: linear-gradient(140deg, rgba(10, 166, 255, 0.22), rgba(10, 166, 255, 0.06));
  --nav-icon-border: rgba(10, 110, 190, 0.3);
  --nav-icon-fill: #0aa6ff;
  --nav-icon-stroke: #062f52;
  --nav-toggle-bg: rgba(10, 110, 190, 0.08);
  --nav-toggle-border: rgba(10, 110, 190, 0.22);
  --nav-toggle-bar: #062f52;

  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 94vw);
  border: 1px solid var(--nav-border);
  background: var(--nav-bg);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 10px 30px var(--nav-shadow);
  border-radius: 999px;
  padding: 0.65rem 0.7rem 0.65rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, top 0.35s ease,
    border-color 0.35s ease;
}

.top-nav.is-scrolled {
  --nav-bg: rgba(5, 27, 50, 0.88);
  --nav-border: rgba(255, 255, 255, 0.14);
  --nav-shadow: rgba(4, 26, 48, 0.4);
  --nav-title: #eaf6ff;
  --nav-tag: #8fc4ec;
  --nav-link: #dcefff;
  --nav-link-hover: #8fe0ff;
  --nav-link-hover-bg: rgba(143, 224, 255, 0.08);
  --nav-underline: #8fe0ff;
  --nav-icon-bg: linear-gradient(140deg, rgba(143, 224, 255, 0.28), rgba(10, 166, 255, 0.08));
  --nav-icon-border: rgba(143, 224, 255, 0.4);
  --nav-icon-fill: #8fe0ff;
  --nav-icon-stroke: #eaf6ff;
  --nav-toggle-bg: rgba(255, 255, 255, 0.06);
  --nav-toggle-border: rgba(255, 255, 255, 0.18);
  --nav-toggle-bar: #eaf6ff;

  top: 0.6rem;
  padding: 0.5rem 0.6rem 0.5rem 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--nav-icon-bg);
  border: 1px solid var(--nav-icon-border);
  flex-shrink: 0;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.4s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-12deg) scale(1.1);
}

.brand-mark svg path {
  fill: var(--nav-icon-fill);
  stroke: var(--nav-icon-stroke);
  transition: fill 0.35s ease, stroke 0.35s ease;
}

.brand-title {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--nav-title);
  transition: color 0.35s ease;
}

.brand-tag {
  font-size: 0.68rem;
  color: var(--nav-tag);
  letter-spacing: 0.05em;
  transition: color 0.35s ease;
}

.top-nav nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.top-nav nav a {
  position: relative;
  color: var(--nav-link);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  opacity: 0.92;
  transition: opacity 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.top-nav nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.32rem;
  height: 2px;
  border-radius: 2px;
  background: var(--nav-underline);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.top-nav nav a:hover {
  opacity: 1;
  color: var(--nav-link-hover);
  background: var(--nav-link-hover-bg);
}

.top-nav nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-cta {
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--nav-toggle-border);
  background: var(--nav-toggle-bg);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--nav-toggle-bar);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.35s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding-top: var(--nav-offset);
  padding-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: calc(-1 * var(--nav-offset));
  line-height: 0;
}

.hero-slider {
  position: relative;
  height: min(86vh, 820px);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(10, 90, 160, 0.22);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08) translateX(3%);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 7s ease-out;
}

.slide.active img {
  transform: scale(1.16) translate(-1.2%, -0.8%);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(1, 6, 13, 0.94) 0%, rgba(1, 6, 13, 0.86) 34%, rgba(1, 6, 13, 0.25) 66%, rgba(1, 6, 13, 0) 82%),
    radial-gradient(circle at 80% 20%, rgba(30, 170, 255, 0.2), rgba(30, 170, 255, 0));
}

.hero-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 20%;
  min-height: 90px;
  background: linear-gradient(to bottom, rgba(191, 227, 255, 0) 0%, rgba(139, 199, 245, 0.6) 55%, #77cbff 100%);
  pointer-events: none;
  z-index: 3;
}

.hero-copy {
  position: absolute;
  top: 52%;
  left: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  transform: translateY(-50%);
  max-width: 520px;
  z-index: 4;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #8fe0ff;
  margin-bottom: 0.9rem;
  font-weight: 800;
}

.hero-copy h1,
.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.94;
  margin-bottom: 0.9rem;
  color: #ffffff;
}

.section-head h2 {
  color: var(--deep);
}

.hero-copy p {
  font-size: 1.05rem;
  color: #d7ecff;
  line-height: 1.5;
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.hero-cta .btn {
  padding: 1.05rem 2.1rem;
  font-size: 1.05rem;
}

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn.primary {
  color: #052846;
  background: linear-gradient(130deg, #8fe0ff, #0aa6ff);
  box-shadow: 0 10px 26px rgba(10, 166, 255, 0.38);
}

.btn.ghost {
  color: #eaf7ff;
  background: rgba(6, 40, 70, 0.55);
  border: 1px solid rgba(149, 208, 255, 0.4);
}

.btn:hover {
  transform: translateY(-2px);
}

.slider-dots {
  position: absolute;
  right: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  bottom: 1.5rem;
  display: flex;
  gap: 0.45rem;
  z-index: 5;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(6, 40, 70, 0.25);
  color: #eaf7ff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-slider:hover .slider-arrow {
  opacity: 1;
}

.slider-arrow:hover {
  background: rgba(10, 166, 255, 0.35);
  border-color: rgba(143, 224, 255, 0.7);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow:focus-visible {
  opacity: 1;
  outline: 2px solid #8fe0ff;
  outline-offset: 2px;
}

.arrow-prev {
  left: max(1.2rem, calc((100vw - 1200px) / 2 + 0.5rem));
}

.arrow-next {
  right: max(1.2rem, calc((100vw - 1200px) / 2 + 0.5rem));
}

.dot.active {
  background: #8fe0ff;
  box-shadow: 0 0 14px rgba(143, 224, 255, 0.9);
}

/* Wave divider: two layered wave tracks, each an endless scrolling pair of
   identical SVGs so the tiling seam never shows. */
.wave-divider {
  position: relative;
  height: 120px;
  margin-top: 1.4rem;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.wave-layer {
  position: absolute;
  inset: 0;
  display: flex;
  width: 200%;
}

.wave-layer svg {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  display: block;
}

.wave-back {
  animation: wave-scroll 18s linear infinite;
}

.wave-front {
  height: 88%;
  top: auto;
  bottom: -4px;
  animation: wave-scroll 11s linear infinite reverse;
}

@keyframes wave-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.stats {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card,
.product-card,
.poster,
.process-step,
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(10, 110, 190, 0.1);
}

.stat-card {
  position: relative;
  padding: 1.7rem 1.5rem 1.5rem;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card::after {
  content: attr(data-index);
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  color: rgba(10, 110, 190, 0.09);
  line-height: 1;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--stroke));
  box-shadow: 0 22px 40px rgba(10, 90, 160, 0.18);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(10, 166, 255, 0.18), rgba(11, 111, 184, 0.08));
  border: 1px solid var(--stroke);
  color: var(--brand-2);
  position: relative;
  z-index: 1;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-card h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  margin-bottom: 0.45rem;
  color: var(--deep);
  position: relative;
  z-index: 1;
  max-width: 85%;
}

.stat-card p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.94rem;
  position: relative;
  z-index: 1;
}

.counters {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 4rem;
  padding: 3.4rem max(1.2rem, calc((100vw - 1200px) / 2 + 0.5rem));
  background:
    radial-gradient(circle at 12% 20%, rgba(10, 166, 255, 0.22), transparent 55%),
    radial-gradient(circle at 90% 85%, rgba(255, 143, 31, 0.14), transparent 50%),
    linear-gradient(135deg, var(--deep), var(--brand-2));
  overflow: hidden;
}

.counters-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.counters .eyebrow {
  text-align: center;
  margin-bottom: 1.6rem;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.counter-card {
  position: relative;
  padding: 0.4rem 1.2rem;
  text-align: center;
}

.counter-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.counter-num {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  background: linear-gradient(130deg, #ffffff, #8fe0ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-card p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-showcase {
  margin-top: 4rem;
}

.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.product-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 1.2rem 1rem;
  transform-style: preserve-3d;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.4s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -58% -20%;
  height: 62%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--splash, #0aa6ff) 30%, transparent), transparent);
  transition: transform 0.5s ease;
}

.product-card:hover {
  transform: perspective(900px) rotateX(4deg) rotateY(-5deg) translateY(-7px);
  box-shadow: 0 26px 34px rgba(10, 90, 160, 0.24);
  border-color: color-mix(in srgb, var(--splash, #0aa6ff) 55%, var(--stroke));
}

.product-card:hover::before {
  transform: scale(1.15) translateY(-8px);
}

.product-img {
  width: min(170px, 100%);
  height: 220px;
  object-fit: contain;
  transform: translateZ(18px);
  translate: 0 0;
  animation: float-bob 2.6s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  transition: transform 0.45s ease, filter 0.45s ease;
  position: relative;
  z-index: 3;
  will-change: translate, transform;
}

.product-card:hover .product-img {
  transform: translateZ(32px) rotate(-2deg);
  filter: drop-shadow(0 14px 18px color-mix(in srgb, var(--splash, #0aa6ff) 45%, transparent));
}

/* Idle motion lives on the independent `translate` property so it never
   fights the hover `transform` transition above, so there's no more stutter on hover. */
@keyframes float-bob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

.product-grid .product-card:nth-child(1) .product-img {
  animation-duration: 2.3s;
}

.product-grid .product-card:nth-child(2) .product-img {
  animation-duration: 2.6s;
  animation-delay: 0.15s;
}

.product-grid .product-card:nth-child(3) .product-img {
  animation-duration: 2.4s;
  animation-delay: 0.3s;
}

.product-grid .product-card:nth-child(4) .product-img {
  animation-duration: 2.8s;
  animation-delay: 0.1s;
}

.product-grid .product-card:nth-child(5) .product-img {
  animation-duration: 2.5s;
  animation-delay: 0.35s;
}

.product-grid .product-card:nth-child(6) .product-img {
  animation-duration: 2.7s;
  animation-delay: 0.2s;
}

.product-card h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: 2rem;
  margin-top: 0.4rem;
  color: var(--deep);
}

.product-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.splash-ring {
  position: absolute;
  inset: 78% auto auto 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--splash, #0aa6ff) 80%, white);
  opacity: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.product-card:hover .splash-ring {
  animation: ripple 1.1s ease-out infinite;
}

.splash-wave {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--splash, #0aa6ff) 65%, white) 0%, color-mix(in srgb, var(--splash, #0aa6ff) 35%, transparent) 55%, transparent 75%);
  transform: translate(-50%, 50%) scale(0);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover .splash-wave {
  transform: translate(-50%, 50%) scale(20);
  opacity: 0.6;
}

.droplet {
  position: absolute;
  left: 50%;
  bottom: 20%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  background: radial-gradient(circle at 30% 28%, #ffffff, var(--splash, #0aa6ff) 75%);
  box-shadow: 0 0 6px color-mix(in srgb, var(--splash, #0aa6ff) 70%, transparent);
}

.spotlight {
  margin-top: 4.5rem;
}

.spotlight-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.spotlight-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(10, 110, 190, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(10, 110, 190, 0.2);
}

.spotlight-media {
  overflow: hidden;
}

.spotlight-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

.spotlight-card:hover .spotlight-media img {
  transform: scale(1.04);
}

.spotlight-caption {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.spotlight-caption h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.9rem;
  color: var(--deep);
  flex: 1 1 160px;
}

.spotlight-caption p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 2 1 260px;
}

.spotlight-link {
  color: var(--brand-2);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.spotlight-link:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.process {
  margin-top: 4.5rem;
}

.process-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent-orange));
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.25rem 1.4rem;
  margin-top: 1.4rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--stroke));
  box-shadow: 0 22px 34px rgba(10, 110, 190, 0.16);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover .process-num {
  transform: scale(1.08);
  box-shadow: 0 12px 26px rgba(10, 166, 255, 0.5);
}

.process-num {
  position: absolute;
  top: -1.4rem;
  left: 1.25rem;
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 20px rgba(10, 166, 255, 0.35), 0 0 0 5px var(--bg-0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 2;
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, rgba(10, 166, 255, 0.16), rgba(11, 111, 184, 0.07));
  border: 1px solid var(--stroke);
  color: var(--brand-2);
}

.process-icon svg {
  width: 20px;
  height: 20px;
}

.process-step h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.6rem;
  color: var(--deep);
  margin-bottom: 0.35rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.formats {
  margin-top: 4.5rem;
}

.format-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.format-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(10, 110, 190, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.format-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 55%, white));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.format-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--stroke));
  box-shadow: 0 22px 40px rgba(10, 110, 190, 0.16);
}

.format-card:hover::before {
  transform: scaleX(1);
}

.format-watermark {
  position: absolute;
  right: -1.2rem;
  bottom: -1.6rem;
  width: 9rem;
  height: 9rem;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.format-card:hover .format-watermark {
  transform: translateY(-6px) rotate(-4deg) scale(1.06);
  opacity: 0.12;
}

.format-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 22%, transparent), color-mix(in srgb, var(--accent) 8%, transparent));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--stroke));
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.format-icon svg {
  width: 24px;
  height: 24px;
}

.format-card h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.8rem;
  color: var(--deep);
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.format-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.format-sizes span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent) 75%, var(--ink));
  background: color-mix(in srgb, var(--accent) 12%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.format-sizes span:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px color-mix(in srgb, var(--accent) 25%, transparent);
}

.format-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.mascot {
  margin-top: 4.5rem;
}

.mascot-grid {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: 2.4rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 44px rgba(10, 110, 190, 0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.mascot-grid:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--stroke));
  box-shadow: 0 28px 54px rgba(10, 90, 160, 0.2);
}

.mascot-avatar {
  flex-shrink: 0;
}

.mascot-avatar img {
  display: block;
  width: 220px;
  height: auto;
  filter: drop-shadow(0 20px 24px rgba(10, 110, 190, 0.28));
  animation: mascot-bob 2.8s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.mascot-grid:hover .mascot-avatar img {
  transform: scale(1.06) rotate(3deg);
}

@keyframes mascot-bob {
  0%,
  100% {
    transform: rotate(0deg);
    translate: 0 0;
  }
  50% {
    transform: rotate(-4deg);
    translate: 0 -10px;
  }
}

.mascot-copy {
  flex: 1;
}

.mascot-copy .eyebrow {
  color: var(--brand-2);
}

.mascot-copy h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--deep);
  margin-bottom: 1rem;
}

.mascot-quote {
  position: relative;
  background: var(--card-solid);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.mascot-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.mascot-traits span {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #052846;
  background: linear-gradient(130deg, #8fe0ff, #0aa6ff);
}

.poster-strip {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.poster {
  overflow: hidden;
}

.poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.poster:hover img {
  transform: scale(1.05);
}

.testimonials {
  margin-top: 4rem;
}

.testimonial-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  padding: 1.6rem 1.4rem;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--stroke));
  box-shadow: 0 22px 40px rgba(10, 90, 160, 0.18);
}

.testimonial-card:hover::before {
  opacity: 0.4;
  transform: scale(1.15) rotate(-6deg);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  left: 1.1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.22;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.testimonial-card p {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-card footer {
  color: var(--brand-2);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.cta-banner {
  margin-top: 4.5rem;
  margin-bottom: -3rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4.5rem 1.5rem;
  background: #094f85;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.cta-banner::before {
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(143, 224, 255, 0.25), transparent 70%);
  top: -8rem;
  left: -6rem;
}

.cta-banner::after {
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(10, 166, 255, 0.28), transparent 70%);
  bottom: -8rem;
  right: -4rem;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
}

.cta-inner .eyebrow {
  justify-content: center;
}

.cta-inner h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #ffffff;
  margin-bottom: 0.9rem;
}

.cta-copy {
  color: #d7ecff;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}

.cta-promise {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.cta-promise span {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #dcefff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-wave {
  margin-top: -2px;
  margin-bottom: 0;
}

.footer-wave.wave-flip {
  margin-top: -6px;
}

.wave-flip {
  transform: scaleY(-1);
  margin-top: -2px;
}

.site-footer {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #094f85;
  color: #a9d4f5;
  z-index: 2;
}

.footer-inner {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 3.4rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.3fr;
  gap: 2.2rem;
}

.footer-brand .brand-title {
  color: #eaf6ff;
  font-size: 2.1rem;
}

.footer-brand .brand-tag {
  color: #8fc4ec;
  display: block;
  margin-bottom: 1rem;
}

.footer-about {
  color: #a9d4f5;
  line-height: 1.6;
  font-size: 0.92rem;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #dcefff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
  background: linear-gradient(130deg, #8fe0ff, #0aa6ff);
  color: #052846;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #eaf6ff;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: #a9d4f5;
  text-decoration: none;
  font-size: 0.92rem;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: #8fe0ff;
  transform: translateX(3px);
}

.footer-contact p {
  color: #a9d4f5;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-newsletter p {
  color: #a9d4f5;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #eaf6ff;
  font-family: inherit;
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: #7fa9cc;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #8fe0ff;
}

.newsletter-form button {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  font-weight: 800;
  font-size: 0.85rem;
  color: #052846;
  background: linear-gradient(130deg, #8fe0ff, #0aa6ff);
  cursor: pointer;
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

.newsletter-form button:disabled {
  cursor: default;
  opacity: 0.85;
}

.footer-bottom {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #7fa9cc;
}

.reveal .stagger,
.reveal.stagger,
.hero-copy.stagger > * {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.in-view .stagger,
.reveal.in-view.stagger {
  animation: reveal-up 0.75s ease forwards;
  animation-delay: calc(var(--stagger-i, 0) * 90ms);
}

.hero-copy.stagger.in-view > * {
  animation: reveal-up 0.75s ease forwards;
}

.hero-copy.stagger.in-view > *:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-copy.stagger.in-view > *:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-copy.stagger.in-view > *:nth-child(4) {
  animation-delay: 0.36s;
}

@keyframes ripple {
  0% {
    opacity: 0.85;
    width: 8px;
    height: 8px;
  }
  70% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    width: 200px;
    height: 200px;
  }
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orb-float {
  from {
    transform: translateY(0) translateX(0) scale(1);
  }
  to {
    transform: translateY(-30px) translateX(18px) scale(1.06);
  }
}

/* ============================
   About page
   ============================ */

.top-nav nav a.is-current {
  opacity: 1;
  color: var(--nav-link-hover);
  background: var(--nav-link-hover-bg);
}

.top-nav nav a.is-current::after {
  transform: scaleX(1);
}

.about-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 2.4rem 1.5rem 3.6rem;
  overflow: hidden;
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.about-hero::before {
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(10, 166, 255, 0.18), transparent 70%);
  top: -10rem;
  left: -8rem;
}

.about-hero::after {
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255, 143, 31, 0.13), transparent 70%);
  bottom: -8rem;
  right: -6rem;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.about-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.about-breadcrumb a:hover {
  color: var(--brand-2);
}

.about-breadcrumb span {
  opacity: 0.45;
}

.about-hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-copy .eyebrow {
  color: var(--brand-2);
  justify-content: center;
}

.about-hero-copy h1 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  color: var(--deep);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .about-hero-copy h1 {
    white-space: nowrap;
  }
}

.about-hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.about-hero-frame {
  position: relative;
  margin-bottom: 2.2rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 30px 60px rgba(10, 90, 160, 0.22);
  background: linear-gradient(135deg, #ffffff, var(--bg-1));
}

.about-hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1536 / 529;
  object-fit: cover;
  object-position: center;
}

.about-story {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-story-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-story-media::before {
  content: "";
  position: absolute;
  inset: 6% 12%;
  background: radial-gradient(circle, rgba(10, 166, 255, 0.22), transparent 70%);
  filter: blur(14px);
  z-index: 0;
}

.about-story-media img {
  position: relative;
  z-index: 1;
  width: min(280px, 78%);
  height: auto;
  filter: drop-shadow(0 24px 30px rgba(10, 110, 190, 0.28));
  animation: mascot-bob 3.2s ease-in-out infinite;
}

.about-story-copy .eyebrow {
  color: var(--brand-2);
}

.about-story-copy h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--deep);
  margin-bottom: 1rem;
}

.about-story-copy p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.about-tags span {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand-2);
  background: rgba(10, 166, 255, 0.1);
  border: 1px solid rgba(10, 166, 255, 0.22);
}

.values {
  margin-top: 4.5rem;
}

.values-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.value-card {
  position: relative;
  padding: 2rem 1.6rem;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(10, 110, 190, 0.1);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.6) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.value-card:hover::before {
  transform: translateX(60%);
}

.value-card:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--stroke));
  box-shadow: 0 26px 46px rgba(10, 90, 160, 0.22);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(10, 166, 255, 0.18), rgba(11, 111, 184, 0.08));
  border: 1px solid var(--stroke);
  color: var(--brand-2);
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
  position: relative;
  z-index: 1;
}

.value-icon svg {
  width: 26px;
  height: 26px;
}

.value-card:hover .value-icon {
  transform: scale(1.12) rotate(-6deg);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}

.value-card h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  color: var(--deep);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.value-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.journey {
  margin-top: 4.5rem;
}

.timeline {
  position: relative;
  margin-top: 2.6rem;
  padding: 1rem 0 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2), var(--accent-orange));
  opacity: 0.35;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 3.2rem 3rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 5px var(--bg-0), 0 0 0 6px var(--stroke);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-item:hover .timeline-dot {
  animation: dot-pulse 1.4s ease-out infinite;
}

@keyframes dot-pulse {
  0% {
    box-shadow: 0 0 0 5px var(--bg-0), 0 0 0 6px rgba(10, 166, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 5px var(--bg-0), 0 0 0 16px rgba(10, 166, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 5px var(--bg-0), 0 0 0 6px rgba(10, 166, 255, 0);
  }
}

.timeline-year {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--brand-2);
  margin-bottom: 0.5rem;
}

.timeline-card {
  display: inline-block;
  max-width: 380px;
  padding: 1.3rem 1.5rem;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(10, 110, 190, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.timeline-item:hover .timeline-card {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--stroke));
  box-shadow: 0 22px 38px rgba(10, 90, 160, 0.18);
}

.timeline-card h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.25rem;
  color: var(--deep);
  margin-bottom: 0.35rem;
}

.timeline-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.reveal .timeline-item.stagger {
  transform: translateX(46px);
}

.reveal .timeline-item.stagger:nth-child(odd) {
  transform: translateX(-46px);
}

.meet-filmo {
  margin-top: 4.5rem;
}

.flip-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.flip-card {
  perspective: 1200px;
  height: 320px;
  border-radius: 22px;
}

.flip-card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 14px 34px rgba(10, 110, 190, 0.1);
}

.flip-card-front {
  background: linear-gradient(160deg, var(--bg-0), var(--bg-2));
  padding: 0.5rem 1rem 1.2rem;
  justify-content: flex-end;
}

.flip-card-front img {
  width: auto;
  height: 200px;
  object-fit: contain;
  margin-top: 0.6rem;
  filter: drop-shadow(0 14px 18px rgba(10, 110, 190, 0.28));
}

.flip-card-front h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.3rem;
  color: var(--deep);
  margin-top: 0.5rem;
}

.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, var(--deep), var(--brand-2));
  color: #eaf6ff;
  padding: 1.8rem 1.4rem;
  justify-content: center;
  gap: 0.7rem;
}

.flip-card-back svg {
  width: 30px;
  height: 30px;
  color: #8fe0ff;
}

.flip-card-back h4 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
}

.flip-card-back p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #d7ecff;
}

/* ============================
   Contact page
   ============================ */

.contact-section {
  margin-top: 4.5rem;
}

.contact-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.6rem;
  align-items: start;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.contact-main {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-portrait {
  position: relative;
}

.contact-portrait img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
  border: 1px solid var(--stroke);
  box-shadow: 0 26px 52px rgba(10, 90, 160, 0.22);
  animation: mascot-bob 4.5s ease-in-out infinite;
}

.contact-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-perk:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--stroke));
  box-shadow: 0 16px 30px rgba(10, 90, 160, 0.16);
}

.contact-perk-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(10, 166, 255, 0.18), rgba(11, 111, 184, 0.08));
  border: 1px solid var(--stroke);
  color: var(--brand-2);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.contact-perk-icon svg {
  width: 18px;
  height: 18px;
}

.contact-perk:hover .contact-perk-icon {
  transform: scale(1.1) rotate(-6deg);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}

.contact-perk h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.02rem;
  color: var(--deep);
  margin-bottom: 0.2rem;
}

.contact-perk p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.contact-info {
  padding: 1.6rem;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(10, 110, 190, 0.1);
}

.contact-info h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.3rem;
  color: var(--deep);
  margin-bottom: 0.4rem;
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--stroke);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.contact-info-row:first-of-type {
  border-top: none;
}

.contact-info-row:hover {
  transform: translateX(4px);
}

.contact-info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10, 166, 255, 0.18), rgba(11, 111, 184, 0.08));
  border: 1px solid var(--stroke);
  color: var(--brand-2);
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-info-row:hover .contact-info-icon {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-text strong {
  display: block;
  font-size: 0.94rem;
  color: var(--deep);
}

.contact-info-text span {
  font-size: 0.83rem;
  color: var(--muted);
}

.contact-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.contact-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--brand-2);
  background: rgba(10, 166, 255, 0.1);
  border: 1px solid rgba(10, 166, 255, 0.22);
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.contact-social a:hover {
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  color: #fff;
  transform: translateY(-3px);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(130deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.32);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 36px rgba(18, 140, 126, 0.4);
}

.whatsapp-btn svg {
  width: 19px;
  height: 19px;
}

.contact-form-card {
  position: relative;
  padding: 2.2rem;
  border-radius: 28px;
  background: var(--card-solid);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 50px rgba(10, 90, 160, 0.16);
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent-orange));
}

.contact-form-card h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--deep);
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.contact-form {
  display: grid;
  gap: 1.3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.field {
  position: relative;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 1.1rem 1rem 0.5rem;
  border-radius: 14px;
  border: 1.5px solid var(--stroke);
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
  padding-top: 1.3rem;
}

.field select {
  cursor: pointer;
  padding-top: 1.1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a6d8c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(10, 166, 255, 0.14);
  background: #fff;
}

.field label {
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  font-size: 0.95rem;
  color: var(--muted);
  pointer-events: none;
  transition: transform 0.25s ease, font-size 0.25s ease, color 0.25s ease, top 0.25s ease;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.field.has-static label {
  position: static;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.05rem 1.8rem;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(130deg, #25d366, #128c7e);
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(18, 140, 126, 0.34);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 40px rgba(18, 140, 126, 0.42);
}

.form-submit:active {
  transform: translateY(-1px) scale(0.99);
}

.form-submit svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.form-note svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--brand-2);
}

/* Floating WhatsApp chat bubble, site-wide */
.whatsapp-float {
  position: fixed;
  left: 1.6rem;
  bottom: 1.6rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(130deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 16px 32px rgba(18, 140, 126, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  animation: whatsapp-pulse 2.4s ease-out infinite;
  z-index: -1;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 22px 40px rgba(18, 140, 126, 0.5);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .whatsapp-float {
    left: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================
   Floating scroll-to-top / scroll-to-bottom control
   ============================ */

.scroll-nav {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.scroll-nav.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke);
  background: var(--card-solid);
  color: var(--brand-2);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 26px rgba(10, 110, 190, 0.2);
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, opacity 0.3s ease;
}

.scroll-btn svg {
  transition: transform 0.35s ease;
}

.scroll-btn:hover {
  transform: translateY(-4px) scale(1.07);
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(10, 110, 190, 0.34);
}

.scroll-top:hover svg {
  animation: arrow-bounce-up 0.9s ease-in-out infinite;
}

.scroll-bottom:hover svg {
  animation: arrow-bounce-down 0.9s ease-in-out infinite;
}

@keyframes arrow-bounce-up {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes arrow-bounce-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.scroll-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
  transform: none;
}

@media (max-width: 720px) {
  .scroll-nav {
    right: 1rem;
    bottom: 1rem;
  }

  .scroll-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 980px) {
  .stats,
  .product-grid,
  .poster-strip,
  .counter-grid,
  .process-grid,
  .testimonial-grid,
  .values-grid,
  .flip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid::before {
    display: none;
  }

  .about-story {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .about-story-media {
    order: -1;
  }

  .about-tags {
    justify-content: center;
  }

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

  .counter-grid {
    row-gap: 1.8rem;
  }

  .counter-card:nth-child(2n)::after {
    display: none;
  }

  .counter-card:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    bottom: -0.9rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
  }

  .slide img {
    height: 100%;
  }

  .hero-slider {
    height: 64vh;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .top-nav nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    background: rgba(5, 27, 50, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 0.7rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 20px 40px rgba(4, 26, 48, 0.4);
  }

  .top-nav nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .top-nav nav a {
    padding: 0.8rem 1rem;
  }

  .top-nav nav a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-offset: 8.4rem;
  }

  .stats,
  .product-grid,
  .poster-strip,
  .footer-grid,
  .counter-grid,
  .process-grid,
  .testimonial-grid,
  .format-grid,
  .values-grid,
  .flip-grid,
  .contact-perks,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.6rem;
  }

  .counter-card::after,
  .counter-card::before {
    display: none;
  }

  .counter-card:not(:last-child) {
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 0 2.4rem 3rem;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 10px;
    right: auto;
  }

  .timeline-card {
    max-width: 100%;
  }

  .reveal .timeline-item.stagger,
  .reveal .timeline-item.stagger:nth-child(odd) {
    transform: translateY(22px);
  }

  .spotlight-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .mascot-grid {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.4rem;
  }

  .mascot-traits {
    justify-content: center;
  }

  .hero-copy {
    max-width: 88%;
  }

  .footer-about {
    max-width: 100%;
  }

  .newsletter-form {
    flex-wrap: wrap;
  }

  .newsletter-form button {
    width: 100%;
  }

  .slide img {
    height: 100%;
  }

  .hero-slider {
    height: 70vh;
  }

  .hero-cta {
    flex-wrap: wrap;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (hover: none) {
  .slider-arrow {
    opacity: 0.85;
  }

  .flip-card:hover .flip-card-inner {
    transform: none;
  }

  .flip-card:active .flip-card-inner,
  .flip-card:focus-within .flip-card-inner {
    transform: rotateY(180deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bubble,
  .bg-orb,
  .wave-back,
  .wave-front,
  .product-img,
  .mascot-avatar img,
  .about-story-media img,
  .contact-portrait img,
  .slide img {
    animation: none !important;
    transition: none !important;
  }

  .scroll-top:hover svg,
  .scroll-bottom:hover svg,
  .whatsapp-float::before {
    animation: none !important;
  }
}
