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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7b580d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: rotate(5deg);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #7b580d;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7b580d;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: #7b580d;
}

.mobile-menu-toggle.active i::before {
    content: '\f00d';
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 300px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav a::after {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #7b580d 0%, #6d5c3f 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text .highlight {
    color: #eebf6d;
    position: relative;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 44px;
    min-width: 44px;
}

.btn-primary {
    background: white;
    color: #7b580d;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #7b580d;
    transform: translateY(-2px);
}

/* Real Phone Screenshot */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.real-phone-screenshot {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.app-screenshot-image {
    max-width: 280px;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.app-screenshot-image:hover {
    transform: scale(1.02);
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-content {
    padding: 2rem;
}

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

.feature-image-placeholder {
    max-width: 400px;
    width: 100%;
    transition: transform 0.3s ease;
}

.feature-image-placeholder:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 200px;
    object-fit: contain;
}

.feature-image::before {
    content: "Screenshot wird geladen...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 0.9rem;
    z-index: 1;
}

/* Fallback für fehlende Bilder */
.feature-image[src*="placeholder"] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.feature-image[src*="placeholder"]::after {
    content: "📱 App Screenshot";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #7b580d;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    z-index: 2;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7b580d, #6d5c3f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.mock-interface {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.mock-header {
    background: #7b580d;
    color: white;
    padding: 12px 15px;
    font-weight: 500;
    font-size: 0.9rem;
}

.mock-form {
    padding: 15px;
}

.form-field {
    background: white;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #666;
    border: 1px solid #e9ecef;
}

.member-list {
    padding: 15px;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.member-item:last-child {
    border-bottom: none;
}

.avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7b580d, #6d5c3f);
    border-radius: 50%;
}

.chart-mock {
    padding: 20px 15px;
    text-align: center;
}

.bars {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 60px;
    gap: 8px;
}

.bar {
    background: linear-gradient(180deg, #7b580d, #6d5c3f);
    width: 20px;
    border-radius: 3px 3px 0 0;
    transition: height 0.3s ease;
}

.notification-mock {
    padding: 15px;
}

.notification {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    border-left: 4px solid #7b580d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notification i {
    color: #7b580d;
    font-size: 1.2rem;
}

.notification strong {
    font-size: 0.9rem;
    color: #333;
}

.notification p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Extended Mock Interface Styles */
.countdown-field {
    background: #e8f5e8 !important;
    border-left: 3px solid #28a745;
    font-weight: 500;
}

.member-role {
    font-size: 0.7rem;
    color: #7b580d;
    font-weight: 500;
    margin-left: 0.5rem;
}

.member-status {
    font-size: 0.7rem;
    color: #ffc107;
    font-weight: 500;
    margin-left: 0.5rem;
}

.member-item.pending {
    background: #fff9e6;
    border-radius: 6px;
    margin: 5px 0;
    padding: 8px;
}

.blog-preview {
    padding: 15px;
}

.blog-card-big {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.blog-image {
    height: 60px;
    background: linear-gradient(135deg, #7b580d, #6d5c3f);
    opacity: 0.8;
}

.blog-content {
    padding: 10px;
}

.blog-content h4 {
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: #333;
}

.blog-content p {
    font-size: 0.7rem;
    color: #666;
    margin: 0;
}

.blog-card-small {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px;
    border-radius: 6px;
    margin: 5px 0;
}

.blog-image-small {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #7b580d, #6d5c3f);
    border-radius: 4px;
    opacity: 0.8;
}

.royal-preview {
    padding: 15px;
}

.royal-couple-big {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 8px;
    padding: 15px;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.crown-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.couple-info h4 {
    font-size: 0.8rem;
    margin: 5px 0;
}

.couple-info p {
    font-size: 0.9rem;
    font-weight: bold;
    margin: 3px 0;
}

.score {
    font-size: 0.7rem;
    opacity: 0.9;
}

.royal-couple-small {
    background: white;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    border-left: 3px solid #ffd700;
}

.document-list {
    padding: 15px;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 6px;
    margin: 5px 0;
    border: 1px solid #e9ecef;
}

.document-card i {
    color: #7b580d;
    width: 20px;
}

.document-card span {
    font-size: 0.8rem;
    color: #333;
}

.image-gallery {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.image-item {
    position: relative;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.image-placeholder {
    height: 60px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    position: relative;
}

.image-tools {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 5px;
}

.image-tools i {
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px;
    border-radius: 3px;
    font-size: 0.7rem;
}

.image-upload {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #7b580d;
    font-weight: bold;
}

.pricing-preview {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.price-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.price-card h4 {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7b580d;
    margin-bottom: 5px;
}

.price-card span {
    font-size: 0.7rem;
    color: #666;
}

/* Multiple notifications */
.notification-mock .notification:last-child {
    margin-top: 8px;
}

/* Wordcloud Styles */
.wordcloud-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.wordcloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    min-height: 200px;
    position: relative;
}

.word {
    display: inline-block;
    color: #7b580d;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    line-height: 1.2;
}

.word:hover {
    transform: scale(1.1);
    color: #6d5c3f;
    text-shadow: 0 2px 5px rgba(123, 88, 13, 0.3);
}

.word-large {
    font-size: 1.5rem;
    font-weight: 700;
}

.word-medium {
    font-size: 1.1rem;
    font-weight: 600;
}

.word-small {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Responsive wordcloud */
@media (max-width: 768px) {
    .wordcloud {
        max-width: 300px;
        gap: 0.5rem;
    }
    
    .word-large {
        font-size: 1.2rem;
    }
    
    .word-medium {
        font-size: 1rem;
    }
    
    .word-small {
        font-size: 0.8rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(123, 88, 13, 0.15);
    border-color: #7b580d;
}

.pricing-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7b580d, #6d5c3f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.pricing-box:hover .pricing-box-icon {
    transform: scale(1.1) rotateZ(-5deg);
}

.pricing-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-box-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #7b580d;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.pricing-box-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    min-height: 60px;
}

.pricing-box-features {
    width: 100%;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: #7b580d;
    font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    text-align: center;
    max-width: 300px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7b580d, #6d5c3f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(123, 88, 13, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-icon {
    margin: 1rem 0;
}

.step-icon i {
    font-size: 2rem;
    color: #7b580d;
    opacity: 0.6;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #e9ecef, #7b580d, #e9ecef);
    margin-top: 40px;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 10px solid #7b580d;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote {
    margin-bottom: 1.5rem;
}

.quote i {
    font-size: 2rem;
    color: #7b580d;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.author {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.author strong {
    color: #333;
    font-size: 1rem;
}

.author span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, #7b580d 0%, #6d5c3f 100%);
    color: white;
    text-align: center;
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="40" cy="25" r="0.3" fill="white" opacity="0.1"/><circle cx="25" cy="40" r="0.4" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.1;
}

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

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.download-btn {
    transition: transform 0.3s ease;
    display: inline-block;
    padding: 0;
    background: transparent;
}

.download-btn:hover {
    transform: scale(1.05);
}

.download-btn img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: block;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.download-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.download-features .feature i {
    font-size: 1.2rem;
    color: #eebf6d;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #eebf6d;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #eebf6d;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #7b580d;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #666;
}

/* Responsive Design */
/* Tablet (768px und kleiner) */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header */
    .header .container {
        padding: 0.75rem 16px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .nav {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .app-screenshot-image {
        max-width: 240px;
    }
    
    /* Features Section */
    .features {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .feature-row-reverse {
        direction: ltr;
    }
    
    .feature-row-reverse > * {
        direction: ltr;
    }
    
    .feature-content {
        padding: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .feature-image-placeholder {
        max-width: 100%;
    }

    .feature-visual {
        display: none;
    }
    
    /* Pricing Section */
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .pricing-box {
        padding: 2rem 1.5rem;
    }
    
    .pricing-box h3 {
        font-size: 1.5rem;
    }
    
    .pricing-box-amount {
        font-size: 2rem;
    }
    
    /* How It Works Section */
    .how-it-works {
        padding: 60px 0;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .step {
        max-width: 100%;
        width: 100%;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    /* Download Section */
    .download {
        padding: 60px 0;
    }
    
    .download-content h2 {
        font-size: 2rem;
    }
    
    .download-content > p {
        font-size: 1rem;
    }
    
    .download-buttons {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .download-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .download-features .feature {
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
}

/* Mobile (480px und kleiner) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Header */
    .header .container {
        padding: 0.5rem 12px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
        margin-right: 0.25rem;
    }
    
    .nav {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .nav a {
        padding: 0.5rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .app-screenshot-image {
        max-width: 200px;
    }
    
    /* Features Section */
    .features {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .feature-row {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .feature-content {
        padding: 0;
    }
    
    .feature-content h3 {
        font-size: 1.25rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    /* Pricing Section */
    .pricing {
        padding: 40px 0;
    }
    
    .pricing-simple {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .pricing-box {
        padding: 1.5rem 1rem;
    }
    
    .pricing-box-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
        font-size: 2rem;
    }
    
    .pricing-box h3 {
        font-size: 1.3rem;
    }
    
    .pricing-box-amount {
        font-size: 1.75rem;
    }
    
    .pricing-box-description {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .feature-item {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    /* How It Works Section */
    .how-it-works {
        padding: 40px 0;
    }
    
    .step {
        width: 100%;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonial {
        padding: 1rem;
    }
    
    .quote p {
        font-size: 1rem;
    }
    
    .author strong {
        font-size: 0.95rem;
    }
    
    /* Download Section */
    .download {
        padding: 40px 0;
    }
    
    .download-content h2 {
        font-size: 1.5rem;
    }
    
    .download-content > p {
        font-size: 0.95rem;
    }
    
    .download-buttons {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .download-features {
        gap: 0.75rem;
    }
    
    .download-features .feature {
        font-size: 0.9rem;
        gap: 0.3rem;
    }
    
    .download-features .feature i {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Legal Pages */
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-wrapper {
        padding: 1.5rem 1rem;
        margin: 0;
        border-radius: 12px;
    }
    
    .legal-wrapper h1 {
        font-size: 1.5rem;
    }
    
    .legal-wrapper h2 {
        font-size: 1.2rem;
    }
}

/* Extra small phones (360px und kleiner) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-image {
        width: 24px;
        height: 24px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.35rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .pricing-box h3 {
        font-size: 1.2rem;
    }
    
    .pricing-box-amount {
        font-size: 1.5rem;
    }
    
    .pricing-box-description {
        font-size: 0.9rem;
    }
    
    .download-content h2 {
        font-size: 1.35rem;
    }
    
    .download-content > p {
        font-size: 0.9rem;
    }
}

/* Legal Pages Styling */
.legal-content {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.legal-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7b580d;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #7b580d;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eebf6d;
}

.legal-wrapper h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6d5c3f;
    margin: 2rem 0 1rem;
}

.legal-wrapper p {
    margin-bottom: 1rem;
    color: #333;
}

.legal-wrapper ul {
    margin: 1rem 0 1rem 1.5rem;
    color: #333;
}

.legal-wrapper li {
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.contact-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #7b580d;
    margin: 1.5rem 0;
}

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

.contact-box strong {
    color: #7b580d;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.back-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive design for legal pages */
@media (max-width: 768px) {
    .legal-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-wrapper h1 {
        font-size: 2rem;
    }
    
    .legal-wrapper h2 {
        font-size: 1.3rem;
    }
}

/* Loading animation for feature rows */
.feature-row {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-row:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-row:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-row:nth-child(4) {
    animation-delay: 0.3s;
}

.feature-row:nth-child(5) {
    animation-delay: 0.4s;
}

.feature-row:nth-child(6) {
    animation-delay: 0.5s;
}

.feature-row:nth-child(7) {
    animation-delay: 0.6s;
}

.feature-row:nth-child(8) {
    animation-delay: 0.7s;
}

.feature-row:nth-child(9) {
    animation-delay: 0.8s;
}

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

/* Links in How It Works Section */
.how-it-works a {
    color: #7b580d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.how-it-works a:hover {
    text-decoration: underline;
}

/* ===== SUPPORT PAGE STYLES ===== */

/* Support Hero Section */
.support-hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #7b580d 0%, #a67c2e 100%);
    color: white;
    text-align: center;
}

.support-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.support-hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #7b580d;
}

.faq-item.active .faq-question {
    background: #f0f0f0;
    border-bottom: 2px solid #7b580d;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
    line-height: 1.8;
    color: #555;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: white;
}

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

.contact-content h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method {
    text-align: center;
    padding: 30px 20px;
    background: #f8f8f8;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 2.5rem;
    color: #7b580d;
    margin-bottom: 15px;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-method p {
    color: #666;
    margin-bottom: 10px;
}

.contact-method a {
    color: #7b580d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7b580d;
    box-shadow: 0 0 0 3px rgba(123, 88, 13, 0.1);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
}

/* Mobile Responsiveness for Support Page */
@media (max-width: 768px) {
    .support-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .support-hero-content p {
        font-size: 1rem;
    }
    
    .faq-section h2,
    .contact-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
}