/* Still Moment Website - Shared Styles */

/* CSS Variables for App Colors */
:root {
    --warm-cream: #FFF8F0;
    --warm-sand: #F5E6D3;
    --pale-apricot: #FFD4B8;
    --terracotta: #D4876F;
    --clay: #C97D60;
    --dusty-rose: #E8B4A0;
    --warm-black: #3D3228;
    --warm-gray: #8B7D6B;
    --ring-bg: #E8DDD0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Rounded', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--warm-black);
    background:
        /* Sanfter Apricot-Glow oben rechts */
        radial-gradient(ellipse 80% 50% at 85% 10%, rgba(255, 180, 140, 0.4) 0%, transparent 50%),
        /* Basis-Verlauf: deutlich wärmer für Kontrast zum Hero */
        linear-gradient(180deg, #EFE0D0 0%, #E8D5C4 40%, #E2CCBA 70%, #DBBFA8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(61, 50, 40, 0.1);
    z-index: 100;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--warm-black);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.header-logo:hover {
    opacity: 0.8;
}

.header-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warm-black);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    background: var(--warm-sand);
    border-radius: 20px;
    padding: 0.25rem;
}

.language-switcher button {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    border-radius: 16px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-gray);
    transition: all 0.3s ease;
}

.language-switcher button.active {
    background: var(--terracotta);
    color: white;
}

.language-switcher button:hover:not(.active) {
    background: rgba(212, 135, 111, 0.2);
}

/* Content Container */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--warm-black);
    text-align: center;
}

.subtitle {
    text-align: center;
    color: var(--warm-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--warm-black);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* Cards and Sections */
.section-card,
.support-section,
.impressum-section,
.privacy-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(61, 50, 40, 0.1);
}

.section-card h2,
.support-section h2,
.impressum-section h2,
.privacy-section h2 {
    font-size: 1.8rem;
    color: var(--warm-black);
    margin-bottom: 1rem;
}

.section-card h3,
.support-section h3,
.impressum-section h3,
.privacy-section h3 {
    font-size: 1.3rem;
    color: var(--warm-black);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.section-card p,
.support-section p,
.impressum-section p,
.privacy-section p {
    color: var(--warm-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section-card ul,
.support-section ul,
.impressum-section ul,
.privacy-section ul {
    margin-left: 2rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

.section-card ul li,
.support-section ul li,
.impressum-section ul li,
.privacy-section ul li {
    margin-bottom: 0.5rem;
}

.section-card strong,
.support-section strong,
.impressum-section strong,
.privacy-section strong {
    color: var(--warm-black);
}

.section-card a,
.support-section a,
.impressum-section a,
.privacy-section a {
    color: var(--terracotta);
    font-weight: 500;
    text-decoration: none;
}

.section-card a:hover,
.support-section a:hover,
.impressum-section a:hover,
.privacy-section a:hover {
    text-decoration: underline;
}

/* Impressum Compact Layout */
.impressum-content {
    max-width: 800px;
}

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.impressum-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.25rem;
    border-radius: 12px;
}

.impressum-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.75rem 0;
}

.impressum-card p {
    font-size: 0.95rem;
    color: var(--warm-black);
    line-height: 1.5;
    margin: 0;
}

.impressum-card a {
    color: var(--terracotta);
    text-decoration: none;
}

.impressum-card a:hover {
    text-decoration: underline;
}

.impressum-legal {
    border-top: 1px solid var(--warm-sand);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.impressum-legal h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1.5rem 0 0.5rem 0;
}

.impressum-legal h3:first-child {
    margin-top: 0;
}

.impressum-legal p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}

.impressum-legal a {
    color: var(--terracotta);
    text-decoration: none;
}

.impressum-legal a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .impressum-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Highlight Box */
.highlight-box,
.contact-box {
    background: var(--warm-sand);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--terracotta);
    margin: 1.5rem 0;
}

.highlight-box p:last-child,
.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

