/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* ===== UTILITIES ===== */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-bg-text {
    background-color: white;
    padding: 4px 12px;
    border-radius: 8px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.black-bg-text {
    background-color: #000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

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

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Akzentfarbe für "Jetzt herunterladen" */
.btn-download {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
  border-color: transparent;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.45);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-logo .logo-img {
  height: 84px; /* vorher: 28px */
  width: auto;
  display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -2;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 100px;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== PHONE MOCKUP ===== */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding: 0 80px;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 290px;
    height: 620px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 6px;
    box-shadow: 
        0 0 0 2px #333,
        0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.floating-cards {
    position: absolute;
    width: calc(100% + 160px);
    height: 100%;
    left: -80px;
    pointer-events: none;
    overflow: visible;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    z-index: 1;
    will-change: transform;
}

.floating-card i {
    font-size: 1.2rem;
    color: #667eea;
}


.card-1 {
    top: 20%;
    right: -20px;
    animation: float-diagonal 6s ease-in-out infinite;
    padding: 12px 32px 12px 24px;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
    flex-direction: row-reverse;
    width: 230px;
}

.card-2 {
    top: 40%;
    left: 30px;
    animation: float-diagonal 6s ease-in-out infinite 2s;
    padding: 12px 32px 12px 24px;
    width: 200px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    width: 220px;
}

.card-3 {
    bottom: 20%;
    right: 40px;
    animation: float-diagonal 6s ease-in-out infinite 4s;
    padding: 12px 32px 12px 24px;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
    flex-direction: row-reverse;
    width: 230px;
}

@keyframes float-diagonal {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(var(--float-dx, -24px), var(--float-dy, 24px)); }
}

/* Weniger Bewegung für Nutzer mit reduzierter Bewegung */
@media (prefers-reduced-motion: reduce) {
    .floating-card { animation: none !important; }
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 120px 0;
    background: #fafbfc;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #555;
}

.feature-list .fa-check {
    color: #22c55e;
    font-size: 14px;
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots {
    padding: 120px 0;
    background: white;
}

.screenshots .container {
  max-width: 100%;
}

/* Galerie: volle Breite, zentriert, mit sinnvoller Maximalbreite */
.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem; /* kann bei Bedarf erhöht werden */
    margin-top: 4rem;
    width: 100%;
    max-width: clamp(1000px, 90vw, 1400px); /* sinnvoller Cap */
    margin-left: auto;
    margin-right: auto;
}

.screenshot-item {
    text-align: center;
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-10px);
}

.screenshot-item .phone-mockup {
    margin-bottom: 1.5rem;
}

.screenshot-item .phone-frame {
    width: 120px;
    height: 260px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 4px;
    box-shadow: 
        0 0 0 1px #333,
        0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.screenshot-item .phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.screenshot-item .phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 27px;
    overflow: hidden;
    position: relative;
}

.screenshot-img {
    width: 100%;
    height: auto;              /* statt 100% */
    object-fit: contain;
    object-position: center;
    border-radius: 36px;
}

.screenshot-frame {
    width: 240px;
    height: 510px;
    margin: 0 auto 1rem auto;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 6px;
    box-shadow: 
        0 0 0 2px #333,
        0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}




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

.screenshot-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #1f2937;
}

.screenshot-info p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Responsive für Screenshots */
@media (max-width: 1200px) {
    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .screenshot-item .phone-frame {
        width: 200px;
        height: 440px;
    }
}

