/* ============================================
   3D EFFECTS & PREMIUM ANIMATIONS
   Properus
   ============================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-hover: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --neon-violet: #B87E5F;
  --neon-magenta: #D4976F;
  --neon-pink: #D4976F;
}

/* ============================================
   SECTION GRADIENT TRANSITIONS
   ============================================ */

/* Alternating backgrounds */
.section.pricing,
.section.process,
.section.cases {
  background: var(--c-bg-deep);
}
.section.problem,
.section.trust,
.section.faq,
.section.blog {
  background: #121212;
}
.section.branchen {
  background: var(--c-bg-deep);
}
.section.numbers {
  background: radial-gradient(ellipse at center, #121212 0%, #121212 70%);
}
.section.contact {
  background: var(--c-bg-deep);
}

/* Gradient blend transitions between sections */
.section.problem::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--c-bg-deep));
  pointer-events: none;
  z-index: 1;
}
.section.pricing::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #121212);
  pointer-events: none;
  z-index: 1;
}
.section.branchen::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #121212);
  pointer-events: none;
  z-index: 1;
}
.section.trust::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--c-bg-deep));
  pointer-events: none;
  z-index: 1;
}
.section.process::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--c-bg-deep));
  pointer-events: none;
  z-index: 1;
}
.section.numbers::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #121212);
  pointer-events: none;
  z-index: 1;
}
.section.faq::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--c-bg-deep));
  pointer-events: none;
  z-index: 1;
}
.section.cases::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #121212);
  pointer-events: none;
  z-index: 1;
}
.section.blog::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--c-bg-deep));
  pointer-events: none;
  z-index: 1;
}

/* Neon accent divider lines (after Pricing, after Prozess, before Kontakt) */
.neon-accent-line {
  display: block;
  width: 60%;
  height: 1px;
  margin: 0 auto;
  border: none;
  background: linear-gradient(90deg, transparent, var(--neon-violet), var(--neon-magenta), var(--neon-violet), transparent);
  box-shadow:
    0 0 8px rgba(184, 126, 95, 0.25),
    0 0 20px rgba(184, 126, 95, 0.1);
  position: relative;
  z-index: 2;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

/* Hover effect for problem cards */
.card--problem {
  transition: transform 0.4s var(--ease-hover), box-shadow 0.4s var(--ease-hover);
}
.card--problem.is-revealed:hover {
  transform: translateY(-6px) translateZ(10px);
  box-shadow: 0 20px 60px rgba(184, 126, 95, 0.15);
}

/* Background orb */
.problem .section-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 126, 95, 0.06) 0%, transparent 70%);
  top: 20%;
  left: -10%;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   PRICING / LEISTUNGEN
   ============================================ */

/* Light reflex overlay */
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.pricing-card:hover::before {
  opacity: 1;
}

/* Featured card resting state */
.pricing-card--featured.is-revealed {
  transform: translateZ(30px);
}

/* Featured card pulsing border glow */
.pricing-card--featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--neon-violet), var(--neon-magenta), var(--neon-pink));
  z-index: -1;
  opacity: 0.5;
  animation: pulse-border-glow 3s ease-in-out infinite;
}

@keyframes pulse-border-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================
   BRANCHEN — 3D Staggered Grid
   ============================================ */

/* Glassmorphism cards */
.card--branche {
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 126, 95, 0.12);
  border-radius: 20px;
  padding: var(--sp-6);
  transition: transform 0.4s var(--ease-hover), border-color 0.3s ease, box-shadow 0.3s ease;
}

.card--branche.is-revealed:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(184, 126, 95, 0.3);
  box-shadow: 0 12px 40px rgba(184, 126, 95, 0.12);
}

/* SVG icon draw animation — triggered when card is revealed */
.card--branche .card__icon--lg svg path,
.card--branche .card__icon--lg svg circle,
.card--branche .card__icon--lg svg rect,
.card--branche .card__icon--lg svg ellipse,
.card--branche .card__icon--lg svg line,
.card--branche .card__icon--lg svg polyline {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.2s var(--ease-reveal) 0.3s;
}
.card--branche.is-revealed .card__icon--lg svg path,
.card--branche.is-revealed .card__icon--lg svg circle,
.card--branche.is-revealed .card__icon--lg svg rect,
.card--branche.is-revealed .card__icon--lg svg ellipse,
.card--branche.is-revealed .card__icon--lg svg line,
.card--branche.is-revealed .card__icon--lg svg polyline,
.card--branche.is-in-view .card__icon--lg svg path,
.card--branche.is-in-view .card__icon--lg svg circle,
.card--branche.is-in-view .card__icon--lg svg rect,
.card--branche.is-in-view .card__icon--lg svg ellipse,
.card--branche.is-in-view .card__icon--lg svg line,
.card--branche.is-in-view .card__icon--lg svg polyline {
  stroke-dashoffset: 0;
}