/* Contact Summary Banner */
.contact-summary {
    background: linear-gradient(135deg, var(--terracotta), var(--clay));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-summary h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-summary a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

.contact-summary a:hover {
    opacity: 0.9;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 135, 111, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 135, 111, 0.4);
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta-button-disabled {
    background: var(--warm-gray);
    opacity: 0.7;
    cursor: default;
    box-shadow: none;
}

.cta-button-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Store Badges */
.store-badge {
    display: inline-block;
    transition: transform 0.3s ease;
}

.store-badge img {
    height: 54px;
    width: auto;
}

.store-badge:hover {
    transform: scale(1.05);
}

.store-badge-disabled {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: default;
}

.store-badge-disabled img {
    opacity: 0.5;
    filter: grayscale(50%);
}

.store-badge-disabled::after {
    content: attr(data-coming-soon);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--warm-gray);
}

.store-badge-disabled:hover {
    transform: none;
}

/* Beta Hint */
.beta-hint {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--warm-gray);
}

.beta-hint a {
    color: var(--terracotta);
    font-weight: 500;
    text-decoration: none;
}

.beta-hint a:hover {
    text-decoration: underline;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(61, 50, 40, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(61, 50, 40, 0.15);
    border-color: var(--terracotta);
}

.feature-icon {
    margin-bottom: 1rem;
    color: var(--terracotta);
}

.feature-icon svg {
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--warm-black);
}

.feature-card p {
    color: var(--warm-gray);
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Privacy Banner */
.privacy-banner {
    background: linear-gradient(135deg, var(--terracotta), var(--clay));
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.privacy-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.privacy-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 26.67%;
    box-shadow: 0 10px 40px rgba(61, 50, 40, 0.2);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--warm-black);
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Screenshots Carousel */
.screenshots {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    justify-content: center;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--terracotta) var(--warm-sand);
}

.carousel::-webkit-scrollbar {
    height: 8px;
}

.carousel::-webkit-scrollbar-track {
    background: var(--warm-sand);
    border-radius: 10px;
}

.carousel::-webkit-scrollbar-thumb {
    background: var(--terracotta);
    border-radius: 10px;
}

/* Phone Mockup */
.phone-mockup {
    flex: 0 0 300px;
    scroll-snap-align: center;
    position: relative;
}

.phone-frame {
    background: #1f1f1f;
    border-radius: 40px;
    padding: 12px;
    position: relative;
}

.phone-screen {
    border-radius: 32px;
    overflow: hidden;
    background: var(--warm-cream);
    aspect-ratio: 9 / 19.5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #1f1f1f;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.screenshot-placeholder {
    color: var(--warm-gray);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: rgba(61, 50, 40, 0.05);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-content p {
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.footer-content a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--warm-black);
}

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

.footer-section a {
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--terracotta);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--warm-sand);
    color: var(--warm-gray);
    font-size: 0.9rem;
}

/* Simple centered footer (for support, privacy, impressum) */
.footer-simple {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-simple p {
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.footer-simple a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
}

.footer-simple a:hover {
    text-decoration: underline;
}

/* Hidden class for language switching */
.hidden {
    display: none !important;
}

/* Back to home link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    margin-top: 2rem;
}

.back-link:hover {
    color: var(--terracotta);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1,
    .content h1 {
        font-size: 2rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .contact-summary h2,
    .section-card h2,
    .support-section h2,
    .impressum-section h2,
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   Split Layout (Text neben Screenshots)
   ======================================== */

.split-layout .split-hero {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
    min-height: 400px;
    overflow: visible;
}

/* Hero-Hintergrund mit geschwungener Unterkante */
.split-layout .split-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 150vw;
    height: calc(100% + 100px);
    background: linear-gradient(180deg,
        #FFFFFF 0%,
        #FFFAF5 50%,
        #FFF5EC 80%,
        transparent 100%);
    border-radius: 0 0 50% 50%;
    z-index: -1;
    pointer-events: none;
}

.split-layout .hero-content {
    flex: 0 0 50%;
    text-align: left;
    position: relative;
    z-index: 2;
}

.split-layout .hero-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.split-layout .hero-title-row {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
}

.split-layout .hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-bottom: -0.2em;
}

.split-layout .split-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--warm-black);
    margin: 0;
    line-height: 1;
}

.split-layout .hero-tagline {
    font-size: 1.4rem;
    color: var(--warm-black);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.split-layout .hero-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.split-layout .hero-usps {
    font-size: 1rem;
    color: var(--warm-gray);
    margin: 0.75rem 0 0 0;
    line-height: 1.4;
}

.split-layout .hero-inline-icon {
    display: inline-block;
    vertical-align: -0.2em;
    margin-right: 0.4rem;
    opacity: 0.85;
}

.split-layout .hero-features {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.split-layout .hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.4;
}

.split-layout .hero-features svg {
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 0.15em;
}

.split-layout .hero-badges {
    display: flex;
    gap: 1rem;
}

.split-layout .hero-badges .store-badge img {
    height: 44px;
}

.split-layout .hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}

