/* ============================================================
   Scale Up Masterclass · GrowthSquare × WIFI Salzburg
   Corporate Design:
   - Weiß als Hauptfarbe, Dark #121818 für Type
   - Akzent 1 #ffc107 (gelb), Akzent 2 #3e6f84 (petrol)
   - Grau #f2f6f6
   - Schrift: Haboro Soft (Adobe Typekit ggj1fhx)
   ============================================================ */

@import url("https://use.typekit.net/ggj1fhx.css");

:root {
  /* Brand-Farben gemäß CI */
  --c-white:    #ffffff;
  --c-accent-1: #ffc107;     /* Gelb */
  --c-accent-2: #3e6f84;     /* Petrol */
  --c-grey:     #f2f6f6;     /* Hellgrau */
  --c-dark:     #121818;     /* Dunkel */

  /* Abgeleitete Töne */
  --c-petrol-dark:  #2c5667;
  --c-petrol-light: #6f9eb1;
  --c-yellow-soft:  #ffd54a;
  --c-line:         #e3eaec;
  --c-line-soft:    #ebf0f2;
  --c-text:         #121818;
  --c-text-soft:    #4a5559;
  --c-text-mute:    #768084;

  /* Typografie */
  --ff: "Haboro-Soft", "haboro-soft", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 8px;

  /* Effekte */
  --shadow-sm: 0 2px 8px -2px rgba(18, 24, 24, 0.08);
  --shadow-md: 0 12px 28px -10px rgba(18, 24, 24, 0.12);
  --shadow-lg: 0 30px 60px -20px rgba(18, 24, 24, 0.18);
  --shadow-glow: 0 0 0 1px rgba(62, 111, 132, 0.12), 0 18px 40px -10px rgba(62, 111, 132, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff);
  background: var(--c-white);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a {
  color: var(--c-accent-2);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--c-petrol-dark); }

h1, h2, h3, h4 {
  font-family: var(--ff);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--c-dark);
  line-height: 1.2;
  margin: 0 0 .6em;
}
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--c-text-soft); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease, padding .25s ease;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--c-line), var(--shadow-sm);
  padding: 12px 0;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo { height: 36px; width: auto; }
.nav__brand-text {
  font-family: var(--ff); font-weight: 700; font-size: 1.25rem;
  color: var(--c-dark); letter-spacing: -0.01em;
}
.nav__links {
  display: flex; gap: 28px;
}
.nav__links a {
  color: var(--c-text-soft); font-size: .95rem; font-weight: 500;
  position: relative; padding: 4px 0;
}
.nav__links a:hover { color: var(--c-dark); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--c-accent-1); transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: var(--ff);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  text-align: center;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--c-accent-2);
  color: var(--c-white);
  border-color: var(--c-accent-2);
}
.btn--primary:hover {
  background: var(--c-petrol-dark);
  border-color: var(--c-petrol-dark);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--c-accent-1);
  color: var(--c-dark);
  border-color: var(--c-accent-1);
}
.btn--accent:hover {
  background: var(--c-yellow-soft);
  border-color: var(--c-yellow-soft);
  color: var(--c-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(255, 193, 7, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--c-accent-2);
  border-color: var(--c-accent-2);
}
.btn--ghost:hover {
  background: var(--c-accent-2);
  color: var(--c-white);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  isolation: isolate;
  background: var(--c-grey);
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255, 193, 7, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(62, 111, 132, 0.10) 0%, transparent 55%),
    var(--c-grey);
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(62, 111, 132, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 111, 132, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  color: var(--c-accent-2);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.partner { color: var(--c-text-soft); font-size: .9rem; }
.partner strong { color: var(--c-dark); font-weight: 700; }

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  color: var(--c-dark);
}
.hero__subtitle {
  display: block;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 400;
  color: var(--c-text-soft);
  margin-top: 12px;
  letter-spacing: -0.005em;
}
.grad {
  color: var(--c-accent-2);
  position: relative;
}
.grad::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.18em;
  background: var(--c-accent-1);
  z-index: -1;
  opacity: .7;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--c-text);
  max-width: 760px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero__lead strong { color: var(--c-dark); font-weight: 700; }

