*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --slate: #111111;
  --slate-dark: #111111;
  --terracotta: #D62929;
  --terracotta-light: #D62929;
  --timber: #111111;
  --timber-light: #111111;
  --cream: #FAFBF9;
  --cream-dark: #FAFBF9;
  --charcoal: #111111;
  --white: #FFFFFF;
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--grain);
  pointer-events: none;
  z-index: 9999;
}

/* ===== NAVIGATION ===== */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.4s ease;
}

#mainNav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.logo {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 1.5rem;
  color: var(--slate-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  clip-path: polygon(50% 0%, 100% 35%, 100% 100%, 0% 100%, 0% 35%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark span {
  color: var(--white);
  font-size: 1rem;
  margin-top: 6px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--slate-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  font-weight: 700 !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--slate-dark) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--slate-dark);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--slate-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-menu a.nav-cta {
  background: var(--terracotta);
  color: var(--white);
  text-align: center;
  border-bottom: none;
  margin-top: 1.25rem;
  padding: 1rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--slate-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000000 0%, rgba(0,0,0,0.7) 55%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 0 6vw;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-badge span {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero h1 .accent {
  color: var(--terracotta-light);
  display: block;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--timber);
}

.btn-primary svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--slate-dark);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
  box-shadow: 0 10px 28px rgba(214,41,41,0.35);
}

.hero-stats {
  position: absolute;
  bottom: 4rem;
  right: 6vw;
  display: flex;
  gap: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-stat {
  text-align: right;
}

.hero-stat-num {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

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

/* ===== SERVICES ===== */
.services {
  padding: 7rem 2rem;
  background: var(--cream);
  position: relative;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--terracotta);
}

.section-title {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--slate-dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 420px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--slate-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.service-card h3 {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--slate-dark);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  color: var(--slate-dark);
  gap: 0.8rem;
}

/* ===== ABOUT / IMAGE SECTION ===== */
.about {
  padding: 7rem 2rem;
  background: var(--slate-dark);
  position: relative;
  overflow: hidden;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 500px;
}

.about-img {
  position: absolute;
  background: var(--slate);
  overflow: hidden;
}

.about-img-main {
  width: 70%;
  height: 80%;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.about-img-secondary {
  width: 55%;
  aspect-ratio: 1 / 1;
  height: auto;
  bottom: 0;
  right: 0;
  border: 4px solid var(--terracotta);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-year {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 5rem;
  color: rgba(214,41,41,0.15);
  line-height: 1;
}

.about-text {
  color: var(--cream);
}

.about-text .section-tag {
  color: var(--terracotta-light);
}

.about-text .section-tag::before {
  background: var(--terracotta-light);
}

.about-text .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(214,41,41,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.about-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--terracotta-light);
}

.about-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.about-feature p {
  font-size: 1rem !important;
  margin-bottom: 0 !important;
}

/* ===== PROCESS ===== */
.process {
  padding: 7rem 2rem;
  background: var(--white);
}

.process-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.process .section-tag {
  color: var(--terracotta);
}

.process .section-tag::before {
  background: var(--terracotta);
}

.process .section-title {
  color: var(--slate-dark);
}

.process .section-subtitle {
  color: var(--slate);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(0,0,0,0.08);
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: var(--slate-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 2;
  border-radius: 50%;
}

.step h3 {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 7rem 2rem;
  background: var(--cream);
  position: relative;
}

.testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.testimonial-controls {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--white);
  color: var(--slate-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.slider-arrow:hover:not(:disabled) {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.slider-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
}

.testimonial-slider {
  margin-top: 3rem;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  box-sizing: border-box;
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.google-badge {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  width: 22px;
  height: 22px;
}

.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--terracotta);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--slate-dark);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  color: var(--white);
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--slate-dark);
}

.testimonial-role {
  font-size: 1rem;
  color: var(--slate);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: #FBBC05;
}

.review-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--slate-dark);
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0.95rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.btn-google:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}

.btn-google svg {
  width: 20px;
  height: 20px;
}

/* ===== ANFRAGE / MULTI-STEP FORM ===== */
.anfrage {
  padding: 7rem 2rem;
  background: var(--cream);
  position: relative;
}

