/* ============================================================
   MASWWERK360 — Stylesheet
   ============================================================ */

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

:root {
  --bg-dark:      #0C1B2E;
  --bg-card:      #152336;
  --text-dark:    #1A2539;
  --text-muted:   #586876;
  --bg-light:     #F0F5FA;
  --white:        #FFFFFF;
  --green:        #5FAD2F;
  --green-hover:  #70CC38;
  --orange:       #E8762A;
  --orange-hover: #F08A38;
  --blue:         #0A8DC7;
  --blue-dark:    #0770A3;
  --border:       #DDE7F1;

  --radius-sm:  8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 4px 24px rgba(12,27,46,0.08);
  --shadow-card-hover: 0 18px 45px rgba(12,27,46,0.14);

  --font: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --transition-fast: 180ms ease;
  --transition-mid:  220ms ease;
  --transition-slow: 600ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-title--light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin-top: .75rem;
}

/* Animated underline accent */
.accent-line {
  display: block;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 2px;
  margin-top: .9rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--light { background: var(--bg-light); }
.section--dark  { background: var(--bg-dark); }

/* ---------- Scroll Reveal ---------- */
.mw-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.mw-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mw-reveal[data-delay="1"] { transition-delay: 80ms; }
.mw-reveal[data-delay="2"] { transition-delay: 160ms; }
.mw-reveal[data-delay="3"] { transition-delay: 240ms; }
.mw-reveal[data-delay="4"] { transition-delay: 320ms; }
.mw-reveal[data-delay="5"] { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .mw-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.mw-button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              background var(--transition-fast);
}
.mw-button:hover {
  transform: translateY(-1px);
}
.mw-button--primary {
  background: var(--orange);
  color: var(--white);
}
.mw-button--primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 10px 28px rgba(232,118,42,.35);
}
.mw-button--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.mw-button--outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.mw-button--blue {
  background: var(--blue);
  color: var(--white);
}
.mw-button--blue:hover {
  background: var(--blue-dark);
  box-shadow: 0 10px 28px rgba(8,160,220,.28);
}
.mw-button--ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: .55rem 1.2rem;
  font-size: .88rem;
}
.mw-button--ghost:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(127,184,63,.24);
}

@media (prefers-reduced-motion: reduce) {
  .mw-button { transition: none; transform: none; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 300ms ease, padding 300ms ease, backdrop-filter 300ms ease;
}
.nav.scrolled {
  background: rgba(11,15,16,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 30px;
  width: auto;
  display: block;
  background: rgba(255,255,255,0.96);
  padding: 4px 10px;
  border-radius: 6px;
}
@media (max-width: 640px) {
  .nav__logo-img { height: 26px; padding: 3px 8px; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color 200ms ease;
}
.nav__links a:hover { color: var(--white); }
.nav__cta { margin-left: 1rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(11,15,16,.97);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-direction: column;
  gap: 1.25rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

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

/* Blueprint grid background */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127,184,63,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,184,63,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Ambient glow blobs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero__glow--green {
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: rgba(127,184,63,.1);
}
.hero__glow--blue {
  width: 500px; height: 500px;
  bottom: -100px; left: -80px;
  background: rgba(8,160,220,.08);
}

/* Parallax image panel */
.hero__image-wrap {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}
.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, rgba(11,15,16,.55) 50%, rgba(11,15,16,.2) 100%);
}
.hero__image {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

/* Fallback gradient if no image */
.hero__image-placeholder {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg,
    rgba(35,47,47,.95) 0%,
    rgba(127,184,63,.12) 50%,
    rgba(8,160,220,.15) 100%);
  border-left: 1px solid rgba(127,184,63,.12);
}

/* Drone SVG wireframe illustration in placeholder */
.hero__wireframe {
  position: absolute;
  top: 50%; right: 8%;
  transform: translateY(-50%);
  width: 45%;
  opacity: .18;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 4rem;
  width: 100%;
}
.hero__inner {
  max-width: 600px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(127,184,63,.12);
  border: 1px solid rgba(127,184,63,.25);
  color: var(--green);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__badge-dot { animation: none; }
}

.hero__headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.hero__headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 50ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.35);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line { animation: none; }
}

