/* 4WIN Creators – globale Styles (Dark / Cyan / Violett) */
:root {
  --color-bg: #000000;
  --color-text: #ffffff;
  --color-text-muted: #b8b8c0;
  --color-accent: #00e5ff;
  --color-accent-2: #c026ff;
  --color-line: #2a2a32;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
  --max-w: 72rem;
  --header-h: 4rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 44px;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.4rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo__img {
  height: 28px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-line);
  color: var(--color-text);
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem 1.6rem;
}

.nav a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active {
  color: var(--color-accent);
  text-decoration: none;
}

.lang-toggle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border: 1.5px solid var(--color-accent);
  border-radius: 4px;
  color: var(--color-accent);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-toggle:hover {
  background: var(--color-accent);
  color: #000;
}

main {
  flex: 1;
  width: 100%;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.hero {
  padding: 3rem 1.25rem 4rem;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(0, 229, 255, 0.15), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(192, 38, 255, 0.12), transparent 50%),
    var(--color-bg);
  border-bottom: 1px solid var(--color-line);
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 40rem;
  margin: 0 auto;
}

h2 {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin: 2rem 0 1rem;
}

h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--color-text);
}

p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.lead-strong {
  color: var(--color-text);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.04), rgba(192, 38, 255, 0.03));
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.08);
}

.card {
  text-align: center;
}

.card__icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.card h3 {
  margin-top: 0;
  color: var(--color-accent);
}

a.card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card .cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(135deg, var(--color-accent), #0099cc);
  color: #000 !important;
}

.btn:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent) !important;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  padding: 2rem 1.25rem;
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  color: var(--color-text-muted);
}

.legal-page h1 {
  color: var(--color-accent);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
}

.legal-page ul {
  color: var(--color-text-muted);
}

/* Kontaktseite */
.subpage-hero--short {
  min-height: min(40vh, 360px);
}

.kontakt-center {
  max-width: 40rem;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.kontakt-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .kontakt-info-row {
    grid-template-columns: 1fr;
  }
}

.kontakt-form-card {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--color-line);
  background: linear-gradient(145deg, rgba(20, 20, 28, 0.95), rgba(8, 8, 12, 0.98));
}

.kontakt-form-card h2 {
  font-size: 1.3rem;
  color: var(--color-accent);
  margin: 0 0 1.5rem;
  text-align: center;
}

.kontakt-info-card {
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--color-line);
  background: linear-gradient(145deg, rgba(20, 20, 28, 0.95), rgba(8, 8, 12, 0.98));
  text-align: center;
}

.kontakt-info-card__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.kontakt-info-card h3 {
  font-size: 1rem;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
}

.kontakt-info-card a {
  color: var(--color-text);
  text-decoration: none;
}

.kontakt-info-card a:hover {
  color: var(--color-accent);
}

.kontakt-info-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Kontaktformular */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--color-line);
  background: rgba(0, 0, 0, 0.4);
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid var(--color-line);
  }

  .nav.is-open {
    display: flex;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .lang-toggle {
    margin-left: auto;
    margin-right: 0.75rem;
  }
}

/* ========== Startseite (modern / Bento / Hero) ========== */
body.page-home {
  position: relative;
  background-color: var(--color-bg);
}

body.page-home::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 70%);
}

.home-hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18rem 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background: #050508 url("/images/Banner_Startseite_groß_reduziert.webp") center 20% / cover no-repeat;
  opacity: 1;
}

.home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      #000 100%
    ),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 229, 255, 0.12), transparent 55%);
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.home-hero__brand {
  margin-bottom: 1rem;
  animation: homeFadeUp 0.8s ease-out both;
}

.home-hero__logo {
  width: clamp(72px, 18vw, 120px);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(0, 229, 255, 0.35));
}

.home-hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  animation: homeFadeUp 0.8s ease-out 0.05s both;
}

.home-hero__title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--color-text);
  animation: homeFadeUp 0.85s ease-out 0.1s both;
}

.home-hero__title-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #a855f7 50%, var(--color-accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero__lead {
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: var(--color-text-muted);
  animation: homeFadeUp 0.85s ease-out 0.15s both;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: homeFadeUp 0.9s ease-out 0.2s both;
}

.home-hero__scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.25rem;
  border: 2px solid rgba(0, 229, 255, 0.35);
  border-radius: 999px;
}

.home-hero__scroll::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.4rem;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: homeScrollDot 2s ease-in-out infinite;
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  border-radius: 999px;
}

.btn--pulse {
  box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.45);
  animation: homePulse 2.5s ease-out infinite;
}

.home-intro {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.home-glass {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.06), rgba(168, 85, 247, 0.05));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.home-intro__card {
  padding: 2rem 1.75rem;
  text-align: center;
}

.home-intro__heading {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--color-accent);
}

.home-intro__text {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.home-section-head {
  margin-bottom: 1.75rem;
}

.home-section-head__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.home-section-head__sub {
  margin: 0.35rem 0 0;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.home-bento {
  padding-bottom: 4rem;
}

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1000px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, minmax(180px, auto));
  }

  .bento-card--feature {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .bento-card--web {
    grid-column: 3;
    grid-row: 1;
  }

  .bento-card--apps {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .bento-card--digital {
    grid-column: 3;
    grid-row: 2;
  }

  .bento-card--kiloes {
    grid-column: 4;
    grid-row: 2;
  }

  .bento-card--medien {
    grid-column: 4;
    grid-row: 1;
  }

  .bento-card--social {
    grid-column: 3 / 5;
    grid-row: 3;
  }

}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(20, 20, 28, 0.95), rgba(8, 8, 12, 0.98));
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.bento-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 229, 255, 0.12), 0 0 0 1px rgba(0, 229, 255, 0.2);
  border-color: rgba(0, 229, 255, 0.35);
}

