/* ═══════════════════════════════════════════
   HbbStore — Hightech Kiosk Website
   Premium CSS — Award-Level Design
   ═══════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --bg-elevated: #0a0a0a;
  --bg-card: #0f0f0f;
  --surface: #141414;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);

  --text-primary: #f5f5f5;
  --text-secondary: rgba(255,255,255,0.55);
  --text-tertiary: rgba(255,255,255,0.3);

  --accent: #e30613;
  --accent-hover: #ff1f2c;
  --accent-deep: #a80510;
  --accent-dim: rgba(227,6,19,0.18);
  --accent-glow: rgba(227,6,19,0.16);

  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(227,6,19,0.1) 0%, transparent 70%),
                   radial-gradient(ellipse 60% 50% at 80% 20%, rgba(168,5,16,0.06) 0%, transparent 60%),
                   linear-gradient(180deg, #050505 0%, #080808 100%);

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --nav-height: 72px;
  --container-max: 1320px;
  --container-padding: clamp(20px, 4vw, 48px);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: none; font-family: inherit; }
img { display: block; max-width: 100%; }

::selection {
  background: var(--accent);
  color: #ffffff;
}

/* ── Custom Cursor ──────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(227,6,19,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo),
              border-color 0.3s, opacity 0.3s;
}

body:hover .cursor { opacity: 1; }
body:hover .cursor-follower { opacity: 1; }

/* ── Preloader ──────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  display: flex;
  gap: 0.35rem;
  align-items: baseline;
  justify-content: center;
}

.preloader-mark {
  color: var(--accent);
}

.preloader-text {
  color: var(--text-primary);
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out-quart);
}

/* ── Navigation ─────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(5,5,5,0.7);
  border-bottom: 1px solid var(--border);
  transition: transform 0.5s var(--ease-out-expo), background 0.3s;
}

#navbar.hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: -0.01em;
  transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  /* Logo has a black background that blends seamlessly with the nav's dark backdrop */
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  flex-shrink: 0;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.logo-mark {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.logo-text {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.logo-tagline {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 0.7rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .logo-tagline { display: none; }
  .logo-mark { font-size: 1.15rem; }
  .logo-text { font-size: 0.95rem; }
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  transition: color 0.3s;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.nav-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Menu ────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--text-secondary);
  transition: color 0.3s;
  letter-spacing: -0.02em;
}

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

/* ── Hero Section ───────────────────────── */
.hero-section {
  position: relative;
  height: 250vh;
  overflow: visible;
  background: var(--gradient-hero);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 0%, rgba(5,5,5,0.55) 100%);
  z-index: 2;
  pointer-events: none;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 65%;
  width: 80%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform;
  filter: saturate(1.1) contrast(1.05) drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

@media (max-width: 1024px) {
  #hero-video {
    left: 50%;
    width: 90%;
    opacity: 0.85;
  }
}

@media (max-width: 768px) {
  #hero-video {
    left: 50%;
    width: 100%;
    opacity: 0.65;
  }
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.55) 35%, rgba(5,5,5,0.15) 60%, rgba(5,5,5,0.0) 100%),
    linear-gradient(180deg,
      rgba(5,5,5,0.4) 0%,
      transparent 18%,
      transparent 40%,
      rgba(5,5,5,0.25) 62%,
      rgba(5,5,5,0.6) 80%,
      rgba(5,5,5,0.9) 92%,
      var(--bg) 100%);
  pointer-events: none;
}

/* Soft fade sitting flush at the bottom of the sticky hero — extends past the viewport
   so the Red-Bull-Dose shadow dissolves into the next section without a visible seam. */
.hero-sticky::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  height: 220px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(5,5,5,0.35) 30%,
    rgba(5,5,5,0.75) 60%,
    var(--bg) 100%);
}

@media (max-width: 768px) {
  .hero-gradient-overlay {
    background:
      linear-gradient(180deg,
        rgba(5,5,5,0.65) 0%,
        rgba(5,5,5,0.35) 40%,
        rgba(5,5,5,0.55) 72%,
        rgba(5,5,5,0.85) 88%,
        var(--bg) 100%);
  }
}

