:root {
  --text: #ffffff;
  --text-soft: #d8dee7;
  --line: rgba(255, 255, 255, 0.08);
  --orange: #ff6a00;
  --orange-2: #ff8c1f;
  --orange-3: #ff4e00;
  --shadow-orange: 0 12px 28px rgba(255, 106, 0, 0.16);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1240px;
  --header-height: 88px;
  --section-y: clamp(4.4rem, 7vw, 6.4rem);
  --section-y-compact: clamp(2.8rem, 5vw, 4rem);
  --gap: clamp(1rem, 2vw, 1.5rem);
  --transition-fast: 180ms ease;
  --transition: 280ms ease;
  --transition-slow: 620ms cubic-bezier(0.22, 1, 0.36, 1);
  --mirror-angle: 18deg;
  --mirror-start-x: -260%;
  --mirror-end-x: 560%;
  --mirror-start-y: -8%;
  --mirror-end-y: 8%;
  --mirror-duration: 2200ms;
  --mirror-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,106,0,0.11), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(255,106,0,0.07), transparent 18%),
    linear-gradient(180deg, #06080b 0%, #0b0f15 24%, #11161e 52%, #171d27 76%, #0f131a 100%);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.85rem 1rem;
  background: #fff;
  color: #000;
  border-radius: 12px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.site-bg__glow,
.site-bg__mesh {
  position: absolute;
  inset: 0;
}

.site-bg__glow--left {
  background: radial-gradient(circle at 16% 24%, rgba(255,106,0,0.12), transparent 24%);
}

.site-bg__glow--right {
  background: radial-gradient(circle at 82% 28%, rgba(255,106,0,0.08), transparent 24%);
}

.site-bg__mesh {
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.26), rgba(0,0,0,0.06));
}

.section {
  position: relative;
  padding: var(--section-y) 0;
}

.section-first {
  padding-top: clamp(5rem, 8vw, 7rem);
}

.section-compact {
  padding: var(--section-y-compact) 0;
}

.section-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0.004)),
    radial-gradient(circle at 18% 44%, rgba(255,106,0,0.03), transparent 18%);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(9,12,17,0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(8,11,16,0.84);
  border-color: rgba(255,255,255,0.07);
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-logo {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255,106,0,0.08));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul a {
  color: #eef2f7;
  font-size: 0.96rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.main-nav ul a:hover {
  color: var(--orange-2);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* BUTTONS */
.btn {
  --mx: 50%;
  --my: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 320ms ease, background 320ms ease, border-color 320ms ease, color 320ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02)),
    linear-gradient(135deg, #ff7b14 0%, #ff6510 48%, #eb4d00 100%);
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -10px 18px rgba(0,0,0,0.08),
    var(--shadow-orange);
}

.btn-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -10px 18px rgba(0,0,0,0.08),
    0 16px 34px rgba(255,106,0,0.18);
}

.btn-header {
  min-height: 46px;
  padding-inline: 1.05rem;
  gap: 0.5rem;
}

.btn-header::before {
  content: "\f135";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  opacity: 1;
  background: none;
  transform: none;
  filter: none;
  z-index: 4;
  pointer-events: none;
}

.btn-full {
  width: 100%;
}

/* HERO */
.home-hero {
  overflow: clip;
  padding-top: clamp(4.8rem, 7vw, 6.8rem);
  padding-bottom: clamp(4.5rem, 7vw, 6.2rem);
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  gap: clamp(2.2rem, 5vw, 5rem);
  align-items: center;
}

.home-hero-copy {
  max-width: 760px;
}

.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--orange-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 0 0 1.35rem;
  max-width: 13.5ch;
  font-size: clamp(2.45rem, 4.85vw, 4.75rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-text {
  margin: 0 0 0.7rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  max-width: 62ch;
}

.hero-text-strong {
  margin-top: 2.1rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.85rem;
}

.home-hero-visual {
  justify-self: end;
  width: min(100%, 430px);
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 34px;
  padding: clamp(0.7rem, 1vw, 0.9rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    radial-gradient(circle at 50% 42%, rgba(255,106,0,0.18), transparent 52%);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 28px 70px rgba(0,0,0,0.30);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
}

/* GRIDS */
.services-grid,
.contact-grid,
.ideas-grid,
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
  align-items: stretch;
}

.contact-grid,
.ideas-grid,
.footer-grid {
  align-items: center;
}

.section-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: clamp(1.6rem, 3vw, 2.2rem);
}

