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

  /* Default indentation for article and legal-document lists that do not
     provide their own component class. */
  ul:not([class]) {
    padding-left: 1.5em;
    list-style: disc;
  }

  ul:not([class]) ul {
    list-style: circle;
    margin-top: 0.25em;
  }

  .footer-col ul { padding-left: 0; }

  ol:not([class]) {
    padding-left: 1.5em;
    list-style: decimal;
  }

  ol:not([class]) ol {
    list-style: lower-alpha;
    margin-top: 0.25em;
  }

  :root {
    --green: #0D8A72;
    --green-light: #6EDFC8;
    --beat: #5C64FF;
    --beat-light: #E8E9FF;
    --spotlight: #ED9E1E;
    --spotlight-light: #FDF3DC;
    --text: #0E1C36;
    --bg-soft: #EBEBEA;
    --white: #ffffff;
    --radius-shape: 0px 20px 20px 20px; /* top-left sharp, others rounded */
    --radius-card: 0px 18px 18px 18px;
    --radius-card-top: 0px 18px 0 0; /* nur die oberen Ecken von --radius-card, für Bild-Wrapper */
    --font-display: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lexend Deca', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(255,255,255,0.92);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13,138,114,0.1);
    transition: box-shadow 0.3s;
  }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--green);
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
  }
  
    h1 a {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 800;
    opacity: 0.7;
  }

  .nav-links a:hover { opacity: 1; color: var(--green); }

  .nav-cta {
    background: var(--green);
    color: white !important;
    opacity: 1 !important;
    padding: 0.5rem 1.4rem;
    border-radius: 18px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s !important;
  }

  .nav-cta:hover { background: #0a7461 !important; transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 3rem 4rem;
    background: var(--text);
    position: relative;
    overflow: hidden;
  }

  /* ── Hero Slider ───────────────────────────────────────── */
  .hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }

  .hero-slide.active { opacity: 1; }

  /* Dark overlay so text stays readable */
  .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(14,28,54,0.82) 0%,
      rgba(14,28,54,0.55) 60%,
      rgba(13,138,114,0.25) 100%
    );
  }

  /* Slide dots */
  .hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
  }

  .hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
  }

  .hero-dot.active {
    background: var(--green-light);
    transform: scale(1.3);
  }

  /* Slide label overlay */
  .hero-slide-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 0.5rem 1.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    background: linear-gradient(transparent, rgba(14,28,54,0.5));
    text-align: right;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
  }

  .hero-slide.active .hero-slide-label { opacity: 1; }

  /* Keep orbs as decorative layer on top of slides */
  .hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
  }

  .orb1 {
    width: 600px; height: 600px;
    background: var(--green);
    top: -100px; right: -100px;
    animation: drift 8s ease-in-out infinite alternate;
  }

  .orb2 {
    width: 400px; height: 400px;
    background: var(--beat);
    bottom: -50px; left: 20%;
    animation: drift 10s ease-in-out infinite alternate-reverse;
  }

  .orb3 {
    width: 300px; height: 300px;
    background: var(--spotlight);
    top: 40%; left: -80px;
    animation: drift 12s ease-in-out infinite alternate;
  }

  @keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(30px, 20px) scale(1.05); }
  }

  .hero-content { position: relative; z-index: 2; max-width: 940px;color:#ffffff;font-weight: 300;font-size: 20px;}

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(110,223,200,0.15);
    color: var(--green-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(110,223,200,0.3);
  }

  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero h1 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: white;
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--green-light);
  }

  .hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--green);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-primary:hover { background: #0a7461; transform: translateY(-2px); }

  .btn-secondary {
    background: transparent;
    color: white;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-card);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.25);
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
  }

  .btn-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
  }

  /* FLOATING BADGES */
  .hero-badges {
    display: flex;
    gap: 0.95rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  .genre-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 300;
    color: white;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    animation: fadeUp 0.6s ease both;
  }

  .genre-badge a {
	color: #ffffff;
	text-decoration: none;
  }

  .genre-badge:nth-child(1) { font-size: 1.2rem; animation-delay: 0.1s; }
  .genre-badge:nth-child(2) { font-size: 1.2rem; animation-delay: 0.2s; }
  .genre-badge:nth-child(3) { font-size: 1.2rem; animation-delay: 0.3s; }
  .genre-badge:nth-child(4) { font-size: 1.2rem; animation-delay: 0.4s; }
  .genre-badge:nth-child(5) { font-size: 1.2rem; animation-delay: 0.5s; }
  .genre-badge:nth-child(6) { font-size: 1.2rem; animation-delay: 0.6s; }
  .genre-badge:nth-child(7) { font-size: 1.2rem; animation-delay: 0.7s; }
  .genre-badge:nth-child(8) { font-size: 1.2rem; animation-delay: 0.8s; }
  .genre-badge:nth-child(9) { font-size: 1.2rem; animation-delay: 0.9s; }

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

  /* SECTION LAYOUT */
  section { padding: 6rem 3rem; }

  .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--green);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }

  .section-title em { font-style: italic; color: var(--green); }

  .section-sub {
    font-size: 1rem;
    color: rgba(14,28,54,0.9);
    line-height: 1.7;
    font-weight: 300;
  }
  
  .section-text {
    font-size: 1rem;
    color: rgba(14,28,54,0.9);
    line-height: 1.7;
    font-weight: 300;
	max-width: 900px;
  }
  
  .section-text td {
	font-size: 1rem;
    color: rgba(14,28,54,0.9);
    line-height: 1.7;
    font-weight: 300;
	padding: 10px;
	background-color: var(--bg-soft);
	vertical-align: top;
  }
  
/* Ebene 1 */
ol.multilevel {
  counter-reset: level1;
  list-style: none;
  padding-left: 1.5em;
}
ol.multilevel > li {
  counter-increment: level1;
}
ol.multilevel > li::before {
  content: counter(level1) ". ";
  font-weight: bold;
}