.split-layout .hero-image img {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(212, 135, 111, 0.25));
}

/* Header with badges */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-badges {
    display: flex;
    gap: 0.5rem;
}

.header-badge img {
    height: 32px;
}

.split-layout .split-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--warm-black);
}

.split-layout .split-hero-text .tagline {
    font-size: 1.25rem;
    color: var(--warm-gray);
    margin: 0 0 2rem 0;
}

.split-layout .hero-badges .store-badge img {
    height: 50px;
}

.split-layout .split-hero-image img {
    width: 100%;
    max-width: 280px;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

/* Split Sections */
.split-layout .split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.split-layout .split-section.reverse {
    direction: rtl;
}

.split-layout .split-section.reverse > * {
    direction: ltr;
}

.split-layout .split-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--warm-black);
}

.split-layout .split-text p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    line-height: 1.6;
    margin: 0;
}

.split-layout .split-screenshots {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.split-layout .split-screenshots img {
    height: 400px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.split-layout .split-features {
    background: var(--warm-sand);
    padding: 3rem 2rem;
}

.split-layout .split-features .features-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.split-layout .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.split-layout .feature-item svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.split-layout .feature-item strong {
    display: block;
    color: var(--warm-black);
    margin-bottom: 0.25rem;
}

.split-layout .feature-item span {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 900px) {
    .split-layout .split-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem 3rem;
        min-height: auto;
        overflow: hidden;  /* Kein horizontaler Scroll auf Mobile */
    }

    .split-layout .hero-content {
        flex: none;
        width: 100%;
        text-align: center;
        order: 2;
    }

    .split-layout .hero-intro {
        flex-direction: column;
        gap: 1rem;
    }

    .split-layout .split-hero h1 {
        font-size: 2.5rem;
    }

    .split-layout .hero-tagline {
        font-size: 1.1rem;
    }

    .split-layout .hero-subtitle {
        font-size: 1rem;
    }

    .split-layout .hero-usps {
        font-size: 0.95rem;
    }

    .split-layout .hero-features li {
        font-size: 0.95rem;
    }

    .split-layout .hero-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .split-layout .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        justify-content: center;
        order: 1;
        margin-bottom: 1.5rem;
    }

    .split-layout .hero-image img {
        max-width: 180px;
    }

    .split-layout .split-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .split-layout .split-section.reverse {
        direction: ltr;
    }

    .split-layout .split-screenshots img {
        height: 300px;
    }

    .split-layout .split-features .features-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ========================================
   App Store Style (Alternative Design)
   ======================================== */

.app-store-style .app-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.app-store-style .app-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.app-store-style .app-info {
    flex: 1;
}

.app-store-style .app-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: var(--warm-black);
}

.app-store-style .app-subtitle {
    font-size: 1.25rem;
    color: var(--warm-gray);
    margin: 0 0 0.5rem 0;
}

.app-store-style .app-tagline {
    font-size: 1rem;
    color: var(--terracotta);
    margin: 0 0 1rem 0;
}

.app-store-style .app-badges {
    display: flex;
    gap: 1rem;
}

.app-store-style .app-badges .store-badge img {
    height: 44px;
}

/* Screenshots Section */
.app-store-style .app-screenshots {
    padding: 2rem 0;
    background: var(--warm-sand);
}

.app-store-style .screenshots-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--terracotta) var(--warm-cream);
}

.app-store-style .screenshots-scroll img {
    height: 500px;
    width: auto;
    border-radius: 16px;
    scroll-snap-align: start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Features List */
.app-store-style .app-features {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.app-store-style .app-features h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--warm-black);
}

.app-store-style .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-store-style .feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--warm-sand);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.app-store-style .feature-list strong {
    color: var(--warm-black);
    font-weight: 600;
}

.app-store-style .feature-list span {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

/* Privacy Note */
.app-store-style .app-privacy {
    background: var(--warm-cream);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--warm-sand);
}

.app-store-style .app-privacy h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--warm-black);
}