.section-heading h2,
.contact-content h2,
.ideas-content h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

/* CARDS */
.service-card,
.quote-card,
.social-links a {
  --mx: 50%;
  --my: 50%;
  --mirror-angle: 18deg;
  --mirror-start-x: -260%;
  --mirror-end-x: 560%;
  --mirror-start-y: -8%;
  --mirror-end-y: 8%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-card {
  grid-column: span 6;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 2vw, 1.6rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03)),
    radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255,106,0,0.05), transparent 28%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(255,255,255,0.02),
    0 22px 52px rgba(0,0,0,0.20);
  transition: transform var(--transition-fast), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,106,0,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 24px 54px rgba(0,0,0,0.24);
}

.service-card-centered {
  grid-column: 4 / span 6;
}

.service-icon {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02)),
    linear-gradient(135deg, #ff7b14 0%, #ff6510 48%, #eb4d00 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 14px 26px rgba(255,106,0,0.14);
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0 0 0.6rem;
  color: var(--text-soft);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--orange-2);
  font-weight: 800;
}

.service-link::after {
  content: "→";
  font-weight: 900;
}

/* WARUM WIR */
.reasons .section-heading {
  text-align: center;
}

.single-card-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  margin-inline: auto;
}

.single-card-wrap .service-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(88px, 0.16fr) minmax(0, 1fr);
  column-gap: clamp(1.2rem, 3vw, 2.4rem);
  row-gap: 0.55rem;
  align-items: center;
  padding: clamp(1.7rem, 3vw, 2.55rem);
  border-radius: 32px;
}

.reasons .service-icon {
  grid-row: 1 / span 4;
  width: clamp(74px, 7vw, 92px);
  height: clamp(74px, 7vw, 92px);
  border-radius: 24px;
  margin: 0;
}

/* QUOTE */
.quote-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.45rem, 3vw, 2rem);
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03)),
    radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 32%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 22px 52px rgba(0,0,0,0.20);
}

.quote-card p {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}

.quote-card footer,
.ideas-content p,
.footer-brand p,
.footer-company li,
.footer-company a {
  color: var(--text-soft);
}

/* CONTACT / IDEAS / FOOTER */
.contact-image { grid-column: span 5; }
.contact-content { grid-column: span 7; }
.ideas-content, .ideas-image { grid-column: span 6; }
.footer-brand, .footer-company, .footer-social { grid-column: span 4; }

.contact-image img,
.ideas-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 28px 70px rgba(0,0,0,0.30);
}

.contact-form { margin-top: 1.15rem; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-row { display: grid; gap: 0.45rem; }
.form-row-full { grid-column: 1 / -1; }

.form-row label {
  color: #f1f3f7;
  font-size: 0.94rem;
  font-weight: 600;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.045);
  color: #fff;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  outline: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255,255,255,0.46);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(255,138,29,0.65);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 4px rgba(255,106,0,0.09);
}

.form-row input.is-invalid,
.form-row textarea.is-invalid {
  border-color: rgba(255,106,106,0.72);
}

.checkbox-label {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--text-soft);
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.field-error {
  min-height: 1rem;
  font-size: 0.84rem;
  color: #ffb0b0;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  font-weight: 600;
  color: #a2efbf;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 4rem) 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  width: 190px;
  margin-bottom: 1rem;
}

.footer-company h3,
.footer-social h3 {
  margin: 0 0 0.9rem;
}

.footer-company ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.social-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), var(--orange-3));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 30px rgba(255,106,0,0.18);
}

