/* ========== VIDEOCUT — PREMIUM PAGE ========== */
.page-videocut {
  overflow-x: hidden;
}

.page-videocut .title-script-word,
.page-videocut .gradient-text {
  color: #93c5fd;
  text-shadow:
    0 0 28px rgba(147, 197, 253, 0.45),
    0 0 60px rgba(147, 197, 253, 0.2);
}

/* ---------- HERO (gleiche Position wie Main-Page .hero) ---------- */
.videocut-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 8rem 0 4rem;
  padding-top: calc(8rem + env(safe-area-inset-top, 0px));
  overflow: hidden;
}

.videocut-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.videocut-hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(169, 216, 255, 0.16), transparent 60%),
    linear-gradient(180deg, #0a0a0f 0%, #12121a 45%, #0a0a0f 100%);
  transition: opacity 0.8s ease;
}

.videocut-hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.videocut-hero-video.is-playing,
.page-videocut.videocut-hero-video-active .videocut-hero-video {
  opacity: 1;
}

.videocut-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(10, 10, 15, 0.88) 0%, rgba(10, 10, 15, 0.62) 38%, rgba(10, 10, 15, 0.28) 58%, transparent 82%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.45) 0%, transparent 38%, transparent 68%, rgba(10, 10, 15, 0.55) 100%);
  pointer-events: none;
}

.videocut-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 50% 45% at 18% 55%, rgba(147, 197, 253, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 85% 25%, rgba(169, 216, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-videocut.videocut-hero-video-active .videocut-hero-fallback {
  opacity: 0;
}

.videocut-hero-main {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}

.videocut-hero-content {
  flex: 1;
  max-width: 34rem;
  text-align: left;
}

.videocut-hero-content .hero-badge {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(10, 10, 15, 0.62);
  border: 1px solid rgba(147, 197, 253, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.videocut-hero-title {
  margin-bottom: 0.25rem;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.7),
    0 4px 28px rgba(0, 0, 0, 0.45);
}

.videocut-hero-cut {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 28px rgba(147, 197, 253, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.75),
    0 4px 24px rgba(0, 0, 0, 0.5);
}

.videocut-hero-content .hero-lead {
  color: #ffffff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.8),
    0 2px 18px rgba(0, 0, 0, 0.55);
}

.videocut-hero-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 16px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(0, 0, 0, 0.35);
}


.videocut-hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.videocut-hero-scroll i,
.videocut-hero-scroll svg {
  width: 18px;
  height: 18px;
  animation: videocutBounce 1.8s ease-in-out infinite;
}

@keyframes videocutBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ---------- MAIN LAYOUT ---------- */
.videocut-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem) 5rem;
}

.videocut-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  scroll-margin-top: calc(5rem + env(safe-area-inset-top, 0px));
}

.videocut-section + .videocut-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.videocut-section--glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 280px;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(147, 197, 253, 0.1), transparent 70%);
  pointer-events: none;
}

.videocut-section-header {
  margin-bottom: clamp(2.25rem, 4vw, 3rem) !important;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.videocut-section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.videocut-section-header .section-title {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
}

.videocut-section-lead {
  margin: 0.85rem auto 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--grey-muted);
}

.videocut-cta-btn {
  margin-top: 0;
}

.videocut-cta .videocut-cta-btn {
  margin-top: 0.5rem;
}

/* ---------- LEISTUNGEN ---------- */
.videocut-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.videocut-svc-card {
  --svc-accent: #93c5fd;
  padding: 1.65rem 1.45rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.videocut-svc-card--cut { --svc-accent: #93c5fd; }
.videocut-svc-card--color { --svc-accent: #f472b6; }
.videocut-svc-card--audio { --svc-accent: #4ade80; }
.videocut-svc-card--text { --svc-accent: #fbbf24; }
.videocut-svc-card--motion { --svc-accent: #a78bfa; }
.videocut-svc-card--export { --svc-accent: #22d3ee; }

.videocut-svc-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--svc-accent) 35%, transparent);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.38),
    0 0 32px color-mix(in srgb, var(--svc-accent) 12%, transparent);
}

.videocut-svc-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: color-mix(in srgb, var(--svc-accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--svc-accent) 28%, transparent);
  color: var(--svc-accent);
}

.videocut-svc-icon svg,
.videocut-svc-icon i {
  width: 24px;
  height: 24px;
}

.videocut-svc-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--svc-accent);
}

.videocut-svc-card h3 {
  margin: 0 0 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.videocut-svc-desc {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--grey-muted);
}

.videocut-svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.videocut-svc-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: #c8d4e6;
  line-height: 1.5;
}

.videocut-svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--svc-accent);
  box-shadow: 0 0 8px color-mix(in srgb, var(--svc-accent) 60%, transparent);
}

/* ---------- ABLAUF ---------- */
.videocut-section--process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 88% 42%, rgba(167, 139, 250, 0.1), transparent 58%),
    radial-gradient(ellipse 55% 45% at 8% 68%, rgba(147, 197, 253, 0.11), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 28px;
  margin: 0 -0.5rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1rem, 3vw, 1.75rem);
  border: 1px solid rgba(147, 197, 253, 0.14);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.videocut-section--process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 20%, transparent 78%);
  pointer-events: none;
  opacity: 0.55;
}

.videocut-section--process .videocut-section-header {
  position: relative;
  z-index: 1;
}

