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

:root {
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--stone-800);
    background: linear-gradient(to bottom, var(--stone-50), white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
}

nav.scrolled {
    background: rgba(225, 225, 225, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;         /* erlaubt Zeilenumbruch */
    justify-content: center; /* zentriert auch zweite Zeile */
    row-gap: 0.3rem;         /* ⬅️ enger Abstand zwischen den Zeilen */
}

.nav-links a {
    color: var(--stone-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;     /* verhindert Umbruch im Linktext */
}


.nav-links a:hover {
    color: var(--orange-600);
}

.nav-cta {
    background: linear-gradient(to right, var(--amber-500), var(--orange-500));
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-cta:hover {
    box-shadow: 0 4px 12px rgba(251, 146, 60, 0.4);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--stone-700);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.5rem;
    width: 280px;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    padding: 0.75rem 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--stone-700);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--orange-600);
}

/* Hero Section - MIT ANIMATIONEN */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fef3c7, #fed7aa, var(--stone-100));
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #fef3c7, #fed7aa, var(--stone-100));
    }
    50% {
        background: linear-gradient(135deg, #fed7aa, #fef3c7, #fde68a);
    }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d97706' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: patternMove 30s linear infinite;
}

/* NEU - Schwebende Shapes */
.hero-floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 5;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(249, 115, 22, 0.3));
    animation: floatRandom 20s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.floating-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.floating-shape:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 30%;
    animation-delay: 5s;
}

.floating-shape:nth-child(5) {
    width: 70px;
    height: 70px;
    bottom: 30%;
    right: 10%;
    animation-delay: 8s;
}

@keyframes floatRandom {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    color: var(--orange-600);
    font-weight: 600;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.gradient-text {
    background: linear-gradient(to right, var(--amber-600), var(--orange-600), var(--amber-600));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientTextShine 3s linear infinite;
}

@keyframes gradientTextShine {
    to {
        background-position: 200% center;
    }
}

.hero p {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--stone-600);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(to right, var(--amber-500), var(--orange-500));
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(251, 146, 60, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: white;
    color: var(--stone-700);
    border: 2px solid var(--stone-200);
}

.btn-secondary:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    border-color: var(--orange-400);
}

.social-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    color: var(--stone-600);
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.social-item:nth-child(1) {
    animation-delay: 0s;
}

.social-item:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.social-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(251, 146, 60, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: -10rem;  /* Erhöhe auf 3rem falls immer noch zu hoch */
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 15;
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--orange-400);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--orange-400);
    border-radius: 9999px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    50% { 
        transform: translateX(-50%) translateY(-10px); 
    }
}

/* Sections */
section {
    padding: 6rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: var(--stone-800);
    margin-bottom: 1rem;
}

.section-divider {
    width: 6rem;
    height: 0.375rem;
    background: linear-gradient(to right, var(--amber-500), var(--orange-500));
    margin: 0 auto 1.5rem;
    border-radius: 9999px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--stone-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

.about-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--stone-100);
}

.about-card::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    opacity: 0.5;
    filter: blur(2rem);
    border-radius: 1.5rem;
    z-index: -1;
}

.icon-box {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #fcd34d;
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Downloads Section */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn,
.faq-filter-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: 1px solid var(--stone-200);
    background: white;
    color: var(--stone-600);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.faq-filter-btn:hover {
    background: var(--stone-100);
}

.filter-btn.active,
.faq-filter-btn.active {
    background: linear-gradient(to right, var(--amber-500), var(--orange-500));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 6px rgba(251, 146, 60, 0.3);
}

.filter-btn.active.kostenlos {
    background: linear-gradient(to right, var(--green-500), #10b981);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-search-wrap {
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.faq-search-input {
    width: 100%;
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--stone-200);
    border-radius: 9999px;
    outline: none;
    transition: all 0.3s;
    background: white;
}

.faq-search-input:focus {
    border-color: var(--orange-400);
    box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.15);
}

#faq-filter-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 0.6rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0 0.25rem 0.6rem;
}

#faq-filter-tabs::-webkit-scrollbar {
    height: 6px;
}

#faq-filter-tabs::-webkit-scrollbar-track {
    background: var(--stone-100);
    border-radius: 9999px;
}

#faq-filter-tabs::-webkit-scrollbar-thumb {
    background: var(--orange-400);
    border-radius: 9999px;
}

#faq-filter-tabs .faq-filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Akkordeon statt Karten-Grid */
.faq-grid {
    max-width: 44rem;
    margin: 0 auto 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--stone-100);
    overflow: hidden;
}

.faq-item-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--stone-800);
}

.faq-item-question:hover {
    background: var(--stone-50);
}

.faq-item-cat {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--orange-600);
    background: #fff3e8;
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    margin-right: 0.6rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.faq-item-icon {
    flex-shrink: 0;
    color: var(--stone-400);
    transition: transform 0.25s;
}

