/* ============================================
   Q-technologies GmbH – Modern Website Styles
   ============================================ */

:root {
  /* Brand colors (from logo) */
  --brand-orange: #D85A1B;
  --brand-orange-dark: #B84A14;
  --brand-orange-light: #FF7A3D;
  --brand-slate: #3C4D58;
  --brand-slate-dark: #1F2A33;

  /* Neutrals */
  --color-dark: #0F172A;
  --color-darker: #07101F;
  --color-text: #1F2A33;
  --color-text-muted: #5A6B78;
  --color-light: #F8FAFC;
  --color-border: #E2E8F0;
  --color-white: #FFFFFF;

  /* Glass / overlays */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);

  /* Layout */
  --max-width: 1240px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-orange: 0 10px 30px rgba(216, 90, 27, 0.25);

  /* Transitions */
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-orange-dark); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--brand-orange-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(216, 90, 27, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.btn-dark:hover {
  background: var(--brand-slate-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
  transition: padding 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img {
  height: 68px;
  width: auto;
  transition: height 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Larger logo at top; compacts into header on first scroll */
.site-header .nav { padding: 20px 0; }
.site-header.is-scrolled .nav { padding: 14px 0; }
.site-header.is-scrolled .nav-brand img { height: 44px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: inline-block;
  padding: 10px 16px;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--brand-orange);
  background: rgba(216, 90, 27, 0.07);
}
.nav-cta {
  margin-left: 12px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  position: absolute;
  transition: all 250ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 16, 31, 0.92) 0%, rgba(15, 23, 42, 0.78) 55%, rgba(216, 90, 27, 0.55) 130%),
    url('../img/hero-laser.webp') center / cover no-repeat;
  color: var(--color-white);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(56, 189, 248, 0.18), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(216, 90, 27, 0.15);
  border: 1px solid rgba(216, 90, 27, 0.4);
  color: #FFB585;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 12px var(--brand-orange);
}
.hero h1 {
  color: var(--color-white);
  margin: 22px 0 18px;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
}
.hero h1 .accent {
  background: linear-gradient(120deg, #FF8A42, #FFB585);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-visual-frame img {
  border-radius: var(--radius-lg);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 580px;
}
.hero-stat .value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.hero-stat .value sup {
  color: var(--brand-orange-light);
  font-size: 0.6em;
  margin-left: 2px;
}
.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

/* ---------- Trust bar (TÜV / ISO) ---------- */
.trust-bar {
  padding: 36px 0;
  background: var(--color-light);
  border-bottom: 1px solid var(--color-border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 28px;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
  color: var(--color-text);
}
.trust-logo {
  height: 72px;
  width: auto;
  flex-shrink: 0;
}
.trust-text {
  flex: 1;
  min-width: 0;
}
.trust-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 2px;
}
.trust-text > span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.trust-text > span strong {
  display: inline;
  color: var(--brand-orange);
  font-family: inherit;
  font-size: inherit;
  margin: 0;
}
.trust-arrow {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.trust-item:hover .trust-arrow { transform: translateX(4px); }

/* ---------- Compact page header (subpages) ---------- */
.page-header {
  padding: 160px 0 80px;
  background:
    linear-gradient(135deg, rgba(7, 16, 31, 0.93) 0%, rgba(15, 23, 42, 0.85) 100%),
    url('../img/hero-layers.webp') center / cover no-repeat;
  color: var(--color-white);
  text-align: center;
}
.page-header h1 { color: var(--color-white); margin-bottom: 12px; }
.page-header .breadcrumb {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  display: inline-flex;
  gap: 8px;
}
.page-header .breadcrumb a { color: rgba(255, 255, 255, 0.8); }
.page-header .breadcrumb a:hover { color: var(--brand-orange-light); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-eyebrow {
  display: inline-block;
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.section-title {
  max-width: 720px;
  margin-bottom: 16px;
}
.section-intro {
  max-width: 720px;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 64px;
}
.section-head-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bg-light { background: var(--color-light); }
.bg-dark { background: var(--color-dark); color: var(--color-white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--color-white); }
.bg-dark .section-intro { color: rgba(255, 255, 255, 0.7); }

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(216, 90, 27, 0.12), rgba(216, 90, 27, 0.04));
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--brand-orange);
  color: var(--color-white);
  transform: rotate(-4deg) scale(1.05);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Feature row (split image + text) ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.feature-img img { width: 100%; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.feature-list li {
  position: relative;
  padding: 14px 0 14px 40px;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(216, 90, 27, 0.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D85A1B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Stats banner ---------- */
.stats-banner {
  background:
    linear-gradient(135deg, rgba(7, 16, 31, 0.93) 0%, rgba(15, 23, 42, 0.88) 100%),
    url('../img/hero-robotics.webp') center / cover no-repeat fixed;
  color: var(--color-white);
  padding: 96px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-card {
  padding: 24px 12px;
}
.stat-card .number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .number .unit {
  color: var(--brand-orange-light);
  font-size: 0.5em;
  margin-left: 4px;
  font-weight: 600;
}
.stat-card .label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ---------- Industries (4×4 image grid) ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.industry-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.industry-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-dark);
}
.industry-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.55) 100%);
  pointer-events: none;
  transition: opacity var(--transition);
}
.industry-card:hover .industry-card-media::after {
  background: linear-gradient(180deg, transparent 30%, rgba(216, 90, 27, 0.35) 100%);
}
.industry-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card:hover .industry-card-media img {
  transform: scale(1.06);
}
.industry-card-label {
  margin: 0;
  padding: 14px 16px 16px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: color var(--transition);
}
.industry-card:hover .industry-card-label {
  color: var(--brand-orange);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "Q";
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28rem;
  color: rgba(255, 255, 255, 0.07);
  bottom: -120px;
  right: -40px;
  line-height: 1;
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 1.05rem;
}
.cta-banner .actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-self: end;
}
.cta-banner .btn-light {
  background: var(--color-white);
  color: var(--brand-orange);
}
.cta-banner .btn-light:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ---------- Contact / Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}
label .req { color: var(--brand-orange); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(216, 90, 27, 0.15);
}
textarea { resize: vertical; min-height: 140px; }
.checkbox-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 16px;
  padding: 14px 0 4px;
}
.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.92rem;
}
.checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--brand-orange);
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 8px 0 20px;
}
.privacy-check input { margin-top: 3px; accent-color: var(--brand-orange); }