.videocut-process-steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.videocut-process-steps::before {
  content: '';
  position: absolute;
  top: 2.35rem;
  left: 10%;
  right: 10%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(147, 197, 253, 0.35) 18%,
    rgba(167, 139, 250, 0.45) 50%,
    rgba(34, 211, 238, 0.35) 82%,
    transparent 100%
  );
  pointer-events: none;
}

.videocut-process-step {
  position: relative;
  min-width: 0;
}

.videocut-process-step--brief { --step-accent: #93c5fd; }
.videocut-process-step--concept { --step-accent: #f472b6; }
.videocut-process-step--prod { --step-accent: #a78bfa; }
.videocut-process-step--export { --step-accent: #22d3ee; }

.videocut-process-window {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 15.5rem;
  padding: 1.35rem 1.25rem 1.2rem;
  border-radius: 22px;
  background:
    radial-gradient(120% 90% at 0% 0%, color-mix(in srgb, var(--step-accent) 14%, transparent), transparent 52%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.videocut-process-window::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--step-accent), transparent);
  opacity: 0.9;
}

.videocut-process-window::after {
  content: '';
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 55%;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--step-accent) 18%, transparent), transparent 68%);
  pointer-events: none;
  opacity: 0.75;
}

.videocut-process-step:hover .videocut-process-window {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--step-accent) 38%, transparent);
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.42),
    0 0 36px color-mix(in srgb, var(--step-accent) 14%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.videocut-process-window-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.videocut-process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--step-accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--step-accent) 32%, transparent);
  color: var(--step-accent);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--step-accent) 18%, transparent);
}

.videocut-process-icon svg,
.videocut-process-icon i {
  width: 22px;
  height: 22px;
}

.videocut-process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--step-accent);
  background: color-mix(in srgb, var(--step-accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--step-accent) 28%, transparent);
}

.videocut-process-body {
  position: relative;
  z-index: 1;
  flex: 1;
}

.videocut-process-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--step-accent);
}

.videocut-process-body h3 {
  margin: 0 0 0.55rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

.videocut-process-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.72);
}

.videocut-process-chip {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid color-mix(in srgb, var(--step-accent) 24%, transparent);
}

/* ---------- PREISE ---------- */
.videocut-section--pricing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100%);
  height: 320px;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(147, 197, 253, 0.08), transparent 70%);
  pointer-events: none;
}

.videocut-pricing-grid {
  max-width: 1120px;
  margin: 0 auto;
}

.videocut-price-card {
  min-height: auto !important;
}

.videocut-price-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  margin-bottom: 0;
}

/* ---------- CTA ---------- */
.videocut-cta {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2.5rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.videocut-cta-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
}

.videocut-cta-lead {
  margin: 0 auto 1.65rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--grey-muted);
}


/* ---------- REVEAL ---------- */
.videocut-svc-card,
.videocut-process-step,
.videocut-price-card,
.videocut-cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.videocut-svc-card.visible,
.videocut-process-step.visible,
.videocut-price-card.visible,
.videocut-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .videocut-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .videocut-process-steps::before {
    display: none;
  }

  .videocut-process-window {
    min-height: 14.5rem;
  }
}

@media (max-width: 900px) {
  .videocut-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .videocut-hero {
    padding-top: calc(6rem + env(safe-area-inset-top, 0px));
  }

  .videocut-hero-main {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
    text-align: center;
  }

  .videocut-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .videocut-hero-content .hero-lead,
  .videocut-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .videocut-hero-vignette {
    background:
      radial-gradient(ellipse 90% 55% at 50% 48%, rgba(10, 10, 15, 0.72) 0%, rgba(10, 10, 15, 0.35) 55%, transparent 78%),
      linear-gradient(180deg, rgba(10, 10, 15, 0.5) 0%, rgba(10, 10, 15, 0.3) 42%, rgba(10, 10, 15, 0.6) 100%);
  }
}

@media (max-width: 768px) {
  .videocut-hero {
    min-height: 92vh;
    min-height: 92dvh;
    padding-bottom: 3rem;
  }

  .videocut-hero-cut {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .videocut-hero-scroll {
    display: none;
  }

  .videocut-hero-content .hero-btns .faq-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .videocut-section--process {
    margin: 0;
    padding: 1.35rem 1rem 1.5rem;
    border-radius: 22px;
  }

  .videocut-process-steps {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-left: 0.15rem;
  }

  .videocut-process-step {
    padding-left: 1.35rem;
    border-left: 2px solid color-mix(in srgb, var(--step-accent) 35%, transparent);
  }

  .videocut-process-step::before {
    content: '';
    position: absolute;
    left: -0.42rem;
    top: 1.65rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--step-accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--step-accent) 18%, transparent);
  }

  .videocut-process-step:last-child {
    border-left-color: transparent;
  }

  .videocut-process-window {
    min-height: auto;
    padding: 1.2rem 1.05rem 1.05rem;
  }

  .videocut-process-window-head {
    margin-bottom: 0.85rem;
  }

  .videocut-process-icon {
    width: 44px;
    height: 44px;
  }

  .videocut-cta-btn {
    width: 100%;
    max-width: 22rem;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .videocut-hero-scroll i,
  .videocut-hero-scroll svg,
  .videocut-svc-card,
  .videocut-process-step,
  .videocut-price-card,
  .videocut-cta {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
