/* ─── Style block 1 ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ─── TWEAK DEFAULTS ─── */
:root {
  --gelb: #F5C518;
  --gelb-dark: #D4A800;
  --gelb-light: #FEF9E0;
  --gruen: #B1C800;
  --gruen-dark: #8FA000;
  --gruen-text: #5E6B00;         /* dunkle Variante für Text auf Weiß */
  --gelb-text: #8A6D00;          /* dunkle Variante für Text auf Weiß */
  --slate: #1A1A1A;
  --slate-mid: #2E2E2E;
  --slate-light: #4A4A4A;
  --weiss: #FAFAF7;
  --grau-1: #F0EFE9;
  --grau-2: #D8D6CE;
  --grau-3: #9C9A90;

  --hero-bg: #FBFBFD;
  --hero-fg: #1D1D1F;
  --hero-accent: #B1C800;
  --hero-sub: rgba(29,29,31,0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--weiss);
  color: var(--slate);
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
nav.scrolled {
  background: rgba(29,29,31,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
nav.scrolled.light-nav {
  background: rgba(251,251,253,0.82);
  border-color: rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
 color: #fff; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 13px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: rgba(251,251,253,0.75);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
nav.light-nav .nav-links a { color: rgba(29,29,31,0.65); }
.nav-links a:hover { color: #FBFBFD; }
nav.light-nav .nav-links a:hover { color: var(--slate); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 980px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-btn-outline {
  color: rgba(251,251,253,0.85);
  border: 1px solid rgba(251,251,253,0.25);
}
nav.light-nav .nav-btn-outline {
  color: var(--slate);
  border-color: rgba(29,29,31,0.2);
}
.nav-btn-outline:hover { border-color: rgba(251,251,253,0.6); }
.nav-btn-primary {
  background: var(--gelb);
  color: var(--slate);
}
.nav-btn-primary:hover { background: var(--gelb-dark); }

/* ─── HERO ─── */
.hero {
  min-height: auto;
  background: var(--hero-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}

/* Animated ruler grid background */

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  animation: orb-pulse 6s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(177,200,0,0.12) 0%, transparent 70%);
  bottom: 80px; right: 10%;
  animation: orb-pulse 8s ease-in-out infinite alternate-reverse;
}
@keyframes orb-pulse {
  from { transform: scale(1) translateX(-50%); opacity: 0.7; }
  to { transform: scale(1.15) translateX(-50%); opacity: 1; }
}
.hero-orb-2 { transform: none; }
@keyframes orb-pulse2 {
  from { transform: scale(1); opacity: 0.6; }
  to { transform: scale(1.2); opacity: 1; }
}
.hero-orb-2 { animation: orb-pulse2 8s ease-in-out infinite alternate-reverse; }
/* Ensure hero text/CTA content sits above the background image */
.hero > .hero-eyebrow,
.hero > .hero-title,
.hero > .hero-sub,
.hero > .hero-paths,
.hero > .hero-stats,
.hero > .hero-scroll-hint { z-index: 2; }


.hero-eyebrow {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  color: var(--gruen-text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--hero-accent);
  opacity: 0.5;
}

.hero-title {
  font-size: clamp(52px, 8vw, 108px);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  color: var(--hero-fg);
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.hero-title .accent {
  color: var(--hero-accent);
}
.hero-title .green-accent {
  color: var(--gruen);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--hero-sub);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

/* Two-path CTAs */
.hero-paths {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 64px;
}
.path-card {
  background: rgba(29,29,31,0.05);
  border: 1px solid rgba(29,29,31,0.1);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  min-width: 280px;
  max-width: 320px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.path-card:hover {
  background: rgba(29,29,31,0.08);
  border-color: rgba(29,29,31,0.2);
  transform: translateY(-3px);
}
.path-card-badge {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 980px;
  margin-bottom: 4px;
}
.path-card-badge.b2b {
  background: rgba(177,200,0,0.2);
  color: var(--gruen);
}
.path-card-badge.b2c {
  background: rgba(245,197,24,0.15);
  color: var(--gelb);
}
.path-card-title {
  font-size: 21px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--hero-fg);
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}
.path-card-sub {
  font-size: 13px;
  color: var(--hero-sub);
  line-height: 1.5;
}
.path-card-cta {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.path-card.primary .path-card-cta { color: var(--gelb-text); font-weight: 600; }
.path-card.secondary .path-card-cta { color: var(--gruen-text); font-weight: 600; }

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  position: relative;
}
.hero-stat {
  text-align: center;
}
.hero-stat-val {
  font-size: 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--hero-fg);
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  color: rgba(29,29,31,0.7);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.hero-stat-div {
  width: 1px;
  background: rgba(251,251,253,0.1);
  align-self: stretch;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll-hint span { font-size: 11px; letter-spacing: 0.08em; color: #FBFBFD; }
.hero-scroll-arrow { width: 20px; height: 20px; border-right: 1.5px solid #FBFBFD; border-bottom: 1.5px solid #FBFBFD; transform: rotate(45deg); }

/* ─── PROOF STRIP ─── */
.proof-strip {
  background: var(--grau-1);
  border-bottom: 1px solid var(--grau-2);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  overflow: hidden;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.proof-icon {
  width: 32px; height: 32px;
  background: var(--gelb-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proof-text strong {
  display: block;
  font-size: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0em;
  color: var(--slate);
}
.proof-text span {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  color: var(--slate-light);
  letter-spacing: 0.04em;
}
.proof-divider {
  width: 1px; height: 32px;
  background: var(--grau-2);
  flex-shrink: 0;
}

/* ─── SECTION BASE ─── */
section {
  padding: 112px 48px;
}
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gelb);
}
.section-title {
  font-size: clamp(44px, 5vw, 72px);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.98;
  color: var(--slate);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 18px;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--slate-light);
  line-height: 1.65;
  max-width: 580px;
}

/* ─── PRODUCT FEATURE SECTION ─── */
.feature-section {
  background: var(--slate);
  color: var(--weiss);
}
.feature-section .section-title { color: var(--weiss); }
.feature-section .section-lead { color: rgba(251,251,253,0.8); }
.feature-section .section-label { color: var(--weiss); }
.feature-section .section-label::before { background: var(--gruen); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 72px;
}

/* Product visual: ruler illustration */
.ruler-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

/* Animated ruler triangle demo */
.ruler-triangle-demo {
  position: relative;
  width: 280px;
  height: 280px;
}
.ruler-triangle-demo svg {
  width: 100%;
  height: 100%;
}

.feature-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-point-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-point-icon.yellow { background: rgba(245,197,24,0.15); }
.feature-point-icon.green { background: rgba(177,200,0,0.15); }
.feature-point-icon.blue { background: rgba(100,180,255,0.1); }

.feature-point-title {
  font-size: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--weiss);
  letter-spacing: 0em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.feature-point-body {
  font-size: 15px;
  color: rgba(251,251,253,0.78);
  line-height: 1.6;
}

/* ─── SPECS ─── */
.specs-section { background: var(--weiss); }

.specs-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grau-2);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 72px;
  margin-bottom: 48px;
}
.spec-hl {
  background: var(--weiss);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spec-hl-val {
  font-size: 44px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0em;
  color: var(--slate);
  line-height: 1;
}
.spec-hl-val.accent { color: var(--gelb-text); }
.spec-hl-val.green { color: var(--gruen-text); }
.spec-hl-label {
  font-size: 13px;
  color: var(--slate-light);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.spec-table-wrap {
  background: var(--grau-1);
  border-radius: 18px;
  overflow: hidden;
}
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--grau-2);
  align-items: start;
}
.spec-row:last-child { border-bottom: none; }
.spec-key {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-light);
  padding-top: 2px;
}
.spec-val {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}
.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  background: var(--gelb-light);
  color: var(--slate);
  border: 1px solid rgba(212,168,0,0.3);
  padding: 3px 10px;
  border-radius: 980px;
  margin: 2px 2px 0;
}

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--grau-1); }

.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 72px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--grau-2);
  cursor: pointer;
  transition: all 0.25s;
}
.step-item:first-child { padding-top: 0; }
.step-item:last-child { border-bottom: none; }

.step-num-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--grau-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--grau-3);
  letter-spacing: -0.02em;
  transition: all 0.25s;
}
.step-item.active .step-num-wrap {
  background: var(--gelb);
  border-color: var(--gelb);
  color: var(--slate);
}
.step-content-wrap {}
.step-h {
  font-size: 21px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0em;
  margin-bottom: 6px;
  transition: color 0.25s;
}
.step-p {
  font-size: 15px;
  color: var(--slate-light);
  line-height: 1.6;
}
.step-tip {
  margin-top: 8px;
  font-size: 13px;
  color: var(--gruen-text);
  font-weight: 500;
}

