:root {
    --gold: #F06D00;
    --gold-light: #FF8C1A;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--darker);
    color: var(--text-light);
    line-height: 1.6;
}

.mobile-only {
    display: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(240, 109, 0, 0.2);
}

.logo {
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.cta-button {
    background: var(--gold);
    color: var(--dark);
    padding: 12px 30px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 14px;
    min-width: 220px;
    text-align: center;
    box-sizing: border-box;
    display: inline-block;
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.shimmer-badge {
    position: relative;
    overflow: hidden;
}

.badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.35),
        transparent
    );
    animation: badge-shimmer 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes badge-shimmer {
    0% { left: -100%; }
    40% { left: 150%; }
    100% { left: 150%; }
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 14px;
    min-width: 220px;
    text-align: center;
    box-sizing: border-box;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Glass Promo Card */
.glass-promo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 30px 50px;
    margin-bottom: 35px;
    background: rgba(139, 195, 74, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 195, 74, 0.3);
    border-radius: 0;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: glass-glow 3s ease-in-out infinite, glass-float 6s ease-in-out infinite;
    transform: rotate(4deg);
}

.glass-promo:hover {
    border-color: rgba(139, 195, 74, 0.6);
    background: rgba(139, 195, 74, 0.12);
    transform: rotate(4deg) translateY(-8px);
    box-shadow: 0 16px 40px rgba(139, 195, 74, 0.25);
    animation-play-state: paused;
}

.glass-promo-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.05),
        transparent
    );
    animation: badge-shimmer 5s ease-in-out infinite;
    pointer-events: none;
}

.glass-promo-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #8BC34A;
}

.glass-promo-discount {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 30px rgba(139, 195, 74, 0.4);
}

.glass-promo-detail {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-gray);
}

.glass-promo-limited {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8BC34A;
    margin-top: 4px;
}

@keyframes glass-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 195, 74, 0.1), inset 0 0 20px rgba(139, 195, 74, 0.03); }
    50% { box-shadow: 0 0 30px rgba(139, 195, 74, 0.2), inset 0 0 30px rgba(139, 195, 74, 0.05); }
}

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

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--gold);
}

.hero-price {
    font-size: 24px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-price strong {
    color: var(--gold);
    font-size: 36px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .cta-button,
.hero-buttons .btn-outline {
    white-space: nowrap;
    padding: 12px 30px;
}

/* Page Hero (smaller for subpages) */
.page-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
}

.page-hero h1 span {
    color: var(--gold);
}

/* Stats Section */
.stats {
    background: var(--dark);
    padding: 60px 50px;
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-top: 10px;
}

/* Section Styles */
.section {
    padding: 100px 50px;
}

.section-dark {
    background: var(--darker);
}

.section-light {
    background: var(--dark);
}

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

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--gold);
}

.section-header p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid rgba(240, 109, 0, 0.2);
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 0 20px 15px;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-img {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 250px;
    }
}

/* Home page: 3 cards centered on desktop */
@media (min-width: 969px) {
    .features-grid.home-features {
        display: grid;
        grid-template-columns: repeat(3, 320px);
        justify-content: center;
        overflow: visible;
    }
}

/* Desktop Carousel */
.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.features-grid.swipeable {
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.features-grid.swipeable::-webkit-scrollbar {
    display: none;
}

.features-grid.swipeable .feature-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    min-width: 280px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: auto;
}