/* ============================================
   VERTRAUEN — Glassmorphism Cards
   ============================================ */

.trust__item {
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(184, 126, 95, 0.1);
  border-radius: 16px;
  padding: var(--sp-6);
  transition: transform 0.3s var(--ease-hover), border-color 0.3s ease, box-shadow 0.3s ease;
}

.trust__item.is-revealed:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 126, 95, 0.25);
  box-shadow: 0 8px 40px rgba(184, 126, 95, 0.1);
}

/* Rotating background orb */
.trust .section-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(184, 126, 95, 0.04) 0%,
    rgba(212, 151, 111, 0.02) 50%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: rotate-orb 20s linear infinite;
}

@keyframes rotate-orb {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   PROZESS — Timeline
   ============================================ */

/* Timeline SVG container */
.process__timeline {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.process__timeline svg {
  width: 100%;
  height: 100%;
}

.process__timeline-line {
  stroke: url(#timeline-gradient);
  stroke-width: 2;
  filter: url(#timeline-glow);
}

/* Step reveal via timeline */
.process__step {
  opacity: 0;
  transition: opacity 0.7s var(--ease-reveal), transform 0.7s var(--ease-reveal);
}
.process__step:nth-child(odd) {
  transform: translateX(-30px);
}
.process__step:nth-child(even) {
  transform: translateX(30px);
}

.process__step.is-step-active {
  opacity: 1;
  transform: translateX(0);
}

/* Number pulse glow */
.process__number.pulse-glow {
  animation: number-pulse 0.6s var(--ease-elastic);
}

@keyframes number-pulse {
  0% { transform: scale(1); opacity: 0.08; }
  40% { transform: scale(1.15); opacity: 0.25; text-shadow: 0 0 20px rgba(184, 126, 95, 0.6); }
  100% { transform: scale(1); opacity: 0.08; }
}

/* ============================================
   ZAHLEN — Counters & Particles
   ============================================ */

/* Numbers glow after counting */
.numbers__value {
  text-shadow: 0 0 30px rgba(184, 126, 95, 0.4);
}

/* Particle burst */
.counter-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  animation: particle-burst 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes particle-burst {
  0% {
    transform: translate(-50%, -50%) translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translate(var(--tx), var(--ty));
    opacity: 0;
  }
}

/* ============================================
   FAQ — Smooth Accordion
   ============================================ */

/* Grid-rows trick for smooth height animation */
.accordion__body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-reveal);
}
.accordion[open] .accordion__body-wrap {
  grid-template-rows: 1fr;
}
.accordion__body-wrap > .accordion__body {
  overflow: hidden;
}

/* Neon indicator */
.accordion {
  position: relative;
}
.accordion::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--neon-violet), var(--neon-magenta));
  border-radius: 3px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-reveal);
  z-index: 1;
}
.accordion[open]::before {
  transform: scaleY(1);
}

/* Active header glow */
.accordion[open] > .accordion__header {
  text-shadow: 0 0 20px rgba(184, 126, 95, 0.3);
}

/* ============================================
   REFERENZEN — Spotlight Hover
   ============================================ */

.cases__grid .card--case {
  transition: transform 0.4s var(--ease-reveal), box-shadow 0.4s var(--ease-reveal),
              opacity 0.4s ease, filter 0.4s ease;
}

/* Dim all cards when any is hovered */
.cases__grid:hover .card--case {
  transform: scale(0.97);
  opacity: 0.6;
  filter: brightness(0.7);
}

/* Spotlight the hovered card */
.cases__grid:hover .card--case:hover {
  transform: scale(1.03);
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 20px 60px rgba(184, 126, 95, 0.2);
  z-index: 2;
}

/* Metric value scale on hover */
.cases__grid:hover .card--case:hover .card__metric-value {
  transform: scale(1.15);
  color: var(--neon-magenta);
  text-shadow: 0 0 20px rgba(212, 151, 111, 0.5);
}
.card__metric-value {
  transition: transform 0.4s var(--ease-hover), color 0.4s ease, text-shadow 0.4s ease;
}

/* ============================================
   TESTIMONIALS — Stack & Glow
   ============================================ */

.testimonial-carousel__card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(184, 126, 95, 0.06);
  transition: box-shadow 0.4s var(--ease-hover);
}