.faq-item.open .faq-item-icon {
    transform: rotate(180deg);
    color: var(--orange-500);
}

.faq-item-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-item-answer {
    max-height: 1000px;
}

.faq-item-answer-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.92rem;
    color: var(--stone-600);
    line-height: 1.65;
}

.faq-item-cta {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px dashed var(--stone-200);
}

.faq-item-cta-label {
    display: block;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--stone-500);
    margin-bottom: 0.65rem;
}

.faq-item-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.faq-item-cta-tertiary {
    text-align: center;
    margin-top: 0.75rem;
}

.faq-item-cta-tertiary a {
    font-size: 0.8rem;
    color: var(--stone-400);
    text-decoration: none;
}

.faq-item-cta-tertiary a:hover {
    color: var(--orange-500);
    text-decoration: underline;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.faq-cta-btn-primary {
    background: linear-gradient(to right, var(--amber-500), var(--orange-500));
    color: white;
    box-shadow: 0 3px 8px rgba(251, 146, 60, 0.35);
}

.faq-cta-btn-primary:hover {
    box-shadow: 0 5px 14px rgba(251, 146, 60, 0.45);
    transform: translateY(-1px);
}

.faq-cta-btn-secondary {
    background: var(--stone-100);
    color: var(--stone-700);
    border: 1px solid var(--stone-200);
}

.faq-cta-btn-secondary:hover {
    background: var(--stone-200);
}

.faq-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--stone-500);
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--stone-100);
}

.download-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--stone-100);
    transition: all 0.3s;
}

.download-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.download-card-header {
    height: 0.5rem;
}

.download-card-header.kostenlos {
    background: linear-gradient(to right, var(--green-400), #10b981);
}

.download-card-header.premium {
    background: linear-gradient(to right, var(--amber-400), var(--orange-500));
}

.download-card-body {
    padding: 1.5rem;
}

.download-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.download-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--stone-100), var(--stone-200));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.download-card:hover .download-icon {
    transform: scale(1.1);
}

.download-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.download-badge.kostenlos {
    background: #d1fae5;
    color: var(--green-700);
}

.download-badge.premium {
    background: #fef3c7;
    color: var(--amber-600);
}

.download-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--stone-800);
    margin-bottom: 0.5rem;
}

.download-card p {
    color: var(--stone-600);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.download-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--stone-100);
}

.download-stats {
    font-size: 0.875rem;
    color: var(--stone-500);
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.download-btn.kostenlos {
    background: var(--green-500);
    color: white;
}

.download-btn.kostenlos:hover {
    background: var(--green-600);
}

.download-btn.premium {
    background: linear-gradient(to right, var(--amber-500), var(--orange-500));
    color: white;
}

.download-btn.premium:hover {
    box-shadow: 0 4px 12px rgba(251, 146, 60, 0.4);
}

.show-more-container {
    text-align: center;
}

.show-more-btn {
    background: white;
    color: var(--stone-700);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    border: 2px solid var(--stone-200);
    cursor: pointer;
    transition: all 0.3s;
}

.show-more-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.video-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.video-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.video-thumbnail {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.4;
}

.video-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pagination-btn {
    padding: 0.75rem;
    border-radius: 9999px;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(to right, var(--amber-500), var(--orange-500));
    color: white;
    box-shadow: 0 4px 12px rgba(251, 146, 60, 0.4);
}

.pagination-btn:disabled {
    background: var(--stone-100);
    color: var(--stone-400);
    cursor: not-allowed;
}

.pagination-dots {
    display: flex;
    gap: 0.5rem;
}

.pagination-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: var(--stone-300);
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-dot:hover {
    background: var(--stone-400);
}

.pagination-dot.active {
    background: linear-gradient(to right, var(--amber-500), var(--orange-500));
    width: 2rem;
}

/* Video Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 80rem;
}

.modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0.5rem;
}

.modal-close:hover {
    color: var(--orange-400);
}

.modal-video {
    background: var(--stone-900);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-video-inner {
    background: var(--stone-800);
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 90vh;
    min-height: 300px;
}

.modal-video-inner video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-placeholder {
    text-align: center;
    color: white;
    padding: 2rem;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 60rem;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--amber-400), var(--orange-500));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    margin-left: 5rem;
}

.timeline-icon {
    position: absolute;
    left: -4.5rem;
    top: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--stone-100);
    transition: box-shadow 0.3s;
}

.timeline-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-date {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: linear-gradient(to right, #fef3c7, #fed7aa);
    color: var(--orange-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--stone-800);
    margin-bottom: 0.5rem;
}

.timeline-card p {
    color: var(--stone-600);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500), var(--amber-600));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    color: #fef3c7;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
	flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 200px;
    justify-content: center;
}

.cta-btn.instagram {
    background: white;
    color: var(--orange-600);
}

.cta-btn.tiktok {
    background: var(--stone-900);
    color: white;
}

.cta-btn:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.cta-note {
    color: #fef3c7;
    font-size: 0.875rem;
}

/* Footer */
footer {
    background: var(--stone-900);
    color: var(--stone-400);
    padding: 3rem 1rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.footer-description {
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--stone-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--orange-400);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--stone-500);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 20px;
    z-index: 1000;
    display: none;
    justify-content: center;
}

