* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    padding: 20px 0;
}

.top-header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 80px;
    z-index: 10;
}

.logo-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
    margin-top: 0;
}

.header-links {
    position: absolute;
    right: 80px;
    display: flex;
    gap: 25px;
}

.header-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.header-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.shapes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.09;
    animation: fall linear infinite;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #00d4ff;
}

.shape.square {
    width: 35px;
    height: 35px;
    background: #ffa726;
    transform: rotate(45deg);
}

.shape.circle {
    width: 30px;
    height: 30px;
    background: #26e5ff;
    border-radius: 50%;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

.logo-header {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
    margin-top: 0;
}

.logo-icon {
    animation: float 3s ease-in-out infinite;
}

.logo-icon img {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 12px;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #26e5ff 30%, #ffa726 70%, #ffb74d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    padding: 120px 40px 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.content {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

h1 {
    font-size: 3.8rem;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 600px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(8px);
}

.feature:nth-child(2):hover {
    background: rgba(255, 167, 38, 0.1);
    border-color: rgba(255, 167, 38, 0.3);
}

.icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.feature p {
    font-size: 0.95rem;
    color: #808080;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #26e5ff 30%, #ffa726 70%, #ffb74d 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.download-btn svg {
    width: 24px;
    height: 24px;
}

.mockup {
    animation: fadeInRight 0.8s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 8px solid #1a1a1a;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-preview {
    padding: 50px 24px 24px;
    height: 100%;
}

.preview-header {
    text-align: center;
    margin-bottom: 60px;
}

.preview-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #26e5ff 30%, #ffa726 70%, #ffb74d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: scale(1.02);
}

.stat-card:nth-child(2) {
    background: rgba(255, 167, 38, 0.1);
    border: 1px solid rgba(255, 167, 38, 0.2);
}

.stat-card:nth-child(2):hover {
    background: rgba(255, 167, 38, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #ffa726 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    display: none;
}

@media (max-width: 1024px) {
    .top-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 0 40px;
        position: relative;
    }

    .logo-header {
        position: relative;
        left: auto;
        transform: none;
        justify-content: center;
    }

    .header-links {
        position: relative;
        right: auto;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 140px 40px 60px;
    }

    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2.8rem;
    }

    .feature {
        text-align: left;
    }

    .mockup {
        order: -1;
    }
}

@media (max-width: 640px) {
    body {
        padding: 10px 0 30px;
    }

    .top-header {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
        top: 10px;
    }

    .logo-header {
        margin-top: 0;
        margin-bottom: 0;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .logo-icon img {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .header-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-links a {
        font-size: 0.85rem;
    }

    .container {
        padding: 150px 20px 40px;
        gap: 40px;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .features {
        gap: 16px;
        margin-bottom: 32px;
    }

    .feature {
        padding: 16px;
    }

    .feature h3 {
        font-size: 1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .download-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .phone {
        width: 260px;
        height: 530px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* *IMPRINT* */
.contact-content {
    margin-top: 50px;
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    padding: 20px 40px 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #d0d0d0;
}

/* Tablets */
@media (max-width: 1024px) {
    .contact-content {
        padding: 20px 20px 40px;
    }
}

/* Smartphones */
@media (max-width: 600px) {

    .contact-content h1 {
        font-size: 1.5rem;
    }

    .privacy-headline {
        font-size: 30px !important; 
    }

    .contact-content {
        padding: 15px 15px 30px;
        margin-top: 30px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        font-size: 0.95rem; /* Etwas kleinere Schrift */
    }
}

/* Sehr kleine Geräte (z. B. iPhone SE) */
@media (max-width: 400px) {

    .contact-content h1 {
        font-size: 1.25rem;
    }

    .contact-content {
        padding: 10px 10px 20px;
        font-size: 0.9rem;
    }
}