@media (max-width: 768px) {
    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .screenshot-item .phone-frame {
        width: 140px;
        height: 320px;
        padding: 3px;
        border-radius: 25px;
    }
    
    .screenshot-item .phone-frame::before {
        width: 30px;
        height: 3px;
        top: 6px;
    }
    
    .screenshot-item .phone-screen {
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .screenshots-gallery {
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }
    
    .screenshot-item .phone-frame {
        width: 200px;
        height: 400px;
    }
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 120px 0;
    background: #fafbfc;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 600;
    color: #555;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.3s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.discount {
    background: #22c55e;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* fixe 3 Spalten */
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.plan-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
}

.yearly {
    display: none;
}

.period {
    font-size: 1rem;
    color: #666;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #555;
}

.plan-features .fa-check {
    color: #22c55e;
}

.plan-features .fa-times {
    color: #e5e5e5;
}

.plan-features .disabled {
    opacity: 0.5;
}

.plan-btn {
    width: 100%;
    justify-content: center;
}

/* ===== DOWNLOAD SECTION ===== */
.download {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.download-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.download-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

.main-text {
    font-size: 1rem;
    font-weight: 600;
}

.phones-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-stack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px; /* Abstand entfernt */
}

.download-phone {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.download-phone .phone-frame {
    width: 190px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 35px;
    padding: 4px;
    box-shadow: 
        0 0 0 1px #333,
        0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.download-phone .phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.download-phone .phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 31px;
    overflow: hidden;
    position: relative;
}

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

.download-phone.phone-2 {
    position: absolute;
    top: 20px;
    right: -50px;
    z-index: 1;
    opacity: 0.9;
}

/* Download: Bilder 50% kleiner */
.download .phone-stack .phone-img {
  width: 48%; /* vorher: 50% */
  height: auto;
  display: block;
  flex: 0 0 auto;         /* nicht automatisch strecken/quetschen */
  position: relative;     /* für z-index notwendig */
  will-change: transform;
}

.download .phone-stack .phone-1 {
  position: relative; /* sicherheitshalber */
  z-index: 2;
}

.download .phone-stack .phone-2 {
  position: relative;
  z-index: 1;
  margin-left: -140px !important; /* größer überlappend */
}

/* Download-Screenshots: echte Überlappung erzwingen */
.download .phone-stack { gap: 0; /* sicherheitshalber */ }

.download .phone-stack .phone-1,
.download .phone-stack .phone-2 { position: relative; }

.download .phone-stack .phone-1 {
  z-index: 2;
  transform: translateX(32px) !important; /* nach rechts */
}

.download .phone-stack .phone-2 {
  z-index: 1;
  margin-left: 0 !important;              /* frühere margin-Regeln neutralisieren */
  transform: translateX(-32px) !important; /* nach links -> Überlappung */
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 120px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: #fafbfc;
    padding: 2.5rem;
    border-radius: 20px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-status {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #374151;
}
.form-status.success { color: #16a34a; } /* grün */
.form-status.error { color: #dc2626; }   /* rot */

.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  filter: saturate(0.85);
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-logo .logo-img {
  height: 96px; /* vorher: 32px */
  width: auto;
  display: block;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: white;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #667eea;
    transform: translateY(-2px);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    .download-buttons {
        flex-direction: column;
    }
}

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

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

/* ===== SCROLL ANIMATIONS ===== */
/* Standard: sichtbar. AOS blendet nur vor Animation aus */
[data-aos] {
    opacity: 1;
    transition-property: opacity, transform;
}

.aos-init[data-aos] {
    opacity: 0;
}

.aos-animate[data-aos] {
    opacity: 1;
}

/* ===== PRICING TOGGLE FUNCTIONALITY ===== */
.yearly-active .monthly {
    display: none;
}

.yearly-active .yearly {
    display: inline;
}

/* Globale Defaults für diagonale Bewegung */
:root {
  --float-dx: -4px; /* Horizontal (negativ = nach links) */
  --float-dy:  24px; /* Vertikal (positiv = nach unten) */
  --screenshots-min: 260px; /* minimale Breite je Screenshot-Kachel */
}

.download .phone-stack .phone-2 {
  margin-left: -24px; /* vorher: -10px */
}

/* Download: Überlappung final erzwingen (steht am Ende der Datei) */
.download .phone-stack { gap: 0 !important; }

.download .phone-stack .phone-img {
  /* stabile Basis für Überlappung */
  position: relative;
  flex: 0 0 auto;
  width: 48%;
}

.download .phone-stack .phone-1 {
  z-index: 2;
  transform: translateX(32px) !important; /* nach rechts */
}

.download .phone-stack .phone-2 {
  z-index: 1;
  margin-left: 0 !important;              /* frühere margin-Regeln neutralisieren */
  transform: translateX(-32px) !important; /* nach links -> Überlappung */
}

/* Download: fixe Überlappung (harte Overrides am Dateiende) */
.download .phone-stack { 
  gap: 0 !important;
  justify-content: center;
}

.download .phone-stack .phone-img {
  position: relative;
  flex: 0 0 auto;
  width: 48%;
  transform: none !important; /* frühere transforms neutralisieren */
}

.download .phone-stack .phone-1 {
  z-index: 2;
  margin-right: -56px !important; /* schiebt nach links in Bild 2 */
}

.download .phone-stack .phone-2 {
  z-index: 1;
  margin-left: -56px !important;  /* schiebt nach rechts in Bild 1 */
}

/* Screenshots: Auto-Fit + Minimalbreite (steht am Dateiende, übersteuert frühere Regeln) */
.screenshots-gallery {
  grid-template-columns: repeat(auto-fit, minmax(var(--screenshots-min, 260px), 1fr));
  gap: clamp(12px, 2vw, 24px);
  /* max-width ggf. schon gesetzt; falls nicht gewünscht, hier optional:
     max-width: min(1400px, 100%); */
}

/* Screenshots: Fixe Spalten (4 oder 2) – Override am Dateiende */
.screenshots-gallery {
  /* überschreibt das vorherige auto-fit */
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

/* Kleinstes Breakpoint: weiterhin 2 Spalten (nicht 1) */
@media (max-width: 480px) {
  .screenshots-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; /* optional konsistent halten */
  }
}


