/* ── SELF-HOSTED FONTS (kein Google-Server-Aufruf) ── */

/* DM Sans – Normal */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* DM Sans – Italic */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext-italic.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* DM Serif Display – Normal */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-latin-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-latin-ext-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* DM Serif Display – Italic */
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-latin-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-latin-ext-italic.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

  :root {
    --ag-red: #c1001f;
    --ag-red-light: #f7e6ea;
    --ag-red-mid: #e8a0ab;
    --navy: #1a2a3a;
    --navy-mid: #2e4256;
    --slate: #4a5c6a;
    --muted: #8a9aaa;
    --bg: #f8f7f4;
    --white: #ffffff;
    --border: #e2ddd8;
    --text: #1a2a3a;
    --radius: 12px;
    --radius-lg: 20px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
  }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248,247,244,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--ag-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
  }
  .nav-logo-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.02em;
  }
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ag-red); }
  .nav-cta {
    background: var(--ag-red);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #a0001a !important; color: #fff !important; }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    color: #fff;
    padding: 100px 2rem 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: var(--ag-red);
    opacity: 0.12;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: #4a7fa5;
    opacity: 0.1;
  }
  .hero-inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(193,0,31,0.25);
    border: 1px solid rgba(193,0,31,0.5);
    color: #ffb3bf;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
  }
  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #ff6b80;
    display: inline-block;
  }
  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #fff;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--ag-red-mid);
  }
  .hero-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin-bottom: 44px;
    line-height: 1.7;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--ag-red);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #a0001a; transform: translateY(-1px); }
  .btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.18); }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
  }
  .stat-item {}
  .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: #fff;
    line-height: 1;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
  }

  /* ── SECTIONS ── */
  section { padding: 88px 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ag-red);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 16px;
  }
  .section-intro {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 620px;
    margin-bottom: 52px;
  }

  /* ── WARUM ── */
  #warum { background: var(--white); }
  .gap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .gap-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .gap-card:hover {
    border-color: var(--ag-red-mid);
    box-shadow: 0 4px 20px rgba(193,0,31,0.08);
  }
  .gap-icon {
    width: 44px; height: 44px;
    background: var(--ag-red-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
  }
  .gap-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .gap-card p {
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.6;
  }

  /* ── MEHRWERT ── */
  #mehrwert { background: var(--bg); }
  .benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .benefit-item {
    background: var(--white);
    padding: 32px 28px;
    display: flex;
    gap: 20px;
  }
  .benefit-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--ag-red-light);
    line-height: 1;
    min-width: 40px;
  }
  .benefit-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .benefit-content p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
  }

  /* ── VISION ── */
  #vision {
    background: var(--navy);
    color: #fff;
  }
  .vision-quote {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    line-height: 1.4;
    font-style: italic;
    color: #fff;
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
    position: relative;
    padding: 0 20px;
  }
  .vision-quote::before {
    content: '\201C';
    font-size: 6rem;
    color: var(--ag-red);
    opacity: 0.4;
    position: absolute;
    top: -30px;
    left: -10px;
    line-height: 1;
    font-style: normal;
  }

  .phase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 48px;
  }
  .phase-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 24px;
  }
  .phase-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ag-red-mid);
    margin-bottom: 10px;
  }
  .phase-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
  }
  .phase-card p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
  }

  /* ── TREFFEN ── */
  #treffen { background: var(--white); }
  .format-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  .format-desc h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
  }
  .format-desc p {
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 14px;
  }
  .timeline {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 28px;
  }
  .timeline-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .timeline-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-start;
  }
  .timeline-item:last-child { margin-bottom: 0; }
  .t-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--ag-red);
    min-width: 58px;
    padding-top: 2px;
  }
  .t-bar {
    width: 3px;
    background: var(--ag-red-light);
    border-radius: 2px;
    flex-shrink: 0;
    align-self: stretch;
    min-height: 40px;
  }
  .t-content h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
  }
  .t-content p {
    font-size: 0.85rem;
    color: var(--slate);
  }

  /* ── KONTAKT ── */
  #kontakt { background: var(--bg); }
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
  }
  .contact-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
  }
  .contact-info p {
    font-size: 0.95rem;
    color: var(--slate);
    margin-bottom: 12px;
    line-height: 1.7;
  }
  .contact-event {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 22px;
    margin-top: 28px;
    color: #fff;
  }
  .contact-event .ev-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ag-red-mid);
    margin-bottom: 8px;
  }
  .contact-event h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .contact-event p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
  }
  .contact-event a {
    display: inline-block;
    margin-top: 14px;
    background: var(--ag-red);
    color: #fff;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
  }
  .contact-event a:hover { background: #a0001a; }

  /* Form */
  .contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--ag-red);
    box-shadow: 0 0 0 3px rgba(193,0,31,0.1);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    width: 100%;
    background: var(--ag-red);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .form-submit:hover { background: #a0001a; transform: translateY(-1px); }
  .form-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
  }
  #form-success {
    display: none;
    background: #eaf7ef;
    border: 1px solid #90d4aa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #1a5c35;
    font-weight: 500;
    margin-top: 16px;
  }

  .form-privacy-note {
    margin-top: 20px;
    font-size: 11px;
    line-height: 1.5;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 15px;
  }
  .form-privacy-note a {
    color: var(--ag-red);
    text-decoration: none;
  }
  .form-privacy-note a:hover {
    text-decoration: underline;
  }

  /* ── LEGAL SECTIONS ── */
  .legal-section {
    background: var(--white);
    padding: 80px 2rem;
  }
  .legal-section + .legal-section {
    background: var(--bg);
  }
  .legal-inner {
    max-width: 780px;
    margin: 0 auto;
  }
  .legal-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .legal-inner .legal-meta {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ag-red);
    margin-bottom: 36px;
    display: block;
  }
  .legal-inner h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 32px 0 8px;
  }
  .legal-inner p, .legal-inner li {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 10px;
  }
  .legal-inner strong {
    display: inline-block;
    margin-bottom: 2px;
  }
  .legal-inner ul {
    padding-left: 1.4rem;
    margin-bottom: 10px;
  }
  .legal-inner a {
    color: var(--ag-red);
    text-decoration: none;
  }
  .legal-inner a:hover { text-decoration: underline; }
  .legal-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.55);
    padding: 40px 2rem;
    text-align: center;
    font-size: 13px;
  }
  footer strong { color: rgba(255,255,255,0.85); }
  .footer-links {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-sep {
    color: rgba(255,255,255,0.2);
    user-select: none;
  }
  .footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
    margin: 0 5px;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.85); }

  /* ── DIVIDER ── */
  .divider {
    height: 1px;
    background: var(--border);
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ── INLINE-STYLE REPLACEMENTS ── */

  /* Vision section */
  #vision .section-inner { text-align: center; }
  #vision .section-label { color: var(--ag-red-mid); }
  #vision .section-title { color: #fff; text-align: center; }
  .vision-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    max-width: 500px;
    margin: 0 auto 40px;
  }

  /* Mehrwert note */
  .benefit-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--muted);
    text-align: center;
  }

  /* Nav logo image */
  .nav-logo-img {
    height: 68px;
    width: auto;
    display: block;
  }

  /* Contact event details */
  .contact-event-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .event-schedule-wrap {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px;
    margin-bottom: 12px;
  }
  .event-schedule-title {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ag-red-mid);
    margin-bottom: 8px;
  }
  .event-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .event-schedule-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .event-schedule-time {
    font-size: 11px;
    font-weight: 600;
    color: var(--ag-red-mid);
    min-width: 48px;
    padding-top: 1px;
  }
  .event-schedule-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
  }
  .contact-event .btn-ghost {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
  }

  /* Footer */
  .footer-tagline { margin-top: 8px; }

  /* Trust / Betreiber section */
  .trust-section {
    background: var(--white);
    border-top: 1px solid var(--border);
  }
  .trust-content {
    max-width: 800px;
  }
  .trust-content p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 12px;
  }
  .trust-content a {
    color: var(--ag-red);
    text-decoration: none;
  }
  .trust-content a:hover {
    text-decoration: underline;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
  }
  .trust-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .trust-item p {
    font-size: 0.88rem;
    margin-bottom: 0;
  }
  .trust-footer {
    margin-top: 2rem;
    font-size: 0.9rem !important;
  }

  .footer-notice {
    margin-top: 24px;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
  }

  /* Legal stand */
  .legal-stand {
    font-size: 0.85rem;
    color: var(--muted);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 700px) {
    nav { padding: 0 1rem; }
    .nav-links { display: none; }
    section { padding: 60px 1.2rem; }
    .format-box,
    .contact-wrap { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .contact-form { padding: 24px; }
  }

  /* Form loading spinner styles */
  .loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  /* ==========================================
     ── NEWS TICKER BAR (MARQUEE) ──
     ========================================== */
  .news-ticker-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13.5px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 38px;
    position: relative;
    z-index: 90;
  }
  .ticker-label {
    background: var(--ag-red);
    color: #fff;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    position: relative;
    box-shadow: 4px 0 10px rgba(0,0,0,0.15);
    flex-shrink: 0;
  }
  .ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 32s linear infinite;
  }
  .ticker-content:hover {
    animation-play-state: paused;
  }
  .ticker-item {
    display: inline-block;
    margin-right: 60px;
  }
  .ticker-item span {
    color: var(--ag-red-mid);
    margin-right: 8px;
    font-weight: 700;
  }
  @keyframes ticker-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
  }

  /* ==========================================
     ── NEWS & BLOG SECTION ──
     ========================================== */
  #news {
    background: var(--white);
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-top: 1rem;
  }
  .blog-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--ag-red-mid);
    box-shadow: 0 10px 25px rgba(193,0,31,0.06);
  }
  .blog-header {
    margin-bottom: 12px;
  }
  .blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .blog-date {
    font-size: 12.5px;
    color: var(--slate);
    font-weight: 500;
  }
  .blog-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 100px;
  }
  .blog-badge.initiative {
    background: var(--ag-red-light);
    color: var(--ag-red);
    border: 1px solid rgba(193,0,31,0.15);
  }
  .blog-badge.technik {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid rgba(3,105,161,0.15);
  }
  .blog-badge.termine {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid rgba(180,83,9,0.15);
  }
  .blog-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 10px;
    transition: color 0.25s ease;
  }
  .blog-card:hover h3 {
    color: var(--ag-red);
  }
  .blog-excerpt {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .blog-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ag-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    align-self: flex-start;
    transition: color 0.2s;
  }
  .blog-link:hover {
    color: #a0001a;
  }
  .blog-link svg {
    transition: transform 0.2s ease;
  }
  .blog-link:hover svg {
    transform: translateX(4px);
  }

  @media (max-width: 700px) {
    .news-ticker-bar {
      font-size: 12px;
      height: 34px;
    }
    .ticker-label {
      font-size: 10px;
      padding: 0 10px;
    }
    .blog-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

  /* ==========================================
     ── NEWS & TRENDS (ICT BLOG BEM) ──
     ========================================== */
  .section--news {
    background: var(--white);
  }
  .section__inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .section__header {
    margin-bottom: 2rem;
  }
  .section__title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 16px;
  }
  .section__lead {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 620px;
    line-height: 1.7;
  }

  .news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .news-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .news-card:hover {
    transform: translateY(-4px);
    border-color: var(--ag-red-mid);
    box-shadow: 0 10px 25px rgba(193,0,31,0.06);
  }
  .news-card:nth-child(5) {
    grid-column: span 2;
  }
  
  .news-card__title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 10px;
    transition: color 0.25s ease;
  }
  .news-card:hover .news-card__title {
    color: var(--ag-red);
  }
  
  .news-card__text {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  
  .news-card__links {
    list-style: none;
    padding-left: 0;
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .news-card__links li {
    position: relative;
    padding-left: 16px;
    line-height: 1.4;
  }
  .news-card__links li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--ag-red);
    font-weight: 700;
    font-size: 13px;
    transition: transform 0.2s ease;
  }
  .news-card__links li:hover::before {
    transform: translateX(3px);
  }
  .news-card__links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s;
  }
  .news-card__links a:hover {
    color: var(--ag-red);
    text-decoration: underline;
  }

  @media (max-width: 700px) {
    .news-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .news-card:nth-child(5) {
      grid-column: span 1;
    }
  }

  /* Form error display */
  #form-error {
    display: none;
    background: #fdf2f2;
    border: 1px solid #f8b4b4;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #9b1c1c;
    font-weight: 500;
    margin-top: 16px;
  }

  /* Honeypot spam prevention container */
  .sr-only-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }