/* ============================================================
   LUMA SOLUTIONS — Shared Stylesheet
   ============================================================ */

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

:root {
  --orange:       #f97316;
  --orange-dark:  #ea6c0a;
  --orange-light: rgba(249,115,22,0.12);
  --dark:         #0d1117;
  --gray-800:     #161b22;
  --gray-700:     #21262d;
  --gray-600:     #8b949e;
  --gray-400:     #6e7681;
  --gray-100:     #161b22;
  --gray-50:      #0d1117;
  --white:        #f0f6fc;
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(249,115,22,0.4);
  --text-body:    #c9d1d9;
  --text-muted:   #8b949e;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.5);
  --radius:       10px;
  --radius-lg:    16px;
  --transition:   0.2s ease;
  --max-w:        1180px;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--alt { background: var(--gray-800); }
.section--dark { background: #080c10; color: var(--white); }
.section--orange { background: var(--orange); color: var(--white); }

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section--dark .section__label,
.section--orange .section__label { color: rgba(255,255,255,0.7); }

.section__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.section--dark .section__heading,
.section--orange .section__heading { color: var(--white); }

.section__intro {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section__intro .section__label { display: block; }

.section__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.section--dark .section__lead,
.section--orange .section__lead { color: rgba(255,255,255,0.75); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.35); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ======================================
   HEADER / NAV
   ====================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(13,17,23,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav__logo img { height: 36px; width: auto; object-fit: contain; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.nav__cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ======================================
   PAGE HERO (inner pages)
   ====================================== */
.page-hero {
  background: var(--gray-800);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
}
.page-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.page-hero__h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ======================================
   HOME HERO
   ====================================== */
.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(249,115,22,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(249,115,22,0.08) 0%, transparent 60%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero__h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-stat__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.trust-stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
}
.hero__visual {
  position: relative;
}
.hero__mockup {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup__dot:nth-child(1) { background: #ff5f57; }
.mockup__dot:nth-child(2) { background: #febc2e; }
.mockup__dot:nth-child(3) { background: #28c840; }
.mockup__url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.mockup__screen {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 1.25rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mockup__line {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.08);
}
.mockup__line--orange { background: rgba(249,115,22,0.4); width: 40%; }
.mockup__line--title { height: 20px; width: 70%; background: rgba(255,255,255,0.15); }
.mockup__line--short { width: 50%; }
.mockup__line--xs { width: 30%; }
.mockup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.mockup__card {
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 6px;
  height: 60px;
}
.mockup__btn {
  height: 32px;
  width: 120px;
  border-radius: 6px;
  background: var(--orange);
  opacity: 0.8;
  margin-top: auto;
}

/* ======================================
   LEISTUNGEN TEASER / CARDS
   ====================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--gray-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.service-card--featured::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-card--featured .service-card__icon { background: rgba(249,115,22,0.15); }
.service-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  background: rgba(249,115,22,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-card--featured p { color: rgba(255,255,255,0.6); }
.service-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin: 1.25rem 0 0.25rem;
  line-height: 1;
}
.service-card__price span { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.service-card ul {
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-card ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.service-card--featured ul li { color: rgba(255,255,255,0.7); }
.service-card ul li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ======================================
   REFERENZEN / PORTFOLIO
   ====================================== */
.referenzen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.ref-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.ref-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ref-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.ref-card__body { padding: 1.5rem; }
.ref-card__body h3 { color: var(--white); }
.ref-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.ref-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--white); }
.ref-card p { font-size: 0.875rem; color: var(--text-muted); }
.ref-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.ref-tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  background: var(--gray-100);
  color: var(--text-muted);
  border-radius: 100px;
}

/* ======================================
   PROCESS STEPS
   ====================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); }

/* ======================================
   USP / VORTEILE
   ====================================== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.usp-item { text-align: center; }
.usp-item__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}
.usp-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.usp-item p { font-size: 0.875rem; color: var(--text-muted); }
.section--dark .usp-item h3 { color: var(--white); }
.section--dark .usp-item p { color: rgba(255,255,255,0.55); }

/* ======================================
   TEAM
   ====================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--gray-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--orange);
}
.team-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-card__role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.team-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ======================================
   VALUES
   ====================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.value-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--gray-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.value-item__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.value-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ======================================
   KONTAKT FORM
   ====================================== */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.kontakt-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.25rem; }
.kontakt-wege { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.kontakt-weg {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gray-800);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.kontakt-weg:hover { border-color: var(--orange); background: var(--orange-light); }
.kontakt-weg__icon { font-size: 1.25rem; flex-shrink: 0; }
.kontakt-weg__label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.1rem; }
.kontakt-weg__val { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.form-wrap {
  background: var(--gray-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-wrap h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-wrap p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { margin-bottom: 1.25rem; }
.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 0.45rem;
}
.form__opt { font-weight: 400; color: var(--text-muted); font-size: 0.78rem; }
.form__input, .form__textarea, .form__select {
  width: 100%;
  background: var(--gray-800);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
  background: var(--gray-800);
}
.form__select option {
  background: #1c2128;
  color: #e6edf3;
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__error {
  display: block;
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 0.3rem;
  min-height: 1em;
}
.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form__checkbox-label input { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--orange); }
.form__link { color: var(--orange); }
.form__success {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  color: #166534;
  font-size: 0.9rem;
  text-align: center;
}

/* ======================================
   CTA BAND
   ====================================== */
.cta-band { background: var(--orange); padding: 4.5rem 0; }
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.cta-band p { font-size: 1rem; color: rgba(255,255,255,0.75); }
.cta-band .btn--outline-white { border-color: rgba(255,255,255,0.6); }
.cta-band .btn--dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.cta-band .btn--dark:hover { background: var(--gray-800); }

/* ======================================
   IMPRESSUM / LEGAL
   ====================================== */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin: 2.5rem 0 1rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.legal-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.75rem; }
.legal-content a { color: var(--orange); }

/* ======================================
   FOOTER
   ====================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand img { height: 32px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.85; }
.footer__brand p { font-size: 0.875rem; line-height: 1.6; max-width: 240px; }
.footer__wordmark {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.footer__brand--text p:last-child { color: rgba(255,255,255,0.62); }
.footer__col h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a { font-size: 0.875rem; transition: color var(--transition); }
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.82rem; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.82rem; transition: color var(--transition); }
.footer__legal a:hover { color: var(--orange); }

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .referenzen-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .nav__cta { display: none; }
  .main-nav.is-open {
    display: block;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--gray-800);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    z-index: 400;
  }
  .main-nav.is-open ul { flex-direction: column; gap: 0; }
  .main-nav.is-open li { border-bottom: 1px solid var(--border); }
  .main-nav.is-open a { display: block; padding: 0.8rem 0; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }

  .services-grid, .referenzen-grid, .team-grid, .values-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .kontakt-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form__row { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .section { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ---- Inter — lokal gehostet (kein Google Fonts, DSGVO-konform) ---- */
@font-face { font-family: 'Inter'; src: url('Assets/fonts/inter-v20-latin-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('Assets/fonts/inter-v20-latin-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('Assets/fonts/inter-v20-latin-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('Assets/fonts/inter-v20-latin-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('Assets/fonts/inter-v20-latin-800.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('Assets/fonts/inter-v20-latin-900.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }

.luma-site .main-nav a,
.luma-site .footer__col a,
.luma-site .btn,
.luma-site .service-card,
.luma-site .ref-card,
.luma-site .value-item,
.luma-site .kontakt-weg,
.luma-site .process-step {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, color 220ms ease, background-color 220ms ease;
}
.luma-site .main-nav a::after {
  transform-origin: left center;
}
.luma-site .main-nav a:hover::after,
.luma-site .main-nav a.active::after {
  animation: lumaLineGrow 320ms ease forwards;
}
.luma-site .btn:hover {
  transform: translateY(-1px);
}
.luma-site .service-card:hover,
.luma-site .ref-card:hover,
.luma-site .value-item:hover,
.luma-site .kontakt-weg:hover {
  transform: translateY(-3px);
}
.luma-site .section,
.luma-site .page-hero,
.luma-site .cta-band {
  position: relative;
}
.luma-site .section::before,
.luma-site .page-hero::before,
.luma-site .cta-band::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.16), transparent);
  pointer-events: none;
}
.luma-site .page-hero::after,
.luma-site .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(249,115,22,0.08) 0%, transparent 24%);
  pointer-events: none;
}
.luma-home .hero-premium__line,
.luma-home .hero-premium__title,
.luma-home .hero-premium__text,
.luma-home .hero-premium__actions,
.luma-home .hero__trust,
.luma-home .hero-premium__visual {
  opacity: 0;
}
.luma-home.motion-ready .hero-premium__line { animation: lumaPrecisionIn 560ms ease forwards; animation-delay: 100ms; }
.luma-home.motion-ready .hero-premium__title { animation: lumaPrecisionIn 720ms ease forwards; animation-delay: 180ms; }
.luma-home.motion-ready .hero-premium__text { animation: lumaPrecisionIn 620ms ease forwards; animation-delay: 320ms; }
.luma-home.motion-ready .hero-premium__actions { animation: lumaPrecisionIn 560ms ease forwards; animation-delay: 430ms; }
.luma-home.motion-ready .hero__trust { animation: lumaTrustIn 720ms ease forwards; animation-delay: 520ms; }
.luma-home.motion-ready .hero-premium__visual { animation: lumaPanelIn 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: 260ms; }
.luma-site .luma-reveal {
  opacity: 0;
  transform: translateY(14px);
}
.luma-site .luma-reveal.is-visible {
  animation: lumaSectionIn 620ms ease forwards;
  animation-delay: var(--luma-delay, 0ms);
}
.luma-site .hero__mockup {
  position: relative;
  overflow: hidden;
}
.luma-site .hero__mockup::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -35%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.08), transparent);
  animation: lumaSweep 7s linear infinite;
}
@keyframes lumaLineGrow {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes lumaPrecisionIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lumaPanelIn {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lumaTrustIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lumaSectionIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lumaSweep {
  from { transform: translateX(0); }
  to { transform: translateX(520%); }
}
@media (prefers-reduced-motion: reduce) {
  .luma-home .hero-premium__line,
  .luma-home .hero-premium__title,
  .luma-home .hero-premium__text,
  .luma-home .hero-premium__actions,
  .luma-home .hero__trust,
  .luma-home .hero-premium__visual,
  .luma-site .luma-reveal,
  .luma-site .hero__mockup::before {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