.contact-info { padding: 0; }
.contact-info h3 { margin-top: 0; }
.contact-block {
  background: var(--color-white);
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.contact-block h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}
.contact-block p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-block .contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.contact-block .contact-line svg {
  width: 16px; height: 16px;
  color: var(--brand-orange);
  flex-shrink: 0;
}
.contact-block a { font-weight: 500; color: var(--color-text); }
.contact-block a:hover { color: var(--brand-orange); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-darker);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.site-footer ul a:hover { color: var(--brand-orange-light); }
.footer-contact-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact-line svg {
  width: 18px; height: 18px;
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.6); }
.footer-bottom a:hover { color: var(--brand-orange-light); }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.map-wrap iframe { display: block; width: 100%; border: 0; height: 420px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

/* ---------- Document content (impressum / datenschutz) ---------- */
.doc-content {
  max-width: 820px;
  margin: 0 auto;
}
.doc-content h2 { margin-top: 56px; }
.doc-content h3 { margin-top: 36px; }
.doc-content p, .doc-content ul { color: var(--color-text-muted); }
.doc-content ul { padding-left: 22px; }
.doc-content ul li { margin-bottom: 6px; }

/* ---------- Form toast ---------- */
.form-toast {
  display: none;
  padding: 14px 18px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #047857;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.form-toast.is-error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.3);
  color: #B91C1C;
}
.form-toast.is-visible { display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner .actions { justify-self: start; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 720px) {
  section { padding: 72px 0; }
  .hero { padding: 130px 0 64px; min-height: auto; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-white);
    padding: 16px;
    gap: 0;
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu li { width: 100%; }
  .nav-menu a { padding: 14px; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header .nav { padding: 14px 0; }
  .site-header .nav-brand img { height: 52px; }
  .site-header.is-scrolled .nav-brand img { height: 40px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-item { flex-direction: column; text-align: center; gap: 14px; padding: 22px; }
  .trust-arrow { display: none; }
  .trust-logo { height: 64px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .industry-card-label { font-size: 0.8rem; padding: 12px 14px 14px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: flex-start; }
  .cta-banner { padding: 40px 28px; }
  .cta-banner::before { font-size: 18rem; bottom: -60px; right: -20px; }
}