/* Ebene 2 */
ol.multilevel ol {
  counter-reset: level2;
  list-style: none;
  padding-left: 1.5em;
}
ol.multilevel ol > li {
  counter-increment: level2;
}
ol.multilevel ol > li::before {
  content: counter(level1) "." counter(level2) " ";
}

/* Ebene 3 */
ol.multilevel ol ol {
  counter-reset: level3;
  list-style: none;
  padding-left: 1.5em;
}
ol.multilevel ol ol > li {
  counter-increment: level3;
}
ol.multilevel ol ol > li::before {
  content: counter(level1) "." counter(level2) "." counter(level3) " ";
}

  /* HOW IT WORKS – STREAM */
  .stream-section { background: var(--bg-soft); }

  .stream-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
  }

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

  .stream-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .stream-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,138,114,0.12); }

  .stream-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
  }

  .card-stream::before { background: var(--green); }
  .card-beat::before { background: var(--beat); }
  .card-spotlight::before { background: var(--spotlight); }

  .card-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-shape);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
  }

  .icon-stream { background: rgba(13,138,114,0.1); color: var(--green); }
  .icon-beat { background: var(--beat-light); color: var(--beat); }
  .icon-spotlight { background: var(--spotlight-light); color: var(--spotlight); }

  .card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem 0.25rem 0rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
  }

  .tag-stream { color: var(--green); font-size: 2.4rem; }
  .tag-beat { color: var(--beat);font-size: 2.4rem; }
  .tag-spotlight { color: var(--spotlight);font-size: 2.4rem; }

  .stream-card h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    color: var(--text);
  }

  .stream-card p {
    font-size: 0.9rem;
    color: rgba(14,28,54,0.9);
    line-height: 1.6;
    font-weight: 300;
  }

  .feature-list {
    list-style: none;
    margin-top: 1.25rem;
  }

  .feature-list li {
    font-size: 0.85rem;
    color: rgba(14,28,54,0.65);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
  }

  .feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-size: 0.75rem;
  }

  .card-beat .feature-list li::before { color: var(--beat); }
  .card-spotlight .feature-list li::before { color: var(--spotlight); }
  .card-stream .feature-list li::before { color: var(--green); }

  /* STREAM NOTE */
  .stream-note {
    background: white;
    border-radius: var(--radius-card);
    padding: 1.75rem 2rem;
    border-left: 3px solid var(--green);
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .stream-note-icon {
    width: 32px; height: 32px;
    min-width: 32px;
    background: rgba(13,138,114,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--green);
    margin-top: 2px;
  }

  .stream-note p {
    font-size: 0.88rem;
    color: rgba(14,28,54,0.9);
    line-height: 1.6;
    font-weight: 300;
  }

  .stream-note strong { color: var(--text); font-weight: 600; }

  /* PRICING */
  .pricing-section { background: var(--text); }

  .pricing-section .section-label { color: var(--green-light); }

  .pricing-section .section-title, .aktuelles-section .section-title { color: white; }

  .pricing-section .section-title em { color: var(--green-light); }

  .pricing-section .section-sub { color: rgba(255,255,255,0.5); }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .pricing-card {
    display: flex; flex-direction: column;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-card);
    padding: 2.25rem;
    position: relative;
    transition: transform 0.25s, border-color 0.25s;
  }

  .pricing-card:hover { transform: translateY(-4px); border-color: rgba(110,223,200,0.3); }

  .pricing-card.featured {
    background: var(--green);
    border-color: var(--green);
  }

  .pricing-card.featured:hover { transform: translateY(-4px); border-color: var(--green-light); }

  .plan-badge {
	position: relative;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-shape);
	width: 100px;
  }

  .badge-standard { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
  .badge-pro { background: rgba(110,223,200,0.2); color: #ffffff; }
  .badge-enterprise { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

  .pricing-card h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.7rem;
    color: white;
    margin-bottom: 0.5rem;
  }

  .pricing-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1.75rem;
  }

  .pricing-features {
    flex: 1;
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
  }

  .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    padding: 0.4rem 0;
    font-weight: 300;
    line-height: 1.4;
  }

  .pricing-features li .check {
    width: 16px; height: 16px;
    min-width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    font-size: 0.65rem;
    font-weight: 700;
  }

  .check-green { background: rgba(13,138,114,0.3); color: var(--green-light); }
  .check-featured { background: rgba(255,255,255,0.2); color: white; }

  .pricing-cta {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: 0.8rem;
    border-radius: 18px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }

  .cta-default { background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.15); }
  .cta-default:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }

  .cta-featured { background: white; color: var(--green); }
  .cta-featured:hover { background: var(--bg-soft); transform: translateY(-1px); }

  /* ADD ON */
  .addon-card {
    margin-top: 2rem;
    background: rgba(92,100,255,0.12);
    border: 1px solid rgba(92,100,255,0.25);
    border-radius: var(--radius-card);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .addon-tag {
    display: inline-block;
    background: var(--beat);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-shape);
    margin-bottom: 1rem;
  }

  .addon-card h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.6rem;
  }

  .addon-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    line-height: 1.6;
  }

  .addon-benefits {
    list-style: none;
  }

  .addon-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    padding: 0.35rem 0;
    font-weight: 300;
  }

  .addon-benefits li::before {
    content: '✦';
    color: var(--beat);
    font-size: 0.7rem;
    margin-top: 3px;
  }

  /* USE CASES */
  .usecases-section { background: var(--white); scroll-margin-top: 90px; }

  
  
  .usecases-carousel {
    position: relative;
    margin-top: 3.5rem;
  }

  .usecases-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1.5rem 0.25rem;
  }

  .usecases-track::-webkit-scrollbar { display: none; }

  .usecases-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(14,28,54,0.16);
    z-index: 5;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
  }
 

  .usecases-arrow:hover { background: var(--green); color: white; }
  .usecases-arrow-prev { left: -8px; }
  .usecases-arrow-next { right: -8px; }
  .usecases-arrow svg { width: 18px; height: 18px; display: block; }
  .usecases-arrow-prev svg { transform: rotate(180deg); }

  .usecase-card {
    background: var(--bg-soft);
    border-radius: var(--radius-card);
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
    outline: 3px solid transparent;
    outline-offset: 2px;
    transition: transform 0.25s, box-shadow 0.25s, outline-color 0.25s;
  }

  .usecase-card:hover { transform: translateY(-4px); box-shadow: 0 8px 15px rgba(14,28,54,0.1); }

  .usecase-card.is-highlighted {
    outline-color: var(--green);
    box-shadow: 0 8px 15px rgba(13,138,114,0.28);
    transform: translateY(-4px);
    animation: usecasePulse 1.2s ease;
  }

  @keyframes usecasePulse {
    0%   { box-shadow: 0 0 0 0 rgba(13,138,114,0.45); }
    70%  { box-shadow: 0 0 0 14px rgba(13,138,114,0); }
    100% { box-shadow: 0 16px 44px rgba(13,138,114,0.28); }
  }

  .usecase-visual {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card-top);
  }

  .uc-restaurant { background: linear-gradient(135deg, #0D8A72 0%, #6EDFC8 100%); }
  .uc-retail { background: linear-gradient(135deg, #5C64FF 0%, #A5AAFF 100%); }
  .uc-hotel { background: linear-gradient(135deg, #ED9E1E 0%, #F5C36B 100%); }
  .uc-fitness { background: linear-gradient(135deg, #0E1C36 0%, #2A4080 100%); }
  .uc-office { background: linear-gradient(135deg, #0D8A72 0%, #0E1C36 100%); }
  .uc-events { background: linear-gradient(135deg, #ED9E1E 0%, #5C64FF 100%); }

  .usecase-body { padding: 1.5rem; }

  .usecase-card h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
  }

  .usecase-card p {
    font-size: 0.85rem;
    color: rgba(14,28,54,0.9);
    line-height: 1.6;
    font-weight: 300;
  }

  /* COMPLIANCE */
  .compliance-section, .news-details-section { background: white; }

  .compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
  }

  .compliance-visual {
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
    .compliance-visual img {
    border-radius: var(--radius-card);
  }

  .compliance-visual::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
	padding: 0;
    background: var(--green);
    opacity: 0.08;
    top: -80px; right: -80px;
  }

  .big-check {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
  }

  .compliance-visual h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
  }

  .compliance-visual p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.6;
  }

  .compliance-list {
    list-style: none;
  }

  .compliance-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(14,28,54,0.07);
  }

  .compliance-list li:last-child { border-bottom: none; }

  .compliance-icon {
    width: 40px; height: 40px;
    min-width: 40px;
    background: rgba(13,138,114,0.1);
    border-radius: var(--radius-shape);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--green);
  }

  .compliance-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
  }

  .compliance-text p {
    font-size: 0.82rem;
    color: rgba(14,28,54,0.9);
    line-height: 1.5;
    font-weight: 300;
  }

  /* CTA SECTION */
  .cta-section {
    background: var(--green);
    text-align: center;
    padding: 7rem 3rem;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    top: -200px; right: -100px;
  }

  .cta-section::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    bottom: -100px; left: 5%;
  }

  .cta-section h2 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: white;
    margin: 0 auto 1.25rem;
    line-height: 1.1;
    position: relative;
    z-index: 2;
  }

  .cta-section p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
    z-index: 2;
  }

  .cta-actions { position: relative; z-index: 2; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  .btn-white {
    background: white;
    color: var(--green);
    padding: 0.9rem 2.2rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-white:hover { background: var(--bg-soft); transform: translateY(-2px); }

  .btn-ghost-white {
    background: transparent;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-ghost-white:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.savings-disclaimer a {
	text-decoration: underline;
	}

  /* FOOTER */
  footer {
    background: var(--text);
    color: rgba(255,255,255,0.5);
    padding: 3.5rem 3rem 2.5rem;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.6rem;
    color: var(--green-light);
    margin-bottom: 0.75rem;
    display: block;
    text-decoration: none;
  }

  .footer-tagline {
    font-size: 0.82rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 240px;
  }

  .footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .social-btn {
    width: 34px; height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    transition: background 0.2s;
  }

  .social-btn:hover { color: var(--green-light); }

  .footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li { margin-bottom: 0.5rem; }

  .footer-col ul a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
  }

  .footer-col ul a:hover { color: var(--green-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
  }

  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
  }

  .footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

  /* ANIMATIONS
     Sicherheitsnetz: Standardmäßig ist .reveal IMMER sichtbar.
     Erst wenn JS erfolgreich lädt, setzt es früh die Klasse "js" auf <html> –
     nur dann wird überhaupt ein-/ausgeblendet. Läuft das Script in einem
     Browser nicht (Fehler, Blockierung, alte Engine, langsames Laden),
     bleibt der Inhalt trotzdem sichtbar statt dauerhaft opacity:0. */
  .reveal {
    opacity: 1;
    transform: none;
  }

  html.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  html.js .reveal.visible { opacity: 1; transform: translateY(0); }

  /* Falls JS zwar lädt, aber die Observer-Logik ein Element nie erreicht
     (z. B. sehr lange Seiten wie die AGB), nach kurzer Zeit ohnehin einblenden */
  @media (prefers-reduced-motion: reduce) {
    html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  }

  /* Scrolling music ticker */
  .ticker-wrap {
    background: rgba(13,138,114,1);
    overflow: hidden;
    padding: 1rem 0;
    border-top: 1px solid rgba(13,138,114,0.1);
    border-bottom: 1px solid rgba(13,138,114,0.1);
  }

  .ticker {
    display: flex;
    gap: 3rem;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
  }

  .ticker span {
    font-size: 1.56rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white);
  }

  .ticker span.dot { opacity: 1; }

  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ═══════════════════════════════════════
     ERSPARNISCHECK
  ═══════════════════════════════════════ */
  .savings-section { background: var(--white); }
  .savings-section .section-label { color: var(--green-light); }
  .savings-section .section-title { color: var(--green-light); }
  .savings-section .section-title em { color: var(--green-light); }
  .savings-section .section-sub { color: rgba(14,28,54,1); }

  .step-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: rgba(14,28,54,1);
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.25rem; margin-top: 2.5rem;
  }
  .step-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }

  .branch-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
  .branch-card {
    background: rgba(14,28,54,0.04); border: 1.5px solid rgba(14,28,54,0.09);
    border-radius: var(--radius-card); padding: 1.5rem 0.75rem 1.25rem;
    cursor: pointer; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem; transition: all 0.22s;
  }
  .branch-card:hover { background: rgba(110,223,200,0.07); border-color: rgba(110,223,200,0.28); transform: translateY(-2px); }
  .branch-card.active { background: rgba(13,138,114,0.18); border-color: var(--green); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(13,138,114,0.22); }
  .branch-icon-wrap { width: 56px; height: 56px; flex-shrink: 0; }
  .branch-icon-wrap svg { width: 100%; height: 100%; display: block; }
  .branch-name { font-size: 0.76rem; font-weight: 600; color: rgba(14,28,54,1); line-height: 1.35; transition: color 0.2s; }
  .branch-card:hover .branch-name, .branch-card.active .branch-name { color: rgba(14,28,54,1); }
  .branch-tarif-hint { font-size: 0.62rem; color: rgba(14,28,54,1); line-height: 1.3; transition: color 0.2s; }
  .branch-card.active .branch-tarif-hint { color: rgba(14,28,54,1); }

  .calculator-step { display: none; }
  .calculator-step.visible { display: block; animation: fadeInUp 0.38s ease; }
  @keyframes fadeInUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

  .calc-context-bar {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(14,25,54,0.05); border: 1px solid rgba(14,25,54,0.09);
    border-radius: var(--radius-card); padding: 0.8rem 1.25rem; flex-wrap: wrap; gap: 0.75rem;
  }
  .calc-context-branch { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; font-weight: 600; color: var(--green); }
  .calc-context-branch svg { width: 22px; height: 22px; }
  .calc-context-tarif { font-size: 0.72rem; color: rgba(14,28,54,0.55); }
  .calc-change-btn { font-size: 0.75rem; color: var(--green); background: none; border: none; cursor: pointer; font-family: 'Lexend Deca',sans-serif; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; padding: 0; }
  .calc-change-btn:hover { color: var(--green-light); }

  .size-tabs { display: flex; gap: 0.75rem; margin-bottom: 2rem; flex-wrap: wrap; }
  .size-tab { padding: 0.65rem 1.5rem; border-radius: 18px; border: 1.5px solid rgba(14,28,54,0.5); background: transparent; color: rgba(14,28,54,0.65); font-family: 'Lexend Deca',sans-serif; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
  .size-tab:hover { border-color: var(--green-light); color: var(--green-light); }
  .size-tab.active { background: var(--green); border-color: var(--green); color: white; font-weight: 600; }

  .savings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
  .savings-card { border-radius: var(--radius-card); padding: 2rem; position: relative; overflow: hidden; }
  .savings-card-gema  { background: rgba(237,158,30,0.1);  border: 1.5px solid rgba(237,158,30,0.25); }
  .savings-card-orphe { background: rgba(13,138,114,0.1);  border: 1.5px solid rgba(13,138,114,0.3); }
  .savings-card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 0.5rem; }
  .label-gema  { color: var(--spotlight); }
  .label-orphe { color: var(--green); }
  .savings-card h3 { font-family: 'Lexend Deca',sans-serif; font-size: 1.2rem; color: var(--text); margin-bottom: 1.5rem; }
  .savings-card .savings-amount { color: var(--text); }
  .savings-amount { font-family: 'Lexend Deca',sans-serif; font-size: 3rem; font-weight: 400; color: white; line-height: 1; margin-bottom: 0.3rem; transition: all 0.35s ease; }
  .savings-amount .currency { font-size: 1.4rem; vertical-align: super; margin-right: 2px; }
  .savings-card .savings-amount .period { color: rgba(14,28,54,0.5); }
  .savings-amount .period { font-family: 'Lexend Deca',sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.45); font-weight: 300; margin-left: 4px; }
  .savings-note { font-size: 0.8rem; color: rgba(14,28,54,0.55); font-weight: 300; line-height: 1.5; margin-top: 1rem; }
  .savings-breakdown { list-style: none; margin-top: 1rem; }
  .savings-breakdown li { display: flex; justify-content: space-between; font-size: 0.82rem; color: rgba(14,28,54,0.7); padding: 0.3rem 0; border-bottom: 1px solid rgba(14,28,54,0.1); font-weight: 300; }
  .savings-breakdown li:last-child { border-bottom: none; }
  .savings-breakdown li span:last-child { font-weight: 600; color: var(--text); }

  .savings-result { background: linear-gradient(135deg, var(--green) 0%, #0a6b5a 100%); border-radius: var(--radius-card); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
  .savings-result-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.35rem; }
  .savings-result-amount { font-family: 'Lexend Deca',sans-serif; font-size: 2.5rem; color: white; line-height: 1; }
  .savings-result-sub { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 0.3rem; font-weight: 300; }
  .savings-result-cta { background: white; color: var(--green); padding: 0.85rem 1.8rem; border-radius: 18px; text-decoration: none; font-weight: 700; font-size: 0.9rem; white-space: nowrap; transition: background 0.2s, transform 0.15s; }
  .savings-result-cta:hover { background: var(--bg-soft); transform: translateY(-1px); }
  .savings-disclaimer { font-size: 0.75rem; color: rgba(14,28,54,1); font-weight: 300; line-height: 1.5; margin-top: 1.25rem; font-style: italic; }
  .savings-disclaimer a { color: var(--green); }
  .savings-plan-row { display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
  .plan-pill { padding: 0.3rem 0.9rem; border-radius: 50px; border: 1px solid rgba(14,28,54,0.5); background: transparent; color: rgba(14,28,54,0.6); font-family: 'Lexend Deca',sans-serif; font-size: 0.78rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
  .plan-pill.active { background: var(--green); border-color: var(--green); color: white; }

  /* ── Consent Banner ───────────────────────────────────── */
  .consent-overlay { position: fixed; inset: 0; background: rgba(14,28,54,0.5); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); z-index: 9000; display: flex; align-items: flex-end; justify-content: center; padding: 1.5rem; transition: opacity 0.35s; }
  .consent-overlay.hidden { opacity: 0; pointer-events: none; }
  .consent-banner { background: white; border-radius: var(--radius-card); padding: 2rem 2.25rem 1.75rem; max-width: 820px; width: 100%; box-shadow: 0 16px 60px rgba(14,28,54,0.22); }
  .consent-top { display: grid; grid-template-columns: 1fr auto; gap: 1.75rem; align-items: start; }
  .consent-logo { font-size: 1.1rem; font-weight: 800; color: var(--green); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
  .consent-text { font-size: 0.83rem; color: rgba(14,28,54,0.62); line-height: 1.65; font-weight: 300; }
  .consent-text a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
  .consent-text strong { color: var(--text); font-weight: 600; }
  .consent-actions { display: flex; flex-direction: column; gap: 0.55rem; min-width: 155px; }
  .consent-btn-accept { background: var(--green); color: white; border: none; border-radius: 18px; padding: 0.75rem 1rem; font-family: 'Lexend Deca',sans-serif; font-size: 0.86rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.15s; }
  .consent-btn-accept:hover { background: #0a7461; transform: translateY(-1px); }
  .consent-btn-reject { background: transparent; color: rgba(14,28,54,0.5); border: 1px solid rgba(14,28,54,0.14); border-radius: 18px; padding: 0.65rem 1rem; font-family: 'Lexend Deca',sans-serif; font-size: 0.82rem; cursor: pointer; transition: all 0.2s; }
  .consent-btn-reject:hover { border-color: rgba(14,28,54,0.3); color: var(--text); }
  .consent-btn-settings { font-size: 0.74rem; color: rgba(14,28,54,0.38); background: none; border: none; cursor: pointer; font-family: 'Lexend Deca',sans-serif; text-decoration: underline; text-underline-offset: 3px; padding: 0; width: 100%; text-align: center; }
  .consent-btn-settings:hover { color: var(--green); }
  .consent-detail { display: none; margin-top: 1.25rem; border-top: 1px solid rgba(14,28,54,0.08); padding-top: 1.25rem; }
  .consent-detail.open { display: block; }
  .consent-row { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid rgba(14,28,54,0.06); }
  .consent-row:last-child { border-bottom: none; }
  .consent-row-label { font-size: 0.8rem; color: rgba(14,28,54,0.6); }
  .consent-row-label span { font-weight: 600; color: var(--text); display: block; font-size: 0.84rem; }
  .toggle { position: relative; width: 38px; height: 22px; flex-shrink: 0; }
  .toggle input { opacity: 0; width: 0; height: 0; }
  .toggle-track { position: absolute; inset: 0; background: rgba(14,28,54,0.14); border-radius: 22px; cursor: pointer; transition: background 0.2s; }
  .toggle-track::before { content: ''; position: absolute; width: 16px; height: 16px; background: white; border-radius: 50%; left: 3px; top: 3px; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.18); }
  .toggle input:checked + .toggle-track { background: var(--green); }
  .toggle input:checked + .toggle-track::before { transform: translateX(16px); }
  .toggle input:disabled + .toggle-track { opacity: 0.55; cursor: not-allowed; }

  /* ═══════════════════════════════════════
     NEWSROOM
  ═══════════════════════════════════════ */
  .newsroom-section { background: var(--bg-soft); }

  .newsroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .news-card {
    background: white;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
  }

  .news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(14,28,54,0.1); }

  .news-card-visual {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    position: relative;
  }

  .news-visual-1 { background: linear-gradient(135deg, #0D8A72, #6EDFC8); }
  .news-visual-2 { background: linear-gradient(135deg, #0E1C36, #5C64FF); }
  .news-visual-3 { background: linear-gradient(135deg, #ED9E1E, #F5C36B); }
  .news-visual-4 { background: linear-gradient(135deg, #5C64FF, #A5AAFF); }
  .news-visual-5 { background: linear-gradient(135deg, #0D8A72, #0E1C36); }
  .news-visual-6 { background: linear-gradient(135deg, #ED9E1E, #0D8A72); }

  .news-category-tag {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    background: rgba(14,28,54,0.45);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-shape);
  }

  .news-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .news-date {
    font-size: 0.75rem;
    color: rgba(14,28,54,0.4);
    font-weight: 300;
    margin-bottom: 0.5rem;
  }

  .news-card h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.6rem;
    flex: 1;
  }
  
  .news-details-section h3 {
	font-family: 'Lexend Deca', sans-serif;
    font-size: 1.05rem;
    color: var(--green);
    line-height: 1.3;
    margin-bottom: 0.6rem;
    flex: 1;
  }
  
  .news-details-section .important {
	background-color: var(--green-light);
	padding: 1em;
	margin: 1em 0;
  }

  .news-card p {
    font-size: 0.82rem;
    color: rgba(14,28,54,0.9);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1rem;
  }

  .news-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s;
  }

  .news-link:hover { gap: 0.5rem; }

  .newsroom-cta-row {
    text-align: left;
    margin-top: 2.5rem;
  }


.news-img-wrapper {
  display: inline-block;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.news-img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════
     Aktuelles
  ═══════════════════════════════════════ */
  .aktuelles-section { background: #0e1c36; }

  .aktuelles-section p.section-sub {
	  color: #ffffff;
  }

  .aktuelles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .aktuelles-card {
    background: white;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
  }

  .aktuelles-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(14,28,54,0.1); }

  .aktuelles-card-visual {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    position: relative;
  }

  .aktuelles-visual-1 { background: linear-gradient(135deg, #0D8A72, #6EDFC8); }
  .aktuelles-visual-2 { background: linear-gradient(135deg, #0E1C36, #5C64FF); }
  .aktuelles-visual-3 { background: linear-gradient(135deg, #ED9E1E, #F5C36B); }

  .aktuelles-category-tag {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    background: rgba(14,28,54,0.45);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-shape);
  }

  .aktuelles-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .aktuelles-date {
    font-size: 0.75rem;
    color: rgba(14,28,54,0.4);
    font-weight: 300;
    margin-bottom: 0.5rem;
  }

  .aktuelles-card h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.6rem;
    flex: 1;
  }

  .aktuelles-card p {
    font-size: 0.82rem;
    color: rgba(14,28,54,0.9);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1rem;
  }

  .aktuelles-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s;
  }

  .aktuelles-link:hover { gap: 0.5rem; }

  .aktuelles-cta-row {
    text-align: left;
    margin-top: 2.5rem;
  }

  /* ═══════════════════════════════════════
     FAQ
  ═══════════════════════════════════════ */
  .faq-section { background: white; }

  .faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-top: 3rem;
    align-items: start;
  }

  .faq-sidebar {
    position: sticky;
    top: 6rem;
  }

  .faq-category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1.5rem;
  }

  .faq-cat-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    border-radius: 18px;
    border: none;
    background: transparent;
    color: rgba(14,28,54,0.5);
    font-family: 'Lexend Deca', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    width: 100%;
  }

  .faq-cat-btn:hover { background: var(--bg-soft); color: var(--text); }

  .faq-cat-btn.active {
    background: rgba(13,138,114,0.08);
    color: var(--green);
    font-weight: 600;
  }

  .faq-cat-icon {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .faq-icon-all { }
  .faq-icon-stream { background: rgba(13,138,114,0.12); }
  .faq-icon-beat { background: var(--beat-light); }
  .faq-icon-spotlight { background: var(--spotlight-light); }
  .faq-icon-billing { background: rgba(14,28,54,0.06); }
  .faq-icon-gema { background: rgba(13,138,114,0.08); }

  .faq-list { display: flex; flex-direction: column; gap: 0; }

  .faq-item {
    border-bottom: 1px solid rgba(14,28,54,0.08);
    overflow: hidden;
  }

  .faq-item:first-child { border-top: 1px solid rgba(14,28,54,0.08); }

  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    cursor: pointer;
    list-style: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s;
    user-select: none;
  }

  .faq-question:hover { color: var(--green); }

  .faq-question::marker { display: none; }

  .faq-arrow {
    width: 38px; height: 28px;
    min-width: 28px;
    border-radius: 18px;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text);
    transition: transform 0.25s, background 0.2s;
  }

  details[open] .faq-arrow {
    transform: rotate(180deg);
    background: rgba(13,138,114,0.1);
    color: var(--green);
  }

  .faq-answer {
    font-size: 0.9rem;
    color: rgba(14,28,54,0.6);
    line-height: 1.7;
    font-weight: 300;
    padding-bottom: 1.25rem;
    max-width: 720px;
  }

  .faq-answer strong { color: var(--text); font-weight: 600; }

  .faq-tag {
    display: inline-block;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    margin-right: 0.5rem;
    vertical-align: middle;
	border-radius: var(--radius-shape);
  }

  .faq-tag-stream { background: rgba(13,138,114,0.1); color: var(--green); }
  .faq-tag-beat { background: var(--beat-light); color: var(--beat); }
  .faq-tag-spotlight { background: var(--spotlight-light); color: var(--spotlight); }
  .faq-tag-billing { background: rgba(14,28,54,0.07); color: rgba(14,28,54,0.6); }
  .faq-tag-gema { background: rgba(13,138,114,0.08); color: var(--green); }

  .faq-hidden { display: none !important; }

  /* ── Pricing Störer ──────────────────────────────────────── */
  .pricing-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .pricing-stoerer {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    background: var(--spotlight);
    border-radius: 50%;
    text-align: center;
    padding: 0.5rem;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.25rem;
    box-shadow: 0 4px 20px rgba(237,158,30,0.4);
    animation: wobble 3s ease-in-out infinite;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .pricing-stoerer:hover {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 6px 28px rgba(237,158,30,0.55);
  }

  @keyframes wobble {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    50%       { transform: rotate(2deg) scale(1.03); }
  }

  .stoerer-line1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
  }

  .stoerer-line2 {
    font-size: 1.12rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 0.1rem;
  }

  .stoerer-line3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: 0.15rem;
  }

  /* ── Use Case Audio Sample ───────────────────────────────── */
  .audio-sample-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.85rem;
    padding: 0.45rem 1rem;
    border-radius: 18px;
    background: rgba(13,138,114,0.08);
    border: 1.5px solid rgba(13,138,114,0.18);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    font-family: 'Lexend Deca', sans-serif;
    letter-spacing: 0.02em;
    width: 100%;
    justify-content: left;
  }

  .audio-sample-btn:hover {
    background: rgba(13,138,114,0.14);
    border-color: rgba(13,138,114,0.35);
    transform: translateY(-1px);
  }

  .audio-sample-btn.playing {
    background: var(--green);
    border-color: var(--green);
    color: white;
  }

  .audio-sample-btn.playing:hover {
    background: #0a7461;
    border-color: #0a7461;
  }

  .audio-play-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: background 0.2s;
	align: center;
  }

  .audio-sample-btn.playing .audio-play-icon {
    background: white;
    color: var(--green);
  }

  /* Equalizer animation when playing */
  .eq-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
  }

  .eq-bars span {
    display: block;
    width: 3px;
    background: currentColor;
    border-radius: 1px;
    animation: none;
  }

  .audio-sample-btn.playing .eq-bars span {
    animation: eq 0.8s ease-in-out infinite alternate;
  }

  .eq-bars span:nth-child(1) { height: 4px;  animation-delay: 0s; }
  .eq-bars span:nth-child(2) { height: 10px; animation-delay: 0.15s; }
  .eq-bars span:nth-child(3) { height: 6px;  animation-delay: 0.3s; }
  .eq-bars span:nth-child(4) { height: 12px; animation-delay: 0.1s; }
  .eq-bars span:nth-child(5) { height: 5px;  animation-delay: 0.25s; }

  @keyframes eq {
    from { transform: scaleY(0.4); }
    to   { transform: scaleY(1); }
  }

  /* ═══════════════════════════════════════════════════════
     MOBILE FIRST — alle Basis-Styles sind für Mobile.
     Größere Viewports bekommen min-width overrides.
  ═══════════════════════════════════════════════════════ */

  /* NAV — mobile */
  nav { padding: 1rem 1.25rem; }

  .nav-links { display: none; }

  .nav-logo { font-size: 1.35rem; }

  /* Hamburger */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-shape);
    transition: background 0.2s;
  }

  .nav-hamburger:hover { background: rgba(13,138,114,0.08); }

  .nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s, width 0.2s;
    transform-origin: center;
  }

  .nav-hamburger span:nth-child(1) { width: 22px; }
  .nav-hamburger span:nth-child(2) { width: 16px; }
  .nav-hamburger span:nth-child(3) { width: 22px; }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

  /* Mobile menu drawer */
  .nav-drawer {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99;
    background: rgba(14,28,54,0.5);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  }

  .nav-drawer.open { display: block; }

  .nav-drawer-inner {
    position: absolute;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100%;
    background: white;
    padding: 5rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(14,28,54,0.15);
    animation: sliDein 0.25s ease;
  }

  @keyframes sliDein {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }

  .nav-drawer-inner a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-card);
    transition: background 0.15s, color 0.15s;
  }

  .nav-drawer-inner a:hover { background: var(--bg-soft); color: var(--green); }

  .nav-drawer-inner .drawer-cta {
    background: var(--green);
    color: white;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
  }

  .nav-drawer-inner .drawer-cta:hover { background: #0a7461; color: white; }

  .nav-drawer-divider {
    height: 1px;
    background: rgba(14,28,54,0.08);
    margin: 0.5rem 0;
  }

  /* HERO — mobile */
  .hero { padding: 5.5rem 1.25rem 3rem; min-height: 100svh; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; padding: 0.9rem 1.5rem; font-size: 0.92rem; }
  .hero-badges { gap: 0.5rem; margin-top: 2.5rem; }
  .genre-badge { font-size: 0.72rem; padding: 0.35rem 0.8rem; }

  /* SECTIONS — mobile */
  section { padding: 3.5rem 1.25rem; }

  .section-title { font-size: 1.9rem; }

  /* STREAM — mobile */
  .stream-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .stream-cards { grid-template-columns: 1fr; gap: 1.25rem; }
  .stream-note { flex-direction: column; gap: 0.75rem; }

  /* PRICING — mobile */
  .pricing-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .pricing-card { padding: 1.75rem; }
  .addon-card { grid-template-columns: 1fr; gap: 1.5rem; }

  /* USE CASES — mobile */
  .usecases-track { gap: 1.25rem; }
  .usecase-card { flex: 0 0 100%; }
  .usecases-arrow { display: none; }

  /* COMPLIANCE — mobile */
  .compliance-grid { grid-template-columns: 1fr; gap: 2rem; }
  .compliance-grid > div:first-child { order: 2; }
  .compliance-visual { order: 1; padding:2rem; }

  /* SAVINGS — mobile */
  .savings-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .branch-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .size-tabs { gap: 0.5rem; }
  .size-tab { padding: 0.6rem 1rem; font-size: 0.85rem; flex: 1; text-align: center; }
  .savings-result { flex-direction: column; gap: 1.25rem; text-align: center; padding: 1.5rem; }
  .savings-result-cta { width: 100%; text-align: center; display: block; }
  .savings-result-amount { font-size: 2rem; }
  .savings-amount { font-size: 2.4rem; }
  .savings-plan-row { gap: 0.4rem; }
  .plan-pill { font-size: 0.75rem; padding: 0.3rem 0.75rem; }

  /* NEWSROOM — mobile */
  .newsroom-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* FAQ — mobile */
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .faq-sidebar { position: static; }
  .faq-category-list { flex-direction: row; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
  .faq-cat-btn { width: auto; padding: 0.5rem 0.85rem; font-size: 0.8rem; }
  .faq-cat-icon { display: none; }
  .faq-question { font-size: 0.88rem; padding: 1rem 0; }

  /* FOOTER — mobile */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; font-size: 0.72rem; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }

  /* CTA — mobile */
  .cta-section { padding: 4.5rem 1.25rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-white, .btn-ghost-white { width: 100%; max-width: 320px; text-align: center; }

  /* ── TABLET  (≥ 640px) ─────────────────────────────────── */
  @media (min-width: 640px) {
    nav { padding: 1.25rem 2rem; }
    .hero { padding: 6.5rem 2rem 4rem; }
    .hero h1 { font-size: 3.2rem; }
    section { padding: 5rem 2rem; }
    .section-title { font-size: 2.4rem; }
    .hero-actions { flex-direction: row; }
    .usecase-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
    .usecases-arrow { display: flex; }
    .newsroom-grid { grid-template-columns: 1fr 1fr; }
    .savings-result { flex-direction: row; text-align: left; }
    .branch-grid { grid-template-columns: repeat(3,1fr); }
    .savings-result-cta { width: auto; }
    .cta-actions { flex-direction: row; }
    .btn-white, .btn-ghost-white { width: auto; }
  }

  /* ── DESKTOP (≥ 1024px) ────────────────────────────────── */
  @media (min-width: 1024px) {
    nav { padding: 1.25rem 3rem; }
    .nav-links { display: flex; }
    .nav-hamburger { display: none; }

    .hero { padding: 8rem 3rem 4rem; }
    .hero h1 { font-size: clamp(3rem, 5.5vw, 5.5rem); }
    .hero-sub { font-size: 1.15rem; }
    .hero-actions { flex-direction: row; }

    section { padding: 6rem 3rem; }
    .section-title { font-size: clamp(2rem, 4vw, 3.2rem); }

    .stream-intro { grid-template-columns: 1fr; gap: 4rem; }
    .stream-cards { grid-template-columns: 1fr 1fr 1fr; }
    .stream-note { flex-direction: row; }

    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .addon-card { grid-template-columns: 1fr 1fr; }

    .usecase-card { flex: 0 0 calc((100% - 3rem) / 3); }

    .compliance-grid { grid-template-columns: 1fr 1fr; }
    .compliance-grid > div:first-child { order: unset; }
    .compliance-visual { order: unset; padding: 0.5rem; }

    .savings-grid { grid-template-columns: 1fr 1fr; }
    .branch-grid { grid-template-columns: repeat(5,1fr); }
    .size-tab { flex: unset; }

    .newsroom-grid { grid-template-columns: repeat(3, 1fr); }

    .faq-layout { grid-template-columns: 1fr 2fr; gap: 5rem; }
    .faq-sidebar { position: sticky; top: 6rem; }
    .faq-category-list { flex-direction: column; }
    .faq-cat-btn { width: 100%; font-size: 0.88rem; }
    .faq-cat-icon { display: flex; }

    .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
    .footer-bottom { flex-direction: row; }

    .cta-section { padding: 7rem 3rem; }
    .cta-actions { flex-direction: row; }
  }

  /* ── Kontaktseite ──────────────────────────────────────────── */
  .kontakt-hero {
    padding: 9rem 3rem 3rem;
    background: var(--text);
  }
  .kontakt-hero .section-label { color: var(--green-light); }
  .kontakt-hero .section-title { color: white; }
  .kontakt-hero .section-title em { color: var(--green-light); }
  .kontakt-hero .section-sub { color: rgba(255,255,255,0.6); }

  .kontakt-section { background: var(--bg-soft); }

  .kontakt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .kontakt-info {
    background: var(--text);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    color: white;
  }
  .kontakt-info h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  .kontakt-info p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
  }
  .kontakt-info-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
  .kontakt-info-list li { display: flex; align-items: flex-start; gap: 0.9rem; }
  .kontakt-info-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: var(--radius-shape);
    background: rgba(13,138,114,0.18);
    color: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .kontakt-info-list strong { display: block; font-size: 0.88rem; color: white; margin-bottom: 0.15rem; }
  .kontakt-info-list span, .kontakt-info-list a { font-size: 0.86rem; color: rgba(255,255,255,0.55); text-decoration: none; font-weight: 300; }
  .kontakt-info-list a:hover { color: var(--green-light); }

  .kontakt-form-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(14,28,54,0.08);
  }

  .form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
  .form-group { margin-bottom: 1.25rem; }
  .form-group:last-of-type { margin-bottom: 0; }
  .form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
  }
  .form-label .optional { font-weight: 300; color: rgba(14,28,54,0.4); }
  .form-input, .form-textarea {
    width: 100%;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    background: var(--bg-soft);
    border: 1.5px solid transparent;
    border-radius: 18px;
    padding: 0.85rem 1.1rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--green);
    background: white;
  }
  .form-input.invalid, .form-textarea.invalid { border-color: #d64545; background: #fdf1f1; }
  .form-textarea { resize: vertical; min-height: 140px; }
  .form-error {
    display: none;
    font-size: 0.76rem;
    color: #d64545;
    margin-top: 0.4rem;
    font-weight: 500;
  }
  .form-error.visible { display: block; }

  .form-consent { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1.5rem; }
  .form-consent input { margin-top: 0.2rem; accent-color: var(--green); }
  .form-consent label { font-size: 0.8rem; color: rgba(14,28,54,0.65); line-height: 1.5; font-weight: 300; }
  .form-consent a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

  .form-submit-btn {
    background: var(--green);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 18px;
    border: none;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s, transform 0.15s, opacity 0.2s;
  }
  .form-submit-btn:hover { background: #0a7461; transform: translateY(-2px); }
  .form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

  .form-status {
    display: none;
    margin-top: 1.25rem;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-card);
    font-size: 0.86rem;
    font-weight: 500;
  }
  .form-status.visible { display: block; }
  .form-status.success { background: rgba(13,138,114,0.1); color: var(--green); border: 1px solid rgba(13,138,114,0.25); }
  .form-status.error { background: #fdf1f1; color: #d64545; border: 1px solid rgba(214,69,69,0.25); }
  
    /* ── Ueberuns Seite ──────────────────────────────────────────── */
  .ueberuns-hero {
    padding: 9rem 3rem 3rem;
    background: var(--green);
  }
  .ueberuns-hero .section-label { color: var(--green-light); }
  .ueberuns-hero .section-title { color: white; }
  .ueberuns-hero .section-title em { color: var(--green-light); }
  .ueberuns-hero .section-sub { color: rgba(255,255,255,1); }

  .ueberuns-section { background: var(--green); }

  .ueberuns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .ueberuns-info {
    background: var(--text);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    color: white;
  }
  .ueberuns-info h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  .ueberuns-info p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
  }
  .ueberuns-info-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
  .ueberuns-info-list li { display: flex; align-items: flex-start; gap: 0.9rem; }
  .ueberuns-info-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: var(--radius-shape);
    background: rgba(13,138,114,0.18);
    color: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .ueberuns-info-list strong { display: block; font-size: 0.88rem; color: white; margin-bottom: 0.15rem; }
  .ueberuns-info-list span, .kontakt-info-list a { font-size: 0.86rem; color: rgba(255,255,255,0.55); text-decoration: none; font-weight: 300; }
  .kontakt-info-list a:hover { color: var(--green-light); }

  .ueberuns-form-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(14,28,54,0.08);
  }



  /* Honeypot – für Menschen unsichtbar, für Bots sichtbar */
  .form-honey { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

  @media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
  }

  @media (min-width: 1024px) {
    .kontakt-grid { grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; }
  }
