* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f3f4f6;
  color: #0f172a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  background: #f3f4f6;
  color: #0f172a;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
}

.header-inner {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #ea580c;
  box-shadow: 0 0 18px rgba(234, 88, 12, 0.45);
}

.brand-name {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #020617;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 16px;
  color: #475569;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #ea580c;
  transition: width 0.3s ease;
}

.nav-link:hover {
  background: #f1f5f9;
  color: #020617;
}

.nav-link:hover::after {
  width: calc(100% - 32px);
}

.nav-link.active {
  background: #ea580c;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.28);
}

.nav-link.active::after {
  width: 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://meine-neue-werkstattseite.de/bilder/hero-back-2.png");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.2;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(234, 88, 12, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.12), transparent 30%);
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 224px 32px;
}

.hero-content {
  width: 50%;
  max-width: 576px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  margin: 24px 0 0;
  max-width: 100%;
  color: #ffffff;
  font-size: 60px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero-content p {
  margin: 24px 0 0;
  max-width: 100%;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: #ea580c;
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(67, 20, 7, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.change-section {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
  color: #0f172a;
}

.section-pattern {
  position: absolute;
  inset: 0;
  background-image: url("https://meine-neue-werkstattseite.de/bilder/hintergrund/pattern04.png");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.section-light-overlay {
  position: absolute;
  inset: 0;
  background: rgba(243, 244, 246, 0.72);
}

.section-soft-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(234, 88, 12, 0.09), transparent 30%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.08), transparent 30%);
}

.section-inner {
  position: relative;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 32px;
}

.section-heading {
  max-width: 768px;
}

.section-heading h2,
.process-heading h2,
.contact-copy h2 {
  margin: 0;
  color: #020617;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.problem-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.problem-icon {
  margin-top: 4px;
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.problem-list p {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.bridge-text {
  margin: 32px 0 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.second-heading {
  margin-top: 40px !important;
}

.benefit-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card {
  border: 1px solid #1e293b;
  border-radius: 28px;
  background: #0f172a;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 88, 12, 0.4);
  background: #111827;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.5);
}

.benefit-line {
  width: 56px;
  height: 6px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #ea580c;
  transition: width 0.3s ease;
}

.benefit-card:hover .benefit-line {
  width: 80px;
}

.benefit-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  transition: color 0.3s ease;
}

.benefit-card:hover h3 {
  color: #ea580c;
}

.benefit-card p {
  margin: 16px 0 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.75;
}

.result-wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.result-box {
  display: inline-flex;
  border-radius: 12px;
  background: rgba(234, 88, 12, 0.1);
  padding: 12px 20px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(234, 88, 12, 0.2);
}

.result-box p {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.result-box span {
  color: #ea580c;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.process-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://meine-neue-werkstattseite.de/bilder/background2.png");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
}

.process-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(234, 88, 12, 0.15), transparent 30%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.1), transparent 30%);
}

.process-inner {
  color: #ffffff;
}

.process-heading {
  max-width: 768px;
}

.eyebrow {
  color: #ea580c;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.process-heading h2 {
  margin-top: 12px;
  color: #ffffff;
}

.process-heading p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.process-heading p + p {
  margin-top: 16px;
}

.decision-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.decision-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.decision-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 88, 12, 0.45);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.step-number {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ea580c;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.decision-card:hover .step-number {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.35);
}

.decision-card h3 {
  margin: 0;
  color: #020617;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  transition: color 0.3s ease;
}

.decision-card:hover h3 {
  color: #ea580c;
}