.hero-content {
  z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  padding-top: calc(var(--nav-height) + 4rem);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-dim);
  border: 1px solid rgba(227,6,19,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.tag-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.title-word.highlight {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  line-height: 1;

  /* Flex row with center alignment → static text + rotator share a perfect common horizontal axis */
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  flex-wrap: wrap;
}

.subtitle-static {
  color: var(--text-secondary);
  line-height: 1;
  display: inline-block;
}

/* Rotating-word container — fixed height matching the static text; words slide bottom → top.
   Width is driven by the invisible .word-sizer inside, which holds the longest possible word
   so NOTHING gets clipped horizontally, regardless of which word is currently rotating in. */
.word-rotator {
  position: relative;
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  overflow: hidden;
  text-align: left;
  height: 1em;
  line-height: 1;
  white-space: nowrap;
}

/* Invisible width anchor — takes up space in normal flow so the container sizes to fit it */
.word-rotator .word-sizer {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
  height: 1em;
  line-height: 1;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.word-rotator .word {
  position: absolute;
  left: 0;
  top: 0;
  height: 1em;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.55s var(--ease-out-expo), opacity 0.35s var(--ease-out-expo);
  will-change: transform, opacity;
  /* Critical: only ONE slot can ever intercept layout/visibility at a time.
     If the element is neither current, entering, nor leaving, hide it completely. */
  opacity: 0;
  transform: translateY(110%);
  visibility: hidden;
}

.word-rotator .word.entering {
  transform: translateY(110%);
  opacity: 0;
  visibility: visible;
}

.word-rotator .word.current {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.word-rotator .word.leaving {
  transform: translateY(-110%);
  opacity: 0;
  visibility: visible;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out-expo);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227,6,19,0.35);
}

.btn-primary svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-primary:hover svg {
  transform: translate(3px, -3px);
}

.btn-ghost {
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ── Scroll Indicator ───────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeInUp 1s 2.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
}

@keyframes fadeInUp {
  to { opacity: 0.6; }
}

/* ── Marquee ────────────────────────────── */
.marquee-section {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.marquee-dot {
  color: var(--accent);
  font-size: 1.5em;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section Shared ─────────────────────── */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-title .highlight {
  color: var(--accent);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
}

.section-header {
  margin-bottom: 4rem;
}

/* ── Products Grid ──────────────────────── */
.products-section {
  padding: 8rem 0;
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(40px);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  isolation: isolate; /* keeps the bg/overlay stacking contained inside the card */
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--accent-glow);
}

/* Full-bleed background photo behind every card. */
.card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--ease-out-expo), filter 0.6s;
  filter: saturate(0.9) brightness(0.72);
}

/* Dark gradient overlay — keeps the photo visible up top, lets the text section at the bottom stay legible */
.card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5,5,5,0.35) 0%,
      rgba(5,5,5,0.45) 35%,
      rgba(5,5,5,0.78) 68%,
      rgba(5,5,5,0.94) 100%);
  pointer-events: none;
}

.product-card:hover .card-bg img {
  transform: scale(1.06);
  filter: saturate(1.05) brightness(0.78);
}

/* Keep every piece of text above the image/gradient */
.card-number,
.card-title,
.card-desc,
.card-tags,
.card-arrow {
  position: relative;
  z-index: 1;
}

.card-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-bottom: auto;
  padding-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.card-title {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.card-desc {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
}

.card-tags span {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.card-tags span {
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.3s;
}

.product-card:hover .card-tags span {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.card-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-tertiary);
  transition: all 0.4s var(--ease-out-expo);
}

.product-card:hover .card-arrow {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: rotate(-45deg) scale(1.05);
}

/* ── Promo Image Wall (bottom-to-top flow) ── */
.promo-showcase {
  position: relative;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  height: 620px;
  overflow: hidden;
  border-radius: 24px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.promo-column {
  position: relative;
  overflow: hidden;
}

.promo-column-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: promoFlowUp 36s linear infinite;
  will-change: transform;
}

/* Per-column speed variation for that layered "sexy" flow */
.promo-column[data-speed="slow"]   .promo-column-inner { animation-duration: 46s; }
.promo-column[data-speed="medium"] .promo-column-inner { animation-duration: 34s; }
.promo-column[data-speed="fast"]   .promo-column-inner { animation-duration: 26s; }

/* Slightly offset the middle column so the columns aren't perfectly aligned */
.promo-column[data-speed="fast"] .promo-column-inner {
  animation-delay: -5s;
}

.promo-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.6s var(--ease-out-expo), border-color 0.4s, box-shadow 0.4s;
  flex-shrink: 0;
}

.promo-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.promo-item:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--accent-glow);
}

.promo-item:hover img {
  transform: scale(1.04);
}

@keyframes promoFlowUp {
  0%   { transform: translateY(0);    }
  100% { transform: translateY(-50%); }
}