.app-store-style .app-privacy p {
    color: var(--warm-gray);
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .app-store-style .app-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .app-store-style .app-icon-large {
        width: 100px;
        height: 100px;
    }

    .app-store-style .app-info h1 {
        font-size: 2rem;
    }

    .app-store-style .app-badges {
        justify-content: center;
    }

    .app-store-style .screenshots-scroll img {
        height: 400px;
    }
}

/* ========================================
   Small Mobile Devices (< 480px)
   iPhone SE, older Android, very narrow viewports
   ======================================== */

@media (max-width: 480px) {
    /* Header kompakter */
    header {
        padding: 0.75rem;
    }

    .header-logo {
        gap: 0.5rem;
        font-size: 1rem;
    }

    .header-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .language-switcher button {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    /* Content Padding reduzieren */
    .content {
        padding: 2rem 1rem;
    }

    /* Hero-Anpassungen */
    .hero h1,
    .content h1 {
        font-size: 1.75rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    /* Section Titles kleiner */
    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Cards kompakter */
    .section-card,
    .support-section,
    .impressum-section,
    .privacy-section {
        padding: 1.5rem 1rem;
    }

    .section-card h2,
    .support-section h2,
    .impressum-section h2,
    .privacy-section h2 {
        font-size: 1.3rem;
    }

    /* Store Badges kleiner */
    .store-badge img {
        height: 44px;
    }

    /* Carousel anpassen */
    .carousel {
        gap: 1rem;
        padding: 1rem 0;
    }

    .phone-mockup {
        flex: 0 0 250px;
    }

    /* Features kompakter */
    .features {
        padding: 2rem 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    /* Privacy Banner */
    .privacy-banner {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .privacy-banner h2 {
        font-size: 1.5rem;
    }

    .privacy-banner p {
        font-size: 1rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section ul {
        padding: 0;
    }

    /* Split Layout für kleine Screens */
    .split-layout .split-hero {
        padding: 1.5rem 1rem 3rem;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .split-layout .split-hero::before {
        height: calc(100% + 60px);
        top: -60px;
    }

    .split-layout .hero-content {
        text-align: left;
    }

    .split-layout .hero-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin-top: 0.5rem;
    }

    .split-layout .split-hero h1 {
        font-size: 2rem;
    }

    .split-layout .hero-tagline {
        font-size: 1rem;
    }

    .split-layout .hero-subtitle {
        font-size: 0.9rem;
    }

    .split-layout .hero-usps {
        font-size: 0.85rem;
    }

    .split-layout .hero-inline-icon {
        width: 16px;
        height: 16px;
    }

    .split-layout .hero-features li {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .split-layout .hero-features svg {
        width: 18px;
        height: 18px;
    }

    .split-layout .hero-badges {
        justify-content: center;
    }

    /* Hero-Bild auf kleinen Screens ausblenden */
    .split-layout .hero-image {
        display: none;
    }

    .split-layout .hero-badges .store-badge img {
        height: 40px;
    }

    /* Screenshots vertikal stapeln */
    .split-layout .split-screenshots {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .split-layout .split-screenshots img {
        height: auto;
        width: 100%;
        max-width: 200px;
    }

    /* Split Sections kompakter */
    .split-layout .split-section {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .split-layout .split-text h2 {
        font-size: 1.5rem;
    }

    .split-layout .split-text p {
        font-size: 1rem;
    }

    /* Features Strip kompakter */
    .split-layout .split-features {
        padding: 2rem 1rem;
    }

    .split-layout .feature-item {
        gap: 0.75rem;
    }

    .split-layout .feature-item svg {
        width: 28px;
        height: 28px;
    }

    /* App Store Style */
    .app-store-style .app-header {
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .app-store-style .app-icon-large {
        width: 80px;
        height: 80px;
    }

    .app-store-style .app-info h1 {
        font-size: 1.75rem;
    }

    .app-store-style .app-subtitle {
        font-size: 1.1rem;
    }

    .app-store-style .app-badges .store-badge img {
        height: 40px;
    }

    .app-store-style .screenshots-scroll {
        padding: 1rem;
    }

    .app-store-style .screenshots-scroll img {
        height: 300px;
    }

    .app-store-style .app-features {
        padding: 2rem 1rem;
    }

    .app-store-style .app-privacy {
        padding: 1.5rem 1rem;
    }
}