.cookie-content {
    display: inline-block;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.cookie-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-button:hover {
    background-color: #45a049;
}

/* WhatsApp Container */
.whatsapp-container {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1000;
}

/* ========================================
   APP DOWNLOAD - Schwebender Button
   ======================================== */
.app-download-fab {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3ddc84, #00c853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(61, 220, 132, 0.5);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}
.app-download-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(61, 220, 132, 0.65);
}
.app-download-fab img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}
.app-download-fab-tooltip {
    position: absolute;
    right: 70px;
    background: #222;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.app-download-fab:hover .app-download-fab-tooltip {
    opacity: 1;
}

/* ========================================
   APP DOWNLOAD - Modal
   ======================================== */
#app-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
#app-modal.active {
    display: flex;
}
.app-modal-box {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.75rem 1.5rem;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: appModalIn 0.35s cubic-bezier(.22,.68,0,1.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.app-modal-close-x {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.app-modal-close-x:hover {
    color: #555;
    background: #f0f0f0;
}

/* ============================================================
   DISCOVERCYPRUS.DE — Modal, Hero-Card, Nav-Link
   ============================================================ */
#discovercyprus-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
#discovercyprus-modal.active {
    display: flex;
}
.dc-modal-box .dc-modal-logo {
    width: 90px;
    height: 90px;
    margin: 0 auto 0.75rem;
    display: block;
}
.dc-modal-btn {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
}

#meeting-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
#meeting-modal.active {
    display: flex;
}
.meeting-modal-icon {
    font-size: 2.75rem;
    margin-bottom: 0.25rem;
}
.meeting-modal-why {
    font-size: 0.8rem;
    color: var(--stone-500);
    font-style: italic;
    margin: 0.2rem 0 0.6rem;
}
.meeting-modal-times {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}
.meeting-modal-time-row {
    background: var(--stone-100);
    border-radius: 10px;
    padding: 8px 14px;
    font-weight: 700;
    color: var(--stone-800);
    font-size: 0.9rem;
    white-space: nowrap;
}
.meeting-modal-countdown {
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    color: white;
    font-weight: 800;
    border-radius: 12px;
    padding: 10px 14px;
    margin: 0.5rem 0 1rem;
    font-size: 0.95rem;
}
.meeting-modal-btn {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
}
.meeting-reminder-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1rem 0 0.5rem;
    text-align: left;
}
.meeting-reminder-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--stone-700);
}
.meeting-reminder-form select,
.meeting-reminder-form input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--stone-200);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--stone-800);
    background: white;
}
.meeting-reminder-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.meeting-reminder-status {
    font-size: 0.85rem;
    color: var(--stone-700);
    min-height: 1.1rem;
}
.meeting-reminder-status.error {
    color: #dc2626;
}
.meeting-reminder-status.success {
    color: var(--green-700);
}
.app-modal-cancel-link {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--stone-500);
    text-decoration: underline;
}
.meeting-modal-next {
    margin: 0.25rem 0 0.4rem;
}
.meeting-modal-next-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--stone-500);
    font-weight: 700;
}
.meeting-modal-next-datetime {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--stone-800);
}
.meeting-join-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(0.4);
}
.meeting-info-toggle {
    display: inline-block;
    margin-top: 0.6rem;
    background: none;
    border: none;
    color: var(--amber-600);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px 2px;
}
.meeting-info-toggle:hover {
    text-decoration: underline;
}
.meeting-info-panel {
    text-align: left;
    background: var(--stone-100);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    margin-top: 0.5rem;
}
.meeting-info-panel p {
    font-size: 0.85rem;
    color: var(--stone-700);
    margin: 0 0 0.7rem;
    line-height: 1.5;
}
.meeting-info-panel p:last-child {
    margin-bottom: 0;
}
.meeting-modal-linktext {
    font-size: 0.78rem;
    color: var(--stone-500);
    word-break: break-all;
    background: var(--stone-100);
    border-radius: 8px;
    padding: 6px 10px;
    margin-top: 0.4rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.meeting-modal-help {
    font-size: 0.78rem;
    color: var(--stone-500);
    text-align: left;
    margin: 0.4rem 0 0;
    line-height: 1.4;
}
.meeting-modal-whatsapp {
    margin: 1rem 0;
    text-align: left;
}
.meeting-modal-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--green-600);
    text-decoration: none;
    font-size: 0.95rem;
}
.meeting-modal-whatsapp-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.meeting-modal-whatsapp-link:hover {
    text-decoration: underline;
}
.meeting-modal-divider {
    height: 1px;
    background: var(--stone-200);
    margin: 1.1rem 0;
}
.meeting-reminder-submit {
    background: none;
    border: 1px solid var(--stone-200);
    color: var(--stone-700);
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}
.meeting-reminder-submit:hover {
    background: var(--stone-100);
}