@media (max-width: 1024px) {
  .promo-showcase {
    height: 540px;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .promo-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    height: 520px;
    margin-top: 3rem;
  }
  /* Alle drei Spalten bleiben sichtbar – kleinere Thumbnails
     damit viele Bilder gleichzeitig im Blick sind. */
  .promo-column-inner { gap: 0.6rem; }
  .promo-item { border-radius: 12px; }
  .promo-column[data-speed="slow"]   .promo-column-inner { animation-duration: 22s; }
  .promo-column[data-speed="medium"] .promo-column-inner { animation-duration: 18s; }
  .promo-column[data-speed="fast"]   .promo-column-inner { animation-duration: 14s; }
}

@media (max-width: 480px) {
  .promo-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    height: 460px;
  }
  .promo-column-inner { gap: 0.5rem; }
  .promo-column[data-speed="slow"]   .promo-column-inner { animation-duration: 20s; }
  .promo-column[data-speed="medium"] .promo-column-inner { animation-duration: 16s; }
  .promo-column[data-speed="fast"]   .promo-column-inner { animation-duration: 12s; }
}

/* ── Brand Logos Marquee ────────────────── */
.brands-section {
  position: relative;
  padding: 2.75rem 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Soft edge fades so logos dissolve in/out instead of cutting hard */
.brands-section::before,
.brands-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.brands-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-elevated) 0%, transparent 100%);
}
.brands-section::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-elevated) 0%, transparent 100%);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: brandsMarqueeScroll 48s linear infinite;
  will-change: transform;
}

.brands-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
  line-height: 1;
  user-select: none;
  letter-spacing: 0;
}

/* Brand-specific typographic treatments — uniform height, varied character */
.brand-elfbar    { font-weight: 900; letter-spacing: 0.02em; }
.brand-lostmary  { font-family: 'Brush Script MT', 'Segoe Script', cursive; font-weight: 400; font-style: italic; font-size: clamp(1.6rem, 2.9vw, 2.3rem); }
.brand-ske       { font-weight: 800; letter-spacing: 0.28em; }
.brand-redbull   { font-weight: 800; font-style: italic; letter-spacing: -0.01em; }
.brand-coca      { font-family: 'Brush Script MT', 'Segoe Script', cursive; font-weight: 400; font-style: italic; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.brand-monster   { font-weight: 900; letter-spacing: 0.18em; }
.brand-fanta     { font-weight: 800; font-style: italic; letter-spacing: 0.04em; }
.brand-haribo    { font-weight: 800; letter-spacing: 0.06em; }
.brand-milka     { font-weight: 700; font-style: italic; letter-spacing: 0.01em; }
.brand-marlboro  { font-family: 'Times New Roman', Times, serif; font-weight: 700; letter-spacing: 0.12em; }

/* Left-to-right flow: track sits offset by -50% and slides back to 0, looping seamlessly.
   No animation-play-state:paused on hover — motion continues regardless of mouse. */
@keyframes brandsMarqueeScroll {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0);     }
}

@media (max-width: 768px) {
  .brands-section { padding: 2rem 0; }
  .brands-row { gap: 2.75rem; padding-right: 2.75rem; }
  .brands-section::before,
  .brands-section::after { width: 70px; }
}

/* ── Feature Section (Horizontal Scroll) ── */
.feature-section {
  height: 340vh;
  position: relative;
}

.feature-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem var(--container-padding);
  gap: 0.5rem;
}

.feature-header {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  margin-bottom: 2rem;
}

.feature-track {
  display: flex;
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  will-change: transform;
}

.feature-card {
  flex-shrink: 0;
  width: 380px;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.4s var(--ease-out-expo);
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Reviews Band (scrolls with the feature track) ─── */
.reviews-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: var(--container-max);
  margin: 3rem auto 1.25rem;
  width: 100%;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.reviews-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  will-change: transform;
}