@media (max-width: 768px) {
  .hero__image-wrap,
  .hero__image-placeholder { display: none; }
  .hero__inner { max-width: 100%; }
  .hero__headline { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .hero__sub { font-size: 1rem; }
  .hero__scroll { display: none; }
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.trust__item:last-child { border-right: none; }
.trust__icon {
  width: 44px; height: 44px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.trust__icon svg { width: 22px; height: 22px; }
.trust__label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .trust__item:nth-child(3) { border-right: none; }
  .trust__item:nth-child(4) { border-top: 1px solid var(--border); }
  .trust__item:nth-child(5) { border-top: 1px solid var(--border); border-right: none; }
}
@media (max-width: 560px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .trust__item:nth-child(2n) { border-right: none; }
  .trust__item:nth-child(1), .trust__item:nth-child(2) { border-top: none; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services__header .section-label,
.services__header .accent-line { margin: 0 auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mw-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-mid),
              box-shadow var(--transition-mid),
              border-color var(--transition-mid);
}
.mw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--green), var(--blue));
  border-radius: 0 0 2px 2px;
  transition: height 250ms ease;
}
.mw-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--green);
}
.mw-card:hover::before { height: 100%; }

.mw-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-mid);
}
.mw-card:hover .mw-card__icon { transform: scale(1.05); }
.mw-card__icon--green { background: rgba(127,184,63,.1); color: var(--green); }
.mw-card__icon--blue  { background: rgba(8,160,220,.1);  color: var(--blue); }
.mw-card__icon svg { width: 26px; height: 26px; }

.mw-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.mw-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.mw-card__link {
  margin-top: .5rem;
}

@media (prefers-reduced-motion: reduce) {
  .mw-card, .mw-card__icon { transition: none; transform: none; }
  .mw-card::before { transition: none; }
}

@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.process__glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(127,184,63,.06);
  filter: blur(100px);
  top: -100px; right: -100px;
  pointer-events: none;
}
.process__header {
  text-align: center;
  margin-bottom: 4rem;
}
.process__header .accent-line { margin: 0 auto; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting line between steps */
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: .35;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.process__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  background: var(--bg-dark);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: background var(--transition-mid), color var(--transition-mid);
}
.process__step.is-visible .process__num {
  background: var(--green);
  color: var(--white);
}
.process__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.process__step-desc {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .process__num { transition: none; }
}

@media (max-width: 768px) {
  .process__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process__steps::before {
    top: 0; bottom: 0;
    left: 27px; right: auto;
    width: 1px; height: auto;
  }
  .process__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    padding: 0;
  }
  .process__num { flex-shrink: 0; margin-bottom: 0; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--blue-dark) 100%);
  padding: 4rem 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.cta-banner__sub {
  color: rgba(255,255,255,.75);
  margin-top: .5rem;
  font-size: 1rem;
}
.cta-banner .mw-button--primary {
  background: var(--white);
  color: var(--orange);
  flex-shrink: 0;
}
.cta-banner .mw-button--primary:hover {
  background: var(--bg-light);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}

/* ============================================================
   CONTACT / ANFRAGE
   ============================================================ */
.contact { background: var(--bg-light); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact__info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .75rem;
}
.contact__info-desc {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: var(--text-dark);
}
.contact__detail svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* Form */
.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.form__group:last-child { margin-bottom: 0; }
.form__label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .02em;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  outline: none;
  appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(127,184,63,.14);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364706D' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  cursor: pointer;
}
.form__check input { margin-top: 2px; accent-color: var(--green); }
.form__botcheck { display: none; }
.form__submit { width: 100%; justify-content: center; padding: .95rem; font-size: 1rem; }