.dc-hero-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 12px 18px;
    margin: 1.25rem auto 0;
    max-width: 480px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.dc-hero-card:hover {
    background: rgba(255,255,255,0.97);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.dc-hero-logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.dc-hero-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}
.dc-hero-text strong {
    color: var(--stone-900);
    font-size: 0.95rem;
}
.dc-hero-text span {
    color: var(--stone-600);
    font-size: 0.8rem;
}
.dc-hero-arrow {
    color: var(--stone-500);
    flex-shrink: 0;
}

.nav-dc-link {
    font-weight: 600;
    color: #0077b6 !important;
}
.app-modal-features {
    background: #f8fafc;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    text-align: left;
}
.app-modal-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #444;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.app-modal-feature-row:last-child { margin-bottom: 0; }
.app-modal-feature-row span b { color: #222; }
.app-modal-feature-row a {
    color: var(--green-600);
    text-decoration: underline;
}
.app-modal-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 4px;
}
.app-tab-btn {
    flex: 1;
    padding: 0.55rem 0.5rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
}
.app-tab-btn.active {
    background: white;
    color: #222;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.app-tab-content {
    animation: tabFadeIn 0.2s ease;
}
@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.app-modal-download-btn.ios {
    background: linear-gradient(135deg, #555, #1a1a1a);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.app-modal-download-btn.ios:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.app-modal-footnote {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0.5rem 0 0.75rem;
}
@keyframes appModalIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.app-modal-robot {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.app-modal-box h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}
.app-modal-box .app-modal-sub {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 1.25rem;
}
.app-modal-steps {
    background: #fafaf7;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}
.app-modal-steps p.steps-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}
.app-modal-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}
.app-modal-step:last-child { margin-bottom: 0; }
.app-step-num {
    min-width: 24px;
    height: 24px;
    background: #f5c518;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #333;
    flex-shrink: 0;
}
.app-modal-step span {
    font-size: 0.875rem;
    color: #444;
    line-height: 1.4;
    padding-top: 2px;
}
.app-modal-step span b { color: #222; }
.app-modal-download-btn {
    display: block;
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(135deg, #3ddc84, #00c853);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(61,220,132,0.4);
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}
.app-modal-download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(61,220,132,0.55);
}
.app-modal-cancel {
    background: none;
    border: none;
    color: #999;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.4rem 1rem;
    transition: color 0.2s;
}
.app-modal-cancel:hover { color: #555; }

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(251, 146, 60, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(251, 146, 60, 0.6);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Legal Modals */
.legal-modal {
    padding: 2rem 1rem;
}

.legal-modal .modal-content {
    position: relative;
    max-width: 56rem;
    max-height: 85vh;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.legal-modal .modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    background: var(--stone-100);
    border-radius: 9999px;
    padding: 0.5rem;
    transition: all 0.3s;
}

.legal-modal .modal-close:hover {
    background: var(--orange-500);
    color: white;
    transform: rotate(90deg);
}

.legal-modal-content {
    padding: 3rem;
    padding-top: 4rem;
    color: var(--stone-800);
    overflow-y: auto;
    flex: 1;
}

.legal-modal-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--amber-600), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.legal-modal-content .section-divider {
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--amber-500), var(--orange-500));
    margin: 0 0 2rem 0;
    border-radius: 9999px;
}

.legal-modal-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--stone-100);
}

.legal-modal-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--orange-600);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-modal-content p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--stone-600);
    font-size: 1rem;
}

.legal-modal-content strong {
    color: var(--stone-800);
    font-weight: 600;
}

.legal-modal-content::-webkit-scrollbar {
    width: 10px;
}

.legal-modal-content::-webkit-scrollbar-track {
    background: var(--stone-50);
    border-radius: 10px;
    margin: 1rem 0;
}

.legal-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--amber-400), var(--orange-500));
    border-radius: 10px;
    border: 2px solid var(--stone-50);
}

.legal-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--amber-500), var(--orange-600));
}

/* Form Styling */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--stone-800);
    font-size: 0.95rem;
}

.form-label.required::after {
    content: ' *';
    color: var(--orange-500);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--stone-200);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--stone-800);
    background: white;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--stone-400);
}

.form-input:disabled,
.form-textarea:disabled,
.form-select:disabled {
    background: var(--stone-50);
    color: var(--stone-500);
    cursor: not-allowed;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: #ef4444;
}

.form-input.success,
.form-textarea.success,
.form-select.success {
    border-color: var(--green-500);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px;
    padding-right: 2.5rem;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-checkbox {
    appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid var(--stone-500);
    border-radius: 0.375rem;
    background-color: white;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.form-checkbox:checked {
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    border-color: var(--orange-500);
}

.form-checkbox:hover {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.15);
}

.form-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2);
}

