/* ─── Ausflugsfieber Landing Page Styles ─── */

:root {
    --swiss-blue: #1A4D6E;
    --swiss-blue-light: #2a6d9e;
    --swiss-blue-dark: #123a54;
    --swiss-orange: #E8602C;
    --swiss-orange-light: #f0845a;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --bg-main: #ffffff;
    --bg-soft: #f8fafc;
    --bg-card: #f1f5f9;
    --border: #e2e8f0;
    --radius: 1.25rem;
    --max-width: 960px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--swiss-blue);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ─── Layout ─── */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── Scroll Animation ─── */
.step, .feature-card, .b2b-benefit, .faq-item,
.preview-phone, .preview-text, .trust-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.step.visible, .feature-card.visible, .b2b-benefit.visible, .faq-item.visible,
.preview-phone.visible, .preview-text.visible, .trust-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.step:nth-child(2) { transition-delay: 0.1s; }
.step:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(2) { transition-delay: 0.05s; }
.feature-card:nth-child(3) { transition-delay: 0.1s; }
.feature-card:nth-child(4) { transition-delay: 0.15s; }
.feature-card:nth-child(5) { transition-delay: 0.2s; }
.feature-card:nth-child(6) { transition-delay: 0.25s; }
.trust-item:nth-child(2) { transition-delay: 0.1s; }
.trust-item:nth-child(3) { transition-delay: 0.2s; }
.trust-item:nth-child(4) { transition-delay: 0.3s; }

/* ─── Navigation ─── */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-primary);
    text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

.nav-logo img {
    height: 32px;
    width: auto;
}

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

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--swiss-blue);
    text-decoration: none;
}

.nav-cta {
    background: var(--swiss-blue);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.6rem;
    font-size: 0.75rem !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
    background: var(--swiss-blue-light) !important;
    transform: translateY(-1px);
}

.nav-download {
    background: var(--swiss-orange) !important;
    color: white !important;
    padding: 0.55rem 1.1rem;
    border-radius: 0.6rem;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(232,96,44,0.35);
    letter-spacing: 0.01em;
}
.nav-download:hover {
    background: var(--swiss-orange-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(232,96,44,0.45);
    text-decoration: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s;
}

/* ─── Hero Slider ─── */

.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.35) 0%, rgba(15,23,42,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    margin: 0 auto 1.5rem;
}

.hero h1, .hero-slide-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, #ffffff, var(--swiss-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin: 0 auto 2rem;
    font-weight: 500;
    line-height: 1.6;
}

.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.store-badge img {
    height: 52px;
    transition: transform 0.2s;
}
.store-badge:hover img {
    transform: translateY(-2px);
}

/* ─── Section Titles ─── */

.section-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

/* ─── How it works ─── */

.how-it-works {
    padding: 5rem 0 4rem;
    background: var(--bg-soft);
}

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

.step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--swiss-orange);
    color: white;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0;
}

.step p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* ─── Features ─── */

.features {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--swiss-blue), var(--swiss-blue-light));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.feature-card h3 {
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
}

/* ─── App Preview ─── */

.app-preview {
    padding: 4rem 0 0;
    background: var(--bg-soft);
}

.preview-cta {
    background: var(--bg-soft);
    padding: 4rem 0 4rem;
    text-align: center;
}

.preview-cta-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.preview-text h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.preview-text > p {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9rem;
}

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

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.check-list svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}

.app-screenshot-img {
    max-width: 260px;
    width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 2rem;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
}

/* ─── Trust Bar ─── */

.trust {
    padding: 3.5rem 0;
    text-align: center;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.trust-item .number {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--swiss-blue);
}

.trust-item .label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-icon {
    width: 28px;
    height: 28px;
    color: var(--swiss-blue);
    margin-bottom: 2px;
}

/* ─── B2B Teaser ─── */

.b2b-teaser {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--swiss-blue-dark) 0%, var(--swiss-blue) 100%);
    color: white;
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--swiss-orange);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 0.4rem;
    margin-bottom: 1rem;
}

.b2b-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.b2b-content > p {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    margin-bottom: 2rem;
    max-width: 600px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.b2b-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.b2b-benefit {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.b2b-benefit svg {
    width: 24px;
    height: 24px;
    color: var(--swiss-orange-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.b2b-benefit strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.b2b-benefit p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    line-height: 1.5;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.85rem 1.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.cta-btn-secondary {
    background: white;
    color: var(--swiss-blue);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* ─── FAQ ─── */

.faq {
    padding: 5rem 0 4rem;
    background: var(--bg-soft);
}

.faq-group {
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.faq-group-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--swiss-blue);
    margin-bottom: 1rem;
    padding-left: 0.25rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.faq-item summary:hover {
    background: var(--bg-soft);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.7;
}

/* ─── CTA Banner ─── */

.cta-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--swiss-blue) 0%, var(--swiss-orange) 100%);
    text-align: center;
    color: white;
}

.cta-banner h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* ─── Footer ─── */

.footer {
    background: var(--text-primary);
    color: rgba(255,255,255,0.7);
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer h4 {
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer p {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-links a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
}

/* ─── Legal Pages ─── */

.legal-page {
    padding: 3rem 0 5rem;
}

.legal-page h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.legal-page .legal-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.legal-section p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-section ul {
    list-style: none;
    padding: 0;
}

.legal-section ul li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.legal-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.legal-section .data-row {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.legal-section .data-row:last-child {
    border-bottom: none;
}

.data-row .data-label {
    font-weight: 700;
    color: var(--text-primary);
    min-width: 200px;
    flex-shrink: 0;
}

.data-row .data-value {
    color: var(--text-secondary);
    font-weight: 500;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ─── B2B Hero ─── */

.b2b-hero {
    background: var(--swiss-blue-dark);
}

.b2b-hero .hero-content {
    padding: 3rem 0;
}

.cta-btn-hero {
    background: var(--swiss-orange);
    color: white;
    box-shadow: 0 4px 20px rgba(232,96,44,0.35);
}
.cta-btn-hero:hover {
    background: var(--swiss-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232,96,44,0.4);
    text-decoration: none;
}

/* ─── Responsive ─── */

@media (max-width: 768px) {
    .hero { height: 480px; }
    .hero h1, .hero-slide-title { font-size: 2rem; }
    .hero .subtitle { font-size: 0.9rem; }

    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        gap: 0.5rem;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.5rem 0; font-size: 0.9rem; }
    .nav-cta {
        text-align: center;
        display: block !important;
        padding: 0.6rem 1rem !important;
        margin-top: 0.5rem;
    }
    .nav-download {
        text-align: center;
        display: block !important;
        padding: 0.6rem 1rem !important;
        margin-top: 0.25rem;
    }

    .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .preview-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .preview-phone { order: -1; }
    .app-screenshot-img { max-width: 220px; }
    .b2b-benefits { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 1.6rem; }

    .data-row { flex-direction: column; gap: 0.25rem; }
    .data-row .data-label { min-width: auto; }
}

@media (max-width: 480px) {
    .hero { height: 440px; }
    .hero h1, .hero-slide-title { font-size: 1.6rem; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .trust-items { gap: 1.5rem; }
    .b2b-content h2 { font-size: 1.5rem; }
}

/* ─── Scroll to Top ─── */

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--swiss-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(26,77,110,0.3);
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--swiss-blue-light);
    transform: translateY(-2px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}
