/* =========================================
   1. GLOBAL RESET & BASICS
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0a0c13; /* Dark Background */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Helper Classes */
.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }


/* =========================================
   2. NAVIGATION BAR
   ========================================= */
.main-nav {
    position: relative; 
    z-index: 1000; 
    background: rgba(36, 37, 40, 0.9); 
    backdrop-filter: blur(10px); 
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}

.nav-wrapper {
    position: relative; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.nav-logo { margin: 0; z-index: 10; }
.nav-logo img { height: 35px; width: auto; display: block; }

.nav-links {
    display: flex; list-style: none; gap: 40px; margin: 0; padding: 0;
}

.nav-links li a {
    color: #c2c2c2; text-decoration: none; font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif; font-weight: 400; 
    border-bottom: 0.5px solid transparent; padding-bottom: 0px;
    transition: all 0.3s ease;
}

.nav-links li a:hover, .nav-links li a.active {
    color: #ffffff; border-color: #ffffff; 
}

.nav-cart {
    color: #efefef; font-size: 1.1rem; z-index: 10; display: flex; align-items: center;
}

@media (min-width: 769px) {
    .nav-links {
        position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap; 
    }
}

@media (max-width: 768px) {
    .nav-wrapper { flex-direction: column; gap: 15px; }
    .nav-links { position: static; transform: none; flex-direction: column; gap: 20px; text-align: center; margin-top: 20px; }
}


/* =========================================
   3. HERO SECTION (SERVICE) - UPDATE
   ========================================= */
.service-hero {
    position: relative;
    /* Höhe etwas anpassen, damit genug Platz ist */
    padding: 150px 0 100px 0; 
    background-color: #0d0f16;
    
    /* Hintergrundbild */
    background-image: url('https://sancruzowebsite.b-cdn.net/homepagebanner_mobil_Remastered%20v8.jpg'); 
    
    /* HIER GEÄNDERT: Bild kleiner machen und nach rechts schieben */
    background-size: 90%; /* Bild ist jetzt halb so groß wie der Container */
    background-position: right center; /* Bild wird rechts zentriert platziert */
    background-repeat: no-repeat; /* Bild wird nicht wiederholt */
    
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Der neue Fade-Effekt (Links dunkel -> Rechts transparent) */
.hero-bg-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    
    /* HIER IST DIE MAGIE: 
       90deg = Verlauf von Links nach Rechts.
       0% - 40%: Komplett dunkel (für den Text).
       100%: Transparent (für das Bild). 
    */
    background: linear-gradient(90deg, 
        #0a0c13 0%, 
        rgba(10,12,19, 0.95) 20%, 
        rgba(10,12,19, 0) 80%
    );
    
    z-index: 1;
}

.service-hero .container { 
    position: relative; 
    z-index: 2; 
    height: 100%;
    display: flex;
    align-items: center; /* Vertikal mittig */
}

/* Inhalt nach links schieben */
.hero-content { 
    max-width: 650px; /* Begrenzt die Breite, damit Text nicht über das Gesicht geht */
    margin-left: 0;   /* Links andocken */
    text-align: left; /* Text linksbündig */
}

/* Badge Anpassung */
.hero-badge {
    color: #f6d12e; 
    font-size: 0.9rem; 
    font-weight: 700; 
    letter-spacing: 2px;
    display: inline-block; /* Damit er nicht volle Breite nimmt */
    margin-bottom: 20px; 
    text-transform: uppercase;
}

/* Titel Anpassung (Montserrat wie gewünscht) */
.hero-title {
    font-family: 'Inter', sans-serif;                 
    letter-spacing: -0.04em;   
    font-size: 3.5rem; /* Etwas kleiner als vorher, wirkt edler */
    line-height: 1.1; 
    color: #fff;
    margin-bottom: 25px; 
    text-transform: none;
    font-weight: 600;
}

.hero-desc {
    font-size: 1.1rem; 
    color: #d1d1d1; /* Etwas heller für besseren Kontrast auf dunkel */
    line-height: 1.6; 
    margin-bottom: 40px;
    max-width: 90%; /* Text bricht etwas früher um */
}

/* Buttons linksbündig */
.hero-buttons {
    display: flex; 
    justify-content: flex-start; /* Links ausrichten */
    gap: 20px; 
    flex-wrap: wrap;
}

/* Button Styles bleiben gleich */
/* =========================================
   BUTTON FIX (Vertikale Zentrierung)
   ========================================= */

.btn-main {
    /* WICHTIG: Flexbox für perfekte Zentrierung */
    display: inline-flex !important;
    align-items: center;     /* Vertikal mittig */
    justify-content: center; /* Horizontal mittig */
    line-height: 1;          /* Entfernt unnötigen Zeilenabstand */
    font-size: 3rem;
    
    background-color: #f6d12e; 
    color: #000;
    padding: 15px 35px; 
    border: 2px solid #f6d12e; 
    border-radius: 4px; 
    font-weight: 800; 
    text-transform: uppercase;
    text-decoration: none; 
    transition: 0.3s;
    height: auto; /* Stellt sicher, dass die Höhe durch Padding bestimmt wird */
}

.btn-main:hover { 
    background-color: #ffe055; 
    border-color: #ffe055;
    box-shadow: 0 5px 15px rgba(246, 209, 46, 0.3); 
}

/* Das Gleiche für den Outline Button */
.btn-secondary {
    display: inline-flex !important; /* Auch hier Flexbox */
    align-items: center;
    justify-content: center;
    line-height: 1;
    
    padding: 15px 30px; 
    color: #fff; 
    font-weight: 600;
    text-decoration: none; 
    transition: 0.3s; 
    border-bottom: 1px solid transparent;
}

.btn-secondary:hover { 
    color: #f6d12e; 
    border-bottom-color: #f6d12e; 
}

/* --- MOBILE ANPASSUNG --- */
@media (max-width: 991px) {
    /* Auf Handy wieder etwas mehr abdunkeln, damit Text lesbar ist */
    .hero-bg-overlay {
        background: linear-gradient(180deg, 
            rgba(10,12,19, 0.8) 0%, 
            rgba(10,12,19, 0.95) 100%
        );
    }
    
    .service-hero {
        background-size: cover; /* Auf Handy wieder vollflächig */
        background-position: center center; /* Bild zentrieren */
        text-align: center;
        padding: 100px 0;
    }

    .hero-content {
        margin: 0 auto; /* Wieder zentrieren */
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center; /* Buttons zentrieren */
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

/* =========================================
   4. AUDIO DEMOS SECTION
   ========================================= */
.section-demos { padding: 80px 0; background-color: #0a0c13; }

.section-header { margin-bottom: 60px; }
.section-title {
    font-family: 'Inter', sans-serif;                 
    letter-spacing: -0.04em;   
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    
    /* Optional: Montserrat ist oft etwas breiter als Barlow Condensed. 
       Falls es zu wuchtig wirkt, kannst du die font-weight anpassen: */
    font-weight: 600; 
}
.section-sub { color: #888; font-size: 1.1rem; margin-bottom: -20px;}

.demo-player-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto;
}

.demo-card {
    background: #16181f; border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px; padding: 30px; transition: 0.3s;
}
.demo-card:hover { border-color: rgba(246, 209, 46, 0.3); transform: translateY(-5px); }

.demo-info h3 { color: #fff; font-size: 1.2rem; margin-bottom: 5px; }
.demo-info p { color: #666; font-size: 0.85rem; margin-bottom: 20px; }

.player-controls { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.play-btn {
    width: 40px; height: 40px; border-radius: 50%; background: #f6d12e; border: none;
    color: #000; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.progress-bar {
    flex-grow: 1; height: 4px; background: #333; border-radius: 2px; position: relative;
}
.progress-fill { height: 100%; background: #f6d12e; border-radius: 2px; width: 0; }

.toggle-switch {
    display: flex; align-items: center; justify-content: center; gap: 15px; font-size: 0.8rem; font-weight: 700; color: #555;
}
.active-label { color: #fff; }

/* Switch Toggle CSS */
.switch { position: relative; display: inline-block; width: 50px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background-color: #333; transition: .4s; border-radius: 24px;
}
.slider:before {
  position: absolute; content: ""; height: 16px; width: 16px; left: 4px; bottom: 4px;
  background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: #f6d12e; }
input:checked + .slider:before { transform: translateX(26px); }


/* =========================================
   PRICING SECTION (High-End Design)
   ========================================= */
.section-pricing {
    padding: 80px 0;
    background-color: #0f1118; /* Dunkler Kontrast-Hintergrund */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center; /* Wichtig: Zentriert die Karten vertikal, damit der Zoom wirkt */
}

/* Basis Karte */
.pricing-card {
    background: #1c1e26;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover Effekt für normale Karten
.pricing-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}  */

/* --- HIGHLIGHT CARD (Mitte) --- */
.pricing-card.highlight {
    background: #16181f; /* Etwas dunklerer/edlerer Hintergrund */
    border: 1px solid #f6d12e; /* Goldener Rand */
    padding: 60px 30px; /* Mehr Padding oben/unten macht sie größer */
    z-index: 2;
    box-shadow: 0 10px 50px rgba(0,0,0,0.6); /* Starker Schatten */
    transform: scale(1.05); /* 5% größer als der Rest */
}

/* "Beliebt" Badge */
.badge-popular {
    position: absolute;
    top: 0; 
    left: 50%;
    transform: translate(-50%, -50%); /* Sitzt genau auf der Kante */
    background: #f6d12e;
    color: #000;
    padding: 6px 18px;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(246, 209, 46, 0.4);
}

/* Icons & Typo */
.plan-icon {
    font-size: 2.5rem;
    color: #f6d12e;
    margin-bottom: 20px;
}

.plan-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Preis Gestaltung */
.price-wrapper {
    margin-bottom: 30px;
    color: #fff;
}

.amount {
    display: block;
    font-size: 3.5rem; 
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif; /* Oder Montserrat, je nach Wunsch */
    line-height: 1;
    color: #fff;
}

.period {
    display: block;
    font-size: 0.9rem;
    color: #888; /* Grau */
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 500;
}

/* Feature Liste */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    width: 100%;
    text-align: left; 
}

.feature-list li {
    padding: 5px 0;
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.03); /* Ganz feine Linie */
}
.feature-list li:last-child { border-bottom: none; }

/* Icons in der Liste */
.feature-list li i {
    width: 30px; /* Platz für Icon */
    font-size: 1rem;
}

.feature-list li i.fa-check { color: #fff; font-weight: bold; }
.feature-list li i.fa-times { color: #555; font-size: 0.9rem; } /* Dezent ausgegraut */

/* Ausgegraute Listeneinträge */
.feature-list li.disabled {
    color: #555; 
}

/* Button (Alle Gelb laut Screenshot) */
.full-width {
    width: 100%;
    margin-top: auto; 
    background-color: #f6d12e;
    color: #000;
    font-weight: 800;
    border: none;
    padding: 15px 0;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.2s ease;
}
.full-width:hover {
    background-color: #ffe055;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(246, 209, 46, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Untereinander */
        max-width: 450px;
        gap: 50px; /* Mehr Platz zwischen Karten */
    }
    
    /* Highlight Effekt auf Handy resetten oder anpassen */
    .pricing-card.highlight {
        transform: scale(1.05); /* Optional: Auch auf Handy leicht größer lassen */
        margin: 10px 0;
    }
}

/* --- BUTTON STYLES (Pricing Update) --- */

/* Der "Solid" Button (für die mittlere Karte) */
.btn-main {
    display: inline-block; 
    background-color: #f6d12e; 
    color: #000;
    padding: 15px 35px; 
    border: 2px solid #f6d12e; /* Rand gleich wie Hintergrund */
    border-radius: 4px; 
    font-weight: 900; 
    text-transform: uppercase;
    text-decoration: none; 
    transition: 0.3s;
    font-size: 0.9rem;
}
.btn-main:hover { 
    background-color: #ffe055; 
    border-color: #ffe055;
    box-shadow: 0 5px 15px rgba(246, 209, 46, 0.3); 
}

/* Der "Outline" Button (für außen) */
.btn-outline {
    display: inline-block; 
    background-color: transparent; /* Oder #000, falls du es ganz dunkel willst */
    color: #f6d12e; /* Goldener Text */
    padding: 15px 35px; 
    border: 2px solid #f6d12e; /* Goldener Rand */
    border-radius: 4px; 
    font-weight: 900; 
    text-transform: uppercase;
    text-decoration: none; 
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

/* Hover Effekt für Outline: Wird solid gelb */
.btn-outline:hover { 
    background-color: #f6d12e; 
    color: #000; /* Text wird schwarz */
    box-shadow: 0 0 15px rgba(246, 209, 46, 0.4); /* Leichter Schein */
    transform: translateY(-2px);
}

/* Helper Class für volle Breite in der Karte */
.full-width {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* =========================================
   PROCESS SECTION (Horizontal Cards)
   ========================================= */
.section-process {
    padding-top: 80px;
    padding-bottom: 20px;
}

.process-steps {
    display: flex;
    justify-content: space-between; /* Verteilt Platz gleichmäßig */
    /* WICHTIG: Stretch sorgt dafür, dass alle Karten gleich hoch sind, 
       egal wie viel Text drin steht */
    align-items: stretch; 
    gap: 15px; 
    margin-top: 50px;
}

/* Die Karte (Step) */
.step {
    flex: 1; /* Alle Karten sind gleich breit */
    background: #1c1e26; 
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px 20px; /* Oben/Unten etwas mehr, links/rechts kompakter */
    
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    
    /* Flexbox für den Inhalt, damit Buttons/Icons sauber sitzen */
    display: flex;
    flex-direction: column;
    align-items: center;
}


.step-icon {
    width: 60px;
    height: 60px;
    background: #15161c; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: #f6d12e;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0; /* Icon darf nicht gequetscht werden */
}

.step h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1rem; /* Etwas kleiner, damit es horizontal gut passt */
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    min-height: 40px; /* Erzwingt gleiche Höhe für Titel, damit alles bündig ist */
    display: flex;
    align-items: center;
}

.step p {
    color: #ababab;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Der Pfeil */
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 1.2rem;
    padding: 0 5px;
}

/* --- RESPONSIVE (Handy: Vertikal stapeln) --- */
@media (max-width: 991px) {
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step {
        width: 100%; /* Volle Breite auf Handy */
        max-width: 400px;
        margin: 0 auto; /* Zentrieren */
    }
    
    .step h4 {
        min-height: auto; /* Auf Handy ist die Titelhöhe egal */
    }

    .step-arrow {
        transform: rotate(90deg); /* Pfeil nach unten drehen */
        padding: 10px 0;
    }
}

/* =========================================
   7. FOOTER
   ========================================= */
/* --- FOOTER FIX --- */
.site-footer {
  background: #151515;
  padding: 40px 0;
  color: #ebebeb;
  margin-top: 80px;
  font-family: "Montserrat";
  text-align: center; /* Sicherheitshalber Text global zentrieren */
}

.site-footer .footer-row {
  display: flex;
  justify-content: center; /* WICHTIG: Zentriert alles horizontal */
  align-items: center;     /* Zentriert alles vertikal */
  flex-wrap: wrap;         /* Bricht um, wenn Platz fehlt */
  gap: 15px;               /* Etwas mehr Abstand zwischen Copyright und Links */
  width: 100%;             /* Nimmt volle Container-Breite */
}

.site-footer .footer-copy {
  font-size: 10px;
  opacity: 0.85;
  white-space: nowrap;
  margin-bottom: 0;
  color: #ebebeb;
}

/* Container für die Links (AGB, etc.) */
.site-footer .footer-links {
  display: flex;
  justify-content: center; /* Zentriert die Links in ihrem Container */
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer .footer-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 10px;
  opacity: 0.85;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.site-footer .footer-links a:hover {
  opacity: 1;
  border-bottom: 1px solid #ffffff;
}

.site-footer .dot {
  opacity: 0.5;
  font-size: 10px; 
  margin: 0 5px; /* Abstand um den Punkt */
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .site-footer {
    margin-top: 60px;
    padding: 30px 0;
  }
  
  .site-footer .footer-row {
    flex-direction: column; /* Untereinander auf Handy */
    gap: 15px;
  }
  
  /* Verstecke den Punkt zwischen Copyright und Links auf Mobile */
  .site-footer .dot.d-lg-inline {
      display: none !important; 
  }

  .site-footer .footer-links {
    justify-content: center;
    gap: 10px;
  }
}


/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; gap: 50px; }
    .pricing-card.highlight { transform: none; padding: 40px 30px; }
    .process-steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); padding: 10px 0; }
    .hero-title { font-size: 3rem; }
    .footer-row { flex-direction: column; text-align: center; }
}

/* =========================================
   AUDIO PLAYER STYLES (Artist Page Clone)
   ========================================= */

/* Die Box außen rum */
.display-content-box {
    background: #1c1d21; /* Der Artist Page Hintergrund */
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px; /* Innenabstand */
    /* Optional: Schatten, falls gewünscht */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
}

/* Der Wrapper für einen einzelnen Player */
.waveformSet {
    margin-bottom: 15px;
    padding: 10px 15px;
    /* Falls du auf der Artist Page einen Hintergrund für die Player hattest: */
    /* background: rgba(255,255,255,0.03); */
    border-radius: 8px;
    margin-top: 5px;
}

.waveformSet:last-child {
    margin-bottom: -15px;
}

/* Zeile: Button + Welle */
.wave-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Play Button Icon */
.play-btn-icon {
    font-size: 18px;
    color: #fff; /* Weiß im Normalzustand */
    cursor: pointer;
    width: 20px;
    text-align: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

/* Wellen-Container */
.waveformContainer {
    flex: 1; 
}

/* Titel unter der Welle */
/* Titel unter der Welle */
.wave-title {
    font-size: 0.8rem;
    color: #9e9e9e;
    margin-top: 8px;
    font-family: 'Montserrat';
    
    /* HIER DIE ÄNDERUNG: */
    margin-left: 0;      /* Linken Abstand entfernen */
    text-align: center;  /* Text zentrieren */
    
    letter-spacing: 1px;
    font-weight: 500;
    width: 100%;         /* Sicherstellen, dass er die volle Breite nutzt */
}

/* Helper für Zentrierung der Box */
.mx-auto { margin-left: auto; margin-right: auto; }

/* =========================================
   CONTACT FORM SECTION (FINAL CLEANED)
   ========================================= */

/* 1. SEKTION & LAYOUT */
#contact.section-contact {
    padding: 80px 0;
    background-color: #0a0c13;
}

#contact .contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

#contact .contact-heading {
    font-family: 'Inter', sans-serif;                 
    letter-spacing: -0.04em;   
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

#contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

/* 2. DER "HÜPF-FIX" (Neutralisiert .full-width Konflikt) 
   Das verhindert, dass die breiten Container wie Buttons behandelt werden.
*/
#contact .full-width {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important; /* Kein Hüpfen */
    margin-top: 0 !important;
}

/* 3. INPUT FELDER (Design & Reset) */
#contact .form-group {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    width: 100%;
}

#contact .form-group input,
#contact .form-group textarea,
#contact .form-group select {
    width: 100%;
    background-color: #22232a !important; /* Immer Dunkel */
    border: 1px solid #333542 !important; /* Immer Grau */
    color: #e5e5e5 !important;
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    transition: none !important; 
}

/* 4. HOVER & FOCUS KILL-SWITCH (Kein Gelb, kein Leuchten) */
#contact .form-group input:focus,
#contact .form-group textarea:focus,
#contact .form-group select:focus,
#contact .form-group input:hover,
#contact .form-group textarea:hover,
#contact .form-group select:hover {
    border-color: #333542 !important;     /* Bleibt Grau */
    background-color: #22232a !important; /* Bleibt Dunkel */
    outline: none !important;
    box-shadow: none !important;
}

/* 5. AUTOFILL HACK (Chrome Gelb entfernen) */
#contact input:-webkit-autofill,
#contact input:-webkit-autofill:hover, 
#contact input:-webkit-autofill:focus, 
#contact input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #22232a inset !important;
    -webkit-text-fill-color: #e5e5e5 !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* 6. SUBMIT BUTTON (Ohne Hüpfen) */
#contact .btn-submit {
    background-color: #22232a !important;
    color: #f6d12e !important;
    border: 1px solid #f6d12e !important;
    padding: 15px 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    align-self: flex-start; 
    margin-top: 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s !important; 
    transform: none !important; 
    font-size: 0.8rem;
}

#contact .btn-submit:hover {
    background-color: #f6d12e !important;
    color: #000 !important;
    transform: none !important; /* WICHTIG: Bleibt stehen */
    box-shadow: none !important;
    margin-top: 10px !important;
}

/* 7. LAYOUT HELPER */
#contact .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
#contact .select-wrapper { position: relative; width: 100%; }
#contact .select-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: #888; pointer-events: none; }

/* Responsive */
@media (max-width: 768px) {
    #contact .form-row { grid-template-columns: 1fr; }
    #contact .btn-submit { width: 100%; }
}

/* =========================================
   REFERENZEN SECTION
   ========================================= */
.section-references {
    padding: 80px 0;
    background-color: #0a0c13; /* Gleicher Hintergrund wie Demos */
}

/* Optional: Falls du den Spotify Player auf dem Handy etwas kleiner willst */
@media (max-width: 768px) {
    .section-references iframe {
        height: 450px; /* Oder eine andere Höhe, falls nötig */
    }
}

/* =========================================
   SPOTIFY NOTE STYLE
   ========================================= */
.spotify-note {
    text-align: center;
    font-size: 0.75rem;       /* Schön klein */
    color: #838383;              /* Dunkelgrau -> sehr unauffällig */
    margin-top: 15px;         /* Etwas Abstand zum Player */
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    cursor: default;
}


/* Optional: Das Icon etwas einfärben */
.spotify-note i {
    margin-right: 3px;
    font-size: 0.8rem;
}

/* ===== Creator Section ===== */

.creator {
  padding: 140px 24px 96px;
}

.creator-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 56px;
  align-items: center;
}

