/* ============================================
   AVELYX STUDIO — Ultimate Light Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg: #fafbff;
  --bg-surface: #f0f3f8;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-elevated: #ffffff;
  --bg-dark: #0b1528;
  --bg-dark-card: #12203a;

  /* Primary: Brand Blue */
  --primary: #0078D4;
  --primary-light: #5dade2;
  --primary-dark: #005fa3;
  --primary-glow: rgba(0, 120, 212, 0.10);
  --primary-glow-strong: rgba(0, 120, 212, 0.22);

  /* Accent: Deeper blue for contrast */
  --accent: #1a5276;
  --accent-light: #2f9ee0;
  --accent-glow: rgba(26, 82, 118, 0.10);

  /* Secondary: Navy */
  --secondary: #0f2744;
  --secondary-light: #143a5c;
  --secondary-glow: rgba(15, 39, 68, 0.08);

  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-on-dark: #f1f5f9;

  --border: rgba(0, 0, 0, 0.06);
  --border-light: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.12);

  /* Brand gradients: Blue */
  --gradient: linear-gradient(135deg, #0078D4 0%, #2f9ee0 50%, #5dade2 100%);
  --gradient-cool: linear-gradient(135deg, #0078D4 0%, #5dade2 50%, #a8d8f0 100%);
  --gradient-warm: linear-gradient(135deg, #005fa3 0%, #0078D4 50%, #2f9ee0 100%);
  --gradient-mesh: radial-gradient(at 40% 20%, rgba(0,120,212,0.06) 0px, transparent 50%),
                   radial-gradient(at 80% 0%, rgba(93,173,226,0.05) 0px, transparent 50%),
                   radial-gradient(at 0% 50%, rgba(15,39,68,0.04) 0px, transparent 50%),
                   radial-gradient(at 80% 100%, rgba(0,120,212,0.05) 0px, transparent 50%);

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.14);
  --shadow-primary: 0 8px 32px rgba(0,120,212,0.25);
  --shadow-primary-lg: 0 16px 48px rgba(0,120,212,0.3);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1200px;
  --nav-height: 80px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom cursor: purely additive — never hide default cursor */
@media (pointer: coarse) {
  .cursor, .cursor-dot { display: none !important; }
}

::selection {
  background: var(--primary);
  color: white;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

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

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease,
              background 0.3s ease, transform 0.3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease, background 0.15s ease;
}

.cursor.hovering {
  width: 64px;
  height: 64px;
  background: rgba(0, 120, 212, 0.08);
  border-color: var(--primary-light);
}

.cursor.clicking {
  transform: translate(-50%, -50%) scale(0.8);
}

.cursor.on-text {
  width: 4px;
  height: 32px;
  border-radius: 2px;
  background: var(--primary);
  border: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shimmer 4s ease-in-out infinite;
}

@keyframes gradient-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.gradient-text--cool {
  background: var(--gradient-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Page Load Animation ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loader-pulse 1s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Section Headers ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--primary-glow);
  border-radius: 50px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn--primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  box-shadow: var(--shadow-primary-lg);
  transform: translateY(-3px) scale(1.02);
}

.btn--secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1.5px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md), 0 0 0 4px var(--primary-glow);
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-medium);
}

.btn--outline:hover {
  border-color: var(--primary);
  background: var(--primary-glow);
  box-shadow: 0 0 0 4px rgba(0,120,212,0.06);
  transform: translateY(-3px);
}

.btn--dark {
  background: var(--bg-dark);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--dark:hover {
  background: #1a1a2e;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.btn--full { width: 100%; justify-content: center; }
.btn--large { padding: 18px 36px; font-size: 1.05rem; }

/* Magnetic button wrapper */
.magnetic-wrap {
  display: inline-block;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(250, 251, 255, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav__logo-img {
  height: 56px;
  width: auto;
  transition: transform var(--transition-bounce);
}

.nav__logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.nav__logo-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after {
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,120,212,0.3);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__demo-btn {
  padding: 10px 22px;
  background: var(--primary-glow);
  border: 1.5px solid rgba(0,120,212,0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}

.nav__demo-btn:hover {
  background: var(--primary-glow-strong);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,120,212,0.08);
  transform: translateY(-1px);
}

.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav__menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: var(--gradient-mesh), var(--bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.hero__glow--1 {
  background: rgba(0, 120, 212, 0.2);
  top: -20%;
  right: -10%;
  animation: glow-drift 8s ease-in-out infinite;
}

.hero__glow--2 {
  background: rgba(15, 39, 68, 0.12);
  bottom: -10%;
  left: -10%;
  animation: glow-drift 10s ease-in-out infinite reverse;
}

@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero__glow--mouse {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,120,212,0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero:hover .hero__glow--mouse {
  opacity: 1;
}

/* Floating shapes */
.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.hero__shape--1 {
  width: 12px;
  height: 12px;
  background: var(--primary);
  top: 20%;
  left: 15%;
  animation: float-shape 6s ease-in-out infinite;
}

.hero__shape--2 {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  top: 30%;
  right: 20%;
  animation: float-shape 8s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 16px;
  height: 16px;
  background: var(--accent);
  bottom: 25%;
  left: 10%;
  border-radius: 4px;
  animation: float-shape 7s ease-in-out infinite;
  animation-delay: -2s;
}

.hero__shape--4 {
  width: 10px;
  height: 10px;
  background: var(--primary-light);
  bottom: 35%;
  right: 15%;
  animation: float-shape 9s ease-in-out infinite;
  animation-delay: -4s;
}

.hero__shape--5 {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0,120,212,0.3);
  top: 60%;
  left: 25%;
  animation: float-shape 10s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.hero__shape--6 {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(15,39,68,0.3);
  top: 15%;
  right: 30%;
  border-radius: 4px;
  animation: float-shape 8s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(90deg); }
  50% { transform: translate(-10px, 15px) rotate(180deg); }
  75% { transform: translate(15px, 5px) rotate(270deg); }
}

/* Grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black 30%, transparent 100%);
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.hero__badge:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow), 0 0 0 4px var(--primary-glow);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(34,197,94,0.4); }
  50% { opacity: 0.6; transform: scale(0.85); box-shadow: 0 0 16px rgba(34,197,94,0.2); }
}

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero__title-rotating {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.05em;
}

.hero__title-word {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 28px 40px;
  background: white;
  border-radius: 20px;
  border: 1.5px solid rgba(0,120,212,0.15);
  box-shadow: var(--shadow), 0 0 30px rgba(0,120,212,0.06);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
}

.hero__stat-plus {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.hero__stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border-medium);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--border-medium);
  border-radius: 13px;
  position: relative;
}

.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; top: 8px; }
  50% { opacity: 0.3; top: 22px; }
}

/* ============================================
   MARQUEE / TRUST BAR
   ============================================ */
.trust {
  padding: 48px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-surface) 0%, white 100%);
  position: relative;
}

.trust::before,
.trust::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.trust::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-surface), transparent);
}