.hero__bullets {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px 28px;
  max-width: 900px;
}
.hero__bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--c-text);
  font-size: .98rem;
}
.dot {
  flex: 0 0 8px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-accent-1);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.18);
  margin-top: 8px;
}

.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 24px 0;
  max-width: 900px;
}
.stat {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 0 18px;
  border-right: 1px solid var(--c-line);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--ff);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-accent-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: .76rem;
  color: var(--c-text-mute);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .stat:nth-child(n+4) {
    border-top: 1px solid var(--c-line);
    padding-top: 16px;
    margin-top: 16px;
  }
  .stat:nth-child(4) { border-right: 1px solid var(--c-line); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 100px 0;
  position: relative;
}
.section--alt {
  background: var(--c-grey);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.section__head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section__head--center {
  margin-left: auto; margin-right: auto; text-align: center;
}
.section__lead {
  color: var(--c-text-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}
.kicker {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-accent-2);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.kicker::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--c-accent-1);
}
.kicker--light { color: var(--c-accent-1); }
.kicker--light::before { background: var(--c-accent-1); }

/* ============================================================
   MODULE GRID
   ============================================================ */
.modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .modules { grid-template-columns: 1fr; }
}

.mod {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.mod::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-accent-1);
  opacity: 0;
  transition: opacity .25s ease;
}
.mod:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent-2);
  box-shadow: var(--shadow-md);
}
.mod:hover::before { opacity: 1; }

.mod--wide {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, var(--c-white) 0%, var(--c-grey) 100%);
}

.mod__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.mod__num {
  font-family: var(--ff);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-accent-2);
  line-height: 1;
  letter-spacing: -0.03em;
}
.mod__format {
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mod__format--onsite {
  background: rgba(255, 193, 7, 0.15);
  color: #8a6500;
  border: 1px solid rgba(255, 193, 7, 0.4);
}
.mod__format--online {
  background: rgba(62, 111, 132, 0.10);
  color: var(--c-accent-2);
  border: 1px solid rgba(62, 111, 132, 0.3);
}

.mod h3 { font-size: 1.45rem; font-weight: 700; }
.mod__claim {
  color: var(--c-accent-2);
  font-size: .95rem;
  margin-bottom: 18px;
  font-weight: 600;
  font-style: italic;
}

.mod ul {
  list-style: none; padding: 0; margin: 0;
}
.mod ul li {
  position: relative;
  padding-left: 22px;
  padding-bottom: 10px;
  color: var(--c-text);
  font-size: .96rem;
}
.mod ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 10px; height: 2px;
  background: var(--c-accent-1);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.benefit {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 30px;
  text-align: left;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent-2);
  box-shadow: var(--shadow-md);
}

.benefit__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--c-accent-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white);
  margin-bottom: 18px;
}
.benefit__icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--c-dark); }
.benefit p { font-size: .94rem; margin: 0; color: var(--c-text-soft); }

/* ============================================================
   SUPPORT
   ============================================================ */
.support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.support__card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.support__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.support__badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--c-accent-1);
  color: var(--c-dark);
  margin-bottom: 16px;
}
.support__badge--alt {
  background: var(--c-grey);
  color: var(--c-text-soft);
}
.support__badge--accent {
  background: var(--c-accent-2);
  color: var(--c-white);
}
.support__card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--c-dark); }

/* ============================================================
   AUFBAU
   ============================================================ */
.aufbau {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.aufbau__row {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 28px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  color: var(--c-text);
  transition: border-color .25s ease;
}
.aufbau__row:hover { border-color: var(--c-accent-2); }
.aufbau__row strong { color: var(--c-dark); font-weight: 700; }
.aufbau__arrow {
  color: var(--c-accent-1);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   SPEAKERS - mit Portrait-Foto Platzhalter
   ============================================================ */
.speakers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 28px;
}
@media (max-width: 480px) {
  .speakers { grid-template-columns: 1fr; }
}
.speaker {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; gap: 24px;
  align-items: flex-start;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.speaker:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-petrol-light);
}
@media (max-width: 540px) {
  .speaker { flex-direction: column; padding: 24px; }
}