/* Active card glow on hover */
.testimonial-carousel__card--active:hover {
  box-shadow:
    0 8px 40px rgba(184, 126, 95, 0.15),
    0 0 60px rgba(184, 126, 95, 0.06);
}

/* Gradient border on active card */
.testimonial-carousel__card--active::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--neon-violet), var(--neon-magenta), var(--neon-pink));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
.testimonial-carousel__card--active:hover::after {
  opacity: 0.7;
}

/* Background orb */
.testimonials .section-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 151, 111, 0.05) 0%, rgba(184, 126, 95, 0.03) 50%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: pulse-orb 5s ease-in-out infinite;
}

/* Section background */
.section.testimonials {
  background: #121212;
}
.section.testimonials::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--c-bg-deep));
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   BLOG — Card & Thumbnail Effects
   ============================================ */

.card--blog {
  transition: transform 0.5s var(--ease-reveal);
}
.card--blog.is-revealed:hover {
  transform: translateY(-8px);
}

.card--blog .card__thumb {
  transition: transform 0.5s var(--ease-reveal);
  will-change: transform;
  overflow: hidden;
}
.card--blog .card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.3);
  transition: background 0.5s ease;
}
.card--blog.is-revealed:hover .card__thumb {
  transform: scale(1.05) translateY(var(--parallax-y, 0));
}
.card--blog.is-revealed:hover .card__thumb::after {
  background: rgba(18, 18, 18, 0.1);
}

/* ============================================
   KONTAKT — Ambient Glow & Form Effects
   ============================================ */

/* Pulsing neon orb behind info */
.contact .section-orb {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 126, 95, 0.06) 0%, rgba(184, 126, 95, 0.03) 50%, transparent 70%);
  top: 30%;
  left: 5%;
  pointer-events: none;
  z-index: 0;
  animation: pulse-orb 4s ease-in-out infinite;
}

@keyframes pulse-orb {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Form input focus glow */
.contact .form-input:focus {
  border-color: var(--neon-violet);
  box-shadow: 0 2px 15px rgba(184, 126, 95, 0.3);
}
.contact .form-input {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 2px solid rgba(184, 126, 95, 0.15);
}

/* Submit button breathing glow */
.contact .form-submit {
  animation: btn-breathe 2.5s ease-in-out infinite;
}

@keyframes btn-breathe {
  0%, 100% { box-shadow: 0 0 20px rgba(184, 126, 95, 0.3); }
  50% { box-shadow: 0 0 35px rgba(212, 151, 111, 0.5); }
}

/* ============================================
   FOOTER — Neon Underline Links
   ============================================ */

.footer__links a,
.footer__links button {
  position: relative;
}
.footer__links a::after,
.footer__links button::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--neon-violet), var(--neon-magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-reveal);
}
.footer__links a:hover::after,
.footer__links button:hover::after {
  transform: scaleX(1);
}

/* ============================================
   SHOWCASE — 3D Product Scroll Reveal
   ============================================ */

.section.showcase {
  background: var(--c-bg-deep);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-24);
  overflow: hidden;
  position: relative;
}

/* Gradient blend: hero → showcase */
.section.showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, #000, var(--c-bg-deep));
  pointer-events: none;
  z-index: 1;
}

/* Gradient blend: showcase → problem */
.section.showcase::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #121212);
  pointer-events: none;
  z-index: 1;
}

/* Background glow orb */
.showcase .section-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 126, 95, 0.06) 0%, rgba(212, 151, 111, 0.03) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.showcase__container {
  position: relative;
  z-index: 2;
}

.showcase__header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.showcase__header .section-heading__subtitle {
  max-width: var(--container-narrow);
  margin-inline: auto;
}

/* 3D perspective wrapper */
.showcase__perspective {
  perspective: 1000px;
  max-width: 64rem;
  margin-inline: auto;
}