.trust::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.trust__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 28px;
}

.trust__marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.trust__marquee:hover {
  animation-play-state: paused;
}

.trust__track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
}

.trust__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.trust__pill svg {
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.trust__pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0,120,212,0.04);
  box-shadow: 0 4px 16px rgba(0,120,212,0.1);
  transform: translateY(-2px);
}

.trust__pill:hover svg {
  opacity: 1;
}

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

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 130px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 3D Tilt Card */
.tilt-card {
  perspective: 1000px;
}

.service-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Animated gradient border on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -2;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border-radius: calc(var(--radius-lg) - 2px);
  z-index: -1;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 1;
}

/* Shine effect */
.service-card__shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(0,120,212,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-card__shine {
  opacity: 1;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--primary-glow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--primary);
  position: relative;
  z-index: 2;
  transition: all var(--transition-bounce);
}

.service-card:hover .service-card__icon {
  background: var(--gradient);
  color: white;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-primary);
}

.service-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.service-card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.service-card__features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  transition: color var(--transition), transform var(--transition);
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gradient);
  border-radius: 50%;
  transition: transform var(--transition);
}

.service-card:hover .service-card__features li {
  color: var(--text-secondary);
}

.service-card:hover .service-card__features li::before {
  transform: scale(1.3);
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
  padding: 120px 0;
  background: var(--bg-surface);
}

/* ===== Portfolio Grid — 3 scrollende Browser ===== */
.pgrid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  height: 680px;
}

.pgrid__card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.08),
    0 16px 40px rgba(0,0,0,0.12);
  transition: box-shadow 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.pgrid__card:hover {
  box-shadow:
    0 4px 16px rgba(0,0,0,0.1),
    0 24px 56px rgba(0,0,0,0.18);
  transform: translateY(-6px);
}
.pgrid__card--portrait {
  grid-row: span 2;
}