/* Portrait-Container: feste Maße, 4:5 Verhältnis */
.speaker__photo {
  flex: 0 0 140px;
  width: 140px;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--c-grey);
  position: relative;
  border: 1px solid var(--c-line);
}
.speaker__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Platzhalter-Anzeige (sichtbar, solange kein <img> mit src vorhanden ist) */
.speaker__photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  background:
    repeating-linear-gradient(
      45deg,
      var(--c-grey),
      var(--c-grey) 10px,
      #e8eef0 10px,
      #e8eef0 20px
    );
  color: var(--c-accent-2);
}
.speaker__photo-placeholder svg {
  width: 44px; height: 44px;
  opacity: 0.7;
}
.speaker__photo-placeholder span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  background: var(--c-white);
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
}

.speaker__body { flex: 1; min-width: 0; }
.speaker__body h3 { font-size: 1.3rem; margin-bottom: 4px; color: var(--c-dark); }
.speaker__role {
  color: var(--c-accent-2);
  font-size: .9rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.speaker__body p { font-size: .95rem; margin: 0; color: var(--c-text-soft); line-height: 1.6; }
.speaker__body p strong { color: var(--c-dark); font-weight: 700; }
.speaker__body p em { color: var(--c-accent-2); font-style: normal; font-weight: 700; }

/* ============================================================
   PREISE
   ============================================================ */
.prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.price {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  display: flex; flex-direction: column;
  transition: box-shadow .25s ease;
}
.price:hover { box-shadow: var(--shadow-md); }
.price--featured {
  border-color: var(--c-accent-2);
  border-width: 2px;
  box-shadow: var(--shadow-glow);
}
.price__badge {
  position: absolute; top: -14px; right: 24px;
  padding: 6px 14px;
  background: var(--c-accent-1);
  color: var(--c-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
}
.price h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--c-dark);
}
.price__sub {
  color: var(--c-text-mute);
  font-size: .92rem;
  margin-bottom: 24px;
}
.price__amount {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 28px;
  color: var(--c-dark);
  font-family: var(--ff);
}
.price__currency { font-size: 1.6rem; font-weight: 600; color: var(--c-accent-2); }
.price__value { font-size: 3.2rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.price__cents { font-size: 1.4rem; color: var(--c-text-mute); margin-left: 2px; }

.price__list {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex: 1;
}
.price__list li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--c-text);
  font-size: .95rem;
  border-bottom: 1px solid var(--c-line-soft);
}
.price__list li:last-child { border-bottom: 0; }
.price__list li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--c-accent-2);
  border-bottom: 2px solid var(--c-accent-2);
  transform: rotate(-45deg);
}

.prices__note {
  text-align: center;
  margin-top: 36px;
  color: var(--c-text-soft);
  font-size: .96rem;
}

/* ============================================================
   INFOTERMINE
   ============================================================ */
.infodates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .infodates { grid-template-columns: 1fr; }
}

.infodate {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.infodate::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent-1) 0%, var(--c-accent-2) 100%);
  opacity: 0;
  transition: opacity .25s ease;
}
.infodate:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent-2);
  box-shadow: var(--shadow-md);
}
.infodate:hover::before { opacity: 1; }

@media (max-width: 480px) {
  .infodate { flex-direction: column; padding: 24px; gap: 16px; }
}

/* Datums-Badge links */
.infodate__date {
  flex: 0 0 92px;
  width: 92px;
  background: var(--c-accent-2);
  color: var(--c-white);
  border-radius: 10px;
  padding: 18px 8px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  overflow: hidden;
}
.infodate__date::after {
  /* dekorativer Akzent unten */
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--c-accent-1);
}
@media (max-width: 480px) {
  .infodate__date {
    flex-direction: row;
    width: auto;
    align-self: flex-start;
    padding: 10px 16px;
    gap: 8px;
    align-items: baseline;
  }
  .infodate__date::after { height: 100%; width: 4px; right: auto; }
}