.creator-photo {
  text-align: center;
}
.creator-photo img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.creator-copy h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.05rem;
}

.creator-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.creator-list li {
  position: relative;
  padding-left: 40px;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 300;
}

.creator-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-size: 1.8rem;
  transform: translateY(-7px);
}


@media (max-width: 900px) {
  .creator-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .creator-copy {
    text-align: left;
  }
  .creator-photo img {
    width: 260px;
    height: 260px;
  }
}
/* ===== Brand Strip / Logos ===== */

.brand-strip {
  padding: 20px 24px 56px;
  text-align: center;
}

.brand-strip__label {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 35px;
}

/* Desktop Static Image */
.brand-strip__logos img {
  max-width: 600px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: grayscale(100%);
}

/* Mobile Marquee (NEU) */
.brand-strip-marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
  
  /* Fade an den Seiten */
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  animation: marquee 25s linear infinite;
}

.brandstrip-mobile-item {
  max-width: 120px;
  width: auto;
  height: auto;
  opacity: 0.9;
  filter: grayscale(100%);
  flex-shrink: 0;
}

/* Größenanpassung Logos */
.logo-klein { max-width: 100px; }
.logo-gross { max-width: 180px; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); } /* 3 Sets, also 1/3 Bewegung */
}

/* ───── Hilfsklassen für Desktop/Mobile Umschaltung (FIX) ───── */