/* Browser chrome — realistic macOS style */
.pgrid__chrome {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.pgrid__chrome-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 0;
  background: #2a2a2a;
}
.pgrid__dots { display: flex; gap: 5px; align-items: center; }
.pgrid__dots span { width: 8px; height: 8px; border-radius: 50%; }
.pgrid__dots span:nth-child(1) { background: #ff5f57; }
.pgrid__dots span:nth-child(2) { background: #febc2e; }
.pgrid__dots span:nth-child(3) { background: #28c840; }
.pgrid__tab {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #3a3a3a;
  border-radius: 6px 6px 0 0;
  padding: 5px 12px;
  margin-left: 6px;
  font-size: 0.58rem;
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.55);
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pgrid__tab-icon {
  display: none;
}
.pgrid__chrome-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 6px;
  background: #3a3a3a;
}
.pgrid__nav-btns {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.pgrid__nav-btns svg {
  width: 12px;
  height: 12px;
  color: rgba(255,255,255,0.2);
}
.pgrid__url {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 0.6rem;
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.4);
}
.pgrid__url svg { flex-shrink: 0; opacity: 0.35; width: 9px; height: 9px; color: rgba(255,255,255,0.35); }

/* Light chrome variant (Restaurant) */
.pgrid__card--light .pgrid__chrome-tab { background: #e8e8e8; }
.pgrid__card--light .pgrid__tab { background: #f5f5f5; color: rgba(0,0,0,0.55); }
.pgrid__card--light .pgrid__chrome-bar { background: #f5f5f5; }
.pgrid__card--light .pgrid__nav-btns svg { color: rgba(0,0,0,0.25); }
.pgrid__card--light .pgrid__url {
  background: rgba(0,0,0,0.05);
  color: rgba(0,0,0,0.45);
}
.pgrid__card--light .pgrid__url svg { color: rgba(0,0,0,0.35); }
.pgrid__card--light { background: #faf8f4; border-color: rgba(0,0,0,0.08); }

/* Viewport */
.pgrid__viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.pgrid__card--portrait .pgrid__viewport { background: #080808; }
.pgrid__card--light .pgrid__viewport { background: #faf8f4; }
.pgrid__card:not(.pgrid__card--portrait):not(.pgrid__card--light) .pgrid__viewport { background: #050505; }

/* Scroll containers — staggered speeds */
.pgrid__scroll {
  font-family: 'Inter', sans-serif;
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-filter: blur(0);
  filter: blur(0);
  outline: 1px solid transparent;
}
.pgrid__scroll--1 { background: #080808; }
.pgrid__scroll--2 { background: #faf8f4; }
.pgrid__scroll--3 { background: #050505; }
/* Overlap children by 1px to eliminate sub-pixel gaps */
.pgrid__scroll > div {
  position: relative;
  margin-bottom: -1px;
  padding-bottom: 1px;
}
.pgrid.in-view .pgrid__scroll--1 {
  animation: pgrid-scroll-down 24s cubic-bezier(0.45, 0, 0.55, 1) 0.4s infinite;
}
.pgrid.in-view .pgrid__scroll--2 {
  animation: pgrid-scroll-down 19s cubic-bezier(0.45, 0, 0.55, 1) 1.0s infinite;
}
.pgrid.in-view .pgrid__scroll--3 {
  animation: pgrid-scroll-down 21s cubic-bezier(0.45, 0, 0.55, 1) 0.2s infinite;
}
.pgrid__card:hover .pgrid__scroll {
  animation-play-state: paused;
}
@keyframes pgrid-scroll-down {
  0%, 8% { transform: translate3d(0,0,0); }
  42%, 58% { transform: translate3d(0,-44%,0); }
  92%, 100% { transform: translate3d(0,0,0); }
}

/* Label under card */
.pgrid__label {
  position: absolute;
  bottom: 14px;
  right: 16px;
  z-index: 5;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1);
  font-family: 'Inter', sans-serif;
}
.pgrid__card:hover .pgrid__label {
  opacity: 1;
  transform: translateY(0);
}

/* Film grain texture */
.ssite__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Hero bg + Ken Burns */
.ssite__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.ssite__kenburns {
  animation: ssite-kenburns 30s ease-in-out infinite alternate;
}
.pgrid__card:nth-child(2) .ssite__kenburns { animation-delay: -10s; animation-direction: alternate-reverse; }
.pgrid__card:nth-child(3) .ssite__kenburns { animation-delay: -20s; }
@keyframes ssite-kenburns {
  0% { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -0.8%); }
}

/* Gallery image shimmer */
.ssite__gallery-img {
  position: relative;
  overflow: hidden;
}
.ssite__gallery-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: ssite-galleryShimmer 5s ease-in-out infinite;
}
@keyframes ssite-galleryShimmer {
  0%, 70% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Floating gold particles (Barbershop) */
.ssite__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.ssite__particle {
  position: absolute;
  bottom: -10px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #c9a84c;
  opacity: 0;
  animation: ssite-particleUp 7s ease-in-out infinite;
}
.ssite__particle:nth-child(2n) { width: 1.5px; height: 1.5px; animation-duration: 9s; }
.ssite__particle:nth-child(3n) { width: 3px; height: 3px; animation-duration: 8s; }
@keyframes ssite-particleUp {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  12% { opacity: 0.5; transform: translateY(-40px) scale(1); }
  50% { opacity: 0.3; }
  100% { transform: translateY(-600px) scale(0.2); opacity: 0; }
}

/* Warm bokeh lights (Restaurant) */
.ssite__bokeh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ssite__bokeh-dot {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,92,92,0.1), transparent 70%);
  filter: blur(6px);
  animation: ssite-bokeh 8s ease-in-out infinite;
}
.ssite__bokeh-dot:nth-child(2n) {
  width: 18px; height: 18px;
  background: radial-gradient(circle, rgba(212,179,106,0.08), transparent 70%);
  animation-duration: 10s;
}
.ssite__bokeh-dot:nth-child(3n) {
  width: 35px; height: 35px;
  background: radial-gradient(circle, rgba(245,240,232,0.05), transparent 70%);
  animation-duration: 12s;
}
@keyframes ssite-bokeh {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  25% { transform: translate(6px, -5px) scale(1.1); opacity: 0.7; }
  50% { transform: translate(-3px, 3px) scale(0.9); opacity: 0.3; }
  75% { transform: translate(4px, 6px) scale(1.05); opacity: 0.6; }
}

/* Energy lines (Gym) */
.ssite__energy {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ssite__energy-line {
  position: absolute;
  left: -50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.06), rgba(34,197,94,0.15), rgba(34,197,94,0.06), transparent);
  animation: ssite-energySweep 7s linear infinite;
}
@keyframes ssite-energySweep {
  0% { transform: translateX(-30%); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(30%); opacity: 0; }
}

/* Gym card hover glow */
.ssite__gym-card {
  transition: all 0.3s ease;
}
.ssite__gym-card:hover {
  border-color: rgba(34,197,94,0.2) !important;
  box-shadow: 0 0 15px rgba(34,197,94,0.06);
}

/* Shimmer text effect */
.ssite__shimmer {
  background: linear-gradient(90deg, #f5f0e8 0%, #f5f0e8 40%, #b85c5c 50%, #f5f0e8 60%, #f5f0e8 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ssite-shimmerText 6s ease-in-out infinite;
}
@keyframes ssite-shimmerText {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Shine button effect */
.ssite__shine { position: relative; overflow: hidden; }
.ssite__shine::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: ssite-shineMove 4s ease-in-out infinite;
}
@keyframes ssite-shineMove {
  0%, 60% { left: -100%; }
  100% { left: 200%; }
}

/* Responsive */
@media (max-width: 900px) {
  .pgrid {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 300px 300px;
    height: auto;
    gap: 14px;
    max-width: 500px;
  }
  .pgrid__card--portrait {
    grid-row: span 1;
  }
}
@media (max-width: 480px) {
  .pgrid {
    grid-template-rows: 360px 260px 260px;
    gap: 12px;
  }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 130px 0;
}

.pricing__toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  max-width: 420px;
  margin: 0 auto 60px;
  box-shadow: var(--shadow-xs);
}

.pricing__toggle-btn {
  flex: 1;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}

.pricing__toggle-btn.active {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-primary);
}

.pricing__toggle-btn:not(.active):hover {
  color: var(--text);
  background: rgba(0,0,0,0.03);
}

.pricing__grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing__grid--active {
  display: grid;
}

.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--border-medium);
}

.pricing-card--popular {
  border-color: var(--primary);
  background: white;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,120,212,0.1), 0 0 40px rgba(0,120,212,0.08);
  transform: scale(1.04);
  animation: popular-pulse 3s ease-in-out infinite;
}

@keyframes popular-pulse {
  0%, 100% { box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,120,212,0.1), 0 0 30px rgba(0,120,212,0.06); }
  50% { box-shadow: var(--shadow-md), 0 0 0 2px rgba(0,120,212,0.15), 0 0 50px rgba(0,120,212,0.12); }
}

.pricing-card--popular:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: var(--shadow-xl), 0 0 0 2px rgba(0,120,212,0.2), 0 0 60px rgba(0,120,212,0.15);
  animation: none;
}

.pricing-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 24px;
  background: var(--gradient);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: var(--shadow-primary);
}

.pricing-card__header {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1.5px solid var(--border);
}

.pricing-card__label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 14px 0;
}

.pricing-card__currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-card__amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card--popular .pricing-card__amount {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card__period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  transition: transform var(--transition-fast);
}

.pricing-card__features li:hover {
  transform: translateX(4px);
}

.pricing-card__features li.included svg {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-card__features li.excluded {
  color: var(--text-muted);
  opacity: 0.4;
}

.pricing-card__features li.excluded svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.pricing-card__features li.highlight {
  color: var(--primary-dark);
  font-weight: 600;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 130px 0;
  background: var(--bg-surface);
}

.process__timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-light), var(--border), transparent);
}

.process__timeline::after {
  content: '';
  position: absolute;
  left: 37px;
  top: 0;
  width: 8px;
  height: 30%;
  background: linear-gradient(to bottom, rgba(0,120,212,0.5), transparent);
  border-radius: 4px;
  filter: blur(4px);
  animation: timeline-glow 3s ease-in-out infinite;
}

@keyframes timeline-glow {
  0%, 100% { top: 0; opacity: 0.6; }
  50% { top: 70%; opacity: 0; }
}

.process__step {
  display: flex;
  gap: 36px;
  padding: 36px 0;
  position: relative;
}