.infodate__day {
  font-family: var(--ff);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-white);
}
.infodate__month {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-accent-1);
}
.infodate__year {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 480px) {
  .infodate__day { font-size: 1.8rem; }
  .infodate__month { font-size: .8rem; }
  .infodate__year { font-size: .8rem; }
}

.infodate__body {
  flex: 1;
  min-width: 0;
}
.infodate__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: .85rem;
  color: var(--c-text-mute);
  margin-bottom: 6px;
  font-weight: 500;
}
.infodate__weekday { color: var(--c-accent-2); font-weight: 600; }
.infodate__time { color: var(--c-text-soft); font-weight: 600; }

.infodate__body h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--c-dark);
}

.infodate__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.infodate__format {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.infodate__format svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.infodate__format--onsite {
  background: rgba(255, 193, 7, 0.15);
  color: #8a6500;
  border: 1px solid rgba(255, 193, 7, 0.4);
}
.infodate__format--online {
  background: rgba(62, 111, 132, 0.10);
  color: var(--c-accent-2);
  border: 1px solid rgba(62, 111, 132, 0.3);
}

.infodate__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--c-accent-2);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease, gap .2s ease;
}
.infodate__cta:hover {
  border-bottom-color: var(--c-accent-1);
  color: var(--c-petrol-dark);
  gap: 10px;
}
.infodate__cta svg { transition: transform .2s ease; }

.infodates__note {
  text-align: center;
  margin-top: 32px;
  color: var(--c-text-soft);
  font-size: .94rem;
}
.infodates__note strong { color: var(--c-dark); font-weight: 700; }

/* ============================================================
   CTA / Anmeldung (Link-only Variante)
   ============================================================ */
.section--cta {
  background: var(--c-dark);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(62, 111, 132, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(255, 193, 7, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

.cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--c-white);
  margin-bottom: 20px;
}
.cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta .kicker { color: var(--c-accent-1); }
.cta .kicker::before { background: var(--c-accent-1); }

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cta__actions .btn--ghost {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.cta__actions .btn--ghost:hover {
  background: var(--c-white);
  color: var(--c-dark);
  border-color: var(--c-white);
}

.cta__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}
@media (max-width: 640px) {
  .cta__contacts { grid-template-columns: 1fr; text-align: center; }
}
.cta__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-accent-1);
  margin-bottom: 6px;
  font-weight: 700;
}
.cta__value {
  color: var(--c-white);
  font-size: 1.05rem;
  font-weight: 500;
  display: block;
}
a.cta__value:hover { color: var(--c-accent-1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-grey);
  border-top: 1px solid var(--c-line);
  padding: 64px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-line);
}
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
.footer__logo { height: 32px; width: auto; margin-bottom: 14px; }
.footer__brand-text {
  font-family: var(--ff); font-weight: 700; font-size: 1.25rem;
  color: var(--c-dark); display: block; margin-bottom: 14px;
}
.footer__brand p { color: var(--c-text-soft); font-size: .94rem; max-width: 360px; }
.footer__brand p strong { color: var(--c-dark); font-weight: 700; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 540px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
.footer__cols h4 {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-accent-2);
  margin: 0 0 14px;
  font-weight: 700;
}
.footer__cols a, .footer__cols span {
  display: block;
  color: var(--c-text-soft);
  font-size: .94rem;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer__cols a:hover { color: var(--c-accent-2); }

.footer__bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .85rem;
  color: var(--c-text-mute);
}
.footer__legal { color: var(--c-text-mute); }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .nav, .hero__cta, .section--cta { display: none; }
  body { background: white; color: black; }
  .section { padding: 30px 0; break-inside: avoid; }
}