/* Standard: Desktop an, Mobile aus */
.desktop-only {
}
.mobile-only {
  display: none !important;
}

/* Ab 900px und kleiner (Mobile/Tablet): Desktop aus, Mobile an */
@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}
/* ===== Highlight Section ===== */

.highlight-section {
  width: 80%;
  margin: 0 auto;
  position: relative;
  padding-top: 65px;
}

.highlight-section h3 {
  color: rgb(237, 237, 237);
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
  padding-bottom: 10px;
  text-align: center;
}
.highlight-section h4 {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 25px;
  font-weight: 400;
  text-align: center;
}

/* 1. Desktop Scroller Style */
.highlight-scroller {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 20px 0;
  
  /* Fade Effekt */
  mask-image: linear-gradient(
    to right, transparent 0%, transparent 8%, black 20%, black 80%, transparent 92%, transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right, transparent 0%, transparent 8%, black 20%, black 80%, transparent 92%, transparent 100%
  );
}

.highlight-track {
  display: flex;
  gap: 30px;
}
.highlight-track a {
  cursor: default !important;
}
.highlight-item {
  width: 260px;
  height: auto;
  border-radius: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
}
.highlight-item:hover {
  transform: scale(1.02);
}

/* 2. Mobile Swiper Style (NEU) */
.highlight-swiper-mobile {
  width: 100%;
  padding-bottom: 50px; /* Platz für Pagination */
}

.highlight-swiper-mobile .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-swiper-mobile .highlight-item {
  width: 100%;
  max-width: 280px; /* Begrenzte Breite auf Mobile */
  height: auto;
  border-radius: 16px;
}

/* Swiper Pagination Dots Styling */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.3;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #f6d12e; /* Optional: Gelbe Farbe wie auf Website 1 */
}