.process__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid rgba(0,120,212,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.process__step:hover .process__number {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
  transform: scale(1.1);
}

.process__content {
  padding-top: 8px;
}

.process__content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.process__step:hover .process__content h3 {
  color: var(--primary-dark);
}

.process__content p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ============================================
   DEMO ACCESS
   ============================================ */
.demo {
  padding: 130px 0;
}

.demo__wrapper {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  color: var(--text-on-dark);
}

.demo__wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: var(--primary);
  filter: blur(180px);
  opacity: 0.1;
  pointer-events: none;
}

.demo__wrapper::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  filter: blur(150px);
  opacity: 0.08;
  pointer-events: none;
}

.demo__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  position: relative;
}

.demo__text {
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.7;
  position: relative;
}

.demo__form-wrapper {
  position: relative;
  z-index: 1;
}

.demo__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 14px;
}

.demo__input-row {
  display: flex;
  gap: 12px;
}

.demo__input {
  flex: 1;
  padding: 17px 22px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: white;
  font-size: 1.05rem;
  font-family: 'Space Grotesk', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  outline: none;
}

.demo__input::placeholder {
  color: rgba(255,255,255,0.3);
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
}

.demo__input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(0,120,212,0.15);
}

.demo__submit {
  flex-shrink: 0;
}

.demo__message {
  margin-top: 14px;
  font-size: 0.88rem;
  min-height: 24px;
}

.demo__message.error { color: #ef4444; }
.demo__message.success { color: #22c55e; }
.demo__message.loading { color: var(--primary); }

.demo__hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.demo__hint svg { flex-shrink: 0; margin-top: 1px; }

/* ============================================
   DEMO MODAL
   ============================================ */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.demo-modal.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.demo-modal__panel {
  position: relative;
  background: var(--bg-dark, #0f172a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.demo-modal__panel::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: var(--primary);
  filter: blur(120px);
  opacity: 0.1;
  pointer-events: none;
}
.demo-modal.active .demo-modal__panel {
  transform: translateY(0) scale(1);
}
.demo-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.demo-modal__close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.demo-modal__header {
  margin-bottom: 28px;
}
.demo-modal__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 10px;
}
.demo-modal__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-on-dark, #fff);
  line-height: 1.15;
}
.demo-modal__input-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 10px;
}
.demo-modal__input-row {
  display: flex;
  gap: 10px;
}
.demo-modal__input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: white;
  font-size: 1rem;
  font-family: 'Space Grotesk', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  outline: none;
}
.demo-modal__input::placeholder {
  color: rgba(255,255,255,0.25);
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}
.demo-modal__input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(0,120,212,0.15);
}
.demo-modal__submit {
  flex-shrink: 0;
}
.demo-modal__message {
  margin-top: 12px;
  font-size: 0.85rem;
  min-height: 20px;
}
.demo-modal__message.error { color: #ef4444; }
.demo-modal__message.success { color: #22c55e; }
.demo-modal__message.loading { color: var(--primary); }
.demo-modal__hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}
.demo-modal__hint svg { flex-shrink: 0; margin-top: 1px; }

@media (max-width: 480px) {
  .demo-modal__panel { padding: 32px 24px; }
  .demo-modal__input-row { flex-direction: column; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 130px 0;
  background: var(--bg-surface);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.testimonial-card:hover {
  border-color: rgba(0,120,212,0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* Icon decoration */
.testimonial-card::before {
  content: '';
  display: none;
}

.testimonial-card__icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--primary-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.testimonial-card:hover .testimonial-card__icon-wrap {
  background: var(--primary-glow-strong);
  transform: scale(1.05);
}

.testimonial-card__heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 24px;
}

.testimonial-card__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
  font-style: normal;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  box-shadow: 0 4px 12px rgba(0,120,212,0.2);
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-card__author span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 130px 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}

.contact__card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow), 0 0 0 3px var(--primary-glow);
  transform: translateX(6px);
}

.contact__card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all var(--transition);
}

.contact__card:hover .contact__card-icon {
  background: var(--gradient);
  color: white;
}

.contact__card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact__card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

a.contact__card-value:hover {
  color: var(--primary);
}

.contact__form-wrap {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-medium);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,120,212,0.1);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: var(--text-muted);
}

.contact__field textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 72px 0 36px;
  border-top: 1px solid var(--border);
  background: white;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer .nav__logo {
  margin-bottom: 4px;
}

.footer__desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}

.footer__links h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition);
  display: inline-block;
}

.footer__links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer__links li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--primary);
}

/* ============================================
   KONFIGURATOR
   ============================================ */
.konfig {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.konfig.open {
  opacity: 1;
  visibility: visible;
}

.konfig__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.konfig__panel {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-xl);
  width: 95vw;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.konfig.open .konfig__panel {
  transform: translateY(0) scale(1);
}

.konfig__close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-surface);
  color: var(--text-secondary);
  transition: all var(--transition);
  z-index: 10;
  cursor: pointer;
}

.konfig__close-btn:hover {
  background: var(--primary-glow);
  color: var(--primary);
  transform: rotate(90deg);
}

.konfig__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

.konfig__steps {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  overflow-y: auto;
  max-height: 85vh;
}

.konfig__header {
  margin-bottom: 32px;
}

.konfig__paket-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 16px;
}

.konfig__paket-btn {
  flex: 1;
  padding: 10px 8px 8px;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.konfig__paket-btn small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.7;
}

.konfig__paket-btn:hover {
  color: var(--text);
  background: rgba(0,0,0,0.03);
}

.konfig__paket-btn.active {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-primary);
}

.konfig__paket-btn.active small {
  color: rgba(255,255,255,0.8);
}

.konfig__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.konfig__subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.konfig__step {
  margin-bottom: 28px;
}

.konfig__step-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.konfig__options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.konfig__options--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.konfig__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: white;
}

.konfig__option input { display: none; }

.konfig__option:hover {
  border-color: var(--primary);
  background: var(--primary-glow);
}

.konfig__option.active {
  border-color: var(--primary);
  background: rgba(0,120,212,0.06);
  color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,120,212,0.1);
}

.konfig__option--wide {
  flex: 1;
  min-width: 140px;
}

/* Theme mini preview */
.konfig__theme-preview {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.konfig__theme-preview--light {
  background: #f8fafc;
}

.konfig__theme-preview--light .konfig__theme-bar {
  height: 8px;
  background: white;
  border-bottom: 1px solid #e2e8f0;
}

.konfig__theme-preview--light .konfig__theme-content {
  padding: 6px 8px;
  display: flex;
  gap: 4px;
}

.konfig__theme-preview--light .konfig__theme-content div {
  flex: 1;
  height: 6px;
  background: #cbd5e1;
  border-radius: 3px;
}

.konfig__theme-preview--dark {
  background: #0f172a;
}

.konfig__theme-preview--dark .konfig__theme-bar {
  height: 8px;
  background: #1e293b;
  border-bottom: 1px solid #334155;
}

.konfig__theme-preview--dark .konfig__theme-content {
  padding: 6px 8px;
  display: flex;
  gap: 4px;
}

.konfig__theme-preview--dark .konfig__theme-content div {
  flex: 1;
  height: 6px;
  background: #334155;
  border-radius: 3px;
}

/* Firmenname & custom branche input */
.konfig__input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: white;
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}

