/* ============================================================
   IPTV PROFIS — homePageStyle.css  (Mobile-First)
   ============================================================ */

/* Benutzerdefinierter Mauszeiger */
.custom-cursor {
    width: 20px; height: 20px;
    border: 2px solid #2a7262;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, border-color .2s, background-color .2s;
    z-index: 9999;
    mix-blend-mode: difference;
    will-change: transform;
    display: flex; justify-content: center; align-items: center;
}
.custom-cursor::after {
    content: ''; width: 4px; height: 4px;
    background-color: white; border-radius: 50%; display: block;
    transition: width .2s, height .2s;
}
.custom-cursor.hover  { width:48px; height:48px; border-color:#2d5a50; background:rgba(0,255,195,.1); box-shadow:0 0 15px rgba(0,255,195,.5); }
.custom-cursor.hover::after { width:6px; height:6px; }
.custom-cursor.link-hover { width:48px; height:48px; border-color:#00ffc3; background:rgba(0,255,195,.2); }
.custom-cursor.link-hover::after { width:6px; height:6px; }
.custom-cursor.animated-hover { width:56px; height:56px; border-color:#00ffc3; background:rgba(0,255,195,.3); box-shadow:0 0 20px #00ffc3; }
.custom-cursor.animated-hover::after { width:8px; height:8px; box-shadow:0 0 10px #00ffc3; }
.custom-cursor.click { transform:translate(-50%,-50%) scale(.8); }

body, a, button, [role="button"], input, select, textarea,
.preis-card, .whatsapp-logo, .payment-icon { cursor: none; }

@media (max-width: 768px) {
    .custom-cursor { display: none; }
    body, a, button, [role="button"], input, select, textarea,
    .preis-card, .whatsapp-logo, .payment-icon { cursor: auto; }
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #021826; color: white; font-family: Arial, sans-serif; overflow-x: hidden; }

/* ── NAV ── */
.nav {
    position: fixed; top: 0; left: 0; width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 40px;
    background: rgba(3,29,44,.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    flex-wrap: wrap; gap: 10px;
}
.logo { font-size: 22px; font-weight: bold; color: #1eff8e; }
.menu { display: flex; flex-wrap: wrap; gap: 5px; margin-left: auto; }
.menu a {
    color: #cfe8ff; text-decoration: none;
    margin-right: 20px; position: relative; font-size: 16px;
}
.menu a::after {
    content: ""; position: absolute; left: 0; bottom: -6px;
    width: 0; height: 3px; background: #1eff8e; transition: .3s;
}
.menu a:hover::after, .menu a.active::after { width: 100%; }
.language-dropdown { position: relative; display: inline-block; }

/* Mobile Nav */
@media (max-width: 768px) {
    .nav { 
        padding: 12px 20px; 
        margin-bottom: 50px;
        position: static;
    }
    .menu {
        width: 100%; order: 3;
        justify-content: center; gap: 8px;
        background: rgba(3,29,44,.95);
        border-radius: 10px; padding: 10px;
        margin-top: 5px;
    }
    .menu a { font-size: 14px; margin-right: 10px; }
    .logo { font-size: 20px; }
}
@media (max-width: 400px) {
    .menu a { font-size: 12px; margin-right: 6px; }
    .nav { 
        position: static;
        margin-bottom: 50px;
    }
}

/* ── HERO ── */
.hero {
    display: flex; align-items: center; justify-content: center;
    padding: 90px 60px 80px;
    gap: 40px;
}
.left { max-width: 650px; }
h1 {
    font-size: 42px; line-height: 1.2;
    background: linear-gradient(90deg, #1eff8e, #4ecbff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.icons { display: flex; flex-wrap: wrap; gap: 15px; margin: 30px 0; color: #cfe8ff; }
.icons span { display: inline-block; text-align: center; margin: 0 10px; font-size: 14px; }
.icons i { font-size: 32px; margin-bottom: 8px; display: block; }
p { color: #b8c7d9; line-height: 1.6; margin-bottom: 30px; }
button {
    background: #1eff8e; color: #002b1a; border: none;
    padding: 14px 26px; border-radius: 30px; font-size: 16px;
    cursor: pointer; box-shadow: 0 0 20px rgba(30,255,142,.5); transition: .3s;
}
button:hover { transform: scale(1.05); }
.right img { width: 420px; height: 420px; object-fit: cover; border-radius: 50%; }

@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding: 120px 30px 60px; }
    .right img { width: 280px; height: 280px; }
    h1 { font-size: 32px; }
    .icons { justify-content: center; }
}
@media (max-width: 480px) {
    .hero { padding: 110px 15px 50px; gap: 25px; }
    h1 { font-size: 24px; }
    .right img { width: 200px; height: 200px; }
    .icons span { margin: 0 5px; }
    .icons i { font-size: 24px; }
}

/* ── BADGE ── */
.badge-section {
    width: 100%; display: flex; justify-content: center;
    margin: 20px 0 30px; padding: 0 15px;
}
.badge-container {
    background: linear-gradient(135deg,#667eea,#764ba2);
    padding: 12px 30px; border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    text-align: center; animation: pulse 2s infinite;
    max-width: 100%;
}
.badge-text { color: white; font-size: 24px; font-weight: bold; display: block; letter-spacing: 1px; }
.badge-subtext { color: rgba(255,255,255,.9); font-size: 16px; display: block; margin-top: 5px; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

@media (max-width: 480px) {
    .badge-text { font-size: 17px; }
    .badge-subtext { font-size: 13px; }
    .badge-container { padding: 10px 18px; }
}

/* ── SPORT / FILME SECTION ── */
.sport-section {
    width: 100%; padding: 60px 0;
    background: rgba(15,23,42,.8);
    text-align: center; overflow: hidden;
    display: flex; justify-content: center; align-items: center;
}
.sport-container {
    max-width: 1300px; width: 90%;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(15,23,42,.8), rgba(15,23,42,.8));
    border-radius: 20px; padding: 40px 20px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}
.sport-header { max-width: 1200px; margin: 0 auto 40px; padding: 0 20px; }
.sport-header h3 { font-size: 28px; margin-bottom: 15px; color: #667eea; font-weight: bold; }
.sport-header p { font-size: 18px; color: #fff; line-height: 1.6; max-width: 800px; margin: 0 auto; }

.marquee-container { width: 100%; overflow: hidden; position: relative; margin: 20px 0; }
.marquee-container::before, .marquee-container::after {
    content: ""; position: absolute; top: 0; width: 80px; height: 100%; z-index: 2; pointer-events: none;
}
.marquee-container::before { left: 0; }
.marquee-container::after { right: 0; }

.marquee-content {
    display: flex; gap: 20px; padding: 15px 0;
    width: max-content; will-change: transform;
}
.marquee-content img {
    width: 180px; height: 300px; object-fit: cover;
    border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: all .3s ease;
}
.marquee-content img:hover { transform: translateY(-5px) scale(1.03); }

@keyframes marqueeRight { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeLeft  { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.top-marquee .marquee-content { animation: marqueeRight 20s linear infinite; }
.bottom-marquee .marquee-content { animation: marqueeLeft 22s linear infinite; }
.top-marquee .marquee-content:hover,
.bottom-marquee .marquee-content:hover { animation-play-state: paused; }

@media (max-width: 768px) {
    .sport-section { padding: 40px 0; }
    .sport-container { width: 95%; border-radius: 15px; padding: 25px 10px; }
    .sport-header h3 { font-size: 20px; }
    .sport-header p { font-size: 15px; }
    .marquee-content img { width: 180px; height: 300px; }
    .marquee-content { gap: 12px; }
}
@media (max-width: 480px) {
    .marquee-content img { width: 180px; height: 300px; border-radius: 10px; }
    .marquee-content { gap: 10px; }
    .sport-header h3 { font-size: 17px; }
}

/* ── ROTATING BANNER ── */
.rotating-banner-capseln {
    width: 85%; margin: 20px auto -30px;
    background: white; border-radius: 10px; overflow: hidden;
    position: relative; z-index: 20;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border: 1px solid rgba(0,255,195,.3);
}
.rotating-banner { width: 100%; overflow: hidden; }
.banner-track {
    display: flex; animation: rotateBanner 30s linear infinite;
    width: fit-content;
}
.banner-track.paused { animation-play-state: paused; }
.banner-item { display: flex; align-items: center; justify-content: center; background: black; border-radius: 10px; margin: 5px; }
.sport-item { min-width: 150px; height: 80px; padding: 0; overflow: hidden; }
.sport-logo { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .3s; }
.sport-logo:hover { transform: scale(1.1); }
@keyframes rotateBanner { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media (max-width: 768px) {
    .rotating-banner-capseln { width: 95%; }
    .sport-item { min-width: 110px; height: 60px; }
}
@media (max-width: 480px) {
    .sport-item { min-width: 90px; height: 50px; }
}

/* ── PREISE ── */
.preise {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #000 60%, #2f6f5f);
    color: white; text-align: center; font-family: Arial, sans-serif;
}
.preise-title { margin-bottom: 30px; font-size: 22px; padding: 0 10px; }
.preise-description { max-width: 800px; margin: 0 auto 50px; text-align: center; }
.description-text { font-size: 18px; line-height: 1.6; margin-bottom: 20px; color: #e0e0e0; }
.feature-list { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.feature-item {
    display: flex; align-items: center; gap: 8px;
    background: rgba(0,255,195,.1); padding: 8px 20px;
    border-radius: 50px; border: 1px solid rgba(0,255,195,.3);
}
.feature-check { color: #00ffc3; font-size: 20px; font-weight: bold; }
.feature-item span:last-child { font-size: 15px; color: white; }

.preise-container {
    display: flex; justify-content: center; gap: 20px;
    flex-wrap: wrap; align-items: stretch;
}
.preis-card {
    width: 240px; padding: 25px 18px;
    border-radius: 15px;
    background: linear-gradient(to bottom, #0d1f1b, #2f6f5f);
    border: 1px solid #00ffc3;
    box-shadow: 0 0 15px rgba(0,255,195,.2);
    transition: .3s;
    display: flex; flex-direction: column;
    min-height: 520px;
}
.preis-card:hover { transform: translateY(-8px); box-shadow: 0 0 25px rgba(0,255,195,.4); }
.preis { font-size: 32px; font-weight: bold; margin: 15px 0 5px; }
.preis-small { font-size: 13px; color: #cfcfcf; margin-bottom: 20px; }
.preis-card ul { list-style: none; text-align: left; font-size: 14px; margin-bottom: 25px; padding-left: 0; flex: 1; }
.preis-card ul li { margin-bottom: 8px; }
.preis-card ul li::before { content: "✔ "; font-size: 18px; color: #00ffc3; }
.preis-card button {
    background: #00ffc3; border: none; padding: 12px 20px;
    border-radius: 8px; font-weight: bold; cursor: pointer;
    transition: .3s; margin-top: auto; width: 100%;
}
.preis-card button:hover { background: #00cfa0; }
.highlight { border: 2px solid #00ffc3; }

.payment-methods { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 15px; flex-wrap: wrap; }
.payment-icon {
    display: flex; align-items: center; gap: 5px;
    padding: 4px 10px; border-radius: 20px;
    background: rgba(255,255,255,.15); color: white;
    font-size: 13px; font-weight: 500;
    border: 1px solid rgba(255,255,255,.1);
}
.payment-icon i { font-size: 15px; }

@media (max-width: 768px) {
    .preise { padding: 60px 15px; }
    .preise-title { font-size: 18px; }
    .description-text { font-size: 15px; padding: 0 10px; }
    .preise-container { gap: 15px; }
    .preis-card { width: 100%; max-width: 340px; min-height: auto; }
}
@media (max-width: 480px) {
    .preis-card { width: 100%; max-width: 100%; }
    .feature-item { padding: 6px 12px; }
    .feature-item span:last-child { font-size: 13px; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; }
.whatsapp-logo { cursor: pointer; z-index: 1002; }
.whatsapp-logo img {
    width: 60px; height: 60px; border-radius: 50%;
    background-color: #25d366; padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,.3); transition: all .3s;
}
.whatsapp-logo img:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.contact-card {
    position: absolute; bottom: 80px; right: 0; width: 280px;
    background: white; border-radius: 15px; padding: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,.2); border: 2px solid #00ffc3;
    animation: slideUp .3s ease; z-index: 1001;
}
.contact-card.hidden { display: none; }
.contact-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.contact-header h4 { margin: 0; color: #0d1f1b; font-size: 18px; font-weight: bold; }
.close-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: #999; padding: 0; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: .2s; }
.close-btn:hover { background: #f0f0f0; color: #333; }
.contact-body { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 12px; padding: 12px 15px; border-radius: 10px; text-decoration: none; color: #333; transition: all .3s; background: #f5f5f5; }
.contact-item:hover { transform: translateX(-5px); background: #00ffc3; color: #000; }
.contact-item img { width: 24px; height: 24px; }
@keyframes slideUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

@media (max-width: 768px) {
    .whatsapp-float { bottom: 15px; right: 15px; }
    .whatsapp-logo img { width: 50px; height: 50px; padding: 8px; }
    .contact-card { width: 240px; bottom: 65px; padding: 15px; }
}

/* ── WHY SECTION ── */
.why-section {
    max-width: 100%; margin: 0 auto; padding: 60px 20px;
    text-align: center; color: white;
    background: linear-gradient(180deg, #2f6f5f 0%, #000 100%);
    border-radius: 0 0 700px 700px;
}
.why-title { font-size: 32px; font-weight: bold; margin-bottom: 15px; color: white; text-shadow: 0 2px 5px rgba(0,0,0,.3); }
.why-subtitle { font-size: 18px; color: #00ffc3; margin-bottom: 30px; font-weight: 500; }
.divider { width: 100px; height: 3px; background: #00ffc3; margin: 0 auto 50px; border-radius: 2px; box-shadow: 0 0 10px rgba(0,255,195,.5); }
.why-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.why-card {
    flex: 1; min-width: 260px; max-width: 350px; height: auto;
    padding: 30px 25px;
    background: rgba(0,0,0,.4); backdrop-filter: blur(5px);
    border-radius: 15px; border: 1px solid rgba(0,255,195,.3);
    transition: all .3s; text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,.3); z-index: 5;
}
.why-card:hover { transform: translateY(-5px); border-color: #00ffc3; box-shadow: 0 15px 30px rgba(0,255,195,.2); background: rgba(0,0,0,.6); }
.why-card h3 { font-size: 22px; font-weight: bold; margin-bottom: 15px; color: #00ffc3; }
.why-card p { font-size: 16px; line-height: 1.6; color: #f0f0f0; margin: 0; }
.why-card span { font-size: 50px; line-height: 1.6; color: #1d9230; }

@media (max-width: 768px) {
    .why-section { padding: 40px 15px; border-radius: 0 0 150px 150px; }
    .why-title { font-size: 24px; }
    .why-subtitle { font-size: 15px; }
    .why-card { min-width: 100%; max-width: 100%; padding: 22px 18px; }
    .why-card h3 { font-size: 18px; }
    .why-card p { font-size: 14px; }
}
@media (max-width: 480px) {
    .why-section { border-radius: 0 0 60px 60px; }
    .why-title { font-size: 20px; }
    .divider { margin-bottom: 30px; }
}

/* ── WHATSAPP FEED SLIDER ── */
.whatsapp-feed-slider {
    width: 95%; overflow: hidden; background: transparent;
    padding: 20px 0; position: relative; border-radius: 24px;
    margin: 40px auto; box-shadow: 0 10px 30px rgba(0,0,0,.1); z-index: 5;
}
.feed-track.whatsapp-track {
    display: flex; gap: 20px; white-space: nowrap; will-change: transform;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.feed-track.whatsapp-track img,
.whatsapp-track img {
    height: 380px; width: 250px; object-fit: cover;
    border-radius: 5px; box-shadow: 0 8px 20px rgba(0,0,0,.15);
    border: 3px solid grey; transition: all .3s;
}
.whatsapp-track img:hover { transform: scale(1.03) translateY(-5px); box-shadow: 0 15px 30px rgba(37,211,102,.3); border-color: #25D366; }
.whatsapp-feed-slider::before {
    content: '  Was unsere Kunden über uns sagen';
    display: block; text-align: center;
    color: white; font-size: 18px; font-weight: 600;
    margin-bottom: 15px; padding-top: 5px;
}
.whatsapp-feed-slider::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #075E54, #25D366, #128C7E, #25D366, #075E54);
}

@media (max-width: 768px) {
    .whatsapp-track img { height: 280px; width: 180px; }
    .feed-track.whatsapp-track { gap: 12px; }
}
@media (max-width: 480px) {
    .whatsapp-track img { height: 220px; width: 145px; }
    .feed-track.whatsapp-track { gap: 10px; }
}

/* ── FAQ ── */
#faq { padding-top: 80px; background-color: #0f172a; padding-bottom: 60px; }
#faq h2 { text-align: center; margin-bottom: 20px; font-size: 2rem; padding: 0 15px; }
#faq > p { text-align: center; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; color: #cbd5e1; padding: 0 20px; }
.faq-container { max-width: 900px; margin: 0 auto; padding: 0 15px; }

@media (max-width: 768px) {
    #faq h2 { font-size: 1.5rem; }
    #faq > p { font-size: 14px; margin-bottom: 30px; }
}

/* ── FOOTER ── */
.site-footer { position: relative; background: linear-gradient(135deg, #f8fafc, #f1f5f9); margin-top: 70px; }
.footer-waves { position: relative; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg); margin-bottom: -5px; background: #021826; }
.footer-waves svg { position: relative; display: block; width: calc(100% + 1.3px); }
.footer-content { background: #021826; padding: 1rem 0; box-shadow: 0 -4px 6px -1px rgba(0,0,0,.1); }
.footer-container {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem;
}
.footer-section { display: flex; flex-direction: column; }
.footer-title { color: #15803d; font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: .05em; position: relative; padding-bottom: .5rem; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: linear-gradient(90deg,#22c55e,#4ade80); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .75rem; }
.footer-links a { color: #334155; text-decoration: none; font-size: 1rem; transition: all .3s; position: relative; }
.footer-links a:hover { color: #16a34a; padding-left: 5px; }
.contact-info { display: flex; flex-direction: column; gap: .5rem; margin-top: .5rem; padding-left: .5rem; border-left: 3px solid #22c55e; }
.phone, .email { color: #1e293b; font-size: .95rem; display: flex; align-items: center; gap: .5rem; }
.contact-section { align-items: flex-end; text-align: right; }
.contact-button {
    display: inline-block; background: linear-gradient(135deg,#22c55e,#16a34a);
    color: white; text-decoration: none; padding: 1rem 2rem;
    border-radius: 50px; font-weight: 600; font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(34,197,94,.3); transition: all .3s;
    border: none; cursor: pointer; margin-bottom: 1.5rem;
}
.contact-button:hover { background: linear-gradient(135deg,#16a34a,#15803d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,197,94,.4); }
.copyright { color: #64748b; font-size: .875rem; margin: 0; }

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; gap: 2rem; padding: 0rem; text-align: center; }
    .footer-section { align-items: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .contact-section { align-items: center; text-align: center; }
    .contact-info { border-left: none; border-top: 3px solid #22c55e; padding-left: 0; padding-top: 1rem; align-items: center; }
}
@media (max-width: 480px) {
    .footer-content { padding: 0rem 0; }
    .footer-container { padding: 0 1rem; }
    .contact-button { padding: .75rem 1.5rem; font-size: 1rem; }
    .footer-title { font-size: 1.1rem; }
}



/* ══════════════════════════════════════════════
   FIXES v6 - clean
   ══════════════════════════════════════════════ */

/* Nav: fixed, nie mitgescrollt */
.nav {
    position: fixed !important;
    top: 0; left: 0; width: 100%; z-index: 1000;
}

/* Hero: Abstand damit Titel nicht hinter Nav verschwindet */
.hero {
    padding-top: 100px !important;
}

/* Nav Mobile */
@media (max-width: 768px) {
    .nav {
        padding: 10px 15px !important;
        flex-wrap: wrap;
        gap: 6px;
    }
    .menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
        margin-left: 0 !important;
    }
    .menu a { font-size: 12px !important; margin-right: 6px !important; }
    .hero { padding-top: 85px !important; }
}

/* "Was unsere Kunden sagen" zentriert */
.whatsapp-feed-slider::before {
    content: 'Was unsere Kunden über uns sagen';
    display: block;
    text-align: center;
    width: 100%;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 15px 0 10px;
    position: relative;
}

/* WhatsApp/Telegram Kontakt-Labels kleiner */
.contact-label { font-size: 12px !important; line-height: 1.2; }
.contact-item  { font-size: 12px; padding: 10px 12px !important; }
.contact-item img { width: 18px !important; height: 18px !important; }


/* ═══════════════════════════════════════════
   v6 OVERRIDES — alle Fixes
   ═══════════════════════════════════════════ */

/* Logo */
.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

/* ── NAV: Desktop = fixed, Mobile = static ── */
@media (min-width: 769px) {
    .nav {
        position: fixed !important;
        top: 0; left: 0; width: 100%;
        z-index: 1000;
    }
    .hero {
        padding-top: 100px !important;
    }
}

@media (max-width: 768px) {
    .nav {
        position: static !important;
        width: 100%;
        padding: 12px 15px !important;
        flex-wrap: wrap;
        gap: 8px;
    }
    .menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
        margin-left: 0 !important;
        margin-top: 6px;
    }
    .menu a {
        font-size: 12px !important;
        margin-right: 6px !important;
    }
    .hero {
        padding-top: 20px !important;
    }
}

/* ── Sport/Film Bilder auf Mobile: groß wie WhatsApp ── */
@media (max-width: 768px) {
    .marquee-content img {
        width: 180px !important;
        height: 280px !important;
        border-radius: 12px !important;
    }
    .marquee-content {
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .marquee-content img {
        width: 160px !important;
        height: 250px !important;
        border-radius: 10px !important;
    }
    .marquee-content {
        gap: 12px !important;
    }
}

/* ── Grüner Streifen am WhatsApp Slider entfernen ── */
.whatsapp-feed-slider.no-green-bar::after {
    display: none !important;
    content: none !important;
}
.whatsapp-feed-slider::after {
    display: none !important;
}

/* ── "Was unsere Kunden sagen" zentriert ── */
.whatsapp-feed-slider::before {
    content: 'Was unsere Kunden über uns sagen' !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    color: white !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    padding: 15px 0 10px !important;
    position: relative !important;
    left: auto !important;
    transform: none !important;
    top: auto !important;
    letter-spacing: 0.3px;
}

/* ── WhatsApp/Telegram Kontakt-Labels kleiner ── */
.contact-label { font-size: 12px !important; line-height: 1.2 !important; }
.contact-item  { font-size: 12px !important; padding: 10px 12px !important; gap: 8px !important; }
.contact-item img { width: 18px !important; height: 18px !important; }
