/* ===================================
   LINDAUER SPORTPARK V2 - Main Styles
   =================================== */

:root {
    /* Colors */
    --accent: #16a34a;
    --accent-light: #22c55e;
    --accent-glow: rgba(34, 197, 94, 0.3);
    --bg-dark: #0A0A0F;
    --bg-mid: #12121C;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 20px;

    /* Spacing */
    --section-padding: 84px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background orbs (dezent) */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-light);
    bottom: 20%;
    left: -100px;
    animation-delay: -10s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 60%;
    right: 10%;
    animation-delay: -18s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Glass utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section defaults */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==============================
   Buttons
   ============================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-glass {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ==============================
   Navigation (V1 exact match)
   ============================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all var(--transition-medium);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    border-radius: 0 0 16px 16px;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 0;
    border-radius: 0 0 16px 16px;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
}

.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    min-height: 40px;
}

.logo-text .accent {
    color: var(--accent-light);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    min-height: 40px;
    line-height: 1;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a.active {
    color: var(--accent-light);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    position: absolute;
    left: 4px;
}

.mobile-menu-btn span:nth-child(1) { top: 8px; }
.mobile-menu-btn span:nth-child(2) { top: 15px; }
.mobile-menu-btn span:nth-child(3) { top: 22px; }

/* ==============================
   Hero
   ============================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 24px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.hero-stats .stat {
    padding: 20px 24px;
    min-height: 100px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    padding: 8px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

/* ==============================
   Vorteile / Features (List style — PPTX)
   ============================== */
.vorteile-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.vorteil-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}

.vorteil-item:hover {
    border-bottom-color: rgba(34, 197, 94, 0.4);
    transform: translateX(4px);
}

.vorteil-item-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.08);
    border-radius: var(--radius-sm);
    padding: 6px;
}

.vorteil-item-icon svg {
    width: 100%;
    height: 100%;
}

.vorteil-item-text {
    flex: 1;
    min-width: 0;
}

.vorteil-item-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.vorteil-item-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Stats horizontal bar (PPTX: unten in Vorteile-Section) */
.vorteile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding: 28px 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vorteile-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
}

.vorteile-stats .stat:not(:last-child) {
    border-right: 1px solid var(--glass-border);
}

.vorteile-stats .stat-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}

.vorteile-stats .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==============================
   Kurse
   ============================== */
.courses {
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.05) 50%, transparent 100%);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.courses-cta {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.course-card {
    overflow: hidden;
    transition: all var(--transition-medium);
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 197, 94, 0.4);
}

.course-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
}

.course-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--accent-light);
    opacity: 0.5;
}

.course-content {
    padding: 24px;
    position: relative;
}

.course-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.course-content p {
    color: var(--text-secondary);
    font-size: 15px;
}

.course-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==============================
   Preise
   ============================== */
.preise {
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.03) 50%, transparent 100%);
}

.preise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.preise-card {
    padding: 36px 28px;
    position: relative;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.preise-card:hover {
    transform: translateY(-4px);
}

.preise-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.12);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preise-header {
    margin-bottom: 24px;
}

.preise-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 16px;
    color: var(--text-secondary);
}

.amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
}

.preise-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.preise-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.preise-features svg {
    width: 20px;
    height: 20px;
    color: var(--accent-light);
    flex-shrink: 0;
}

.preise-hinweise {
    text-align: center;
    margin-top: 28px;
}

.preise-info {
    text-align: center;
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ==============================
   Servicezeiten
   ============================== */
.servicezeiten-grid {
    max-width: 700px;
    margin: 0 auto;
}

.servicezeiten-table {
    width: 100%;
    border-collapse: collapse;
}

.servicezeiten-table th,
.servicezeiten-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
    font-size: 15px;
}

.servicezeiten-table th {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.servicezeiten-table td {
    color: var(--text-primary);
}

.servicezeiten-table tr.today {
    background: rgba(34, 197, 94, 0.08);
    border-left: 3px solid var(--accent-light);
}

.servicezeiten-table tr.today td:first-child {
    color: var(--accent-light);
    font-weight: 600;
}

.servicezeiten-hinweis {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
}

.servicezeiten-hinweis strong {
    color: var(--accent-light);
}

/* ==============================
   Team (PPTX: 2-spaltig, Foto links + Name rechts)
   ============================== */
.team {
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.03) 50%, transparent 100%);
}

.team-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.team-row:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateX(4px);
}

