/* ============================================================
   VNEX MEDIA — Dark futuristic creative studio
   Stylesheet
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Backgrounds */
  --bg: #07070B;
  --bg-2: #11111A;
  --bg-3: #15151f;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #FFFFFF;
  --text-muted: #A6A6B3;

  /* Accents */
  --purple: #6B4EE6;
  --orange: #FF580D;
  --cyan: #2BBEF2;

  /* Gradients */
  --grad-primary: linear-gradient(120deg, #6B4EE6 0%, #FF580D 100%);
  --grad-tri: linear-gradient(120deg, #6B4EE6 0%, #2BBEF2 50%, #FF580D 100%);

  /* Typography */
  --font-head: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Spacing rhythm */
  --section-pad: clamp(4rem, 9vw, 8rem);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

::selection {
  background: rgba(107, 78, 230, 0.4);
  color: #fff;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: var(--section-pad); position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--grad-primary);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 18ch;
}

.section-lead {
  color: var(--text-muted);
  max-width: 56ch;
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

.text-grad {
  background: var(--grad-tri);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --glow: rgba(107, 78, 230, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              background 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 30px -10px var(--glow);
}
.btn--primary:hover {
  box-shadow: 0 14px 44px -12px var(--glow), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(107, 78, 230, 0.7);
  box-shadow: 0 0 0 1px rgba(107, 78, 230, 0.3), 0 8px 30px -14px var(--glow);
}

.btn--sm { padding: 0.7rem 1.2rem; font-size: 0.88rem; }
.btn--block { width: 100%; }

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

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 7, 11, 0.72);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.brand .logo-mark {
  width: 42px; height: 42px;
  background: none;
  border: none;
  border-radius: 0;
  display: grid; place-items: center;
  padding: 0;
  flex-shrink: 0;
}
.brand .logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(1.15);
}
.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-dot {
  color: var(--purple);
}
.brand-media {
  color: var(--orange);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--surface);
  position: relative;
}
.burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}
.burger span:nth-child(1) { transform: translate(-50%, -7px); }
.burger span:nth-child(3) { transform: translate(-50%, 5px); }
body.menu-open .burger span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  z-index: 99;
  background: rgba(7, 7, 11, 0.97);
  backdrop-filter: blur(18px);
  padding: 2rem clamp(1.25rem, 5vw, 2.5rem) 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a span { color: var(--text-muted); font-size: 1rem; }
