/* ── PAGE-SPECIFIC: web.html ─────── */

/* Section spacer override */
.section-gap { margin-top: 64px; }
.section-gap-sm { margin-top: 40px; }

/* ── Konsistente linke/rechte Kante — alles auf 1240px ────
   (matched Cinema-Hero-Inner: keine Zickzack-Sprünge zwischen
    Section-Title / Grid / Print-Hinweis / Galerie / FAQ / Support-Banner) */
.section-title,
.print-hinweis,
.web-gallery,
.faq-section,
.support-banner { max-width: var(--container-max); margin-left: auto; margin-right: auto; }

/* Buttons: full-width in card context */
.btn {
  display: block; width: 100%; text-align: center; padding: 14px 20px;
  border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  font-weight: 700; text-decoration: none; cursor: pointer;
  border: 2px solid var(--green); transition: background .18s, color .18s;
}

/* CTA buttons override */
.cta-buttons .btn { width: auto; padding: 14px 32px; }

/* ── WEB-GALERIE (Masonry, breite Bühne) ────── */
.web-gallery {
  max-width: 1440px;
  margin: 0 auto;
  columns: 3;
  column-gap: 18px;
  padding: 0 20px;
}
@media (min-width: 1280px) {
  .web-gallery { columns: 4; }
}
.wg-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  margin-bottom: 16px;
  break-inside: avoid;
  transition: transform .22s, box-shadow .22s;
}
.wg-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(62,124,47,.14);
}
.wg-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s;
}
.wg-item:hover img { transform: scale(1.04); }
.wg-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(26,35,24,.75);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 8px;
}
.wg-item.wg-hidden { display: none; }
.wg-load-more {
  display: block;
  max-width: 320px;
  margin: 28px auto 0;
  padding: 14px 32px;
  text-align: center;
}
@media (max-width: 820px) {
  .web-gallery { columns: 2; }
}
@media (max-width: 480px) {
  .web-gallery { columns: 1; }
}

/* ── CINEMA-HERO Fallback-Poster bei reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  .cinema-hero {
    background: url('img/team/hero-webdesign-poster.webp') center/cover no-repeat, var(--green-dark);
  }
}

/* ── OFFENE LEISTUNGS-KACHELN (nach 647.media-Muster) ── */
.leistungen-open {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .leistungen-open { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
}
@media (max-width: 560px) {
  .leistungen-open { grid-template-columns: 1fr; gap: 40px; }
}
.leistungs-item {
  display: flex; flex-direction: column;
  color: inherit; text-decoration: none;
}
.leistungs-item .icon {
  width: 52px; height: 52px;
  color: var(--green);
  margin-bottom: 20px;
}
.leistungs-item .icon svg { width: 100%; height: 100%; }
.leistungs-item h3 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text);
}
.leistungs-item p {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.leistungs-item .item-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
  transition: transform .2s;
}
a.leistungs-item:hover .item-link { transform: translateX(4px); }
a.leistungs-item:hover h3 { color: var(--green-dark); }

/* ── PRINT/SLC-BEISATZ ───────── */
.print-hinweis {
  max-width: 900px; margin: 56px auto 0;
  padding: 24px 28px;
  border-left: 3px solid var(--green-mid);
  background: rgba(62,124,47,.04);
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.print-hinweis a { color: var(--green); font-weight: 700; text-decoration: none; }
.print-hinweis a:hover { text-decoration: underline; }

/* ── TRUST-LEISTE (unter Hero) ────── */
.trust-bar {
  max-width: 780px;
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.trust-bar svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-bar strong { color: var(--green); font-weight: 700; }

/* ── KAUFENTSCHEIDUNGS-HINWEIS unter Karten ──── */
.pricing-note {
  max-width: 820px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.pricing-note strong { color: var(--text); }

/* ── CTA-Block vereinfacht ────── */
.cta-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 32px auto 0;
}
.cta-option {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.cta-option:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(62,124,47,.1);
}
.cta-option .cta-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-option .cta-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-option h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}
.cta-option p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 18px;
  line-height: 1.55;
}
.cta-option .btn { display: inline-block; width: auto; padding: 12px 24px; font-size: 0.85rem; }
@media (max-width: 640px) {
  .cta-options { grid-template-columns: 1fr; }
}
  