/* GLASS */
.service-card::before,
.quote-card::before,
.btn::before,
.social-links a::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -24%;
  width: 28%;
  height: 360%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: rotate(var(--mirror-angle)) translate3d(var(--mirror-start-x), var(--mirror-start-y), 0);
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 32%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0.03) 68%, transparent 100%);
  transition: opacity 360ms ease, transform var(--mirror-duration) var(--mirror-ease);
}

.service-card.is-mirror-active::before,
.quote-card.is-mirror-active::before,
.btn.is-mirror-active::before,
.social-links a.is-mirror-active::before {
  opacity: 1;
  transform: rotate(var(--mirror-angle)) translate3d(var(--mirror-end-x), var(--mirror-end-y), 0);
}

.glass-cursor-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 420ms ease;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(255,255,255,0.09), rgba(255,255,255,0.00) 52%);
}

.service-card:hover .glass-cursor-glow,
.quote-card:hover .glass-cursor-glow,
.btn:hover .glass-cursor-glow,
.social-links a:hover .glass-cursor-glow {
  opacity: 1;
}

.service-card > *,
.quote-card > *,
.btn > *,
.social-links a > * {
  position: relative;
  z-index: 3;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }

/* RESPONSIVE */
@media (max-width: 1150px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  }

  .home-hero h1 {
    font-size: clamp(2.35rem, 4.6vw, 4rem);
  }

  .contact-image,
  .contact-content,
  .ideas-content,
  .ideas-image,
  .footer-brand,
  .footer-company,
  .footer-social {
    grid-column: span 12;
  }
}

@media (max-width: 980px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    justify-self: start;
    width: min(100%, 380px);
  }

  .home-hero h1,
  .hero-text {
    max-width: 100%;
  }

  .service-card,
  .service-card-centered {
    grid-column: span 6;
  }
}

@media (max-width: 860px) {
  :root { --header-height: 78px; }

  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10,13,18,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.30);
  }

  .main-nav.active { display: flex; }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .main-nav ul a,
  .btn-header {
    display: flex;
    width: 100%;
  }

  .main-nav ul a {
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: clamp(4rem, 8vw, 5.4rem) 0;
  }
}

@media (max-width: 820px) {
  .single-card-wrap .service-card {
    grid-template-columns: 1fr;
  }

  .reasons .service-icon {
    grid-row: auto;
    margin-bottom: 0.55rem;
  }
}

