/* ============================================================
   NOVUM GmbH — Website Stylesheet
   Design: Dunkel, kinoreif, geometrisch. Schwarz + Markenblau.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg:           #000000;
  --surface:      #0a0a0c;
  --surface-2:    #111114;
  --accent:       #0025cc;
  --accent-bright:#1f3df0;
  --text:         #ffffff;
  --text-muted:   #9a9aa6;
  --text-dim:     #6a6a76;
  --border:       rgba(255, 255, 255, 0.10);
  --border-strong:rgba(255, 255, 255, 0.22);

  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Work Sans', system-ui, sans-serif;

  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.accent { color: var(--accent-bright); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: clamp(72px, 11vw, 160px) 0; }
.section--tight { padding: clamp(56px, 8vw, 110px) 0; }

.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head h2 {
  font-size: clamp(2rem, 5.2vw, 3.9rem);
  margin: 18px 0 0;
}
.section-head p { color: var(--text-muted); margin-top: 22px; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 30px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  position: relative;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-bright); }

.btn--ghost { border: 1px solid var(--border-strong); color: #fff; }
.btn--ghost:hover { background: #fff; color: #000; border-color: #fff; }

.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; }
.brand-logo { width: auto; display: block; }
.brand-logo--full { height: 22px; }                 /* Wortmarke (2.jpg) — oben */
.brand-logo--icon { height: 32px; display: none; }  /* N-Icon (3.jpg) — gescrollt */
.site-header.scrolled .brand-logo--full { display: none; }
.site-header.scrolled .brand-logo--icon { display: block; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent-bright);
  transition: width 0.3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.menu-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.menu-toggle span { width: 24px; height: 2px; background: #fff; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 78px 0 0 0;
  background: #000;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 40px 28px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--accent-bright); }
.mobile-nav .btn { margin-top: 24px; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(620px circle at 78% 22%, rgba(0, 37, 204, 0.40), transparent 62%),
    linear-gradient(180deg, #000 0%, #04040a 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 60% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 60% 40%, #000 30%, transparent 80%);
}
/* diagonal slash echoing the logo */
.hero-slash {
  position: absolute;
  top: -10%; right: 6%;
  width: 240px; height: 130%;
  background: linear-gradient(180deg, var(--accent), transparent);
  transform: skewX(-22deg);
  opacity: 0.5;
  z-index: 0;
  filter: blur(2px);
}
.hero-inner { position: relative; z-index: 1; max-width: 1000px; min-width: 0; }
.hero h1 {
  font-size: clamp(1.75rem, 7.4vw, 6.6rem);
  font-weight: 900;
}
.hero h1 .line { display: block; }
.hero p.lead {
  margin-top: 30px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: var(--text-muted);
  max-width: 560px;
}
.hero-cta { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint .bar { width: 1px; height: 46px; background: linear-gradient(var(--accent-bright), transparent); animation: scrolldown 1.9s var(--ease) infinite; }
@keyframes scrolldown { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  position: relative;
  padding: 190px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero .hero-bg { background: radial-gradient(560px circle at 85% 10%, rgba(0,37,204,0.35), transparent 60%), #000; }
.page-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 900; }
.page-hero p { margin-top: 24px; color: var(--text-muted); font-size: 1.15rem; max-width: 620px; }

/* ---------- Stats ---------- */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 64px 36px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat .num .suffix { color: var(--accent-bright); }
.stat .label {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card {
  background: var(--bg);
  padding: 48px 42px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { background: var(--surface-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .idx {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent-bright);
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 1.62rem;
  margin: 18px 0 14px;
  transition: transform 0.35s var(--ease);
}
.service-card:hover h3 { transform: translateX(6px); }
.service-card p { color: var(--text-muted); font-size: 1rem; flex: 1; }
.service-card .card-link {
  margin-top: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card .card-link .arrow { transition: transform 0.25s var(--ease); }
.service-card:hover .card-link .arrow { transform: translateX(5px); }
.service-card .card-link:hover { color: var(--accent-bright); }

/* big diagonal watermark inside cards */
.service-card .ghost {
  position: absolute;
  right: -30px; bottom: -54px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13rem;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  transition: color 0.35s var(--ease);
}
.service-card:hover .ghost { color: rgba(0,37,204,0.14); }

/* ---------- Detailed service blocks ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  padding: clamp(48px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail .sd-index {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.4rem, 8vw, 6rem);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-strong);
  line-height: 0.9;
}
.service-detail h3 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin: 14px 0 0; }
.service-detail .sd-body p { color: var(--text-muted); margin-bottom: 22px; }
.feature-list { display: grid; gap: 14px; margin-top: 8px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.feature-list li .tick {
  flex: none;
  width: 22px; height: 22px;
  background: var(--accent);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.feature-list li .tick svg { width: 12px; height: 12px; }

/* ---------- Why / value points ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.value-card { background: var(--bg); padding: 40px 34px; }
.value-card .vc-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--accent-bright);
}
.value-card h4 { font-size: 1.2rem; margin: 16px 0 10px; }
.value-card p { color: var(--text-muted); font-size: 0.97rem; }

/* split feature block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.split-visual img { width: 56%; height: auto; }
.split-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(0,37,204,0.22) 100%);
}
.split-visual .corner {
  position: absolute;
  width: 46px; height: 46px;
  border: 2px solid var(--accent-bright);
}
.split-visual .corner.tl { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
.split-visual .corner.br { bottom: 20px; right: 20px; border-left: 0; border-top: 0; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.process-step { background: var(--bg); padding: 40px 30px 44px; position: relative; }
.process-step .ps-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--accent);
  line-height: 1;
}
.process-step h4 { font-size: 1.15rem; margin: 18px 0 10px; }
.process-step p { color: var(--text-muted); font-size: 0.94rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  text-align: center;
  padding: clamp(70px, 10vw, 140px) 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 40%, rgba(0,0,0,0.28) 100%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 26px);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2.1rem, 5.5vw, 4.2rem); font-weight: 900; max-width: 900px; margin: 0 auto; }
.cta-band p { margin: 22px auto 0; max-width: 560px; color: rgba(255,255,255,0.85); }
.cta-band .btn--primary { background: #000; margin-top: 38px; }
.cta-band .btn--primary:hover { background: #fff; color: #000; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-bright); }
.field textarea { resize: vertical; min-height: 140px; }
.field.error input, .field.error textarea { border-color: #e3445a; }
.field .err-msg { display: none; color: #e3445a; font-size: 0.84rem; margin-top: 6px; }
.field.error .err-msg { display: block; }
.form-note { color: var(--text-dim); font-size: 0.86rem; margin-top: 8px; }

.contact-info { display: grid; gap: 2px; }
.info-row {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 26px 28px;
}
.info-row .ir-label {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.info-row .ir-value { margin-top: 8px; font-size: 1.1rem; }
.placeholder-tag {
  display: inline-block;
  background: rgba(0,37,204,0.18);
  border: 1px dashed var(--accent-bright);
  color: #fff;
  font-size: 0.82rem;
  padding: 2px 9px;
}

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.legal h3 { font-size: 1.1rem; margin: 26px 0 10px; text-transform: none; letter-spacing: 0; }
.legal p, .legal li { color: var(--text-muted); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--accent-bright); }
.legal strong { color: #fff; }
.legal .placeholder-tag { margin: 2px 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 80px 0 36px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 30px; margin-bottom: 20px; }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.footer-col a { display: block; color: var(--text-muted); padding: 7px 0; font-size: 0.96rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.footer-bottom .fb-links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-track span::after { content: "✦"; color: var(--accent-bright); font-size: 0.9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Logo Cloud (Kundenlogos) ---------- */
.logo-cloud-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.logo-cloud-head .lc-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.logo-cloud-head h2 {
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  margin-top: 14px;
  text-transform: none;
  letter-spacing: -0.01em;
}
.logo-cloud-head h2 .muted { color: var(--text-muted); font-weight: 700; }

.lc-divider {
  height: 1px;
  max-width: 420px;
  margin: 28px auto;
  background: var(--border-strong);
  -webkit-mask-image: linear-gradient(to right, transparent, #000, transparent);
  mask-image: linear-gradient(to right, transparent, #000, transparent);
}

.logo-cloud {
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.logo-cloud-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logo-scroll 42s linear infinite;
}
/* langsamer beim Hovern (entspricht speedOnHover des React-Components) */
.logo-cloud:hover .logo-cloud-track { animation-duration: 110s; }
.logo-cloud-track img {
  height: 22px;
  width: auto;
  flex: none;
  opacity: 0.6;
  transition: opacity 0.25s var(--ease);
  pointer-events: auto;
  user-select: none;
}
.logo-cloud-track img:hover { opacity: 1; }
@media (min-width: 768px) { .logo-cloud-track img { height: 30px; } }
@keyframes logo-scroll { to { transform: translateX(-50%); } }

/* ---------- Reel Showcase ---------- */
.reels-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 6px 28px 22px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reels-row::-webkit-scrollbar { display: none; }

.reel-card {
  flex: none;
  width: clamp(212px, 23vw, 288px);
  aspect-ratio: 9 / 16;
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.reel-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-card .reel-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 10px;
}
.reel-card .reel-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-bright);
}
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.45) 100%);
}
.reels-hint {
  margin-top: 6px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

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

@media (max-width: 860px) {
  .nav, .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .split { grid-template-columns: 1fr; }
  .split-visual { order: -1; }
  .service-detail { grid-template-columns: 1fr; gap: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .service-card { padding: 38px 28px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