.konfig__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,120,212,0.1);
}

.konfig__input::placeholder {
  color: var(--text-muted);
}

.konfig__branche-custom {
  margin-top: 12px;
  animation: konfig-slide-down 0.3s ease;
}

@keyframes konfig-slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hosting options */
.konfig__option--hosting {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  flex: 1 1 100%;
  text-align: left;
}

.konfig__hosting-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.konfig__hosting-info strong {
  font-size: 0.9rem;
  color: inherit;
}

.konfig__hosting-info small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.konfig__hosting-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  white-space: nowrap;
}

.konfig__hosting-price small {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.konfig__hosting-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
  flex-shrink: 0;
  cursor: pointer;
}

.konfig__hosting-toggle:hover {
  color: var(--primary);
  background: var(--primary-glow);
}

.konfig__hosting-detail {
  display: none;
  padding: 12px 18px 14px;
  background: rgba(0,120,212,0.03);
  border: 1px solid rgba(0,120,212,0.1);
  border-radius: 10px;
  animation: konfig-slide-down 0.3s ease;
  flex-basis: 100%;
}

.konfig__hosting-detail.open {
  display: block;
}

.konfig__hosting-detail ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.konfig__hosting-detail li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.konfig__hosting-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.konfig__hosting-detail li strong {
  color: var(--primary-dark);
}

/* Beide theme preview */
.konfig__theme-preview--beide {
  display: flex;
  overflow: hidden;
}

.konfig__theme-half {
  flex: 1;
  height: 48px;
}

.konfig__theme-half--light {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.konfig__theme-half--dark {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

/* Contact form */
.konfig__contact {
  animation: konfig-slide-down 0.4s ease;
}

.konfig__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.konfig__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: white;
  color: var(--text);
  transition: all var(--transition);
  outline: none;
  resize: vertical;
  min-height: 60px;
}

.konfig__textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,120,212,0.1);
}

.konfig__textarea::placeholder {
  color: var(--text-muted);
}

.konfig__form-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.konfig__form-actions .btn {
  flex: 1;
}

.btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid var(--border-medium);
  background: transparent;
  color: var(--text-secondary);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}