.team-row-photo {
    width: 64px;
    height: 84px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(22, 163, 74, 0.05) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.team-row-photo svg {
    width: 32px;
    height: 32px;
    color: var(--text-secondary);
    opacity: 0.5;
}

.team-row-info {
    flex: 1;
    min-width: 0;
}

.team-row-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.team-row-info p {
    font-size: 13px;
    color: var(--accent-light);
    font-weight: 500;
}

/* ==============================
   Geräte + FAQs (kombiniert wie PPTX)
   ============================== */
.geraete-faqs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.geraete-info {
    padding: 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.geraete-info .section-tag {
    align-self: flex-start;
    margin-bottom: 8px;
}

.geraete-info .section-title {
    text-align: left;
    margin-bottom: 8px;
}

.geraete-lead {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

.geraete-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.geraete-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.geraete-info .btn {
    align-self: flex-start;
    margin-top: 16px;
}

/* FAQs Block (right side of geraete-faqs-grid) */
.faqs-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faqs-block .section-tag {
    align-self: flex-start;
    margin-bottom: 8px;
}

.faqs-block .section-title {
    text-align: left;
    margin-bottom: 4px;
}

.faqs-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.faqs-block .faq-list {
    max-width: 100%;
    margin: 0;
}

/* ==============================
   FAQs
   ============================== */
.faqs {
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.03) 50%, transparent 100%);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.active {
    border-color: rgba(34, 197, 94, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: color var(--transition-fast);
}

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

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-medium);
    color: var(--text-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==============================
   Kontakt
   ============================== */
.kontakt-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.kontakt-content {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 15px;
}

.kontakt-item svg {
    width: 22px;
    height: 22px;
    color: var(--accent-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.map-container {
    height: 100%;
    min-height: 400px;
}

.map {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(1) contrast(0.8);
}

/* ==============================
   Footer
   ============================== */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 48px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 48px;
    margin-bottom: 28px;
}

.footer-brand .logo {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
}

/* ==============================
   Scroll animations
   ============================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ==============================
   Responsive
   ============================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
        gap: 40px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        height: 400px;
    }

    .vorteile-list {
        gap: 8px 32px;
    }

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

    .preise-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .geraete-faqs-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 48px;
    }

    .nav-container {
        padding: 8px 16px;
        flex-wrap: nowrap;
    }

    .nav-links,
    .nav .btn {
        display: none;
    }

    .nav-right-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 90px 16px 32px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 400px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        width: 100%;
        margin-top: 32px;
    }

    .hero-stats .stat {
        padding: 16px 8px;
        min-height: auto;
    }

    .hero-stats .stat-value {
        font-size: 22px;
    }

    .hero-stats .stat-label {
        font-size: 11px;
    }

    .vorteile-stats {
        gap: 16px;
        padding: 20px 16px;
        margin-top: 28px;
    }

    .vorteile-stats .stat-value {
        font-size: 28px;
    }

    .vorteile-stats .stat-label {
        font-size: 11px;
    }

    .hero-image {
        height: 280px;
    }

    .section-title {
        font-size: 28px;
    }

    .vorteile-list {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .vorteil-item {
        padding: 12px 4px;
    }

    .preise-card {
        padding: 28px 20px;
    }

    .team-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-row {
        padding: 12px 14px;
        gap: 14px;
    }

    .team-row-photo {
        width: 56px;
        height: 72px;
    }

    .geraete-info {
        padding: 32px 24px;
    }

    .geraete-info .section-title {
        font-size: 28px;
    }

    .kontakt-card {
        grid-template-columns: 1fr;
    }

    .kontakt-content {
        padding: 32px 20px;
    }

    .map-container {
        min-height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    /* Mobile menu — V1 style: nav-links dropdown */
    .nav {
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-container {
        flex-wrap: wrap;
        align-items: center;
    }

    .logo {
        flex: 1;
        order: 1;
    }

    .nav-right-mobile {
        order: 2;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 0;
        gap: 0;
        order: 3;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links li {
        width: 100%;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(-10px);
    }

    .nav-links.active li {
        animation: fadeInLink 0.3s ease forwards;
    }

    .nav-links.active li:nth-child(1) { animation-delay: 0.05s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.15s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.25s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(7) { animation-delay: 0.35s; }
    .nav-links.active li:nth-child(8) { animation-delay: 0.4s; }
    .nav-links.active li:nth-child(9) { animation-delay: 0.45s; }

    .nav-links a {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.2s ease;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        color: var(--accent-light);
        padding-left: 8px;
    }
}

@keyframes slideDown {
    from { max-height: 0; opacity: 0; }
    to { max-height: 500px; opacity: 1; }
}

@keyframes fadeInLink {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 13px;
    }

    .vorteile-stats {
        padding: 20px 12px;
        gap: 8px;
    }

    .vorteile-stats .stat-value {
        font-size: 22px;
    }

    .vorteile-stats .stat-label {
        font-size: 10px;
    }

    .section-tag {
        font-size: 12px;
        padding: 5px 12px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 24px;
    }

    .geraete-info {
        padding: 24px 20px;
    }
}