@media (max-width: 720px) {
  .service-card,
  .service-card-centered {
    grid-column: span 12;
  }

  .home-hero {
    padding-top: clamp(4rem, 11vw, 5.2rem);
    padding-bottom: clamp(3.8rem, 10vw, 5rem);
  }

  .home-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .brand-logo {
    height: 44px;
  }

  .hero-text-strong {
    letter-spacing: 0.055em;
    font-size: 0.95rem;
  }

  .home-hero-visual {
    width: min(100%, 310px);
  }

  .hero-image-card {
    border-radius: 26px;
  }

  .hero-image-card img {
    border-radius: 20px;
  }

  .quote-card p br {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-contact span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* =========================================================
   FINAL – QUOTES + HEADER ROCKET (CLEAN & CONSISTENT)
   ========================================================= */

/* ---------- QUOTES ---------- */

.quote-card {
  position: relative;
  border-color: rgba(255, 106, 0, 0.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03)),
    radial-gradient(circle at top center, rgba(255,106,0,0.14), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 22px 52px rgba(0,0,0,0.22),
    0 0 36px rgba(255,106,0,0.10);
}

/* dekoratives Anführungszeichen */
.quote-card::after {
  content: "“";
  position: absolute;
  top: -0.45rem;
  left: 1.25rem;
  color: rgba(255, 106, 0, 0.18);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* Zitat → gleiches Orange wie deine Website */
.quote-card p {
  position: relative;
  z-index: 2;
  color: var(--orange); /* <-- exakt dein globales Orange */
  text-shadow:
    0 0 18px rgba(255,106,0,0.18),
    0 0 30px rgba(255,106,0,0.10);
}

/* Autor → weiß */
.quote-card footer {
  position: relative;
  z-index: 2;
  color: #ffffff;
  opacity: 0.9;
  font-weight: 600;
}

/* ---------- HEADER BUTTON ROCKET ---------- */

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Rocket Icon links im Button */
.btn-header::before {
  content: "\f135";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  display: inline-block;
  margin-right: 0.35rem;

  color: var(--orange); /* <-- exakt gleich wie überall */
  font-size: 0.95rem;
  line-height: 1;

  transition: transform 180ms ease;
}

.btn-header:hover::before {
  transform: translateY(-1px) rotate(-6deg);
}

/* Mobile Feinschliff */
@media (max-width: 640px) {
  .quote-card::after {
    left: 0.8rem;
    top: -0.25rem;
    font-size: 5rem;
  }
}
/* =========================================================
   FIX – RAKETE IM HEADER-BUTTON "JETZT IDEE EINREICHEN"
   Font Awesome korrekt erzwingen
   ========================================================= */

.main-nav .btn-header {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.55rem !important;
}

.main-nav .btn-header::before {
  content: "\f135" !important; /* Rocket */
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;

  position: relative !important;
  inset: auto !important;

  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0.2rem 0 0 !important;

  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;

  color: #ffffff !important;
  font-size: 0.92rem !important;
  line-height: 1 !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.main-nav .btn-header:hover::before {
  transform: translateY(-1px) rotate(-8deg) !important;
}
/* =========================================================
   GLOBAL SITE SCALE – 80% OPTIK
   ========================================================= */



/* Firefox-Fallback */
@supports not (zoom: 1) {
  body {
    transform: scale(0.8);
    transform-origin: top left;
    width: 125%;
  }
}
@media (max-width: 860px) {
  body {
    zoom: 1;
  }

  @supports not (zoom: 1) {
    body {
      transform: none;
      width: 100%;
    }
  }
}
/* =========================================================
   GLOBAL FIX – MOBILE HERO ROCKET ZENTRIERT
   Für alle Unterseiten mit Rocket-Bild
   ========================================================= */

@media (max-width: 720px) {
  .page-hero-grid,
  .idea-hero-grid,
  .contact-hero-grid,
  .home-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.45rem !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .page-hero-content,
  .idea-hero-content,
  .contact-hero-content,
  .home-hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .page-hero h1,
  .idea-hero-content h1,
  .contact-hero-content h1,
  .home-hero h1,
  .section-kicker,
  .hero-text {
    max-width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .page-hero-visual,
  .idea-hero-visual,
  .contact-hero-visual,
  .home-hero-visual {
    width: min(100%, 390px) !important;
    max-width: 390px !important;
    justify-self: center !important;
    margin: 0 auto !important;
  }

  .page-hero-image,
  .idea-hero-image,
  .contact-hero-image,
  .hero-image-card {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 26px !important;
    padding: 0.65rem !important;
  }

  .page-hero-image img,
  .idea-hero-image img,
  .contact-hero-image img,
  .hero-image-card img {
    width: 100% !important;
    aspect-ratio: 1 / 1.05 !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 20px !important;
  }
}

@media (max-width: 430px) {
  .page-hero-visual,
  .idea-hero-visual,
  .contact-hero-visual,
  .home-hero-visual {
    width: min(100%, 330px) !important;
    max-width: 330px !important;
  }
}
/* =========================================================
   FIX – ROCKET BILD ETWAS NACH OBEN SCHIEBEN
   Glühbirne vollständig sichtbar
   ========================================================= */

.hero-image-card img,
.page-hero-image img,
.idea-hero-image img,
.contact-hero-image img,
.hero-mark-frame img,
.hero-logo {
  object-fit: cover !important;
  object-position: center 45% !important;
}
/* =========================================================
   FIX – HERO CLAIM GRÖSSER
   "SERIÖS. REALISTISCH. TRANSPARENT."
   ========================================================= */

.home-hero .hero-text-strong {
  font-size: clamp(1.2rem, 1.8vw, 1.75rem) !important;
  line-height: 1.25 !important;
  letter-spacing: 0.09em !important;
  font-weight: 900 !important;
  margin-top: 2.35rem !important;
  margin-bottom: 0.9rem !important;
  color: #ffffff !important;
}

@media (max-width: 640px) {
  .home-hero .hero-text-strong {
    font-size: clamp(1.05rem, 5vw, 1.35rem) !important;
    letter-spacing: 0.06em !important;
    line-height: 1.28 !important;
  }
}
/* =========================================================
   HOMEPAGE – CONTACT LAYOUT MIT TEXT + MIKE-BILD LINKS
   ========================================================= */

.contact-layout-home {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: stretch;
}

.contact-left-home {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-intro-card {
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03)),
    radial-gradient(circle at top right, rgba(255,106,0,0.10), transparent 38%);
  border: 1px solid rgba(255,255,255,0.075);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 22px 52px rgba(0,0,0,0.20);
}

.contact-intro-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 2.6vw, 2.55rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.contact-intro-card p {
  margin: 0 0 0.85rem;
  color: var(--text-soft);
}

.contact-intro-card p:last-child {
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 700;
}

.contact-team-image img {
  width: 100%;
  min-height: 360px;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 28px 70px rgba(0,0,0,0.30);
}

.contact-layout-home .contact-content {
  grid-column: auto !important;
  width: 100%;
}

@media (max-width: 980px) {
  .contact-layout-home {
    grid-template-columns: 1fr;
  }

  .contact-team-image img {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .contact-intro-card,
  .contact-team-image img {
    border-radius: 22px;
  }

  .contact-intro-card {
    padding: 1.15rem;
  }

  .contact-team-image img {
    min-height: 300px;
  }
}
/* =========================================================
   FIX – STARTSEITE GLEICHER SCALE WIE UNTERSEITEN
   ========================================================= */

body {
  zoom: 1 !important;
  transform: none !important;
  width: 100% !important;
}

.home-hero {
  padding-top: clamp(5.4rem, 8vw, 7.4rem) !important;
  padding-bottom: clamp(4.8rem, 7vw, 6.6rem) !important;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px) !important;
  gap: clamp(2rem, 5vw, 4.8rem) !important;
}

.home-hero-copy {
  max-width: 760px !important;
}

.home-hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.8rem) !important;
}

.home-hero-visual {
  width: min(100%, 440px) !important;
}

.hero-image-card {
  max-width: 440px !important;
}
/* =========================================================
   FINAL FIX – STARTSEITE MOBILE HERO SAUBER
   ========================================================= */

@media (max-width: 720px) {
  .home-hero {
    overflow: hidden !important;
    padding-top: clamp(3.4rem, 9vw, 4.6rem) !important;
    padding-bottom: clamp(3.4rem, 9vw, 4.8rem) !important;
  }

  .home-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: center !important;
    text-align: center !important;
  }

  .home-hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .home-hero h1 {
    width: 100% !important;
    max-width: 11.5ch !important;
    margin-inline: auto !important;
    font-size: clamp(2.15rem, 12vw, 3.35rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.065em !important;
    text-align: center !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .home-hero .section-kicker,
  .home-hero .hero-text {
    max-width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .home-hero .hero-text-strong {
    font-size: clamp(1rem, 5vw, 1.28rem) !important;
    line-height: 1.25 !important;
    letter-spacing: 0.055em !important;
  }

  .home-hero .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    margin-top: 1.45rem !important;
  }

  .home-hero .hero-actions .btn {
    width: 100% !important;
  }

  .home-hero-visual {
    width: min(100%, 360px) !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    justify-self: center !important;
  }

  .hero-image-card {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 26px !important;
    padding: 0.65rem !important;
  }

  .hero-image-card img {
    width: 100% !important;
    aspect-ratio: 1 / 1.05 !important;
    object-fit: cover !important;
    object-position: center 45% !important;
    border-radius: 20px !important;
  }
}

@media (max-width: 430px) {
  .home-hero h1 {
    max-width: 10.5ch !important;
    font-size: clamp(2rem, 11.5vw, 2.85rem) !important;
  }

  .home-hero-visual {
    width: min(100%, 320px) !important;
  }
}