/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #CC1414;
  --red-dark:   #A30F0F;
  --red-light:  #fdf2f2;
  --white:      #ffffff;
  --bg:         #f6f6f8;
  --border:     #e0e0e8;
  --text:       #1a1a22;
  --text-muted: #6b6b80;
  --text-light: #9999b0;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== HELPERS ===== */
.text-red { color: var(--red); }

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  margin-bottom: 12px;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-head p { color: var(--text-muted); font-size: 1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.18s;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 4px 14px rgba(204,20,20,0.25); }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn--outline:hover { border-color: var(--red); color: var(--red); }
.btn--large { padding: 14px 30px; font-size: 0.97rem; }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 0;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 32px;
}
.nav__logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 4px;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text);
}
.nav__logo-text small {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Nav links list */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: flex-end;
  padding-right: 12px;
}

/* Each nav item */
.nav__item {
  position: relative;
}
.nav__item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0 14px;
  height: 70px;
  transition: color 0.15s;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.nav__item > a:hover,
.nav__item:hover > a {
  color: var(--text);
  border-bottom-color: var(--red);
}
.nav__item.active > a {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Chevron */
.nav__chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav__item:hover .nav__chevron { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.nav__item:hover .nav__dropdown,
.nav__item.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
}
.nav__dropdown li:last-child a { border-bottom: none; }
.nav__dropdown li a:hover {
  color: var(--red);
  background: var(--red-light);
  padding-left: 26px;
}

/* Nav right: standalone Kontakt button */
.nav__cta-btn {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  padding: 9px 20px;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav__cta-btn:hover { background: var(--red-dark); color: #fff; }

/* Mobile burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__burger span {
  display: block; width: 100%; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.22s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 110px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hero__content h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
}
.hero__desc {
  font-size: 1.03rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__visual { position: relative; }
.hero__img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  background: var(--bg);
}
.hero__img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__img-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(255,255,255,0.95);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  padding: 10px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.hero__img-badge strong { display: block; font-size: 0.98rem; color: var(--red); font-weight: 700; }
.hero__img-badge span { font-size: 0.75rem; color: var(--text-muted); }

/* ===== STATS ===== */
.stats { background: var(--bg); border-bottom: 1px solid var(--border); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item {
  display: flex; flex-direction: column; align-items: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stats__item:last-child { border-right: none; }
.stats__num { font-size: 1.9rem; font-weight: 800; color: var(--red); letter-spacing: -0.02em; line-height: 1; margin-bottom: 5px; }
.stats__label { font-size: 0.83rem; color: var(--text-muted); font-weight: 500; }

/* ===== MACHINES ===== */
.machines { padding: 80px 0; }

.machines__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.machine-card {
  padding: 28px 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.15s;
  cursor: default;
}
.machine-card:nth-child(4n) { border-right: none; }
.machine-card:nth-last-child(-n+4) { border-bottom: none; }
.machine-card:hover { background: var(--red-light); }
.machine-card:hover .machine-card__icon { color: var(--red); }

.machine-card__icon { color: var(--text-light); margin-bottom: 14px; transition: color 0.15s; }
.machine-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.machine-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.machine-card__img {
  width: calc(100% + 44px);
  height: 140px;
  margin: -28px -22px 18px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.machine-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.machine-card:hover .machine-card__img img { transform: scale(1.04); }

/* ===== IMAGE BANNER (zwischen Sektionen) ===== */
.img-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.img-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,34,0.7) 0%, rgba(26,26,34,0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.img-banner__text { padding: 0 80px; color: white; max-width: 600px; }
.img-banner__text h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; margin-bottom: 10px; }
.img-banner__text p { font-size: 0.95rem; opacity: 0.85; }

/* ===== APPLICATIONS ===== */
.applications { padding: 80px 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.applications__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.app-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.18s;
}
.app-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(204,20,20,0.08); }
.app-card:hover .app-card__icon { background: var(--red); color: white; }

.app-card__img {
  width: 100%;
  height: 160px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.app-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.app-card__body { padding: 20px; }
.app-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 12px;
  transition: all 0.18s;
}
.app-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.app-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ===== ABOUT ===== */
.about { padding: 80px 0; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__content h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
.about__content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; font-size: 0.95rem; }
.about__locations { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.about__location { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); }
.about__location svg { color: var(--red); flex-shrink: 0; }

.about__img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.about__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.18s;
}
.about__card:hover { border-color: var(--red); }
.about__card-num { display: block; font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.about__card-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; background: var(--bg); border-top: 1px solid var(--border); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.contact__info { display: flex; flex-direction: column; gap: 18px; }
.contact__item { display: flex; align-items: flex-start; gap: 14px; }
.contact__icon {
  width: 38px; height: 38px;
  border-radius: 7px;
  background: var(--red-light);
  border: 1px solid rgba(204,20,20,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.contact__item strong { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact__item span, .contact__item a { font-size: 0.93rem; color: var(--text); }
.contact__item a:hover { color: var(--red); }

.contact__cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 8px;
  padding: 32px;
}
.contact__cta-box h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.contact__cta-box p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 22px; }

/* ===== PAGE HERO (Unterseiten) ===== */
.page-hero {
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.page-hero h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 10px; }
.page-hero p { font-size: 1rem; color: var(--text-muted); max-width: 520px; }

/* ===== FOOTER ===== */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 52px 0 28px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer__logo img { height: 40px; width: 40px; object-fit: contain; border-radius: 4px; }
.footer__logo strong { font-size: 0.95rem; font-weight: 800; letter-spacing: 0.05em; color: white; }
.footer__brand p { font-size: 0.85rem; line-height: 1.7; }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__links a, .footer__contact a, .footer__contact span { font-size: 0.87rem; transition: color 0.15s; }
.footer__links a:hover, .footer__contact a:hover { color: white; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: rgba(255,255,255,0.35); }
.footer__legal a:hover { color: rgba(255,255,255,0.65); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .machines__grid, .applications__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .machine-card:nth-child(4n) { border-right: 1px solid var(--border); }
  .machine-card:nth-child(2n) { border-right: none; }
  .machine-card:nth-last-child(-n+4) { border-bottom: 1px solid var(--border); }
  .machine-card:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 8px 0;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  }
  .nav__item > a { height: 48px; padding: 0 20px; }
  .nav__dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    display: none;
    background: var(--bg);
  }
  .nav__item.open .nav__dropdown { display: block; }
  .nav__cta-btn { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { order: -1; }
  .hero__img-wrap img { height: 240px; }
  .about__inner { grid-template-columns: 1fr; gap: 36px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .img-banner__text { padding: 0 28px; }
}

@media (max-width: 540px) {
  .machines__grid, .applications__grid { grid-template-columns: 1fr; }
  .about__cards { grid-template-columns: 1fr 1fr; }
  .hero__btns { flex-direction: column; }
  .btn { justify-content: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .machine-card:nth-child(n) { border-right: none; }
}

/* ===== PRODUCT FAMILIES ===== */
.product-families { padding: 0; }
.pf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: #06090f;
}
.pf-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
}
.pf-card__img { width: 100%; height: 100%; }
.pf-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.65s ease; display: block; }
.pf-card:hover .pf-card__img img { transform: scale(1.07); }
.pf-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,9,16,0.94) 0%, rgba(6,9,16,0.42) 50%, rgba(6,9,16,0.1) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 30px; color: white; transition: background 0.35s;
}
.pf-card:hover .pf-card__overlay {
  background: linear-gradient(to top, rgba(170,12,12,0.78) 0%, rgba(6,9,16,0.58) 55%, rgba(6,9,16,0.12) 100%);
}
.pf-card__sub {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 7px;
}
.pf-card__overlay h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem); font-weight: 800; margin-bottom: 10px; line-height: 1.15;
}
.pf-card__overlay p {
  font-size: 0.84rem; color: rgba(255,255,255,0); max-width: 320px;
  margin-bottom: 14px; line-height: 1.6; transition: color 0.3s;
}
.pf-card:hover .pf-card__overlay p { color: rgba(255,255,255,0.8); }
.pf-card__arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.65);
  transition: gap 0.2s, color 0.2s;
}
.pf-card:hover .pf-card__arrow { gap: 10px; color: #A30F0F; }

/* ===== ABOUT BAND ===== */
.about-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.about-band__img { overflow: hidden; }
.about-band__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-band__content {
  background: #0a1628; padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-band__badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #CC1414; border-bottom: 2px solid #CC1414; padding-bottom: 2px; margin-bottom: 20px;
}
.about-band__content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800;
  color: white; margin-bottom: 18px; line-height: 1.22;
}
.about-band__content p { color: rgba(255,255,255,0.68); line-height: 1.85; margin-bottom: 16px; font-size: 0.97rem; }
.about-band__link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 6px;
  color: rgba(255,255,255,0.75); font-weight: 600; font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 3px;
  transition: color 0.15s, border-color 0.15s;
}
.about-band__link:hover { color: #A30F0F; border-color: #A30F0F; }
.about-band__stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.about-band__stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: #CC1414; line-height: 1; margin-bottom: 5px; }
.about-band__stat span { font-size: 0.74rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== GLOBAL TEASER ===== */
.global-teaser {
  background: linear-gradient(135deg, #080e1c 0%, #0f2040 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.global-teaser::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,20,20,0.15) 0%, transparent 70%);
}
.global-teaser__inner {
  display: grid; grid-template-columns: 1fr auto; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.global-teaser__text h2 { color: white; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; margin-bottom: 10px; }
.global-teaser__text p { color: rgba(255,255,255,0.6); }
.global-teaser__stats { display: flex; gap: 36px; margin-top: 24px; }
.global-teaser__stat strong { display: block; font-size: 2.1rem; font-weight: 800; color: #CC1414; line-height: 1; margin-bottom: 4px; }
.global-teaser__stat span { font-size: 0.74rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.global-teaser__action { text-align: center; }
.global-teaser__action .btn--outline { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.global-teaser__action .btn--outline:hover { border-color: #A30F0F; color: #A30F0F; }

/* ===== RESPONSIVE: NEW SECTIONS ===== */
@media (max-width: 900px) {
  .pf-grid { grid-template-columns: 1fr; }
  .pf-card { height: 260px; }
  .about-band { grid-template-columns: 1fr; }
  .about-band__img { height: 300px; }
  .about-band__content { padding: 44px 28px; }
  .global-teaser__inner { grid-template-columns: 1fr; }
  .global-teaser__action { text-align: left; margin-top: 20px; }
  .global-teaser__stats { flex-wrap: wrap; gap: 20px; }
  .about-band__stats { flex-wrap: wrap; gap: 20px; }
}