.decision-card p {
  margin: 4px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.workshop-logic {
  max-width: 768px;
  margin-top: 80px;
  padding-left: 24px;
  border-left: 2px solid rgba(234, 88, 12, 0.4);
  opacity: 0.9;
}

.workshop-logic h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.workshop-logic p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.workshop-logic p + p {
  margin-top: 12px;
}

.workshop-logic span {
  color: #ea580c;
  font-weight: 600;
}

.security-note {
  max-width: 768px;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.security-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.security-note span {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-weight: 600;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
}

.contact-inner {
  position: relative;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 32px;
}

.contact-copy {
  position: relative;
  z-index: 10;
  max-width: 768px;
}

.contact-copy h2 {
  margin-top: 12px;
}

.contact-copy p {
  margin: 20px 0 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.75;
}

.contact-copy p + p {
  margin-top: 16px;
}

.contact-grid {
  position: relative;
  z-index: 10;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: start;
}

.contact-column {
  width: 100%;
}

.contact-card {
  border: 1px solid #1e293b;
  border-radius: 28px;
  background: #0f172a;
  padding: 24px;
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.35);
}

.card-accent-line {
  width: 48px;
  height: 6px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #ea580c;
}

.card-eyebrow {
  color: #fdba74;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-toggle {
  margin-top: 24px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #ea580c;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(67, 20, 7, 0.3);
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-toggle:hover {
  transform: translateY(-2px);
  background: #f97316;
}

.contact-options {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.contact-options-intro {
  margin: 0;
  padding: 12px 16px 8px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.55;
}

.contact-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 12px;
  padding: 12px 16px;
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.contact-option span:last-child {
  color: #94a3b8;
}

.contact-option .whatsapp-label {
  color: #25d366 !important;
}

.contact-option-email span:last-child {
  word-break: break-all;
}

.contact-footnote {
  margin: 20px 0 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.65;
}

.contact-options-ghost {
  visibility: hidden;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.contact-options-ghost.is-hidden {
  display: none;
}

.contact-options-ghost p {
  margin: 0;
  padding: 12px 16px 8px;
  font-size: 14px;
  line-height: 1.55;
}

.ghost-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.ghost-row-email span:last-child {
  word-break: break-all;
}

.contact-photo-wrap {
  pointer-events: none;
  position: absolute;
  right: 32px;
  bottom: 0;
  z-index: 0;
  display: flex;
  width: 55%;
  justify-content: flex-end;
}

.contact-photo {
  height: 600px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 24px 45px rgba(15, 23, 42, 0.22));
}

.site-footer {
  background: #0a0a0a;
  color: #ffffff;
}

.footer-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
}

.footer-links a:hover {
  text-decoration: underline;
}

.whatsapp-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-floating:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.whatsapp-floating svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-photo-mobile {
  display: none;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 18px;
  background: rgba(10, 15, 25, 0.42);
  backdrop-filter: blur(8px);
  display: none;
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent__box {
  max-width: 1120px;
  margin: 0 auto;
  background: #ffffff;
  color: #111827;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.cookie-consent__content {
  max-width: 760px;
}

.cookie-consent__content strong {
  display: block;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: #0f172a;
}

.cookie-consent__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}

.cookie-consent__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #1A256C;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.cookie-consent__btn:hover {
  transform: translateY(-1px);
}

.cookie-consent__btn--primary {
  background: #1A256C;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(26, 37, 108, 0.25);
}

.cookie-consent__btn--primary:hover {
  background: #121b55;
}

.cookie-consent__btn--secondary {
  background: #f1f5f9;
  color: #334155;
}

.cookie-consent__btn--secondary:hover {
  background: #e2e8f0;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 16px 24px;
  }

  .brand-name {
    font-size: 17px;
  }

  .main-nav {
    display: none;
  }

  .hero-inner {
    padding: 160px 24px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 17px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-inner {
    padding: 64px 24px;
  }

  .section-heading h2,
  .process-heading h2,
  .contact-copy h2 {
    font-size: 32px;
    line-height: 1.15;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .result-box p {
    font-size: 18px;
  }

  .decision-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .decision-card {
    padding: 20px;
  }

  .workshop-logic {
    margin-top: 56px;
  }

  .contact-inner {
    padding: 64px 24px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .contact-photo-wrap {
    display: none;
  }

  .contact-option {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .ghost-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  
  .contact-options-ghost {
  display: none !important;
}

.contact-photo-mobile {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 32px;
  margin-bottom: 0;
}

.contact-photo-mobile img {
  height: 420px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 24px 45px rgba(15, 23, 42, 0.22));
}

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px 160px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .whatsapp-floating {
    right: 20px;
    bottom: 20px;
  }
  
  .cookie-consent {
    padding: 12px;
  }

  .cookie-consent__box {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
  }

  .cookie-consent__content strong {
    font-size: 16px;
  }

  .cookie-consent__content p,
  .cookie-consent__link {
    font-size: 13px;
  }

  .cookie-consent__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent__btn {
    width: 100%;
    padding: 12px 14px;
  }
}  
  
}