.form-checkbox-label {
    color: var(--stone-700);
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-radio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-radio {
  appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--stone-500);
  border-radius: 0.375rem;
  background-color: white;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.form-radio:checked {
    border-color: var(--orange-500);
    border-width: 6px;
}

.form-radio:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2);
}

.form-radio-label {
    color: var(--stone-700);
    font-size: 0.95rem;
    cursor: pointer;
}

.form-help-text {
    font-size: 0.875rem;
    color: var(--stone-500);
    margin-top: 0.5rem;
}

.form-error-text {
    font-size: 0.875rem;
    color: #ef4444;
    margin-top: 0.5rem;
}

.form-success-text {
    font-size: 0.875rem;
    color: var(--green-600);
    margin-top: 0.5rem;
}

.form-btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-btn {
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-btn-primary {
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    color: white;
    box-shadow: 0 4px 6px rgba(251, 146, 60, 0.3);
}

.form-btn-primary:hover {
    box-shadow: 0 6px 12px rgba(251, 146, 60, 0.4);
    transform: translateY(-2px);
}

.form-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-btn-secondary {
    background: white;
    color: var(--stone-700);
    border: 2px solid var(--stone-300);
}

.form-btn-secondary:hover {
    background: var(--stone-50);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item {
        margin-left: 0;
    }

    .timeline-icon {
        display: none;
    }

    section {
        padding: 4rem 1rem;
    }

    /* Hero Mobile */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 60px 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        gap: 0.3rem;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.3;
        word-break: break-word;
    }

    .hero-badge svg,
    .hero-badge i {
        flex-shrink: 0;
        width: 14px !important;
        height: 14px !important;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        padding: 0 0.5rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }








    .social-proof {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
        margin-top: 2rem;
    }

    .social-item {
        font-size: 0.85rem;
        padding: 0.625rem 1.25rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
    }

    .social-item svg,
    .social-item i {
        flex-shrink: 0;
    }

    .social-item span {
        white-space: nowrap;
    }

    .scroll-indicator {
        bottom: -4rem;
    }

    .legal-modal-content {
        padding: 2rem 1.5rem;
        padding-top: 3.5rem;
    }

    .legal-modal-content h2 {
        font-size: 1.875rem;
    }

    .legal-modal-content h3 {
        font-size: 1.25rem;
    }

    .legal-modal .modal-close {
        top: 1rem;
        right: 1rem;
    }

    .whatsapp-container img {
        width: 50px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 110px;
        right: 15px;
    }

    .scroll-to-top svg,
    .scroll-to-top i {
        width: 20px !important;
        height: 20px !important;
    }

    .form-container {
        padding: 1.5rem;
    }

    .form-btn-group {
        flex-direction: column;
    }

    .form-btn {
        width: 100%;
    }

    .downloads-grid,
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
    }

    .nav-content {
        height: 70px;
        padding: 0 1rem;
    }

    .logo span {
        font-size: 16px !important;
    }

    .logo-icon img {
        height: 45px !important;
    }
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Utility */
.hidden {
    display: none;
}

/* === Accessibility & Motion Optimierungen (unsichtbar) === */
:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}



/* ========================================
   WERBEPARTNER SECTION
   ======================================== */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.15);
    border-color: var(--orange-200);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-logo {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange-100), var(--orange-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--orange-600);
}

.partner-info {
    text-align: center;
}

.partner-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--stone-800);
    margin-bottom: 0.5rem;
}

.partner-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--orange-100);
    color: var(--orange-700);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-description {
    color: var(--stone-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid var(--stone-200);
}

.partner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.partner-stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--orange-600);
}

.partner-stat-label {
    font-size: 0.75rem;
    color: var(--stone-500);
    text-transform: uppercase;
}

.partner-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--orange-500);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
    z-index: 10;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-600);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.partner-link:hover {
    color: var(--orange-700);
    gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-logo {
        height: 140px;
    }

    .partner-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation für neue Partner */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-card {
    animation: fadeInUp 0.6s ease backwards;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }
.partner-card:nth-child(5) { animation-delay: 0.5s; }
.partner-card:nth-child(6) { animation-delay: 0.6s; }






/* === MediaKit (Modal) – kompakte KPI-Layouts === */
.mk-lead { color: var(--stone-600); margin-bottom: 0.75rem; }
.mk-meta { font-size: .9rem; color: var(--stone-500); margin-bottom: 1.5rem; }
.mk-sub  { color: var(--stone-500); font-weight: 500; }

.mk-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 12px;
  margin: 14px 0 8px;
}
.mk-stat {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.mk-stat .value { font-weight: 800; font-size: 1.25rem; color: var(--orange-600); line-height: 1.1; }
.mk-stat .label { font-size: .85rem; color: var(--stone-600); }

.mk-note { font-size: .9rem; color: var(--stone-500); margin: 6px 0 18px; }

.mk-kpi-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 10px 16px;
  margin: 10px 0 18px;
  padding: 0;
}
.mk-kpi-grid li {
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--stone-700);
}