.anfrage-inner {
  max-width: 820px;
  margin: 0 auto;
}

.anfrage-header {
  text-align: center;
  margin-bottom: 3rem;
}

.anfrage-header .section-tag {
  justify-content: center;
}

.anfrage-header h2 {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--slate-dark);
  margin-top: 0.5rem;
}

.anfrage-header p {
  color: rgba(17,17,17,0.6);
  font-size: 1.05rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.anfrage-card {
  background: var(--white);
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  padding: 3rem;
}

.form-progress {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.progress-step {
  display: flex;
  align-items: center;
  flex: 1;
}

.progress-step:last-child {
  flex: 0 0 auto;
}

.step-dot {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 2px solid rgba(17,17,17,0.15);
  color: rgba(17,17,17,0.4);
  font-weight: 700;
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(17,17,17,0.12);
  margin: 0 0.75rem;
  transition: background 0.3s ease;
}

.progress-step.active .step-dot,
.progress-step.done .step-dot {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

.progress-step.done .step-line {
  background: var(--terracotta);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

.form-step h3 {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 1.5rem;
  color: var(--slate-dark);
  margin-bottom: 0.4rem;
}

.step-hint {
  color: rgba(17,17,17,0.55);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.group-label {
  display: block;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.chip-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid rgba(17,17,17,0.15);
  background: var(--white);
  color: var(--slate-dark);
  padding: 0.85rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.chip span {
  min-width: 0;
}

.chip:hover {
  border-color: var(--terracotta);
}

.chip.selected {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fff;
}

.chip-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--terracotta);
}

.chip.selected .chip-icon {
  color: #fff;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-dark);
  margin-bottom: 0.5rem;
}

.form-field label .req {
  color: var(--terracotta);
}

.form-field input,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid rgba(17,17,17,0.15);
  background: var(--cream);
  padding: 0.9rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--slate-dark);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field.error input,
.form-field.error textarea {
  border-color: var(--terracotta);
  background: #fff;
}

.field-error {
  display: none;
  color: var(--terracotta);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.form-field.error .field-error,
.field-error.show {
  display: block;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.25rem;
}

.form-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.form-btn-primary {
  background: var(--terracotta);
  color: #fff;
}

.form-btn-primary:hover {
  background: var(--slate-dark);
}

.form-btn-ghost {
  background: transparent;
  color: var(--slate-dark);
  border: 1.5px solid rgba(17,17,17,0.2);
  clip-path: none;
}

.form-btn-ghost:hover {
  border-color: var(--slate-dark);
}

.form-btn.hidden {
  visibility: hidden;
}

.form-btn svg {
  width: 18px;
  height: 18px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}

.form-success.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.success-icon svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
}

.form-success h3 {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 1.75rem;
  color: var(--slate-dark);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: rgba(17,17,17,0.6);
  line-height: 1.6;
}

.form-summary {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--slate-dark);
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 6rem 2rem;
  background: var(--slate-dark);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(214,41,41,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(79,82,80,0.1) 0%, transparent 60%);
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.cta-phone:hover {
  opacity: 1;
}

.cta-phone svg {
  width: 20px;
  height: 20px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(214,41,41,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(79,82,80,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-services {
  column-count: 2;
  column-gap: 1.75rem;
}

.footer-services li {
  break-inside: avoid;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 1rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--terracotta-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 1rem;
  color: rgba(255,255,255,0.3);
}

.footer-credit {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-credit:hover {
  color: var(--terracotta-light);
}

.footer-certifications {
  display: flex;
  gap: 1rem;
}

.cert-badge {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding-bottom: 2px;
  position: relative;
}

.cert-badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.cert-badge:hover {
  color: var(--white);
}

.cert-badge:hover::after {
  width: 100%;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    height: 350px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .process-steps::before {
    display: none;
  }

  .testimonial-card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    position: static;
    margin-top: 3rem;
    justify-content: flex-start;
  }

  .hero-stat {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .testimonial-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 8rem 0 2.5rem;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 1.5rem;
  }

  .hero-stats {
    position: static;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin: 2.5rem 1.5rem 0;
  }

  .hero-stat {
    text-align: left;
    flex: 1;
  }

  .hero-stat-num {
    font-size: 1.9rem;
  }

  .hero-stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }

  .services {
    padding: 4rem 1rem;
  }

  .services-grid {
    padding: 0;
    gap: 1rem;
  }

  .section-header {
    padding: 0;
  }

  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .anfrage {
    padding: 4rem 1rem;
  }

  .anfrage-card {
    padding: 1.75rem 1.25rem;
  }

  .chip-grid,
  .chip-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .form-btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.95rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}
  
/* ===== LENIS SMOOTH SCROLL ===== */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }


/* ===== LEGAL PAGES ===== */
.legal {
  padding: 9rem 2rem 5rem;
  background: var(--cream);
  min-height: 70vh;
}
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-breadcrumb { font-size: 0.95rem; color: rgba(17,17,17,0.5); margin-bottom: 1.5rem; }
.legal-breadcrumb a { color: var(--terracotta); text-decoration: none; }
.legal-breadcrumb a:hover { text-decoration: underline; }
.legal h1 {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--slate-dark);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 2.5rem;
}
.legal h2 {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 1.4rem;
  color: var(--slate-dark);
  margin: 2.5rem 0 0.75rem;
}
.legal h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate-dark);
  margin: 1.75rem 0 0.5rem;
}
.legal p, .legal li {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(17,17,17,0.7);
  margin-bottom: 0.9rem;
}
.legal ul { padding-left: 1.25rem; margin-bottom: 0.9rem; }
.legal a { color: var(--terracotta); }
.legal strong { color: var(--slate-dark); }
@media (max-width: 768px) {
  .legal { padding: 7rem 1.25rem 4rem; }
}


/* ===== SERVICE DETAIL ===== */
.svc-hero {
  background: var(--slate-dark);
  padding: 9rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(214,41,41,0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 60%, rgba(79,82,80,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.svc-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.svc-breadcrumb { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin-bottom: 1.75rem; }
.svc-breadcrumb a { color: var(--terracotta-light); text-decoration: none; }
.svc-breadcrumb a:hover { text-decoration: underline; }
.svc-icon-badge {
  width: 64px; height: 64px; background: var(--terracotta);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.svc-icon-badge svg { width: 32px; height: 32px; stroke: #fff; }
.svc-hero h1 {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.svc-hero .svc-sub { font-size: 1.15rem; color: rgba(255,255,255,0.7); max-width: 640px; line-height: 1.7; margin-bottom: 2rem; }
.svc-content { background: var(--cream); padding: 5rem 2rem; }
.svc-inner { max-width: 900px; margin: 0 auto; }
.svc-lead { font-size: 1.2rem; line-height: 1.8; color: var(--slate-dark); margin-bottom: 2.5rem; }
.svc-h2 {
  font-family: 'Encode Sans Semi Condensed', sans-serif; font-size: 1.6rem;
  color: var(--slate-dark); margin: 2.75rem 0 1.25rem; letter-spacing: -0.01em;
}
.svc-list { list-style: none; display: grid; gap: 0.9rem; }
.svc-list.cols-2 { grid-template-columns: 1fr 1fr; }
.svc-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 1.05rem; color: rgba(17,17,17,0.75); line-height: 1.6; }
.svc-list li svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--terracotta); margin-top: 1px; }
.svc-cta-band {
  margin-top: 3.5rem; background: var(--white); padding: 2.75rem 2rem; text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.07);
}
.svc-cta-band h2 { font-family: 'Encode Sans Semi Condensed', sans-serif; font-size: 1.75rem; color: var(--slate-dark); margin-bottom: 0.75rem; }
.svc-cta-band p { color: rgba(17,17,17,0.6); margin-bottom: 1.75rem; line-height: 1.6; }
.svc-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.svc-nav-other { margin-top: 3rem; }
.svc-nav-other a { color: var(--terracotta); text-decoration: none; font-weight: 600; }
.svc-nav-other a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .svc-hero { padding: 7rem 1.25rem 3rem; }
  .svc-content { padding: 3.5rem 1.25rem; }
  .svc-list.cols-2 { grid-template-columns: 1fr; }
  .svc-cta-band { padding: 2rem 1.25rem; }
}


/* ===== SERVICE DETAIL — RICH CONTENT ===== */
.svc-body p { font-size: 1.05rem; line-height: 1.85; color: rgba(17,17,17,0.78); margin-bottom: 1.1rem; }
.svc-steps { list-style: none; counter-reset: step; display: grid; gap: 1rem; margin-top: 0.5rem; }
.svc-steps li { display: flex; gap: 1rem; align-items: flex-start; }
.svc-steps li::before {
  counter-increment: step; content: counter(step); flex-shrink: 0;
  width: 40px; height: 40px; background: var(--terracotta); color: #fff; font-weight: 700;
  font-family: 'Encode Sans Semi Condensed', sans-serif; display: flex; align-items: center; justify-content: center;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.svc-steps li strong { display: block; color: var(--slate-dark); margin-bottom: 0.15rem; font-size: 1.05rem; }
.svc-steps li span { color: rgba(17,17,17,0.72); font-size: 1rem; line-height: 1.6; }
.svc-faq { margin-top: 0.5rem; }
.svc-faq details { border-bottom: 1px solid rgba(17,17,17,0.12); padding: 1.1rem 0; }
.svc-faq summary { font-weight: 600; color: var(--slate-dark); font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary::after { content: '+'; color: var(--terracotta); font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.svc-faq details[open] summary::after { content: '\2013'; }
.svc-faq p { margin-top: 0.75rem; color: rgba(17,17,17,0.72); line-height: 1.75; }

.svc-hero h1 .h1-loc {
  display: block;
  font-size: 0.46em;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0;
  margin-top: 0.5rem;
}

.svc-figure {
  margin: 0 0 2.5rem;
}
.svc-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 14px 44px rgba(0,0,0,0.12);
}
.svc-figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: rgba(17,17,17,0.5);
}

.form-error-msg {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  background: #fdecec;
  border-left: 3px solid var(--terracotta);
  color: #b91c1c;
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-kw {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 1.1rem;
}

.form-consent { margin-top: 1.5rem; margin-bottom: 0; }
.consent-label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 400 !important;
  font-size: 0.9rem;
  color: rgba(17,17,17,0.72);
  cursor: pointer;
  line-height: 1.5;
  margin-bottom: 0 !important;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--terracotta);
  cursor: pointer;
}
.consent-label a { color: var(--terracotta); }
.altcha-widget {
  display: block;
  margin-top: 1.25rem;
  max-width: 300px;
  --altcha-border-radius: 0;
  --altcha-border-width: 1.5px;
  --altcha-color-border: rgba(17,17,17,0.15);
  --altcha-color-text: #111111;
}

/* ===== FLOATING CALL BUTTON ===== */
.call-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1500;
  width: 62px;
  height: 62px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(214,41,41,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: callPulse 2.2s ease-in-out infinite;
}
.call-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(214,41,41,0.55);
}
.call-fab svg { width: 28px; height: 28px; }
@keyframes callPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(214,41,41,0.45), 0 0 0 0 rgba(214,41,41,0.45); }
  50% { box-shadow: 0 8px 24px rgba(214,41,41,0.45), 0 0 0 16px rgba(214,41,41,0); }
}
@media (max-width: 768px) {
  .call-fab { width: 56px; height: 56px; bottom: 1.1rem; right: 1.1rem; }
  .call-fab svg { width: 26px; height: 26px; }
}

/* ===== Inline-Style-Ersatz (strikte CSP ohne style-src 'unsafe-inline') ===== */
.u-hidden { display: none; }
.u-mt-2 { margin-top: 2rem; }
.tag-center { justify-content: center; }
.tag-accent { color: var(--terracotta-light); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.btn-outline-dark { background: transparent; color: var(--slate-dark); border-color: rgba(17,17,17,0.2); }
.err404 { display: flex; align-items: center; justify-content: center; text-align: center; }
.btn-onred { display: inline-flex; color: #fff; }