@media (max-width: 840px) {
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .form { padding: 1.5rem; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--bg-dark);
  padding: 3.5rem 0;
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter__text-label { color: var(--green); }
.newsletter__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.newsletter__sub { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: .3rem; }
.newsletter__form {
  display: flex;
  gap: .75rem;
  flex: 1;
  min-width: 280px;
  max-width: 440px;
}
.newsletter__input {
  flex: 1;
  padding: .75rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-family: var(--font);
  font-size: .92rem;
  outline: none;
  transition: border-color 200ms ease;
}
.newsletter__input::placeholder { color: rgba(255,255,255,.35); }
.newsletter__input:focus { border-color: var(--green); }
.newsletter__soon {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1.1rem 1.5rem;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  line-height: 1.5;
}
.newsletter__soon svg { flex-shrink: 0; color: var(--green); }

@media (max-width: 640px) {
  .newsletter__form { max-width: 100%; width: 100%; }
  .newsletter__inner { flex-direction: column; align-items: flex-start; }
  .newsletter__soon { width: 100%; }
}

/* ============================================================
   PRICES
   ============================================================ */
.prices__header { text-align: center; margin-bottom: 3rem; }
.prices__header .accent-line { margin: 0 auto; }
.prices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid), border-color var(--transition-mid);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--blue);
}
.price-card--featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, rgba(232,118,42,.04), var(--white));
  position: relative;
}
.price-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 99px;
}
.price-card__name {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.price-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.price-card__price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-card__desc { font-size: .88rem; color: var(--text-muted); }
.price-card__divider { height: 1px; background: var(--border); }
.price-card__feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-dark);
}
.price-card__feature svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.price-card .mw-button { width: 100%; justify-content: center; margin-top: auto; padding-top: 1.25rem; }
@media (max-width: 840px) { .prices__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
@media (prefers-reduced-motion: reduce) { .price-card { transition: none; transform: none; } }

/* ============================================================
   STATS / ZAHLEN
   ============================================================ */
.stats {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 3.5rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat:last-child { border-right: none; }
.stat__value {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  line-height: 1;
  margin-bottom: .6rem;
}
.stat__num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.stat__suffix {
  font-size: clamp(.9rem, 1.8vw, 1.15rem);
  font-weight: 600;
  color: rgba(127,184,63,.7);
}
.stat__label {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
}

/* ============================================================
   TESTIMONIALS / REFERENZEN
   ============================================================ */
.testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials__header .accent-line { margin: 0 auto; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial__stars {
  color: #F5A623;
  font-size: 1.1rem;
  letter-spacing: .1em;
}

.testimonial__text {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
}

.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), rgba(127,184,63,.5));
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial__avatar--blue {
  background: linear-gradient(135deg, var(--blue), rgba(8,160,220,.5));
}

.testimonial__name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial__role {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .1rem;
}

/* Certification badges */
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: .5rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
}
.cert-badge svg {
  width: 16px; height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial { transition: none; transform: none; }
}

/* ============================================================
   FORM ENHANCEMENTS
   ============================================================ */
.form__optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: .78rem;
}

.contact__phone {
  font-weight: 700;
  color: var(--green);
  font-size: 1.05rem;
}

/* Inline validation states */
.form__input.is-valid,
.form__select.is-valid,
.form__textarea.is-valid {
  border-color: var(--green);
}
.form__input.is-invalid,
.form__select.is-invalid,
.form__textarea.is-invalid {
  border-color: #E05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,.12);
}
.form__check.has-error {
  color: #B42323;
}
.form__check input.is-invalid {
  outline: 2px solid #E05252;
  outline-offset: 2px;
}
.form__error {
  font-size: .78rem;
  color: #E05252;
  margin-top: -.6rem;
  margin-bottom: .4rem;
  display: none;
}
.form__group.has-error .form__error { display: block; }

/* Animated success checkmark */
.form__success {
  display: none;
  text-align: center;
  padding: 2.5rem 2rem;
}
.form__success svg { width: 56px; height: 56px; margin: 0 auto 1rem; }
.form__success--show { display: block; animation: successFadeIn 400ms ease forwards; }
@keyframes successFadeIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   CTA BUTTON PULSE ANIMATION
   ============================================================ */
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,118,42,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(232,118,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,118,42,0); }
}
.mw-button--primary.pulse-cta {
  animation: ctaPulse 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .mw-button--primary.pulse-cta { animation: none; }
}

/* ============================================================
   IMPRESSUM / DATENSCHUTZ PAGES
   ============================================================ */
.legal {
  padding-top: 9rem;
  padding-bottom: 5rem;
}
.legal h1 { font-size: 2rem; font-weight: 800; margin-bottom: 2rem; color: var(--text-dark); }
.legal h2 { font-size: 1.15rem; font-weight: 700; margin: 2rem 0 .5rem; color: var(--text-dark); }
.legal p, .legal address { font-size: .95rem; color: var(--text-muted); line-height: 1.75; font-style: normal; margin-bottom: .5rem; }
.legal a { color: var(--blue); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 0 1.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__brand-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 28ch;
}
.footer__col-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color 180ms ease;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.28);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  transition: color 180ms ease;
}
.footer__legal a:hover { color: rgba(255,255,255,.75); }

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 1rem; right: 1rem;
  z-index: 90;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: .9rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 8px 32px rgba(232,118,42,.38);
  transition: opacity 300ms ease, transform 300ms ease;
}
.sticky-cta.hidden { opacity: 0; transform: translateY(8px); pointer-events: none; }
@media (max-width: 640px) { .sticky-cta { display: block; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Success / error states */
.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--green);
  font-weight: 600;
}
.form__success svg { width: 48px; height: 48px; margin: 0 auto 1rem; }