.mk-web-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 12px;
  margin: 10px 0 8px;
}
.mk-web-card {
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--stone-200);
  border-radius: 10px;
  padding: 12px;
}
.mk-web-title { font-weight: 700; color: var(--stone-800); margin-bottom: 8px; }
.mk-web-nums > div { color: var(--stone-700); }

.mk-cta { margin-top: 20px; }
.mk-cta-buttons { display: flex; flex-wrap: wrap; gap: 10px; }

/* Mobile Tweaks (Modal ist schmaler) */
@media (max-width: 768px) {
  .mk-kpi-grid { grid-template-columns: 1fr; }
}

/* ========================================
   Kontaktformular Styles - Spezifisch
   ======================================== */

/* Container */
#kontakt .contact-form-section {
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#kontakt .contact-form-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--stone-800);
}

/* Formular selbst */
#contact-form.contact-form {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Form Row - nur für Kontaktformular */
#contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Form Groups - nur innerhalb contact-form */
#contact-form .form-group {
    margin-bottom: 1.5rem;
}

#contact-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--stone-700);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

#contact-form .form-group input,
#contact-form .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--stone-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--stone-50);
}

#contact-form .form-group input:focus,
#contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.1);
}

#contact-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Form Info - nur im Kontaktformular */
#contact-form .form-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--stone-100);
    border-radius: 0.5rem;
    color: var(--stone-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Submit Button - nur im Kontaktformular */
#contact-form .btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

#contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.4);
}

#contact-form .btn-submit:active {
    transform: translateY(0);
}

#contact-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Formular-Nachricht (Erfolg/Fehler) - nur im Kontaktformular */
#contact-form #form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: none;
    animation: contactFormSlideIn 0.3s ease;
}

#contact-form #form-message.show {
    display: block;
}

#contact-form #form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

#contact-form #form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

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

/* Loading-Zustand - nur im Kontaktformular */
#contact-form .btn-submit.loading {
    position: relative;
    color: transparent;
}

#contact-form .btn-submit.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: contactFormSpin 0.8s linear infinite;
}

@keyframes contactFormSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive - nur für Kontaktformular */
@media (max-width: 768px) {
    #contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    #contact-form.contact-form {
        padding: 1.5rem;
    }
    
    #kontakt .contact-form-section h3 {
        font-size: 1.25rem;
    }
}


/* ===================================================================
   MODERNES 2025 HERO DESIGN FÜR AUSWANDERNHILFT.DE
   Ans Ende der styles.css anhängen
   =================================================================== */

/* Hero Anpassungen */
.hero {
  height: auto !important;
  min-height: 90vh !important;
  padding-top: 140px !important;
  padding-bottom: 60px !important;
}

/* Modernes Badge mit Dot */
.modern-badge {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 0.5rem 1.25rem !important;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

/* Moderne Headline */
.hero-title-modern {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 2rem 0 1.5rem;
  color: var(--stone-900);
  letter-spacing: -0.02em;
}

.gradient-text-modern {
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Subline */
.hero-subline {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--stone-600);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.hero-subline strong {
  color: var(--stone-800);
  font-weight: 600;
}

/* Moderne CTA Buttons */
.hero-buttons-modern {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary-modern {
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  color: white;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

.btn-secondary-modern {
  background: white;
  color: var(--stone-800);
  border: 2px solid var(--stone-200);
}

.btn-secondary-modern:hover {
  border-color: var(--orange-500);
  color: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Stats Section - Modern */
.stats-modern {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--stone-600);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--stone-300), transparent);
}

/* Trust Pills - Minimalistisch */
.trust-pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--stone-700);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.trust-pill:hover {
  background: white;
  border-color: var(--orange-300);
  transform: translateY(-2px);
}

.trust-pill i {
  color: var(--orange-500);
}

/* ===================================================================
   PROBLEM-SOLUTION SECTION (DIREKT UNTER HERO)
   =================================================================== */

.problem-solution-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Problem Card */
.problem-card-modern,
.solution-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.problem-card-modern:hover,
.solution-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.problem-icon {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #dc2626;
}

.solution-icon {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
}

.problem-card-modern h3,
.solution-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--stone-900);
}

/* Checklist Modern */
.checklist-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-modern li {
  padding: 0.875rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--stone-700);
  border-bottom: 1px solid var(--stone-100);
}

.checklist-modern li:last-child {
  border-bottom: none;
}

.checklist-modern li::before {
  content: "✕";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
}

.checklist-modern.red li::before {
  content: "✕";
  background: #fee2e2;
  color: #dc2626;
}

.checklist-modern.green li::before {
  content: "✓";
  background: #dcfce7;
  color: #16a34a;
}