.how-visual-wrap {
  position: sticky;
  top: 80px;
  background: var(--weiss);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--grau-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-visual-panel {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 48px;
  animation: fadeInUp 0.4s cubic-bezier(0.22,1,0.36,1);
}
.step-visual-panel.active { display: flex; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Step SVG illustrations */
.step-svg-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.step-caption {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-light);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ─── DESIGNER CTA (Customization) ─── */
.designer-section {
  background: var(--grau-1);
  border-top: 1px solid var(--grau-2);
}

.designer-hero {
  background: var(--slate);
  border-radius: 28px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}
.designer-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(177,200,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.designer-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 40%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.designer-left {}
.designer-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gruen);
  margin-bottom: 16px;
}
.designer-title {
  font-size: clamp(34px, 3.6vw, 50px);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--weiss);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.designer-sub {
  font-size: 17px;
  color: rgba(251,251,253,0.78);
  line-height: 1.6;
  margin-bottom: 40px;
}
.designer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.designer-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s;
}
.designer-btn-primary {
  background: var(--gelb);
  color: var(--slate);
}
.designer-btn-primary:hover {
  background: var(--gelb-dark);
  transform: translateY(-1px);
}
.designer-btn-secondary {
  background: rgba(177,200,0,0.12);
  border: 1px solid rgba(177,200,0,0.25);
  color: var(--gruen);
}
.designer-btn-secondary:hover {
  background: rgba(177,200,0,0.2);
  transform: translateY(-1px);
}
.designer-btn-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.designer-btn-primary .designer-btn-icon { background: rgba(29,29,31,0.1); }
.designer-btn-secondary .designer-btn-icon { background: rgba(177,200,0,0.2); }
.designer-btn-text {}
.designer-btn-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}
.designer-btn-sub {
  font-size: 12px;
  opacity: 0.65;
  margin-top: 2px;
}