.carousel-arrow:hover {
    background: var(--gold-light);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

@media (max-width: 768px) {
    .carousel-arrow {
        display: none;
    }

    .carousel-container {
        padding: 0;
    }
}

.feature-card {
    background: var(--dark);
    border: 1px solid rgba(240, 109, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.section-light .feature-card {
    background: var(--darker);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-icon-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: var(--gold);
    background: rgba(200, 178, 115, 0.06);
}

.feature-content {
    padding: 25px;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--gold);
}

.feature-content p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.location-card {
    background: var(--darker);
    padding: 30px;
    border: 1px solid rgba(240, 109, 0, 0.1);
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.section-dark .location-card {
    background: var(--dark);
}

.location-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.location-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.location-card p {
    color: var(--text-gray);
    font-size: 14px;
}

.location-card:hover h3 {
    color: var(--gold);
}

.faq-card,
.faq-card:hover {
    transform: none !important;
    border-color: rgba(240, 109, 0, 0.1) !important;
    cursor: default !important;
}

.faq-card:hover h3 {
    color: var(--text-light) !important;
}

.location-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 50px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1920') center/cover fixed;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.95);
    padding: 50px;
    text-align: center;
    border: 2px solid var(--gold);
}

.pricing-badge {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 30px;
}

.pricing-card h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.price {
    font-size: 72px;
    font-weight: 800;
    color: var(--gold);
}

.price span {
    font-size: 24px;
    color: var(--text-gray);
}

.price-period {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(240, 109, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
}

.pricing-features.ermaessigt li::before {
    color: #8BC34A;
}

/* Kontakt Cards */
.kontakt-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.kontakt-card {
    background: var(--dark);
    border: 1px solid rgba(200, 178, 115, 0.2);
    padding: 40px 25px;
    text-align: left;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.kontakt-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.kontakt-card i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.kontakt-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.kontakt-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .kontakt-cards {
        grid-template-columns: 1fr;
    }
}

/* Studio Kontakt Cards */
.studio-kontakt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.studio-kontakt-card {
    background: var(--dark);
    border: 1px solid rgba(200, 178, 115, 0.2);
    padding: 30px;
    text-align: left;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.studio-kontakt-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.studio-kontakt-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.studio-kontakt-card p {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 15px;
}

.studio-telefon {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.studio-telefon i {
    color: var(--gold);
    margin-right: 6px;
}

.studio-email {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 8px;
    text-decoration: none;
}

.studio-telefon:hover,
.studio-email:hover {
    color: var(--gold);
}

.studio-email i {
    color: var(--gold);
    margin-right: 6px;
}

@media (max-width: 768px) {
    .studio-kontakt-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(240, 109, 0, 0.1);
    color: var(--text-gray);
}

.contact-details strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark);
    border: 1px solid rgba(240, 109, 0, 0.2);
    color: var(--text-light);
    font-family: inherit;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.section-light .contact-form input,
.section-light .contact-form textarea {
    background: var(--darker);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

.contact-select {
    width: 100%;
    padding: 15px;
    background: var(--dark);
    border: 1px solid rgba(240, 109, 0, 0.2);
    color: #9ca3af;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23F06D00' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.contact-select:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-select option {
    background: var(--darker);
    color: var(--text-light);
    padding: 10px;
}

.section-light .contact-select {
    background-color: var(--darker);
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 20px 40px;
    border-top: 1px solid rgba(240, 109, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-center {
    display: flex;
    align-items: center;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    margin: 0;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 10px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 28px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 968px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo img {
        height: 45px;
    }

    .navbar > .cta-button {
        margin-left: auto;
        margin-right: 0;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 13px;
    }

    .btn-outline {
        padding: 14px 24px;
        font-size: 13px;
    }

    .hero-buttons .cta-button,
    .hero-buttons .btn-outline {
        width: 60%;
    }

    .cta-buttons .cta-button,
    .cta-buttons .btn-outline {
        width: 80%;
        text-align: center;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        text-align: center;
        z-index: 1002;
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 600;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 34px;
        min-width: 52px;
        min-height: 52px;
        z-index: 1003;
        position: relative;
    }

    .navbar-buttons {
        display: none !important;
    }

    .mobile-only {
        display: list-item;
    }

    .hero {
        height: 100svh;
        min-height: -webkit-fill-available;
    }

    .hero h1 {
        font-size: 32px;
    }

    .glass-promo {
        padding: 16px 28px;
        margin-bottom: 40px;
    }

    .glass-promo-tag {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .glass-promo-discount {
        font-size: 36px;
    }

    .glass-promo-detail {
        font-size: 10px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .hero-price {
        font-size: 18px;
    }

    .hero-price strong {
        font-size: 24px;
    }

    .page-hero {
        height: 30vh;
        min-height: 200px;
        padding-top: 68px;
    }

    .page-hero h1 {
        font-size: 22px;
    }

    .page-hero-small h1 {
        font-size: 24px;
        padding: 0 15px;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 36px;
    }

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

    .section {
        padding: 40px 15px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 12px;
    }

    .features-grid.swipeable {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }

    .features-grid.swipeable::-webkit-scrollbar {
        display: none;
    }

    .features-grid.swipeable .feature-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .feature-card img {
        height: 280px;
    }

    .feature-content {
        padding: 18px;
    }

    .feature-content h3 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 12px;
    }

    .location-card {
        padding: 20px;
    }

    .location-card h3 {
        font-size: 15px;
    }

    .location-card p {
        font-size: 12px;
    }

    .pricing-section {
        padding: 40px 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h3 {
        font-size: 18px;
    }

    .contact-info p {
        font-size: 13px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 13px;
    }

    .pricing-card {
        padding: 25px 15px;
    }

    .pricing-card h2 {
        font-size: 20px;
    }

    .price {
        font-size: 36px;
    }

    .price span {
        font-size: 16px;
    }

    .pricing-features li {
        font-size: 12px;
        padding: 8px 0;
    }

    .footer {
        padding: 15px 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .footer-left {
        flex: 1;
        min-width: 0;
    }

    .footer-right {
        flex-shrink: 0;
        display: flex;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links a {
        font-size: 9px;
    }

    .footer-label {
        display: none;
    }

    .footer-social a {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Disable hover transforms on touch devices for smoother scrolling */
@media (hover: none) {
    .pricing-card-small:hover,
    .feature-card:hover,
    .location-card:hover {
        transform: none !important;
    }

    .pricing-card-small {
        transition: none !important;
    }

    .flex-highlight {
        animation: none !important;
    }
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Pop Animation */
@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.stat-number.pop {
    animation: pop 0.3s ease;
}

/* Timeline Styles */
.timeline-desktop {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-mobile {
    display: none;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.timeline-mobile::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-card {
    background: var(--dark);
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 25px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-card .timeline-year {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 4px 12px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
}

.timeline-card h3 {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-card p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.5;
}

/* Über uns Grid mobile */
.ueber-uns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

/* About Founders Grid */
.about-founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.about-founders-image {
    width: 100%;
    height: 350px;
    background: var(--darker);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-founders-text h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 24px;
}

.about-founders-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.about-founders-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .timeline-desktop {
        display: none;
    }

    .timeline-mobile {
        display: block;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-card h3 {
        font-size: 16px;
    }

    .timeline-card p {
        font-size: 13px;
    }

    .about-founders-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-founders-image {
        height: 250px;
    }

    .about-founders-text h3 {
        font-size: 20px;
    }

    .about-founders-text p {
        font-size: 14px;
    }

    /* Team Deutschland mobile */
    .team-deutschland-grid {
        gap: 25px !important;
    }

    .team-deutschland-grid .team-member {
        width: 100px !important;
        height: 100px !important;
    }

    .team-deutschland-grid .team-member i {
        font-size: 35px !important;
    }

    .team-deutschland-grid h3 {
        font-size: 14px !important;
    }

    .team-deutschland-grid p {
        font-size: 11px !important;
    }

    /* Standort-Team mobile */
    .standort-team-grid {
        flex-wrap: wrap !important;
        gap: 20px !important;
        justify-content: center !important;
    }

    .standort-team-grid > div {
        width: calc(50% - 10px) !important;
        box-sizing: border-box;
    }

    .standort-team-grid img {
        width: 160px !important;
        height: 160px !important;
    }

    .standort-team-grid p {
        font-size: 11px !important;
        word-wrap: break-word;
    }

    .standort-team-grid h4 {
        font-size: 14px !important;
    }

    .brands-layout {
        grid-template-columns: 1fr !important;
    }

    .brands-layout .brands-image {
        display: none;
    }

    .faq-layout {
        grid-template-columns: 1fr !important;
    }

    .faq-layout .faq-image {
        display: none;
    }
}

/* News Carousel */
.news-grid.swipeable {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.news-grid.swipeable::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 350px;
    min-width: 350px;
    scroll-snap-align: start;
    background: var(--dark);
    border: 1px solid rgba(240, 109, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s;
}

.news-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.news-card-image {
    position: relative;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.4s;
}

.news-card:hover .news-card-image img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--dark);
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.news-date {
    color: var(--text-gray);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-category {
    background: rgba(240, 109, 0, 0.15);
    color: var(--gold);
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.3;
}

.news-card:hover .news-card-content h3 {
    color: var(--gold);
}

.news-card-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.news-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.news-link:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .news-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: center;
    }

    .news-card-image img {
        height: 200px;
    }

    .news-card-content {
        padding: 18px;
    }

    .news-card-content h3 {
        font-size: 16px;
    }

    .news-card-content p {
        font-size: 13px;
    }
}

/* Statisches News-Grid (Homepage) */
.news-grid-static {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-grid-static .news-card {
    width: 280px;
}

.news-grid-static .news-card-image img {
    height: 200px;
}

@media (max-width: 768px) {
    .news-grid-static .news-card {
        display: none;
    }

    .news-grid-static .news-card:first-child {
        display: block;
    }
}

@media (hover: none) {
    .news-card:hover {
        transform: none !important;
    }
}

/* Legal Pages */
.footer-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    margin-right: 15px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h3 {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}