/* Inline CTA */
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.inline-cta:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

/* ===================================================================
   RESPONSIVE / MOBILE
   =================================================================== */

@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh !important;
    padding-top: 120px !important;
  }
  
  .hero-title-modern {
    font-size: 2.25rem;
  }
  
  .hero-subline {
    font-size: 1rem;
  }
  
  .stats-modern {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-buttons-modern {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-modern {
    width: 100%;
    justify-content: center;
  }
  
  .trust-pills {
    flex-direction: column;
    align-items: center;
  }
  
  .problem-card-modern,
  .solution-card-modern {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title-modern {
    font-size: 1.875rem;
  }
  
  .hero-subline {
    font-size: 0.95rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}



/* ===================================================================
   ULTRA-MODERNE NETZWERK SECTION - KONFLIKTFREI
   Ans Ende der style.css anhängen (UnzensiertTV)
   =================================================================== */

/* Section Wrapper */
.network-modern-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--stone-50, #fafaf9) 0%, white 50%, var(--stone-50, #fafaf9) 100%);
  position: relative;
  overflow: hidden;
}

/* Größerer Container für diese Section */
.network-modern-section .container {
  max-width: 1100px;
  width: min(1100px, 95%);
}

/* Animierter Hintergrund */
.network-modern-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08), transparent 70%);
  animation: float-bg-large 20s ease-in-out infinite;
  pointer-events: none;
}

.network-modern-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.06), transparent 70%);
  animation: float-bg-large 25s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes float-bg-large {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -50px) scale(1.1); }
}

/* ===================================================================
   MODERN HEADER
   =================================================================== */

.modern-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  position: relative;
}

.floating-gradient {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent);
  filter: blur(80px);
  animation: pulse-glow-effect 4s ease-in-out infinite;
  pointer-events: none;
}

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

.header-content {
  position: relative;
  z-index: 1;
}

.header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #d97706;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(251, 191, 36, 0.1);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  animation: pulse-dot-effect 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
}

@keyframes pulse-dot-effect {
  0%, 100% { 
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  }
  50% { 
    opacity: 0.8;
    box-shadow: 0 0 0 10px rgba(251, 191, 36, 0);
  }
}

.modern-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1c1917;
  letter-spacing: -0.03em;
}

.gradient-flow {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift-anim 4s ease infinite;
  display: inline-block;
}