.bento-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bento-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  transition: filter 0.4s ease, transform 0.6s ease, opacity 0.4s ease;
  filter: saturate(1.1);
}

.bento-card:hover .bento-card__media img {
  opacity: 0.65;
  transform: scale(1.05);
}

.bento-card__body {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.35rem 1.35rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.92) 55%);
}


.bento-card--feature {
  min-height: 340px;
}



.bento-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

.bento-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: var(--color-text);
}

.bento-card__desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.bento-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
}

.home-cta {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  border-radius: 20px;
  border: 1px dashed rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.03);
}

.home-cta__text {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--color-text);
}

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

@keyframes homePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 229, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
  }
}

@keyframes homeScrollDot {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.45;
    transform: translateY(10px);
  }
}

/* ========== Unterseiten (Subpage Hero / Feature Grid / Highlight) ========== */
.subpage-hero {
  position: relative;
  min-height: min(55vh, 480px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16rem 1.25rem 2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  text-align: center;
}

.subpage-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.subpage-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: saturate(1.2);
}

.subpage-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 50%, #000 100%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 229, 255, 0.12), transparent 55%);
}

.subpage-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  animation: homeFadeUp 0.8s ease-out both;
}

.subpage-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.06);
}

.subpage-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.3;
  padding-bottom: 0.1em;
}

.subpage-hero .lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 38rem;
  margin: 0 auto;
}

.subpage-intro {
  padding: 3rem 1.25rem 1rem;
}

.subpage-intro__card {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.75rem;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.06), rgba(168, 85, 247, 0.05));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.subpage-intro__card p {
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.feature-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.feature-section__title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--color-text);
  margin: 0 0 0.35rem;
}

.feature-section__sub {
  color: var(--color-text-muted);
  margin: 0 0 2rem;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .feature-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--color-line);
  background: linear-gradient(145deg, rgba(20, 20, 28, 0.95), rgba(8, 8, 12, 0.98));
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 16px 48px rgba(0, 229, 255, 0.1), 0 0 0 1px rgba(0, 229, 255, 0.15);
  transform: translateY(-3px);
}

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--color-accent);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.highlight-banner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.highlight-banner__inner {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(192, 38, 255, 0.2);
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(0, 229, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 70% at 70% 50%, rgba(192, 38, 255, 0.08), transparent 60%),
    rgba(10, 10, 16, 0.9);
}

.highlight-banner__text {
  font-size: 1.2rem;
  color: var(--color-text);
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
}

.highlight-banner__text strong {
  color: var(--color-accent);
}

.subpage-cta {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.subpage-cta__inner {
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 20px;
  border: 1px dashed rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.03);
}

.subpage-cta__title {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: var(--color-text);
}

.subpage-cta__text {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* Referenz-Showroom */
.showroom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
}

.showroom__title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--color-text);
  margin: 0 0 0.35rem;
}

.showroom__sub {
  color: var(--color-text-muted);
  margin: 0 0 2rem;
}

.showroom-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .showroom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showroom-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .showroom-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.showroom-card {
  border-radius: 16px;
  border: 1px solid var(--color-line);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(20, 20, 28, 0.95), rgba(8, 8, 12, 0.98));
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  color: inherit;
  display: block;
}

.showroom-card:hover {
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 16px 48px rgba(0, 229, 255, 0.1), 0 0 0 1px rgba(0, 229, 255, 0.15);
  transform: translateY(-3px);
  text-decoration: none;
}

.showroom-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
  display: block;
  border-bottom: 1px solid var(--color-line);
}

.showroom-card__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--color-line);
}

.showroom-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.showroom-card__body {
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.showroom-card__name {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  color: var(--color-text);
}

.showroom-card__desc {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.showroom-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* Instagram-Karten */
.ig-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ig-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--color-line);
  background: linear-gradient(145deg, rgba(20, 20, 28, 0.95), rgba(8, 8, 12, 0.98));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.ig-card:hover {
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 16px 48px rgba(0, 229, 255, 0.1), 0 0 0 1px rgba(0, 229, 255, 0.15);
  transform: translateY(-3px);
  text-decoration: none;
}

.ig-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  margin-bottom: 1rem;
}

.ig-card__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0a0a0f;
}

.ig-card__avatar img.logo-contain {
  object-fit: contain;
  padding: 10px;
}

.ig-card__name {
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.ig-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.ig-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* Store-Badges */
.subpage-cta a img {
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.subpage-cta a:hover img {
  transform: scale(1.05);
  opacity: 1;
}

/* Scroll-Reveal Animationen */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal[style*="--reveal-delay"] {
  transition-delay: var(--reveal-delay);
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__brand,
  .home-hero__eyebrow,
  .home-hero__title,
  .home-hero__lead,
  .home-hero__actions {
    animation: none !important;
  }

  .btn--pulse {
    animation: none;
  }

  .home-hero__scroll::before {
    animation: none;
  }

  .bento-card {
    transition: none;
  }

  .bento-card:hover {
    transform: none;
  }

  .bento-card:hover .bento-card__media img {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .subpage-hero__content {
    animation: none !important;
  }

  .feature-card {
    transition: none;
  }

  .feature-card:hover {
    transform: none;
  }
}
