/* ═══════════════════════════════════════════════
   SCALEROX — Redesign (Hell, Mobile-First, Apple-Style)
   ═══════════════════════════════════════════════ */

:root {
  --purple: #6C63FF;
  --coral:  #FF6B6B;
  --orange: #FF8C00;
  --teal:   #00C9A7;

  --bg:     #F8F8FC;
  --bg2:    #FFFFFF;
  --bg3:    #F2F2F8;

  --dark:   #0D0D1F;
  --dark2:  #1A1A2E;

  --text:   #0D0D1F;
  --text2:  #444466;
  --text3:  #8888AA;

  --border: rgba(0,0,0,0.08);
  --border2: rgba(0,0,0,0.12);

  --grad: linear-gradient(135deg, #6C63FF 0%, #FF6B6B 60%, #FF8C00 100%);
  --grad2: linear-gradient(90deg, #6C63FF, #FF6B6B);

  --r:  14px;
  --r2: 20px;
  --r3: 28px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 80px rgba(0,0,0,0.16);

  --ease: cubic-bezier(0.4,0,0.2,1);
  --spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* body::before — removed (replaced by canvas mountain scene) */

#page-home, #page-konfigurator { position: relative; z-index: 1; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }
::selection { background: rgba(108,99,255,0.2); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 110px 0; }
.section.light { background: var(--bg3); }

/* ── TYPOGRAPHY ── */
h2 { font-size: clamp(36px, 4.5vw, 60px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
.grad-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--d, 0s); }
.reveal.visible { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn-grad {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; background: var(--grad); color: #fff;
  font-weight: 700; font-size: 16px; border: none; border-radius: 100px;
  cursor: pointer; transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-grad svg { width: 18px; height: 18px; transition: transform 0.3s var(--spring); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,107,0.35); }
.btn-grad:hover svg { transform: translateX(4px); }
.btn-grad.large { padding: 20px 40px; font-size: 18px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; background: white; color: var(--text);
  font-weight: 600; font-size: 16px; border: 1.5px solid var(--border2);
  border-radius: 100px; cursor: pointer; transition: all 0.3s var(--ease);
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease);
}
#nav.scrolled {
  background: rgba(255,255,255,0.96);
}
.nav-inner { max-width: 1340px; margin: 0 auto; padding: 0 40px; height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo {
  display: flex; align-items: center; flex-shrink: 0;
  transform: translateY(-6px);
}
.logo-icon { display: none; }
.logo-full {
  display: block;
  height: 60px;
  width: auto;
  object-fit: contain;
}
.logo-text { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.logo-scaler { color: var(--dark); }
.logo-ox { background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a { font-size: 16px; font-weight: 600; color: #0a0a18; transition: color 0.2s; }
.nav-links a:hover { color: var(--purple); }
.nav-highlight {
  padding: 13px 28px !important;
  background: var(--grad) !important;
  color: white !important;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 16px;
}
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 12px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
/* Foto — vollflächig über den ganzen Hero */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('pictures/hero-bg.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 0;
}
#hero::after { display: none; }
.hero-bg { display: none; }
.blob { display: none; }
.grid-overlay { display: none; }
.hero-mountains { display: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; width: 100%; max-width: 1340px; margin: 0 auto; padding: 136px 40px 90px; position: relative; z-index: 10; }
.hero-content {
  position: relative;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: 28px;
  padding: 48px 52px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.07), 0 1px 0 rgba(255,255,255,1) inset;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple); background: rgba(108,99,255,0.10);
  border: 1px solid rgba(108,99,255,0.25); padding: 7px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.badge-pulse { width: 6px; height: 6px; background: var(--purple); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }
h1 { font-size: clamp(40px, 5.5vw, 68px); font-weight: 900; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 24px; color: #080812; }
.hero-sub { font-size: 17px; color: #1a1a2e; line-height: 1.7; max-width: 520px; margin-bottom: 36px; font-weight: 500; }
.hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.trust-row { display: flex; align-items: center; gap: 0; background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.98); border-radius: var(--r2); padding: 20px 28px; width: fit-content; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.trust-item { text-align: center; padding: 0 20px; }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { padding-right: 0; }
.trust-item strong { display: inline; font-size: 32px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.02em; }
.trust-item span { font-size: 22px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.trust-item small { display: block; font-size: 11px; color: #1a1a2e; font-weight: 700; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.05em; }
.trust-sep { width: 1px; height: 40px; background: var(--border); }

/* ═══ HERO VISUAL — Pro Mockup ═══ */
.hero-visual { position: relative; padding: 20px 0 20px 20px; }

.mockup-wrap {
  position: relative;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg) scale(0.92);
  animation: mFloat 8s ease-in-out infinite;
  transform-style: preserve-3d;
  transform-origin: center center;
}
@keyframes mFloat {
  0%,100% { transform: perspective(1400px) rotateY(-6deg) rotateX(2deg) scale(0.92) translateY(0); }
  50%      { transform: perspective(1400px) rotateY(-6deg) rotateX(2deg) scale(0.92) translateY(-12px); }
}

.mv-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at 50% 50%, rgba(108,99,255,0.2) 0%, rgba(255,107,107,0.1) 45%, transparent 70%);
  pointer-events: none; filter: blur(24px);
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:0.6} 50%{opacity:1} }

.mockup-browser {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.15), 0 2px 0 rgba(255,255,255,0.9) inset;
  position: relative; z-index: 1;
}

.mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: #f0f0f5;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dr { background: #FF5F57; } .dy { background: #FEBC2E; } .dg { background: #28C840; }
.mock-url-wrap {
  flex: 1; background: white; border-radius: 6px;
  padding: 3px 10px; margin: 0 8px;
  display: flex; align-items: center; gap: 5px;
  border: 1px solid rgba(0,0,0,0.07);
}
.mock-url-wrap svg { flex-shrink: 0; opacity: 0.5; }
.mock-url { font-size: 10px; color: #666; font-weight: 500; flex: 1; }
.mock-secure { color: #28C840; font-size: 8px; }

.mock-screen { background: #fafafa; overflow: hidden; min-height: 340px; }

/* SITE NAV */
.ms-sitenav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px; background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.ms-site-logo { display: flex; align-items: center; gap: 6px; }
.ms-sl-icon { width: 16px; height: 16px; border-radius: 4px; background: var(--grad); }
.ms-sl-text { width: 40px; height: 6px; background: #1a1a2e; border-radius: 3px; opacity: 0.8; }
.ms-site-links { display: flex; align-items: center; gap: 7px; }
.ms-site-links span { display: block; width: 22px; height: 4px; background: #ddd; border-radius: 3px; }
.ms-cta-mini { width: 34px; height: 16px; background: var(--grad); border-radius: 100px; margin-left: 4px; }

/* HERO AREA */
.ms-hero-area {
  position: relative; overflow: hidden;
  padding: 22px 16px 20px;
  background: linear-gradient(145deg, #F4F3FF 0%, #FFF5F5 50%, #F0FFFE 100%);
  display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center;
  min-height: 200px;
  flex: 1;
}
.ms-ha-bg { position: absolute; inset: 0; pointer-events: none; }
.ms-ha-blob { position: absolute; border-radius: 50%; filter: blur(28px); opacity: 0.5; }
.ms-ha-blob.b1 { width: 90px; height: 90px; background: rgba(108,99,255,0.22); top: -20px; left: 5px; animation: blobMove 7s ease-in-out infinite; }
.ms-ha-blob.b2 { width: 70px; height: 70px; background: rgba(255,107,107,0.2); bottom: -10px; right: 50px; animation: blobMove 9s ease-in-out infinite reverse; }

.ms-ha-content { position: relative; z-index: 1; }
.ms-tag-pill { width: 56px; height: 9px; background: rgba(108,99,255,0.15); border-radius: 100px; margin-bottom: 9px; }
.ms-big-h { height: 10px; background: #1a1a2e; border-radius: 3px; margin-bottom: 6px; opacity: 0.85; }
.ms-big-h.w75 { width: 75%; }
.ms-big-h.w55 { width: 52%; }
.ms-sub-text { height: 5px; background: #c8c8d8; border-radius: 3px; margin-bottom: 4px; }
.ms-sub-text.w85 { width: 85%; }
.ms-sub-text.w60 { width: 60%; }
.ms-actions { display: flex; gap: 5px; margin-top: 10px; }
.ms-btn-primary { width: 54px; height: 16px; background: var(--grad); border-radius: 100px; }
.ms-btn-sec { width: 44px; height: 16px; background: transparent; border: 1.5px solid #ccc; border-radius: 100px; }

.ms-phone-preview { position: relative; z-index: 1; }
.ms-phone { width: 36px; height: 64px; background: #1a1a2e; border-radius: 7px; padding: 3px; box-shadow: 0 4px 14px rgba(0,0,0,0.28); }
.ms-phone-screen { background: linear-gradient(160deg, #F4F3FF, #fff); border-radius: 5px; height: 100%; padding: 3px; overflow: hidden; }
.ms-ph-bar { width: 100%; height: 5px; background: var(--grad); border-radius: 2px; margin-bottom: 4px; opacity: 0.85; }
.ms-ph-img { width: 100%; height: 16px; background: linear-gradient(135deg, rgba(108,99,255,0.2), rgba(255,107,107,0.15)); border-radius: 3px; margin-bottom: 3px; }
.ms-ph-line { height: 4px; background: #e0e0e8; border-radius: 2px; margin-bottom: 3px; }
.ms-ph-line.w70 { width: 70%; }
.ms-ph-line.w50 { width: 50%; }
.ms-ph-btn { width: 65%; height: 7px; background: var(--grad); border-radius: 100px; margin-top: 4px; opacity: 0.9; }

/* STATS ROW */
.ms-stats-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px; background: white;
  border-top: 1px solid rgba(0,0,0,0.05); gap: 8px;
}
.ms-stat { display: flex; flex-direction: column; gap: 4px; }
.ms-stat-val { height: 8px; background: var(--grad); border-radius: 3px; opacity: 0.9; }
.ms-stat-lbl { height: 5px; background: #e0e0e8; border-radius: 3px; }
.ms-mini-chart { flex: 1; height: 26px; }
.ms-mini-chart svg { width: 100%; height: 100%; }
.mcline { stroke-dasharray: 200; stroke-dashoffset: 200; animation: drawL 2.5s ease forwards 0.8s; }
.mcfill { opacity: 0; animation: fadeInEl 0.5s ease forwards 3.2s; }
@keyframes drawL { to { stroke-dashoffset: 0; } }
@keyframes fadeInEl { to { opacity: 1; } }

/* ═══ FLOATING STAT CARDS ═══ */
.fcard {
  position: absolute;
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1), 0 1px 0 rgba(255,255,255,0.95) inset;
  z-index: 10;
  min-width: 148px;
}

.fc-traffic {
  top: -20px; right: -32px;
  display: flex; align-items: center; gap: 10px;
  animation: fc1float 6s ease-in-out infinite;
}
.fc-anfragen {
  bottom: 76px; right: -36px;
  animation: fc2float 7s ease-in-out infinite 1.2s;
  min-width: 160px;
}
.fc-live {
  bottom: -12px; left: -16px;
  display: flex; align-items: center; gap: 10px;
  animation: fc3float 5.5s ease-in-out infinite 2.2s;
  min-width: 164px;
}
.fc-rating {
  top: 72px; left: -32px;
  animation: fc4float 6.5s ease-in-out infinite 0.6s;
  min-width: 152px;
}

@keyframes fc1float { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-10px) rotate(0.8deg)} }
@keyframes fc2float { 0%,100%{transform:translateY(0) rotate(0.8deg)} 50%{transform:translateY(9px) rotate(-0.8deg)} }
@keyframes fc3float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes fc4float { 0%,100%{transform:translateY(0) rotate(0.8deg)} 50%{transform:translateY(-7px) rotate(-0.8deg)} }

.fcard-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fcard-icon svg { width: 16px; height: 16px; }
.fcard-body { flex: 1; }
.fcard-val { font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; line-height: 1.2; }
.fcard-lbl { font-size: 10px; color: var(--text3); font-weight: 500; margin-top: 2px; }

.fcard-spark { width: 48px; height: 20px; flex-shrink: 0; }
.fcard-spark svg { width: 100%; height: 100%; }
.fcard-spark polyline { stroke-dasharray: 80; stroke-dashoffset: 80; animation: drawL 1.5s ease forwards 1s; }

.fcard-bar-wrap { margin-top: 8px; height: 4px; background: #f0f0f5; border-radius: 100px; overflow: hidden; }
.fcard-bar { height: 100%; width: 0; background: linear-gradient(90deg, #FF6B6B, #FF8C00); border-radius: 100px; animation: barGrow 1.8s cubic-bezier(0.4,0,0.2,1) forwards 1.4s; }
@keyframes barGrow { to { width: var(--bw, 80%); } }

.fcard-progress { margin-top: 8px; height: 3px; background: #f0f0f5; border-radius: 100px; overflow: hidden; }
.fcard-prog-bar { height: 100%; width: 0; background: linear-gradient(90deg, #00C9A7, #0EA5E9); border-radius: 100px; animation: barGrow 2s cubic-bezier(0.4,0,0.2,1) forwards 1.8s; --bw: 62%; }

.fcard-stars { font-size: 11px; color: #FF8C00; letter-spacing: 1px; margin-bottom: 4px; }
.fcard-avatars { display: flex; align-items: center; margin-top: 8px; }
.fcard-av { width: 20px; height: 20px; border-radius: 50%; border: 2px solid white; flex-shrink: 0; }
.fcard-av + .fcard-av { margin-left: -6px; }
.fcard-avatars span { font-size: 10px; color: var(--text3); font-weight: 600; margin-left: 7px; }

/* MARQUEE */
.marquee-wrap { overflow: hidden; background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; }
.marquee-inner { display: flex; align-items: center; gap: 28px; white-space: nowrap; animation: marquee 22s linear infinite; width: max-content; }
.marquee-inner span { font-size: 13px; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; }
.marquee-inner b { color: var(--purple); font-size: 9px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* SECTION HEADERS */
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--purple); background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.15); padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}

/* CARDS 3-COL */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card {
  background: white; border: 1px solid var(--border); border-radius: var(--r2);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(108,99,255,0.2); }
.card.featured { border-color: rgba(108,99,255,0.25); background: linear-gradient(160deg, rgba(108,99,255,0.04), white); }
.card-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  background: var(--grad); color: white; border-radius: 100px;
}
.card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon.purple { background: rgba(108,99,255,0.1); color: var(--purple); }
.card-icon.coral  { background: rgba(255,107,107,0.1); color: var(--coral); }
.card-icon.teal   { background: rgba(0,201,167,0.1);  color: var(--teal); }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card > p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.feat-list { display: flex; flex-direction: column; gap: 8px; }
.feat-list li { font-size: 13px; color: var(--text2); padding-left: 14px; position: relative; }
.feat-list li::before { content: '—'; position: absolute; left: 0; color: var(--purple); font-size: 12px; }

/* PROCESS */
.process-row { display: flex; align-items: stretch; gap: 0; }
.proc-step {
  flex: 1; background: white; border: 1px solid var(--border); border-radius: var(--r2);
  padding: 32px 24px; position: relative;
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
}
.proc-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.proc-num { font-size: 40px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 16px; opacity: 0.35; transition: opacity 0.3s; }
.proc-step:hover .proc-num { opacity: 1; }
.proc-step h4 { margin-bottom: 8px; }
.proc-step p { font-size: 13px; color: var(--text2); line-height: 1.7; }
.proc-time { position: absolute; top: 20px; right: 18px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple); background: rgba(108,99,255,0.08); padding: 3px 9px; border-radius: 100px; }
.proc-line { width: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.proc-line::after { content: ''; display: block; width: 100%; height: 2px; background: linear-gradient(90deg, var(--purple), var(--coral)); opacity: 0.25; }

/* PROJECTS */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.proj-card { border-radius: var(--r2); overflow: hidden; background: white; border: 1px solid var(--border); transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease); }
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proj-card.tall { grid-column: 3; grid-row: 1 / 3; }
.proj-img { height: 180px; position: relative; overflow: hidden; }
.proj-card.tall .proj-img { height: 100%; min-height: 300px; }
.pi1 { background: linear-gradient(135deg, #1a1a3e, #3a3a7e); }
.pi2 { background: linear-gradient(135deg, #3e1a2a, #7e3a5a); }
.pi3 { background: linear-gradient(135deg, #0d2010, #1e5030); }
.pi4 { background: linear-gradient(135deg, #2a0d0d, #6a2020); }
.pi5 { background: linear-gradient(135deg, #0d0d2a, #252560); }
.proj-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 55%);
  padding: 16px; display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity 0.3s;
}
.proj-card:hover .proj-ov { opacity: 1; }
.proj-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: white; background: rgba(108,99,255,0.7); padding: 3px 10px; border-radius: 100px; width: fit-content; margin-bottom: 6px; }
.proj-ov strong { font-size: 20px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.proj-info { padding: 18px 20px; }
.proj-info h4 { margin-bottom: 4px; font-size: 15px; }
.proj-info p { font-size: 13px; color: var(--text2); }

/* TESTIMONIALS */
.testi-card {
  background: white; border: 1px solid var(--border); border-radius: var(--r2);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testi-card.highlight { border-color: rgba(108,99,255,0.25); background: linear-gradient(160deg, rgba(108,99,255,0.04), white); }
.stars { color: #FF8C00; font-size: 16px; letter-spacing: 2px; }
.testi-card > p { font-size: 15px; color: var(--text2); line-height: 1.8; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.av1 { background: var(--grad); }
.av2 { background: linear-gradient(135deg, var(--teal), var(--purple)); }
.av3 { background: linear-gradient(135deg, var(--coral), var(--orange)); }
.testi-author strong { display: block; font-size: 14px; margin-bottom: 2px; }
.testi-author small { font-size: 12px; color: var(--text3); }

/* CTA BANNER */
.cta-banner {
  background: var(--dark2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-blob {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(108,99,255,0.2), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 36px; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 60px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 10px; display: block; }
.footer-brand .logo-full { object-position: left center; }
.footer-brand .logo-scaler { color: white; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); margin-left: 0; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-links h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: white; margin-bottom: 14px; }
.footer-links a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 9px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════
   KONFIGURATOR
═══════════════════════════════════════ */

/* PROGRESS BAR */
.kfg-progress-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}
.kfg-pb-inner {
  max-width: 900px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px;
}
.kfg-back {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1.5px solid var(--border2);
  border-radius: 100px; padding: 8px 16px;
  font-size: 13px; font-weight: 600; color: var(--text2);
  cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.kfg-back svg { width: 14px; height: 14px; }
.kfg-back:hover { color: var(--text); border-color: var(--purple); }
.kfg-steps-wrap { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.kfg-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer;
}
.kfg-step-dot span {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: var(--bg3); color: var(--text3);
  border: 2px solid var(--border);
  transition: all 0.3s var(--ease);
}
.kfg-step-dot label { font-size: 10px; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; display: none; }
.kfg-step-dot.active span { background: var(--grad); color: white; border-color: transparent; box-shadow: 0 4px 16px rgba(108,99,255,0.35); }
.kfg-step-dot.done span { background: var(--teal); color: white; border-color: transparent; }
.kfg-step-line { width: 48px; height: 2px; background: var(--border); margin: 0 4px; flex-shrink: 0; transition: background 0.4s; }
.kfg-step-line.done { background: var(--grad); }
.kfg-price-pill {
  background: var(--dark); color: white;
  padding: 8px 18px; border-radius: 100px;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
  transition: all 0.3s var(--spring);
}

/* KFG CONTENT */
.kfg-content {
  max-width: 1200px; margin: 0 auto;
  padding: 100px 40px 80px;
}
.kfg-step-head { text-align: center; margin-bottom: 56px; }
.kfg-step-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--purple); margin-bottom: 14px; }
.kfg-step-head h2 { margin-bottom: 14px; }
.kfg-step-head .kfg-step-sub { font-size: 17px; color: var(--text2); max-width: 600px; margin: 0 auto; }

/* PACKAGES */
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 28px; }
.pkg-card {
  background: white; border: 2px solid var(--border);
  border-radius: var(--r2); padding: 32px 28px;
  cursor: pointer; position: relative;
  transition: all 0.3s var(--spring);
}
.pkg-card:hover { border-color: rgba(108,99,255,0.4); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pkg-card.selected { border-color: var(--purple); background: rgba(108,99,255,0.03); box-shadow: 0 0 0 4px rgba(108,99,255,0.12), var(--shadow-lg); }
.pkg-card.popular { border-color: rgba(108,99,255,0.3); background: linear-gradient(160deg, rgba(108,99,255,0.04), white); }
.pkg-card.popular.selected { border-color: var(--purple); }
.pkg-popular-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 14px;
  border-radius: 100px; white-space: nowrap;
}
.pkg-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.pkg-icon { font-size: 28px; }
.pkg-name-wrap h3 { font-size: 18px; margin-bottom: 2px; }
.pkg-tagline { font-size: 12px; color: var(--text3); }
.pkg-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.pkg-price { font-size: 32px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.02em; }
.pkg-once { font-size: 12px; color: var(--text3); }
.pkg-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pkg-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text2); line-height: 1.4; }
.pkg-features li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--teal); margin-top: 1px; }
.pkg-select-btn {
  width: 100%; padding: 12px; text-align: center;
  border-radius: 100px; font-size: 14px; font-weight: 700;
  border: 2px solid var(--border2); color: var(--text2);
  transition: all 0.3s var(--ease);
}
.pkg-card:hover .pkg-select-btn { border-color: var(--purple); color: var(--purple); }
.pkg-card.selected .pkg-select-btn { background: var(--grad); color: white; border-color: transparent; }

.kfg-hint {
  display: flex; align-items: center; gap: 10px;
  background: rgba(108,99,255,0.06); border: 1px solid rgba(108,99,255,0.15);
  border-radius: var(--r); padding: 14px 18px;
  font-size: 13px; color: var(--text2);
}
.kfg-hint svg { width: 18px; height: 18px; color: var(--purple); flex-shrink: 0; }

/* EXTRAS */
.extras-section { margin-bottom: 36px; }
.extras-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 12px; }
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.extra-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: white; border: 2px solid var(--border);
  border-radius: var(--r2); padding: 20px 22px;
  cursor: pointer; transition: all 0.25s var(--ease); position: relative;
}
.extra-card:hover { border-color: rgba(108,99,255,0.3); box-shadow: var(--shadow); }
.extra-card.selected { border-color: var(--purple); background: rgba(108,99,255,0.03); }
.extra-check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.25s var(--ease);
  background: white;
}
.extra-check svg { width: 12px; height: 12px; color: white; opacity: 0; transition: opacity 0.2s; }
.extra-card.selected .extra-check { background: var(--purple); border-color: var(--purple); }
.extra-card.selected .extra-check svg { opacity: 1; }
.extra-icon { font-size: 24px; flex-shrink: 0; }
.extra-body { flex: 1; min-width: 0; }
.extra-body h4 { font-size: 16px; margin-bottom: 5px; }
.extra-body p { font-size: 14px; color: var(--text2); line-height: 1.55; }
.extra-badges { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.extra-badges span { font-size: 10px; font-weight: 600; padding: 2px 8px; background: rgba(108,99,255,0.08); color: var(--purple); border-radius: 100px; }
.extra-price { font-size: 16px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; flex-shrink: 0; white-space: nowrap; margin-left: auto; padding-left: 8px; }

.kfg-next-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 36px; }
.btn-skip { background: none; border: none; font-size: 13px; color: var(--text3); cursor: pointer; text-decoration: underline; }
.btn-skip:hover { color: var(--text2); }

/* STEP 3 */
.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.form-section { margin-bottom: 40px; }
.form-section h4 { font-size: 18px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.inp-wrap { display: flex; flex-direction: column; gap: 6px; }
.inp-wrap.full { margin-top: 14px; }
.inp-wrap label { font-size: 14px; font-weight: 600; color: var(--text); }
.inp-wrap input,
.inp-wrap select,
.inp-wrap textarea {
  padding: 15px 18px;
  border: 1.5px solid var(--border2);
  border-radius: var(--r); font-size: 16px;
  color: var(--text); background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%;
}
.inp-wrap input:focus,
.inp-wrap select:focus,
.inp-wrap textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(108,99,255,0.1); }
.inp-wrap textarea { resize: vertical; font-size: 14px; }
.inp-wrap input::placeholder,
.inp-wrap textarea::placeholder { color: var(--text3); }

.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-opt { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.radio-opt input { accent-color: var(--purple); }
.radio-opt span { font-size: 14px; color: var(--text2); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.check-opt { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--r); transition: all 0.2s; }
.check-opt:hover { border-color: rgba(108,99,255,0.3); background: rgba(108,99,255,0.03); }
.check-opt input { accent-color: var(--purple); }
.check-opt span { font-size: 13px; color: var(--text2); }

.style-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.style-opt {
  border: 2px solid var(--border); border-radius: var(--r);
  overflow: hidden; cursor: pointer; transition: all 0.25s;
}
.style-opt:hover { border-color: rgba(108,99,255,0.4); transform: translateY(-2px); }
.style-opt.selected { border-color: var(--purple); }
.style-preview { height: 60px; }
.sp1 { background: linear-gradient(135deg, #6C63FF, #FF6B6B); }
.sp2 { background: linear-gradient(135deg, #1a1a2e, #d4af37); }
.sp3 { background: linear-gradient(135deg, #f8f8f8, #e0e0e8); }
.sp4 { background: linear-gradient(135deg, #fff3e0, #ffcc80); }
.style-opt span { display: block; padding: 8px 6px; font-size: 11px; font-weight: 600; color: var(--text2); text-align: center; background: white; }

/* MINI SUMMARY */
.detail-summary {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px 20px;
  position: sticky; top: 90px;
}
.detail-summary h5 { font-size: 14px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sum-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sum-item span { color: var(--text2); }
.sum-item strong { font-weight: 700; color: var(--text); white-space: nowrap; }
.sum-total { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.sum-total span { font-size: 14px; font-weight: 700; }
.sum-total strong { font-size: 22px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* STEP 4 */
.step4-layout { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }
.order-summary {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--r2); padding: 28px 24px;
  position: sticky; top: 90px;
}
.order-summary h4 { font-size: 16px; margin-bottom: 20px; }
.order-lines { display: flex; flex-direction: column; }
.order-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.order-line:first-child { padding-top: 0; }
.order-line span { font-size: 14px; color: var(--text2); }
.order-line strong { font-size: 14px; font-weight: 700; color: var(--text); white-space: nowrap; }
.order-divider { height: 1px; background: var(--border); margin: 16px 0; }
.order-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.order-total span { font-size: 16px; font-weight: 700; }
.order-total strong { font-size: 28px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.order-note { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text3); margin-bottom: 20px; }
.order-note svg { width: 16px; height: 16px; flex-shrink: 0; }
.trust-badges { display: flex; flex-direction: column; gap: 8px; }
.trust-badge { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--bg3); border-radius: var(--r); font-size: 13px; font-weight: 600; }
.trust-badge span { font-size: 16px; }

.contact-side .form-section { margin-bottom: 24px; }
.legal-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-top: 16px; }
.legal-check input { accent-color: var(--purple); flex-shrink: 0; margin-top: 2px; }
.legal-check span { font-size: 12px; color: var(--text3); line-height: 1.6; }
.legal-check a { color: var(--purple); }
.btn-send {
  width: 100%; padding: 20px 28px;
  background: var(--grad); color: white;
  font-size: 17px; font-weight: 800; border: none; border-radius: var(--r2);
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: transform 0.3s var(--spring), box-shadow 0.3s;
  margin-bottom: 14px;
}
.btn-send svg { width: 20px; height: 20px; transition: transform 0.3s var(--spring); }
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(255,107,107,0.4); }
.btn-send:hover svg { transform: translateX(4px); }
.send-note { text-align: center; font-size: 12px; color: var(--text3); }

/* SUCCESS */
.success-screen { max-width: 560px; margin: 0 auto; text-align: center; padding: 40px 0; }
.success-icon { margin: 0 auto 32px; width: 80px; height: 80px; }
.success-icon svg { width: 100%; height: 100%; }
.success-screen h2 { margin-bottom: 16px; }
.success-screen > p { font-size: 16px; color: var(--text2); line-height: 1.7; margin-bottom: 40px; }
.success-next { display: flex; flex-direction: column; gap: 14px; text-align: left; margin-bottom: 40px; }
.snext-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; background: white; border: 1px solid var(--border); border-radius: var(--r); }
.snext-item span { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: white; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.snext-item p { font-size: 14px; color: var(--text2); line-height: 1.5; }

/* ═══════════════════════════════════════
   HERO PRICE TAG
═══════════════════════════════════════ */
.hero-price-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1.5px solid var(--border2);
  border-radius: 100px; padding: 10px 22px;
  margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.hpt-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #1a1a2e; }
.hpt-from  { font-size: 13px; color: #1a1a2e; font-weight: 600; }
.hpt-price { font-size: 26px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.02em; }
.hpt-desc  { font-size: 11px; color: #3a3a50; font-weight: 600; border-left: 1px solid rgba(0,0,0,0.15); padding-left: 10px; margin-left: 2px; }

/* ═══════════════════════════════════════
   PRICING SECTION (LANDING PAGE)
═══════════════════════════════════════ */
.sec-sub { font-size: 16px; color: var(--text2); max-width: 540px; margin: 0 auto; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-bottom: 32px; align-items: start;
}
.price-card {
  background: white; border: 2px solid var(--border);
  border-radius: var(--r2); padding: 32px 28px;
  position: relative; transition: all 0.3s var(--spring);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(108,99,255,0.2); }
.price-card.popular { border-color: rgba(108,99,255,0.35); background: linear-gradient(160deg, rgba(108,99,255,0.04), white); }
.price-card.popular:hover { border-color: var(--purple); }

.popular-ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: white;
  font-size: 11px; font-weight: 800; padding: 4px 18px;
  border-radius: 100px; white-space: nowrap; letter-spacing: 0.02em;
}
.price-card-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.price-pkg-icon { font-size: 28px; }
.price-card-head > div { flex: 1; }
.price-card-head h3 { font-size: 20px; margin-bottom: 2px; }
.price-pkg-sub { font-size: 12px; color: var(--text3); }
.info-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border2); background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: all 0.2s; color: var(--text3);
}
.info-btn svg { width: 16px; height: 16px; }
.info-btn:hover { border-color: var(--purple); color: var(--purple); background: rgba(108,99,255,0.06); }

.price-amount {
  display: flex; align-items: baseline; gap: 4px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.price-num { font-size: 40px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.03em; }
.price-cur { font-size: 24px; font-weight: 700; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-type { font-size: 12px; color: var(--text3); margin-left: 4px; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--text2); line-height: 1.5; }
.price-features li svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--teal); margin-top: 1px; }
.price-features .feat-no { opacity: 0.4; }
.price-features .feat-no svg { color: var(--text3); }
.price-cta {
  width: 100%; padding: 13px; border-radius: 100px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  border: 2px solid var(--border2); background: white; color: var(--text2);
  transition: all 0.25s var(--ease);
}
.price-cta:hover { border-color: var(--purple); color: var(--purple); }
.popular-cta { background: var(--grad); color: white; border-color: transparent; }
.popular-cta:hover { box-shadow: 0 8px 32px rgba(108,99,255,0.35); transform: translateY(-1px); }

/* ADDON TEASER */
.addon-teaser {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(108,99,255,0.06), rgba(255,107,107,0.04));
  border: 1.5px solid rgba(108,99,255,0.15);
  border-radius: var(--r2); padding: 24px 28px;
}
.addon-teaser-left { display: flex; align-items: center; gap: 16px; }
.addon-icon { font-size: 32px; }
.addon-teaser-left h4 { font-size: 16px; margin-bottom: 4px; }
.addon-teaser-left p { font-size: 13px; color: var(--text2); }
.addon-teaser-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.info-btn-lg {
  padding: 12px 22px; background: var(--grad); color: white;
  font-size: 14px; font-weight: 700; border: none; border-radius: 100px;
  cursor: pointer; transition: all 0.3s var(--spring); white-space: nowrap;
}
.info-btn-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(108,99,255,0.3); }
.addon-note { font-size: 12px; color: var(--text3); }

/* ═══════════════════════════════════════
   KONFIGURATOR NAV — updated
═══════════════════════════════════════ */
.kfg-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.kfg-logo-text { font-size: 18px; font-weight: 800; letter-spacing: -0.03em; }
.kfg-right-controls {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.kfg-back {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1.5px solid var(--border2);
  border-radius: 100px; padding: 8px 14px;
  font-size: 13px; font-weight: 600; color: var(--text2);
  cursor: pointer; transition: all 0.2s;
}
.kfg-back svg { width: 14px; height: 14px; }
.kfg-back:hover { color: var(--text); border-color: var(--purple); }
.kfg-pb-inner {
  max-width: 960px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 16px;
}

/* EXTRAS LABEL ROW */
.extras-label-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }

/* INLINE INFO BTN */
.inline-info-btn {
  background: none; border: none; color: var(--purple);
  font-size: 14px; font-weight: 600; cursor: pointer;
  text-decoration: underline; padding: 0;
}
.inline-info-btn:hover { opacity: 0.75; }

/* PKG INFO BTN */
.pkg-info-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--border2); background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; margin-left: auto; flex-shrink: 0;
  transition: all 0.2s; color: var(--text3);
}
.pkg-info-btn svg { width: 14px; height: 14px; }
.pkg-info-btn:hover { border-color: var(--purple); color: var(--purple); }

.pkg-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }

/* LATER ADD NOTE */
.later-add-note {
  display: flex; align-items: flex-start; gap: 12px;
  background: linear-gradient(135deg, rgba(108,99,255,0.06), rgba(255,107,107,0.04));
  border: 1.5px solid rgba(108,99,255,0.15);
  border-radius: var(--r); padding: 16px 20px;
  font-size: 13px; color: var(--text2); line-height: 1.6;
  margin-top: 8px; margin-bottom: 8px;
}
.later-add-note svg { width: 18px; height: 18px; color: var(--purple); flex-shrink: 0; margin-top: 1px; }

/* ═══════════════════════════════════════
   MODALS
═══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -44%) scale(0.97);
  z-index: 2001; background: white; border-radius: var(--r3);
  padding: 40px 36px; max-width: 520px; width: calc(100% - 40px);
  box-shadow: var(--shadow-xl);
  opacity: 0; pointer-events: none;
  transition: all 0.35s var(--spring);
  max-height: 90vh; overflow-y: auto;
}
.modal.modal-wide { max-width: 720px; }
.modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border2); background: white;
  font-size: 14px; cursor: pointer; color: var(--text3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--bg3); color: var(--text); }
.modal-icon { font-size: 40px; margin-bottom: 12px; }
.modal h3 { font-size: 24px; margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--text2); margin-bottom: 24px; line-height: 1.6; }
.modal-section { margin-bottom: 20px; }
.modal-section h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin-bottom: 12px; }
.modal-list { display: flex; flex-direction: column; gap: 8px; }
.modal-list li { font-size: 14px; color: var(--text2); padding-left: 18px; position: relative; line-height: 1.5; }
.modal-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 13px; }
.modal-section p { font-size: 14px; color: var(--text2); line-height: 1.7; }
.modal-cta { margin-top: 28px; }

.extras-modal-grid { display: flex; flex-direction: column; gap: 16px; margin-bottom: 8px; }
.em-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--bg3); border-radius: var(--r); }
.em-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.em-item h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.em-item h5 span { font-size: 13px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.em-item p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* ── LARGE LAPTOP (1280px and below) ── */
@media (max-width: 1280px) {
  .container { padding: 0 32px; }
  .hero-inner { padding: 130px 32px 90px; gap: 48px; }
  .kfg-content { padding: 100px 32px 80px; }
}

/* ── LAPTOP / TABLET LANDSCAPE (1100px and below) ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 120px 32px 80px; }
  .hero-sub { font-size: 17px; }
  .pricing-grid { gap: 16px; }
  .price-card { padding: 28px 22px; }
  .price-num { font-size: 34px; }
  .pkg-grid { gap: 14px; }
  .pkg-card { padding: 26px 22px; }
  .extras-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .detail-layout { grid-template-columns: 1fr 280px; gap: 28px; }
  .step4-layout { grid-template-columns: 340px 1fr; gap: 28px; }
  .proc-step { padding: 26px 18px; }
}

/* ── TABLET (900px and below) ── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); padding: 100px 20px 60px; max-width: 100%; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; padding: 32px 28px; min-width: 0; overflow: hidden; }
  .hero-badge { justify-content: center; }
  .hero-price-tag { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-sub { max-width: 100%; font-size: 17px; }
  .trust-row { margin: 0 auto; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .cards-3 { grid-template-columns: 1fr; }
  .process-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .proc-line { display: none; }

  .pkg-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .extras-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; gap: 24px; }
  .detail-summary { position: static; }
  .step4-layout { grid-template-columns: 1fr; gap: 24px; }
  .order-summary { position: static; }
  .style-grid { grid-template-columns: repeat(2,1fr); }
  .addon-teaser { flex-direction: column; align-items: flex-start; gap: 16px; }
  .addon-teaser-right { align-items: flex-start; width: 100%; }
  .info-btn-lg { width: 100%; }
  .kfg-logo-text { display: none; }
  .kfg-content { padding: 90px 24px 60px; }
}

/* ── MOBILE (680px and below) ── */
@media (max-width: 680px) {
  .section { padding: 80px 0; }
  .cta-banner { padding: 70px 0; }

  /* NAV */
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 84px; left: 0; right: 0; bottom: 0;
    background: white; padding: 32px 24px; gap: 24px;
    z-index: 999; border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; }
  .nav-links .nav-highlight { border-radius: var(--r); padding: 16px 20px !important; text-align: center; font-size: 17px !important; }
  .menu-toggle { display: flex; }

  /* HERO */
  h1 { font-size: clamp(32px, 9vw, 52px); }
  .hero-content { padding: 24px 20px; }
  .hero-badge { font-size: 10px; padding: 6px 12px; white-space: normal; word-break: break-word; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn-grad,
  .hero-btns .btn-outline { width: 100%; justify-content: center; }
  .trust-row { width: 100%; justify-content: space-around; padding: 18px 16px; }
  .trust-item strong { font-size: 26px; }

  /* CARDS & GRID */
  .proj-grid { grid-template-columns: 1fr; }
  .proj-card.tall { grid-column: auto; grid-row: auto; }
  .proj-card.tall .proj-img { min-height: 200px; }
  .process-row { grid-template-columns: 1fr; }
  .cards-3 { display: flex; flex-direction: column; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* KONFIGURATOR */
  .kfg-pb-inner { padding: 0 16px; gap: 8px; }
  .kfg-steps-wrap label { display: none; }
  .kfg-step-line { width: 16px; }
  .kfg-step-dot span { width: 26px; height: 26px; font-size: 12px; }
  .kfg-logo .logo-full { height: 36px; }
  .kfg-price-pill { display: none; }
  .kfg-content { padding: 80px 16px 60px; }
  .kfg-step-head { margin-bottom: 36px; }

  .pkg-card { padding: 24px 20px; }
  .pkg-price { font-size: 28px; }

  /* STEP 2 extra cards — keep single row, reduce padding */
  .extra-card { padding: 16px 14px; gap: 12px; }
  .extra-icon { font-size: 20px; }
  .extra-body h4 { font-size: 14px; }
  .extra-body p { font-size: 13px; }
  .extra-price { font-size: 14px; }

  /* STEP 3 forms */
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr 1fr; }
  .radio-group { flex-direction: column; gap: 8px; }
  .radio-opt span { font-size: 15px; }

  /* STEP 4 — show contact form before summary on mobile */
  .step4-layout { display: flex; flex-direction: column; }
  .order-summary { order: 2; }
  .contact-side { order: 1; }

  .btn-send { padding: 18px 20px; font-size: 16px; }
  .btn-grad.large { padding: 18px 28px; font-size: 16px; }

  /* PRICE CARDS */
  .price-num { font-size: 36px; }
  .price-card { padding: 28px 20px; }

  /* TRUST */
  .trust-sep { display: none; }
  .trust-row { flex-wrap: wrap; gap: 16px; }
}

/* ── SMALL MOBILE (420px and below) ── */
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .kfg-content { padding: 80px 14px 50px; }
  .kfg-back span { display: none; }
  .kfg-price-pill { font-size: 13px; padding: 7px 12px; }
  .hero-price-tag { flex-wrap: wrap; gap: 6px; }
  .hpt-desc { display: none; }
  .modal { padding: 24px 16px; }
  .extras-modal-grid .em-item { flex-direction: column; gap: 8px; }
  .extra-card { padding: 14px 12px; }
  .extra-body h4 { font-size: 13px; }
  .extra-price { font-size: 13px; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 9000; width: calc(100% - 40px); max-width: 780px;
  background: var(--dark); color: white;
  border-radius: var(--r2); box-shadow: var(--shadow-xl);
  padding: 20px 24px;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.cookie-banner.hidden { transform: translate(-50%, 120%); opacity: 0; pointer-events: none; }
.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }
.cookie-text a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.cookie-btns { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  padding: 10px 22px; background: var(--grad); color: white;
  font-size: 14px; font-weight: 700; border: none; border-radius: 100px;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.cookie-accept:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(108,99,255,0.4); }
.cookie-more { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: underline; white-space: nowrap; }
.cookie-more:hover { color: white; }
@media (max-width: 480px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-btns { width: 100%; }
  .cookie-accept { flex: 1; text-align: center; }
}