/* Mock: firma name */
.konfig__mock-name {
  font-size: 8px;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.03em;
  transition: color 0.4s ease;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.konfig__mock.dark .konfig__mock-name {
  color: #e2e8f0;
}

/* Preview effects */
@keyframes mock-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes mock-card-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mock-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.konfig__mock-hero {
  position: relative;
  overflow: hidden;
}

.konfig__mock-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,120,212,0.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: mock-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.konfig__mock.dark .konfig__mock-hero::after {
  background: linear-gradient(90deg, transparent 0%, rgba(93,173,226,0.08) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: mock-shimmer 3s ease-in-out infinite;
}

.konfig__mock-card {
  animation: mock-card-enter 0.5s ease both;
}

.konfig__mock-card:nth-child(2) { animation-delay: 0.1s; }
.konfig__mock-card:nth-child(3) { animation-delay: 0.2s; }

.konfig__mock-hero-btn {
  animation: mock-pulse 2s ease-in-out infinite;
}

/* Beide mode: auto-toggle animation */
.konfig__mock.beide-toggle {
  animation: mock-theme-toggle 6s ease-in-out infinite;
}

@keyframes mock-theme-toggle {
  0%, 45% { background: #f8fafc; }
  50%, 95% { background: #0f172a; }
}

.konfig__mock.beide-toggle .konfig__mock-nav {
  animation: mock-nav-toggle 6s ease-in-out infinite;
}

@keyframes mock-nav-toggle {
  0%, 45% { background: white; border-color: var(--primary); }
  50%, 95% { background: #1e293b; border-color: var(--primary); }
}

.konfig__mock.beide-toggle .konfig__mock-hero-title,
.konfig__mock.beide-toggle .konfig__mock-name {
  animation: mock-text-toggle 6s ease-in-out infinite;
}

@keyframes mock-text-toggle {
  0%, 45% { color: #0f172a; }
  50%, 95% { color: #f1f5f9; }
}

.konfig__mock.beide-toggle .konfig__mock-hero-sub {
  animation: mock-sub-toggle 6s ease-in-out infinite;
}

@keyframes mock-sub-toggle {
  0%, 45% { background: #94a3b8; }
  50%, 95% { background: #64748b; }
}

.konfig__mock.beide-toggle .konfig__mock-card {
  animation: mock-card-toggle 6s ease-in-out infinite;
}

@keyframes mock-card-toggle {
  0%, 45% { background: white; border-color: #e2e8f0; color: #475569; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
  50%, 95% { background: #1e293b; border-color: #2d3a4d; color: #94a3b8; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
}

.konfig__mock.beide-toggle .konfig__mock-links span {
  animation: mock-links-toggle 6s ease-in-out infinite;
}

@keyframes mock-links-toggle {
  0%, 45% { background: #cbd5e1; }
  50%, 95% { background: #475569; }
}

.konfig__mock.beide-toggle .konfig__mock-footer {
  animation: mock-footer-toggle 6s ease-in-out infinite;
}

@keyframes mock-footer-toggle {
  0%, 45% { background: var(--primary); }
  50%, 95% { background: #060d1b; }
}

.konfig__mock.beide-toggle .konfig__mock-hero-badge {
  animation: mock-badge-toggle 6s ease-in-out infinite;
}
@keyframes mock-badge-toggle {
  0%, 45% { color: var(--primary); background: rgba(0,120,212,0.08); border-color: rgba(0,120,212,0.15); }
  50%, 95% { color: #5dade2; background: rgba(93,173,226,0.1); border-color: rgba(93,173,226,0.2); }
}

.konfig__mock.beide-toggle .konfig__mock-hero-stars small {
  animation: mock-stars-toggle 6s ease-in-out infinite;
}
@keyframes mock-stars-toggle {
  0%, 45% { color: #94a3b8; }
  50%, 95% { color: #64748b; }
}

.konfig__mock.beide-toggle .konfig__mock-card-icon {
  animation: mock-card-icon-toggle 6s ease-in-out infinite;
}
@keyframes mock-card-icon-toggle {
  0%, 45% { background: rgba(0,120,212,0.08); border-color: rgba(0,120,212,0.12); }
  50%, 95% { background: rgba(93,173,226,0.1); border-color: rgba(93,173,226,0.15); }
}

.konfig__color.active {
  border-color: var(--text);
  box-shadow: 0 0 0 3px white, 0 0 0 5px var(--swatch);
}

/* Checkboxes */
.konfig__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.konfig__check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  cursor: pointer;
  transition: color var(--transition);
}

.konfig__check:hover { color: var(--primary); }

.konfig__check input { display: none; }

.konfig__checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-medium);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.konfig__check input:checked ~ .konfig__checkbox {
  background: var(--primary);
  border-color: var(--primary);
}

.konfig__check input:checked ~ .konfig__checkbox::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.konfig__cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Live preview panel */
.konfig__preview {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(240,243,248,0.5) 100%);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  overflow-y: auto;
  max-height: 85vh;
  border-left: 1px solid var(--border);
}

.konfig__preview-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.konfig__preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: preview-dot-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(34,197,94,0.4);
}

.konfig__preview-hint {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(0,120,212,0.04);
  border: 1px solid rgba(0,120,212,0.1);
  border-radius: 10px;
}

.konfig__preview-hint svg {
  flex-shrink: 0;
  stroke: var(--primary);
  margin-top: 1px;
}

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

.konfig__preview-frame {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-medium);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Browser Chrome */
.konfig__browser-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.konfig__browser-dots {
  display: flex;
  gap: 5px;
}

.konfig__browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.konfig__browser-dot--red { background: #ef4444; }
.konfig__browser-dot--yellow { background: #f59e0b; }
.konfig__browser-dot--green { background: #22c55e; }

.konfig__browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 9px;
  color: #64748b;
  font-family: 'SF Mono', 'Menlo', monospace;
  letter-spacing: 0.02em;
}

.konfig__browser-url svg {
  stroke: #22c55e;
  flex-shrink: 0;
}

.konfig__mock {
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: background 0.6s ease, color 0.6s ease;
  background: #f8fafc;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

.konfig__mock::-webkit-scrollbar {
  width: 4px;
}
.konfig__mock::-webkit-scrollbar-track {
  background: transparent;
}
.konfig__mock::-webkit-scrollbar-thumb {
  background: rgba(0,120,212,0.2);
  border-radius: 2px;
}
.konfig__mock::-webkit-scrollbar-thumb:hover {
  background: rgba(0,120,212,0.4);
}

.konfig__mock.dark {
  background: #0a0f1e;
}

.konfig__mock.dark::-webkit-scrollbar-thumb {
  background: rgba(93,173,226,0.2);
}

/* Nav bar */
.konfig__mock-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,120,212,0.15);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.konfig__mock.dark .konfig__mock-nav {
  background: rgba(15,23,42,0.9);
  border-color: rgba(93,173,226,0.15);
}

.konfig__mock-logo {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--primary);
  transition: all 0.5s ease;
  flex-shrink: 0;
}

.konfig__mock-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.konfig__mock-links span {
  width: 24px;
  height: 4px;
  background: #cbd5e1;
  border-radius: 2px;
  transition: background 0.5s ease;
}

.konfig__mock.dark .konfig__mock-links span {
  background: #334155;
}

/* Hero area - gradient background */
.konfig__mock-hero {
  padding: 28px 20px 20px;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  background: linear-gradient(165deg, rgba(0,120,212,0.06) 0%, transparent 60%);
  border-radius: 0 0 8px 8px;
}
.konfig__mock-hero[style*="background-image"] .konfig__mock-hero-title {
  color: #fff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.konfig__mock-hero[style*="background-image"] .konfig__mock-hero-sub {
  background: rgba(255,255,255,0.3) !important;
}
.konfig__mock-hero[style*="background-image"] .konfig__mock-hero-sub::after {
  background: rgba(255,255,255,0.2) !important;
}

.konfig__mock.dark .konfig__mock-hero {
  background: linear-gradient(165deg, rgba(0,120,212,0.12) 0%, transparent 60%);
}
.konfig__mock-hero[style*="background-image"] {
  background-size: cover !important;
  background-position: center !important;
}

/* Hero badge */
.konfig__mock-hero-badge {
  display: inline-block;
  font-size: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(0,120,212,0.08);
  border: 1px solid rgba(0,120,212,0.15);
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 6px;
}

.konfig__mock.dark .konfig__mock-hero-badge {
  color: #5dade2;
  background: rgba(93,173,226,0.1);
  border-color: rgba(93,173,226,0.2);
}

/* Hero stars */
.konfig__mock-hero-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin-top: 8px;
}

.konfig__mock-hero-stars span {
  font-size: 7px;
  color: #f59e0b;
  line-height: 1;
}

.konfig__mock-hero-stars small {
  font-size: 5px;
  color: #94a3b8;
  font-weight: 600;
  margin-left: 3px;
}

.konfig__mock.dark .konfig__mock-hero-stars small {
  color: #64748b;
}

.konfig__mock-hero-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 auto 6px;
  transition: color 0.5s ease;
  line-height: 1.2;
}

.konfig__mock.dark .konfig__mock-hero-title {
  color: #f1f5f9;
}

.konfig__mock-hero-sub {
  height: 6px;
  width: 55%;
  margin: 0 auto 8px;
  border-radius: 3px;
  background: linear-gradient(90deg, #94a3b8, #cbd5e1);
  transition: background 0.5s ease;
}

.konfig__mock-hero-sub::after {
  content: '';
  display: block;
  height: 4px;
  width: 35%;
  margin: 6px auto 0;
  border-radius: 2px;
  background: #cbd5e1;
}

.konfig__mock.dark .konfig__mock-hero-sub {
  background: linear-gradient(90deg, #475569, #334155);
}

.konfig__mock.dark .konfig__mock-hero-sub::after {
  background: #334155;
}

.konfig__mock-hero-btn {
  height: 18px;
  width: 32%;
  margin: 14px auto 0;
  border-radius: 9px;
  background: var(--primary);
  transition: all 0.5s ease;
  box-shadow: 0 4px 12px rgba(0,120,212,0.25);
  position: relative;
  overflow: hidden;
}

.konfig__mock-hero-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  animation: mock-btn-shine 3s ease-in-out infinite;
}

@keyframes mock-btn-shine {
  0%, 70% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Content section */
.konfig__mock-section {
  padding: 14px 20px 12px;
  transition: all 0.5s ease;
}

.konfig__mock-section-title {
  height: 5px;
  width: 30%;
  margin: 0 auto 14px;
  border-radius: 3px;
  background: var(--primary);
  opacity: 0.6;
  transition: all 0.5s ease;
}

.konfig__mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.konfig__mock-card {
  height: 52px;
  border-radius: 10px;
  background: white;
  border: 1px solid #e2e8f0;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 6px;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.konfig__mock-card-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(0,120,212,0.08);
  border: 1px solid rgba(0,120,212,0.12);
}

.konfig__mock.dark .konfig__mock-card-icon {
  background: rgba(93,173,226,0.1);
  border-color: rgba(93,173,226,0.15);
}

.konfig__mock-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transition: background 0.5s ease;
}

.konfig__mock.dark .konfig__mock-card {
  background: #1e293b;
  border-color: #2d3a4d;
  color: #94a3b8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Footer — hidden */
.konfig__mock-footer {
  display: none;
}

/* --- Additional mock sections --- */

/* Image Banner */
.konfig__mock-banner {
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  align-items: center;
}

.konfig__mock-banner-img {
  width: 56px;
  height: 42px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(0,120,212,0.15), rgba(0,120,212,0.05));
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.konfig__mock-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0,120,212,0.2));
  border-radius: inherit;
}

.konfig__mock-banner-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,120,212,0.12), transparent);
}

.konfig__mock.dark .konfig__mock-banner-img {
  background: linear-gradient(135deg, rgba(93,173,226,0.2), rgba(93,173,226,0.06));
}

.konfig__mock-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* Generic bars for skeleton content */
.konfig__mock-bar {
  height: 4px;
  border-radius: 2px;
  background: #cbd5e1;
  transition: background 0.5s ease;
}

.konfig__mock.dark .konfig__mock-bar { background: #334155; }

.konfig__mock-bar--lg { width: 80%; }
.konfig__mock-bar--md { width: 60%; }
.konfig__mock-bar--sm { width: 40%; }
.konfig__mock-bar--xs { width: 28px; }

/* Features Row */
.konfig__mock-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
}

.konfig__mock-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.konfig__mock-feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-glow);
  border: 1.5px solid rgba(0,120,212,0.2);
  transition: all 0.5s ease;
}

.konfig__mock.dark .konfig__mock-feat-icon {
  background: rgba(93,173,226,0.12);
  border-color: rgba(93,173,226,0.2);
}

/* Testimonial Quote */
.konfig__mock-quote {
  padding: 10px 20px;
  text-align: center;
  position: relative;
}

.konfig__mock-quote .konfig__mock-bar {
  margin: 3px auto;
}

.konfig__mock-quote-mark {
  font-size: 16px;
  color: var(--primary);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 2px;
}

.konfig__mock-quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
}

.konfig__mock-avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

/* CTA Bar */
.konfig__mock-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
}

.konfig__mock-cta-btn {
  width: 44px;
  height: 14px;
  border-radius: 7px;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(0,120,212,0.2);
  flex-shrink: 0;
}

/* === Dynamic Feature Blocks === */
.konfig__mock-feat-block {
  padding: 6px 14px;
  animation: fadeSlideIn 0.35s ease both;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.konfig__mock-feat-heading {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 6px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.konfig__mock-feat-heading svg { stroke: var(--primary); flex-shrink: 0; }
.konfig__mock.dark .konfig__mock-feat-heading { color: #94a3b8; }
.konfig__mock.dark .konfig__mock-feat-heading svg { stroke: #5dade2; }

/* -- Booking -- */
.konfig__mock-booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 5px;
}
.konfig__mock-slot {
  height: 12px;
  border-radius: 3px;
  background: #e2e8f0;
  border: 1px solid #cbd5e1;
}
.konfig__mock-slot--active {
  background: rgba(0,120,212,0.12);
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(0,120,212,0.15);
}
.konfig__mock.dark .konfig__mock-slot {
  background: #1e293b;
  border-color: #334155;
}
.konfig__mock.dark .konfig__mock-slot--active {
  background: rgba(93,173,226,0.15);
  border-color: #5dade2;
}
.konfig__mock-booking-btn {
  font-size: 5px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  text-align: center;
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
  margin: 0 auto;
}

/* -- Contact Form -- */
.konfig__mock-form-fields {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.konfig__mock-field {
  height: 10px;
  border-radius: 3px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.konfig__mock-field--tall { height: 20px; }
.konfig__mock.dark .konfig__mock-field {
  background: #1e293b;
  border-color: #334155;
}
.konfig__mock-form-btn {
  width: 40px;
  height: 10px;
  border-radius: 4px;
  background: var(--primary);
  margin-top: 2px;
}

/* -- Gallery -- */
.konfig__mock-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.konfig__mock-gallery-img {
  height: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(0,120,212,0.1), rgba(0,120,212,0.04));
  border: 1px solid rgba(0,120,212,0.08);
  background-size: cover;
  background-position: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.konfig__mock-gallery-img--tall {
  grid-row: span 2;
  height: auto;
}
.konfig__mock.dark .konfig__mock-gallery-img {
  background: linear-gradient(135deg, rgba(93,173,226,0.12), rgba(93,173,226,0.04));
  border-color: rgba(93,173,226,0.1);
}

/* -- Google Maps -- */
.konfig__mock-map {
  height: 40px;
  border-radius: 4px;
  background: #e8f0f8;
  border: 1px solid #cbd5e1;
  position: relative;
  overflow: hidden;
  /* Subtle grid pattern */
  background-image:
    linear-gradient(rgba(0,120,212,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,120,212,0.06) 1px, transparent 1px);
  background-size: 10px 10px;
}
.konfig__mock-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}
.konfig__mock.dark .konfig__mock-map {
  background-color: #1a2332;
  border-color: #334155;
  background-image:
    linear-gradient(rgba(93,173,226,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93,173,226,0.06) 1px, transparent 1px);
}

/* -- Social Media -- */
.konfig__mock-social-icons {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.konfig__mock-social-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: background 0.3s, border-color 0.3s;
}
.konfig__mock-social-icon:hover {
  background: rgba(0,120,212,0.08);
  border-color: rgba(0,120,212,0.2);
}
.konfig__mock.dark .konfig__mock-social-icon {
  background: #1e293b;
  border-color: #334155;
  color: #94a3b8;
}

/* -- Blog -- */
.konfig__mock-blog-posts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.konfig__mock-blog-post {
  display: flex;
  gap: 6px;
  align-items: center;
}
.konfig__mock-blog-thumb {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(0,120,212,0.12), rgba(0,120,212,0.04));
  flex-shrink: 0;
}
.konfig__mock-blog-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.konfig__mock.dark .konfig__mock-blog-thumb {
  background: linear-gradient(135deg, rgba(93,173,226,0.15), rgba(93,173,226,0.05));
}

/* Beide mode: feature block animations */
.konfig__mock.beide-toggle .konfig__mock-feat-heading {
  animation: mock-feat-heading-toggle 6s ease-in-out infinite;
}
@keyframes mock-feat-heading-toggle {
  0%, 45% { color: #475569; }
  50%, 95% { color: #94a3b8; }
}
.konfig__mock.beide-toggle .konfig__mock-slot {
  animation: mock-slot-toggle 6s ease-in-out infinite;
}
@keyframes mock-slot-toggle {
  0%, 45% { background: #e2e8f0; border-color: #cbd5e1; }
  50%, 95% { background: #1e293b; border-color: #334155; }
}
.konfig__mock.beide-toggle .konfig__mock-slot--active {
  animation: mock-slot-active-toggle 6s ease-in-out infinite;
}
@keyframes mock-slot-active-toggle {
  0%, 45% { background: rgba(0,120,212,0.12); border-color: var(--primary); }
  50%, 95% { background: rgba(93,173,226,0.15); border-color: #5dade2; }
}
.konfig__mock.beide-toggle .konfig__mock-field {
  animation: mock-field-toggle 6s ease-in-out infinite;
}
@keyframes mock-field-toggle {
  0%, 45% { background: #f1f5f9; border-color: #e2e8f0; }
  50%, 95% { background: #1e293b; border-color: #334155; }
}
.konfig__mock.beide-toggle .konfig__mock-gallery-img {
  animation: mock-gallery-toggle 6s ease-in-out infinite;
}
@keyframes mock-gallery-toggle {
  0%, 45% { background: linear-gradient(135deg, rgba(0,120,212,0.1), rgba(0,120,212,0.04)); }
  50%, 95% { background: linear-gradient(135deg, rgba(93,173,226,0.12), rgba(93,173,226,0.04)); }
}
.konfig__mock.beide-toggle .konfig__mock-map {
  animation: mock-map-toggle 6s ease-in-out infinite;
}
@keyframes mock-map-toggle {
  0%, 45% { background-color: #e8f0f8; border-color: #cbd5e1; }
  50%, 95% { background-color: #1a2332; border-color: #334155; }
}
.konfig__mock.beide-toggle .konfig__mock-social-icon {
  animation: mock-social-toggle 6s ease-in-out infinite;
}
@keyframes mock-social-toggle {
  0%, 45% { background: #f1f5f9; border-color: #e2e8f0; color: #64748b; }
  50%, 95% { background: #1e293b; border-color: #334155; color: #94a3b8; }
}
.konfig__mock.beide-toggle .konfig__mock-blog-thumb {
  animation: mock-blog-thumb-toggle 6s ease-in-out infinite;
}
@keyframes mock-blog-thumb-toggle {
  0%, 45% { background: linear-gradient(135deg, rgba(0,120,212,0.12), rgba(0,120,212,0.04)); }
  50%, 95% { background: linear-gradient(135deg, rgba(93,173,226,0.15), rgba(93,173,226,0.05)); }
}

/* Beide mode additions */
.konfig__mock.beide-toggle .konfig__mock-bar {
  animation: mock-bar-toggle 6s ease-in-out infinite;
}

@keyframes mock-bar-toggle {
  0%, 45% { background: #cbd5e1; }
  50%, 95% { background: #334155; }
}

.konfig__mock.beide-toggle .konfig__mock-feat-icon {
  animation: mock-feat-toggle 6s ease-in-out infinite;
}

@keyframes mock-feat-toggle {
  0%, 45% { background: rgba(0,120,212,0.08); border-color: rgba(0,120,212,0.2); }
  50%, 95% { background: rgba(93,173,226,0.12); border-color: rgba(93,173,226,0.2); }
}

.konfig__mock.beide-toggle .konfig__mock-banner-img {
  animation: mock-banner-toggle 6s ease-in-out infinite;
}

@keyframes mock-banner-toggle {
  0%, 45% { background: linear-gradient(135deg, rgba(0,120,212,0.15), rgba(0,120,212,0.05)); }
  50%, 95% { background: linear-gradient(135deg, rgba(93,173,226,0.2), rgba(93,173,226,0.06)); }
}

/* Firma name in mock nav */
.konfig__mock-name {
  font-size: 7px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.5s ease;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.konfig__mock.dark .konfig__mock-name {
  color: #e2e8f0;
}

/* Decorative dots in hero */
.konfig__mock-hero::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  opacity: 0.2;
}

.konfig__mock-hero::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(0,120,212,0.03));
  pointer-events: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .konfig__body { flex-direction: column; }
  .konfig__steps { max-height: none; }
  .konfig__preview { min-height: 320px; }
  .konfig__panel { max-width: 95vw; max-height: 90vh; }

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

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--popular { transform: none; }
  .pricing-card--popular:hover { transform: translateY(-8px); }


  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

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

  .demo__wrapper {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 52px;
  }

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

@media (max-width: 768px) {
  .konfig__panel {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
  .konfig__body { flex-direction: column; gap: 24px; }
  .konfig__steps { padding: 24px; }
  .konfig__preview { padding: 16px; min-height: 280px; }
  .konfig__options--grid { grid-template-columns: 1fr 1fr; }
  .konfig__form-grid { grid-template-columns: 1fr; }
  .konfig__form-actions { flex-direction: column; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 251, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
  }

  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.3rem; font-weight: 600; }
  .nav__menu-btn { display: flex; }
  .nav__demo-btn { display: none; }

  .hero { padding: 100px 24px 60px; }

  .hero__stats {
    flex-direction: row;
    gap: 20px;
    padding: 20px 24px;
  }

  .hero__stat-number { font-size: 1.8rem; }

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

  .demo__wrapper { padding: 36px 24px; }
  .demo__input-row { flex-direction: column; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 28px 20px; }


  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

  .process__timeline::before { left: 30px; }
  .process__number { width: 60px; height: 60px; font-size: 1.15rem; }
  .process__step { gap: 24px; }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn { justify-content: center; }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero__stat-divider { width: 40px; height: 1px; }

  .pricing__toggle {
    flex-direction: column;
    border-radius: var(--radius);
  }
  .pricing__toggle-btn { border-radius: 10px; }

  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta__actions .btn { justify-content: center; }
}