/* Designer right: customization preview */
.designer-right {
  position: relative;
}
.custom-ruler-preview {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.custom-ruler-bar {
  height: 72px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.ruler-bar-color {
  width: 14px;
  flex-shrink: 0;
}
.ruler-bar-body {
  flex: 1;
  background: #FAFAF7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: relative;
}
.ruler-bar-ticks {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28px;
  background: repeating-linear-gradient(90deg, transparent, transparent 9px, rgba(29,29,31,0.15) 9px, rgba(29,29,31,0.15) 10px),
              repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(29,29,31,0.4) 49px, rgba(29,29,31,0.4) 50px);
}
.ruler-bar-logo {
  font-size: 13px;
  font-weight: 800;
  color: var(--slate);
  letter-spacing: -0.03em;
  z-index: 1;
  position: relative;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.ruler-bar-slogan {
  font-size: 10px;
  color: rgba(29,29,31,0.45);
  z-index: 1;
  position: relative;
  letter-spacing: 0.06em;
}
.custom-label {
  font-size: 12px;
  color: rgba(251,251,253,0.4);
  text-align: center;
  letter-spacing: 0.05em;
}

/* Color selector dots */
.color-selector {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}
.color-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.color-dot.active {
  border-color: rgba(255,255,255,0.6);
  transform: scale(1.15);
}

/* ─── AWARDS ─── */
.awards-section { background: var(--weiss); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 64px;
}
.award-card {
  background: var(--grau-1);
  border-radius: 18px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  border: 1px solid transparent;
}
.award-card:hover {
  background: var(--weiss);
  border-color: var(--grau-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.award-medal {
  width: 56px; height: 56px;
  background: var(--gelb-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.award-country {
  font-size: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0em;
  line-height: 1.2;
}
.award-detail {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  color: var(--slate-light);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ─── ORDER CTA ─── */
.order-section {
  background: var(--gelb);
  padding: 96px 48px;
}
.order-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.order-title {
  font-size: clamp(52px, 6vw, 88px);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  color: var(--slate);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.order-sub {
  font-size: 19px;
  color: rgba(29,29,31,0.8);
  margin-bottom: 48px;
  line-height: 1.55;
}
.order-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.order-btn {
  font-size: 17px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 980px;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.2s;
}
.order-btn-primary {
  background: var(--slate);
  color: var(--weiss);
}
.order-btn-primary:hover { background: var(--slate-mid); transform: scale(1.02); }
.order-btn-secondary {
  background: rgba(29,29,31,0.08);
  color: var(--slate);
}
.order-btn-secondary:hover { background: rgba(29,29,31,0.14); }

/* ─── FOOTER ─── */
footer {
  background: var(--slate);
  padding: 64px 48px 40px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--weiss);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer-logo-text span { color: var(--weiss); }
.footer-tagline {
  font-size: 14px;
  color: rgba(251,251,253,0.7);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-contact a {
  color: rgba(100,180,255,0.85);
  text-decoration: none;
  font-size: 13px;
}
.footer-col-title {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251,251,253,0.85);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(251,251,253,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--weiss); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(251,251,253,0.6);
  letter-spacing: 0.03em;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(251,251,253,0.25);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(251,251,253,0.55); }

/* ─── TWEAKS PANEL ─── */
#tweaks-panel {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(29,29,31,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 24px;
  width: 280px;
  color: var(--weiss);
  font-size: 13px;
}
#tweaks-panel.open { display: block; }
.tweak-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.tweak-group { margin-bottom: 18px; }
.tweak-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251,251,253,0.4);
  margin-bottom: 8px;
}
.tweak-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tweak-opt {
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: rgba(251,251,253,0.65);
}
.tweak-opt:hover { background: rgba(255,255,255,0.12); }
.tweak-opt.active {
  background: var(--gelb);
  border-color: var(--gelb);
  color: var(--slate);
  font-weight: 600;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }
  .feature-grid, .how-layout, .designer-hero { grid-template-columns: 1fr; gap: 40px; }
  .awards-grid { grid-template-columns: repeat(3,1fr); }
  .specs-highlights { grid-template-columns: 1fr 1fr; }
  .hero-paths { flex-direction: column; align-items: center; }
  .path-card { max-width: 100%; width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .designer-hero { padding: 40px 28px; }
  .proof-strip { flex-wrap: wrap; padding: 20px 24px; }
  .hero-stats { gap: 24px; }
  .order-section { padding: 72px 24px; }
}

/* ─── Legal Pages ─── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px 120px;
}
.legal-page h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 48px;
  color: var(--slate);
}
.legal-page h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gruen-text);
  margin: 40px 0 10px;
}
.legal-page p,
.legal-page address {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--slate-light);
  font-style: normal;
  margin: 0 0 8px;
}
.legal-page a {
  color: var(--gruen-text);
  text-decoration: none;
}
.legal-page a:hover {
  color: var(--gruen-dark);
  text-decoration: underline;
}
.legal-divider {
  border: none;
  border-top: 1px solid var(--grau-2);
  margin: 40px 0;
}