.mobile-menu .btn { margin-top: 1.5rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}
.orb--purple { width: 46vw; height: 46vw; background: radial-gradient(circle, #6B4EE6, transparent 70%); top: -8%; left: -6%; }
.orb--orange { width: 40vw; height: 40vw; background: radial-gradient(circle, #FF580D, transparent 70%); bottom: -14%; right: -8%; opacity: 0.4; }
.orb--cyan   { width: 34vw; height: 34vw; background: radial-gradient(circle, #2BBEF2, transparent 70%); top: 30%; right: 22%; opacity: 0.3; }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(7,7,11,0.9), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: var(--surface);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px 2px rgba(43, 190, 242, 0.8);
}

.hero h1 {
  font-size: clamp(3rem, 8.5vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.hero h1 .accent {
  background: var(--grad-tri);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 500;
  margin-top: 1.5rem;
  color: var(--text);
  max-width: 22ch;
}
.hero-text {
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 44ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  font-family: var(--font-head);
  font-size: 1.7rem;
  display: block;
}
.hero-stats .stat span { color: var(--text-muted); font-size: 0.85rem; }

/* Hero collage */
.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  aspect-ratio: 4 / 5;
  will-change: transform;
}
.hero-collage .ph {
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-collage .ph:nth-child(1) { grid-row: span 2; }
.hero-collage .ph:nth-child(4) { grid-row: span 2; }

/* ============================================================
   PLACEHOLDER VISUALS (generative gradient blocks)
   ============================================================ */
.ph {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(107,78,230,0.55), transparent 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(255,88,13,0.45), transparent 55%),
    linear-gradient(135deg, #14141f, #0c0c14);
  z-index: -2;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
  z-index: -1;
}
.ph[data-tone="cyan"]::before {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(43,190,242,0.5), transparent 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(107,78,230,0.45), transparent 55%),
    linear-gradient(135deg, #14141f, #0c0c14);
}
.ph[data-tone="orange"]::before {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255,88,13,0.5), transparent 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(43,190,242,0.4), transparent 55%),
    linear-gradient(135deg, #14141f, #0c0c14);
}
.ph .ph-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 7, 11, 0.35);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  text-align: center;
}
.ph .ph-icon {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.18;
}
.ph .ph-icon svg { width: 38%; height: 38%; }

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: 1.4rem;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "✦";
  color: var(--purple);
  font-size: 0.8rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.intro-copy h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
.intro-copy p { color: var(--text-muted); margin-top: 1.5rem; font-size: 1.08rem; }
.intro-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.intro-signature .who {
  font-family: var(--font-head);
  font-weight: 500;
}
.intro-signature .who small { display: block; color: var(--text-muted); font-weight: 400; }
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--grad-primary);
  margin-left: -14px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
}
.avatar-stack .av:first-child { margin-left: 0; }
.avatar-stack .av:nth-child(2) { background: linear-gradient(120deg, #FF580D, #2BBEF2); }

.intro-visual {
  position: relative;
  aspect-ratio: 1 / 1;
}
.intro-visual .ph { width: 100%; height: 100%; border-radius: var(--radius); }
.intro-float {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.8);
}
.intro-float .badge-ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: grid; place-items: center;
}
.intro-float strong { font-family: var(--font-head); display: block; }
.intro-float span { color: var(--text-muted); font-size: 0.82rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease),
              background 0.5s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 50% 0%, rgba(107,78,230,0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.service-card:hover::before { opacity: 1; }
.service-ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-ic svg { width: 24px; height: 24px; stroke: var(--cyan); }
.service-card:hover .service-ic {
  border-color: rgba(43,190,242,0.5);
  box-shadow: 0 0 0 1px rgba(43,190,242,0.3), 0 0 24px -6px rgba(43,190,242,0.5);
}
.service-card h3 { font-size: 1.35rem; position: relative; z-index: 1; }
.service-card p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 0.96rem;
  position: relative; z-index: 1;
  flex: 1;
}
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,88,13,0.35);
  background: rgba(255,88,13,0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  margin-top: 1rem;
  position: relative; z-index: 1;
  width: fit-content;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative; z-index: 1;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.service-link svg { width: 16px; transition: transform 0.3s var(--ease); }
.service-link:hover { color: var(--cyan); }
.service-link:hover svg { transform: translateX(4px); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.6rem 1.1rem;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--border-strong); }
.filter-btn.active {
  color: #fff;
  background: rgba(107,78,230,0.16);
  border-color: rgba(107,78,230,0.6);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.work {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}
.work .ph { width: 100%; height: 100%; border: none; }
.work.tall { grid-row: span 2; }
.work.wide { grid-column: span 2; }
.work-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  background: linear-gradient(to top, rgba(7,7,11,0.85) 0%, transparent 55%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.work:hover .work-overlay { opacity: 1; transform: translateY(0); }
.work .ph::before { transition: transform 0.7s var(--ease); transform: scale(1); }
.work:hover .ph::before { transform: scale(1.08); }
.work-overlay .cat {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.work-overlay h4 { font-size: 1.1rem; margin-top: 0.3rem; }
.work.is-hidden { display: none; }

.portfolio-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================================
   WHY VNEX
   ============================================================ */
.why { background: var(--bg-2); border-block: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.why-card .num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--purple);
  letter-spacing: 0.1em;
}
.why-card h3 { font-size: 1.2rem; margin-top: 0.75rem; }
.why-card p { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.5rem; }

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.timeline { position: relative; margin-top: 1rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--orange));
  opacity: 0.4;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.75rem;
  padding-block: 1.5rem;
  align-items: start;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  position: relative; z-index: 1;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover .step-num {
  border-color: rgba(107,78,230,0.7);
  box-shadow: 0 0 0 1px rgba(107,78,230,0.4), 0 0 28px -6px rgba(107,78,230,0.7);
}
.step-body h3 { font-size: 1.3rem; }
.step-body p { color: var(--text-muted); margin-top: 0.4rem; }

/* ============================================================
   PACKAGES / PRICING
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.package {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.package:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.package.featured {
  border-color: rgba(107,78,230,0.6);
  background: linear-gradient(180deg, rgba(107,78,230,0.1), var(--surface));
  box-shadow: 0 30px 60px -30px rgba(107,78,230,0.5);
}
.package.featured::before {
  content: "Beliebt";
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: var(--grad-primary);
  color: #fff;
}
.package-name { font-size: 1.5rem; }
.package-for { color: var(--text-muted); margin-top: 0.5rem; font-size: 0.95rem; min-height: 3em; }
.package-price {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--cyan);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.package ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.package li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.package li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; stroke: var(--cyan); }
.package .btn { margin-top: 2rem; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking { position: relative; overflow: hidden; }
.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.booking-types { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.booking-type {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.booking-type:hover { border-color: var(--border-strong); background: var(--surface-2); }
.booking-type .tdot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--grad-primary);
  flex-shrink: 0;
}

.embed-placeholder {
  border: 1.5px dashed rgba(107,78,230,0.5);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(107,78,230,0.1), transparent 70%),
    var(--bg-2);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
}
.embed-placeholder .ep-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  box-shadow: 0 14px 40px -12px rgba(107,78,230,0.7);
}
.embed-placeholder h3 { font-size: 1.4rem; }
.embed-placeholder p { color: var(--text-muted); max-width: 42ch; }
.embed-placeholder code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  color: var(--cyan);
}
.embed-placeholder .ep-tools {
  display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem;
}
.embed-placeholder .ep-tools span {
  font-size: 0.82rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
}
.booking-note {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
}

/* Terminanfrage-Karte */
.booking-card {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(107,78,230,0.1), transparent 65%),
    var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.booking-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.booking-card-head .ep-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px -10px rgba(107,78,230,0.7);
}
.booking-card-head h3 { font-size: 1.3rem; }
.booking-card-head p { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.3rem; }
.field label .opt { color: rgba(166,166,179,0.7); font-weight: 400; }

/* Chip-Auswahl (Tageszeit) */
.chip-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.55rem 1rem;
  transition: all 0.25s var(--ease);
}
.chip:hover span { border-color: var(--border-strong); color: var(--text); }
.chip input:checked + span {
  color: #fff;
  background: rgba(107,78,230,0.18);
  border-color: rgba(107,78,230,0.7);
  box-shadow: 0 0 0 1px rgba(107,78,230,0.35);
}
.chip input:focus-visible + span {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
/* Date-Picker-Icon im Dark Mode sichtbar */
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-2); border-top: 1px solid var(--border); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-info .info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .info-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info .info-ic svg { width: 20px; stroke: var(--cyan); }
.contact-info .info-item small {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-info .info-item strong { font-family: var(--font-head); font-weight: 500; font-size: 1.05rem; display: block; margin-top: 2px; }

form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(166,166,179,0.6); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(107,78,230,0.7);
  box-shadow: 0 0 0 3px rgba(107,78,230,0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A6A6B3' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--purple); flex-shrink: 0; }
.checkbox a { color: var(--cyan); text-decoration: underline; }

.form-fallback {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-fallback a { color: var(--cyan); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 4.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .brand { margin-bottom: 1.25rem; }
.footer-brand p { color: var(--text-muted); max-width: 32ch; font-size: 0.95rem; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  border-color: rgba(107,78,230,0.6);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-bottom .legal-links { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: var(--text); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 90;
  display: none;
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; box-shadow: 0 12px 40px -8px rgba(107,78,230,0.7); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { padding-top: 140px; }
.legal-content { max-width: 760px; }
.legal-content h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content p, .legal-content li { color: var(--text-muted); margin-bottom: 0.85rem; }
.legal-content ul { list-style: disc; padding-left: 1.25rem; }
.legal-content a { color: var(--cyan); }
.legal-content .placeholder-tag {
  display: inline-block;
  background: rgba(255,88,13,0.12);
  border: 1px solid rgba(255,88,13,0.4);
  color: #ffb38a;
  border-radius: 6px;
  padding: 0.1rem 0.5rem;
  font-size: 0.9rem;
  font-family: ui-monospace, monospace;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.legal-back:hover { color: var(--text); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.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; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-collage { max-width: 460px; margin-top: 1rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .why-grid, .intro-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: block; }
  body.menu-open { overflow: hidden; }
  .sticky-cta { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .work.wide { grid-column: span 1; }
  .work.tall { grid-row: span 1; }
  form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.5rem; }
  .intro-float { left: 10px; right: 10px; bottom: -16px; }
}

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