.review-card {
  flex-shrink: 0;
  width: 380px;
  padding: 1.6rem 1.75rem 1.75rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: border-color 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0;
  background: linear-gradient(135deg, #5b5f66 0%, #2b2d30 100%);
}

.review-avatar-marc    { background: linear-gradient(135deg, #4a5968 0%, #232b34 100%); }
.review-avatar-steffen { background: linear-gradient(135deg, #6a7b52 0%, #2f3a24 100%); }
.review-avatar-thomas  { background: linear-gradient(135deg, #e05a1f 0%, #a33a0c 100%); }

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.review-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.review-source {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

/* Google wordmark with authentic G-o-o-g-l-e colours */
.review-google {
  display: inline-flex;
  align-items: baseline;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text-primary);
}
.review-google .g-b { color: #4285f4; }
.review-google .g-r { color: #ea4335; }
.review-google .g-y { color: #fbbc05; }
.review-google .g-g { color: #34a853; }

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.stars {
  display: inline-flex;
  gap: 2px;
  line-height: 1;
  font-size: 0.95rem;
}

.star {
  color: rgba(255,255,255,0.18);
}
.star.filled {
  color: #fbbc05; /* Google yellow */
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .review-card { width: 320px; }
}

@media (max-width: 768px) {
  .reviews-label { margin-top: 2rem; }
  .review-card { width: 280px; padding: 1.35rem 1.5rem 1.5rem; }
  .review-name { font-size: 0.88rem; }
}

/* ── About Section ──────────────────────── */
.about-section {
  padding: 8rem 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ── Contact Section ────────────────────── */
.contact-section {
  padding: 8rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact-inner {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 1rem;
  text-align: left;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.contact-title .highlight {
  color: var(--accent);
}

.contact-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.contact-link {
  transition: color 0.3s;
}

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

.contact-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin-top: 0.25rem;
  padding: 0.7rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.4s var(--ease-out-expo);
}

.contact-directions-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,6,19,0.35);
}

.contact-directions-btn svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.contact-directions-btn:hover svg {
  transform: translate(2px, -2px);
}

.contact-map {
  position: relative;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* Dark-mode the default Google Maps embed */
  filter: invert(0.92) hue-rotate(180deg) saturate(0.65) contrast(0.95);
}

@media (max-width: 900px) {
  .contact-map { min-height: 280px; }
}

.owner-block {
  margin-top: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.owner-portrait {
  position: relative;
  margin: 0;
  width: min(420px, 88%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.65);
  isolation: isolate;
}

.owner-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.owner-portrait:hover img {
  transform: scale(1.03);
}

.owner-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.owner-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #fff;
  text-align: left;
}

.owner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.owner-role {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.owner-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: min(560px, 92%);
}

@media (max-width: 560px) {
  .owner-socials {
    grid-template-columns: 1fr;
  }
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, background 0.35s;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  color: #fff;
}

.social-btn--yt .social-icon {
  background: #ff0033;
}

.social-btn--ig .social-icon {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.social-platform {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
}

.social-handle {
  font-size: 0.82rem;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-arrow {
  display: inline-flex;
  color: var(--text-secondary);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s;
}

.social-btn:hover .social-arrow {
  color: var(--text-primary);
  transform: translate(2px, -2px);
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* ── Footer ─────────────────────────────── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.footer-logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .footer-brand { align-items: center; }
  .footer-logo-img { width: 84px; height: 84px; }
}

.footer-brand .logo-tagline {
  display: inline-block;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
}

.legal-link {
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: none;
  padding: 0;
  font-size: inherit;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}

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

.legal-sep {
  color: var(--text-tertiary);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-legal { cursor: auto; }
  .legal-link { cursor: pointer; }
}

/* ── Legal Modal (Impressum / Datenschutz) ─ */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.legal-modal.open {
  opacity: 1;
  visibility: visible;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.legal-panel {
  position: relative;
  width: min(880px, calc(100% - 3rem));
  max-height: 85vh;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  overflow-y: auto;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.5s var(--ease-out-expo);
  scrollbar-width: thin;
  scrollbar-color: var(--border-hover) transparent;
}

.legal-modal.open .legal-panel {
  transform: translateY(0) scale(1);
}

.legal-panel::-webkit-scrollbar { width: 10px; }
.legal-panel::-webkit-scrollbar-track { background: transparent; }
.legal-panel::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 10px; }

.legal-close {
  position: sticky;
  top: 0;
  float: right;
  margin-left: 1rem;
  margin-bottom: -42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: none;
  z-index: 2;
  transition: all 0.3s var(--ease-out-expo);
}

.legal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .legal-close { cursor: pointer; }
}

.legal-header {
  margin-bottom: 2rem;
  padding-right: 60px;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 0.75rem;
}

.legal-section {
  margin-bottom: 1.75rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}

.legal-section h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.005em;
}

.legal-section p {
  margin-bottom: 0.75rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0.75rem;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.3rem;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(227, 6, 19, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s, color 0.3s;
}

.legal-section a:hover {
  color: var(--accent-hover);
  text-decoration-color: var(--accent-hover);
}

.legal-todo {
  display: inline-block;
  padding: 1px 8px;
  background: rgba(227, 6, 19, 0.12);
  border: 1px dashed var(--accent);
  border-radius: 4px;
  color: var(--accent);
  font-size: 0.85em;
  font-style: italic;
}

.legal-footnote {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* When body is in modal-locked state, hide custom cursor because html scroll is disabled */
body.legal-open {
  overflow: hidden;
}

/* ── Reveal Animations ──────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }

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

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .feature-card {
    width: 280px;
  }

  .cursor, .cursor-follower {
    display: none !important;
  }

  body { cursor: auto; }
  button { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .about-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