/* The rotating card */
.showcase__card {
  transform-style: preserve-3d;
  will-change: transform;
  border-radius: var(--radius-xl);
  border: 3px solid rgba(184, 126, 95, 0.2);
  background: var(--c-bg-card);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(184, 126, 95, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 24px 48px rgba(0, 0, 0, 0.3),
    0 48px 96px rgba(0, 0, 0, 0.2),
    0 0 60px rgba(184, 126, 95, 0.06),
    0 0 120px rgba(184, 126, 95, 0.03);
  transition: border-color var(--dur-slow) var(--ease-out);
}

.showcase__card.is-showcase-active {
  border-color: rgba(184, 126, 95, 0.35);
}

.showcase__card-inner {
  border-radius: calc(var(--radius-xl) - 3px);
  overflow: hidden;
}

/* Faux browser chrome */
.showcase__chrome {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(18, 18, 18, 0.85);
  border-bottom: 1px solid var(--c-border);
}

.showcase__chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.showcase__chrome-dot:first-child { background: rgba(239, 68, 68, 0.65); }
.showcase__chrome-dot:nth-child(2) { background: rgba(245, 158, 11, 0.65); }
.showcase__chrome-dot:nth-child(3) { background: rgba(34, 197, 94, 0.65); }

.showcase__chrome-url {
  margin-left: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-sm);
  flex: 1;
  max-width: 320px;
  font-family: var(--font-body);
}

/* Dashboard screen layout */
.showcase__screen {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 340px;
  background: var(--c-bg-surface);
}

/* Sidebar */
.showcase__sidebar {
  background: rgba(18, 18, 18, 0.5);
  border-right: 1px solid var(--c-border);
  padding: var(--sp-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.showcase__sidebar-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  cursor: default;
  transition: color var(--dur-fast), background var(--dur-fast);
}

.showcase__sidebar-item svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.showcase__sidebar-item--active {
  color: var(--c-text-primary);
  background: rgba(184, 126, 95, 0.08);
  border-right: 2px solid var(--c-violet);
}

.showcase__sidebar-item--active svg {
  opacity: 1;
  color: var(--c-violet);
}

/* Main dashboard area */
.showcase__main {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

/* Metric cards row */
.showcase__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.showcase__metric {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
}

.showcase__metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-text-primary);
  margin-bottom: var(--sp-1);
}

.showcase__metric-label {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  letter-spacing: 0.02em;
}

/* Chat preview */
.showcase__chat-preview {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.showcase__chat-bubble {
  max-width: 72%;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

.showcase__chat-bubble--user {
  align-self: flex-end;
  background: rgba(184, 126, 95, 0.12);
  border: 1px solid rgba(184, 126, 95, 0.18);
  color: var(--c-text-primary);
}

.showcase__chat-bubble--bot {
  align-self: flex-start;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  color: var(--c-text-body);
}

/* ============================================
   MOBILE — Disable 3D, simplify
   ============================================ */

@media (max-width: 767px) {
  /* Branchen: simple grid on mobile */

  /* Process: timeline left, all steps from left */
  .process__timeline {
    left: 12px;
    transform: none;
  }
  .process__step {
    transform: translateX(-20px);
  }
  .process__step:nth-child(even) {
    transform: translateX(-20px);
  }
  .process__step.is-step-active {
    transform: translateX(0);
  }

  /* Showcase: hide sidebar, compact metrics */
  .showcase__screen {
    grid-template-columns: 1fr;
  }
  .showcase__sidebar {
    display: none;
  }
  .showcase__metrics {
    gap: var(--sp-2);
  }
  .showcase__metric {
    padding: var(--sp-2);
  }
  .showcase__metric-value {
    font-size: var(--fs-lg);
  }
  .showcase__main {
    padding: var(--sp-4);
  }
  .showcase__chat-bubble {
    max-width: 85%;
  }

  /* Disable tilt effects */
  .pricing-card::before {
    display: none;
  }

  /* Simplify section transitions */
  .section::after {
    height: 60px;
  }

  /* Disable orb animations */
  .section-orb {
    display: none;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .process__step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .counter-particle {
    animation: none;
    display: none;
  }

  .pricing-card--featured::after {
    animation: none;
    opacity: 0.7;
  }

  .trust .section-orb {
    animation: none;
  }

  .contact .section-orb {
    animation: none;
  }

  .contact .form-submit {
    animation: none;
  }

  .showcase__card {
    transform: none !important;
  }
  .showcase__header {
    transform: none !important;
  }

  .accordion__body-wrap {
    transition: none;
  }

  .accordion::before {
    transition: none;
  }

  .icon-stack__letter,
  .icon-notif__dot,
  .icon-notif__count,
  .icon-flatline__cursor,
  .icon-questions__q1,
  .icon-questions__q2,
  .icon-questions__q3 {
    animation: none !important;
  }

  @keyframes pulse-border-glow { 0%, 100% { opacity: 0.7; } }
  @keyframes rotate-orb { from, to { transform: translate(-50%, -50%); } }
  @keyframes pulse-orb { 0%, 100% { opacity: 0.8; } }
  @keyframes btn-breathe { 0%, 100% { box-shadow: 0 0 20px rgba(184, 126, 95, 0.3); } }
}