@keyframes gradient-shift-anim {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.modern-subtitle {
  font-size: 1.25rem;
  color: #57534e;
  font-weight: 500;
}

/* ===================================================================
   BENTO GRID LAYOUT
   =================================================================== */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* Card Sizes */
.bento-card.large {
  grid-column: span 6;
  min-height: 320px;
}

.bento-card.medium {
  grid-column: span 4;
  min-height: 280px;
}

.bento-card.small {
  grid-column: span 4;
  min-height: 200px;
}

/* ===================================================================
   BENTO CARDS
   =================================================================== */

.bento-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Card Glow Effect */
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at 50% 50%,
    rgba(251, 191, 36, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.bento-card:hover .card-glow {
  opacity: 1;
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Icon Wrapper */
.icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.bento-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.pulse-animation {
  animation: pulse-scale-effect 2s ease-in-out infinite;
}

@keyframes pulse-scale-effect {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Color Variants - Angepasst an deine Orange/Amber Palette */
.bento-card.primary .icon-wrapper {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  color: #ea580c;
}

.bento-card.finance .icon-wrapper {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
}

.bento-card.realestate .icon-wrapper {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #d97706;
}

.bento-card.lifestyle .icon-wrapper {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #2563eb;
}

.bento-card.beauty .icon-wrapper {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  color: #db2777;
}

.bento-card.services .icon-wrapper {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #6366f1;
}

.bento-card.community .icon-wrapper {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  color: #ea580c;
}

/* NEU: Community Friends Card - Herz/Rosa Style */
.bento-card.community-friends .icon-wrapper {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  color: #db2777;
}

/* Card Header */
.card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.95rem;
  color: #57534e;
  margin: 0;
}

/* Typography */
.bento-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

/* Lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  color: #44403c;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: white;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.compact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compact-list li {
  padding: 0.625rem 0;
  color: #44403c;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.small-text {
  font-size: 0.9rem;
  color: #57534e;
  line-height: 1.5;
  margin: 0;
}

/* Stats Row in Community Card */
.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-mini {
  flex: 1;
  text-align: center;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #57534e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mini Stats für Small Cards */
.mini-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.mini-stat-item {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  background: rgba(251, 191, 36, 0.08);
  border-radius: 12px;
}

.mini-stat-item strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.mini-stat-item span {
  display: block;
  font-size: 0.7rem;
  color: #57534e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================================================
   GLASS CTA
   =================================================================== */

.glass-cta {
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(40px);
  border-radius: 32px;
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(251, 191, 36, 0.2) 60deg,
    transparent 120deg,
    transparent 240deg,
    rgba(251, 191, 36, 0.2) 300deg,
    transparent 360deg
  );
  animation: rotate-conic-grad 8s linear infinite;
  pointer-events: none;
}

@keyframes rotate-conic-grad {
  to { transform: rotate(360deg); }
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-text h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1c1917;
  margin-bottom: 0.5rem;
}

.cta-text p {
  font-size: 1.1rem;
  color: #57534e;
  margin: 0;
}

/* Glow Button - NEUE KLASSE (kein Konflikt mit .btn) */
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 24px rgba(251, 191, 36, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border: none;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(251, 191, 36, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-glow:hover::before {
  transform: translateX(100%);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 1200px) {
  .bento-card.large,
  .bento-card.medium,
  .bento-card.small {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .network-modern-section {
    padding: 5rem 0;
  }
  
  .modern-title {
    font-size: 2.25rem;
  }
  
  .modern-subtitle {
    font-size: 1.05rem;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .bento-card.large,
  .bento-card.medium,
  .bento-card.small {
    grid-column: span 1;
    min-height: auto;
  }
  
  .bento-card {
    padding: 1.5rem;
  }
  
  .stats-row {
    gap: 1rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .glass-cta {
    padding: 2rem;
  }
  
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-text h3 {
    font-size: 1.5rem;
  }
  
  .cta-text p {
    font-size: 1rem;
  }
  
  .btn-glow {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .modern-title {
    font-size: 1.875rem;
  }
  
  .bento-card {
    padding: 1.25rem;
  }
  
  .icon-wrapper {
    width: 56px;
    height: 56px;
  }
  
  .card-header h3,
  .bento-card h3 {
    font-size: 1.2rem;
  }
}

.green-check {
    filter: hue-rotate(80deg) saturate(5);
}


/* WhatsApp Fallback unter Download-Button */
.whatsapp-fallback {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
}

.whatsapp-fallback-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
}

.whatsapp-fallback-btn:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-fallback-btn i {
    flex-shrink: 0;
}



/* WhatsApp Fallback */
.whatsapp-fallback {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
}

.whatsapp-info {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 15px;
}

.phone-copy-container-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #25D366;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    background: white;
    color: #333;
}

.phone-input:focus {
    outline: none;
    border-color: #1fb855;
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.copy-btn:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.copy-btn:active {
    transform: translateY(0);
}





/* Live Video Container Styles - auswandernhilft.de spezifisch */
.live-video-container-aw {
    max-width: 1280px;
    margin: 100px auto 0px;
    padding: 0 1rem;
    position: relative;
}

.video-hint-aw {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--orange-600);
    margin-bottom: 1rem;
    animation: bounce-hint 2s infinite;
    cursor: pointer;
}

@keyframes bounce-hint {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.video-wrapper-aw {
    position: relative;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.live-video-player-aw {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
}

.video-overlay-info-aw {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.video-live-badge-aw {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.video-click-overlay-aw {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 5;
}

@media (max-width: 768px) {
    .live-video-container-aw {
        margin-top: 80px;
    }
    
    .video-hint-aw {
        font-size: 1.2rem;
    }
    
    .live-video-player-aw {
        max-height: 400px;
    }
}

/* ========================================
   LUNA BANNER
   ======================================== */
.luna-banner {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
    border-bottom: 3px solid #f97316;
    padding: 0.75rem 1rem;
	margin: 80px auto 0px;
    position: relative;
    z-index: 90;
}

.luna-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.luna-badge {
    background: #f97316;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.luna-banner-img {
    height: 56px;
    width: 56px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.luna-banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 180px;
}

.luna-banner-text strong {
    color: #c2410c;
    font-size: 1rem;
}

.luna-banner-text span {
    color: #78350f;
    font-size: 0.85rem;
}

.luna-banner-btn {
    background: #f97316;
    color: white !important;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(249,115,22,0.35);
}

.luna-banner-btn:hover {
    background: #ea6c00;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .luna-banner-inner {
        gap: 0.6rem;
    }
    .luna-banner-text span {
        display: none;
    }
}

.hero-app-note {
    margin-top: 1rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    max-width: 760px;
}

.hero-new-faq-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1.4rem;
    background: linear-gradient(to right, #fde047, #fbbf24);
    border: none;
    border-radius: 9999px;
    color: #7c2d12;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.5);
    animation: heroNewFaqPulse 1.8s ease-in-out infinite;
}

.hero-new-faq-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 22px rgba(251, 191, 36, 0.65);
}

.hero-new-faq-badge {
    background: #dc2626;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

@keyframes heroNewFaqPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(251, 191, 36, 0.5), 0 0 0 0 rgba(251, 191, 36, 0.6); }
    50% { box-shadow: 0 4px 16px rgba(251, 191, 36, 0.5), 0 0 0 10px rgba(251, 191, 36, 0); }
}